Interact with Smart Contract
Call a contract function directly—read/write supported.
Inputs
ABI
required: The contract's Application Binary Interface, describing available functions and their parameters.Contract Address
required: The blockchain address where the smart contract is deployed.Function Name
required: The name of the function you want to call on the contract.Parameters
: The arguments to pass to the contract function (if any), usually as a JSON array.Private Key Credential
: The private key or credential used to sign the transaction (required for write operations).RPC URL
: The endpoint URL of the blockchain node to connect to.
Example
Outputs
Result
: Return data or transaction hash.
