This API provides endpoints for interacting with smart contracts on the blockchain. It allows estimating network fees.
The request body should be in raw format and include the following parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| address | string | Yes | The address of the contract. |
| method | string | Yes | The method to be called on the contract. |
| parameters | array | Yes | An array of parameters to pass to the method. |
| abi | array | Yes | An array containing the ABI of the contract or method. |
"YOUR_WALLET_ID"
[
{
"constant": false,
"inputs": [
{ "name": "_to", "type": "address" },
{ "name": "_value", "type": "uint256" }
],
"name": "transfer",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]"TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj"
"transfer"
[
"TRnm5TmNN8M9uvVuqs3Xx9F1A3a87gZAaP",
"10000"
]