Transfer ERC20 Token

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

API Specification

Transfer ERC20 Token

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

ERC20 Token can be transferred 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 Wallet

quantity*

Numeric

Quantity

recipientAddress*

String

Recipient Address

walletType*

String

type of wallet

{
    Data: {
        referenceId: "xxxx",
        txnHash: ""
    },
    Message: "FT transferred 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/transferFT' \
--header 'Authorization: xxxxxxxxxxxxxxxxx' \
--header 'DappId: xxxxxxxxxxxxxxxxx' \
--header 'ChainId: xxxx' \
--header 'Content-Type: application/json' \
--data '{
  "chainId": "xxxx",
  "contractAddress": "0xa9BCB7E413FfE96575390c6F44F54607b44F030a",
  "custodialWalletAccessToken": "22f82362-2403-453b-b6ed-61ded8b22796",
  "quantity": "100",
  "recipientAddress": "0x688612BD8e65FF693070A875b6a49672502a0707",
  "walletType": "non-custodial"
}'

Last updated