Skip to main content

Blockchain API

Execute Method

Execute Smart contract method

POST

API_URL/api/token/contract-execute

HEADERS

client_id : 9b16ae5638534a...* client_secret : sk_9b16ae563853...* content-type : application/json Authorization : Bearer ...**

Body

NameTypeRequired
wallet_addressstringYes
tostringNo
contract_addressstringYes
callback_urlstringYes
signed_datastringYes
is_feeintno
extra_infostringno

extra_info field

NameTypeRequiredDescription
methodstringnomethod use to execute
amountstringnoamount transfer
paramsstringnoAdditional data that will be passed back

if no contract_address pass will use MasToken as Default
if invalid contract_address was pass will use MasToken

Sample result
{
"status": 200,
"result": {
"from": "0x147f20a28739da1541...",
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 0,
"status": "pending",
}
}
Sample Callback Success response
{
"status": 200,
"result": {
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 752,
"from": "0x147f20a28739da1541...",
"status": "success"
"receipt" : { Transaction Receipt Object }
}
}
Sample Callback Fail response
{
"status": 200,
"result": {
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 752,
"from": "0x147f20a28739da1541...",
"status": "failed"
"message": "Error message"
}
}

Call Method

Call Smart contract method

POST

API_URL/api/token/contract-call

HEADERS

client_id : 9b16ae5638534a...* client_secret : sk_9b16ae563853...* content-type : application/json Authorization : Bearer ...**

Body

NameTypeRequired
wallet_addressstringYes
contract_addressstringYes
method_namestringYes
method_paramsarrayNo

if no contract_address pass will use MasToken as Default
if invalid contract_address was pass will use MasToken

Sample result
{
"status": 200,
"result": {
"from": "0x147f20a28739da1541...",
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 0,
"status": "pending",
}
}
Sample Callback Success response
{
"status": 200,
"result": {
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 752,
"from": "0x147f20a28739da1541...",
"status": "success"
"receipt" : { Transaction Receipt Object }
}
}
Sample Callback Fail response
{
"status": 200,
"result": {
"transactionHash": "0xf519ba69ba0e603583e0e...",
"nonce": 752,
"from": "0x147f20a28739da1541...",
"status": "failed"
"message": "Error message"
}
}

Get Wallet Tokens

Get all token from wallets

POST

API_URL/api/token/get-wallet-tokens?address={wallet_address}

HEADERS

client_id : 9b16ae5638534ae19...* client_secret : sk_9b16ae5638534ae...* content-type : application/json

Query string

NameTypeRequired
addressstringYes
Sample result
{
"status": 200,
"result": [
{
"token": {
"address": "0x1F4204344....",
"circulating_market_cap": null,
"decimals": "18",
"exchange_rate": null,
"holders": "1",
"icon_url": null,
"name": "1231",
"symbol": "12",
"total_supply": "103000000000000",
"type": "ERC-20",
"volume_24h": null
},
"token_id": null,
"token_instance": null,
"value": "103000000000000"
}
]
}

Get Tokens Abi

Get token abi

GET

API_URL/api/token/get-token-abi?contract_address={wallet_address}

HEADERS

client_id : 9b16ae5638534ae19...* client_secret : sk_9b16ae5638534ae...* content-type : application/json

Query string

NameTypeRequired
contract_addressstringYes
Sample result
{
"status": 200,
"result": [
{
"name": "CountIncreased",
"type": "event",
"inputs": [
{
"name": "_count",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
]
}
]
}