Address Operations
Custom Smart Contract Network Fee
This API provides endpoints for interacting with smart contracts on the blockchain. It allows estimating network fees.
Request Body
The request body should be in raw format and include the following parameters:
-
address
: The address for the contract -
method
: The method to be called -
parameters
: An array of parameters -
abi
: An array containing the ABI of the contract or method
POST
Authorizations
Path Parameters
Example:
"YOUR_WALLET_ID"
Example:
"ADDRESS_ID"
Body
application/json
Example:
[
{
"constant": false,
"inputs": [
{ "name": "_to", "type": "address" },
{ "name": "_value", "type": "uint256" }
],
"name": "transfer",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
Example:
"TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj"
Example:
"transfer"
Example:
[
"TRnm5TmNN8M9uvVuqs3Xx9F1A3a87gZAaP",
"10000"
]