Mint ERC20 Token

ERC20 Token can be minted using this method. The weightage for this API is 5

API Specification

Mint ERC20 Token

POST https://api.krypcore.com/api/v0/ft-manager/mintFT

ERC20 Token can be minted under the given instance.

Headers

NameTypeDescription

Authorization*

String

User Auth Key obtained from Dash

DappId*

String

DappId

Request Body

NameTypeDescription

contractAddress*

String

Contract Address

chainId*

String

Chain ID

custodialWalletAccessToken*

String

Wallet Access Token Of Custodial Token

erc*

String

Erc Standard

quantity*

String

Quantity

recipientAddress*

String

Recipient Address

walletType*

String

type of wallet

{
    Data: {
        referenceId: "59acb0fc-6da0-4322-9a66-9f2f35d584a0",
        txnHash: ""
    },
    Message: "FT got minted successfully",
    Status: "SUCCESS"
}

Take a look at how you might call this method using our official libraries, or via curl:

curl --location 'https://api.krypcore.com/api/v0/ft-manager/mintFT' \
--header 'Authorization: xxxxxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxxxxx' \
--header 'ChainId: xxxx' \
--header 'Content-Type: application/json' \
--data '{
  "chainId": "xxxx",
  "contractAddress": "0xa9BCB7E413FfE96575390c6F44F54607b44F030a",
  "custodialWalletAccessToken": "22f82362-2403-453b-b6ed-61ded8b22796",
  "erc": "ERC20",
  "quantity": "10000",
  "recipientAddress": "0x466e1862CFC80F216dc4126cc883D731520f36DE",
  "walletType": "non-custodial"
}'

Last updated