This API provides endpoints for interacting with smart contracts on the blockchain. It allows for executing contract functions.
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
"YOUR_WALLET_ID"
"ADDRESS_ID"
[
{
"constant": false,
"inputs": [
{ "name": "_to", "type": "address" },
{ "name": "_value", "type": "uint256" }
],
"name": "transfer",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
"0x337610d27c682E347C9cD60BD4b3b107C9d34dDd"
"654452"
"transfer"
[
"0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"100000"
]
This API provides endpoints for interacting with smart contracts on the blockchain. It allows for executing contract functions.
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
"YOUR_WALLET_ID"
"ADDRESS_ID"
[
{
"constant": false,
"inputs": [
{ "name": "_to", "type": "address" },
{ "name": "_value", "type": "uint256" }
],
"name": "transfer",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
"0x337610d27c682E347C9cD60BD4b3b107C9d34dDd"
"654452"
"transfer"
[
"0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"100000"
]