caver.klay.Contract
A caver-js object used to interact with a smart contract.
The caver.klay.Contract
object makes it easy to interact with smart contracts on the Klaytn blockchain. When you create a new contract object, you give it the JSON interface of the respective smart contract and caver will auto convert all calls into low level ABI calls over RPC for you.
This allows you to interact with smart contracts as if they were JavaScript objects.
new contract
Creates a new contract instance with all its methods and events defined in its JSON interface object.
Parameters
Name | Type | Description |
---|---|---|
jsonInterface | Object | The JSON interface for the contract to instantiate |
address | String | (optional) The address of the smart contract to call. Can be added later using |
options | Object | (optional) The options of the contract. See the table below for the details. |
The options object contains the following:
Name | Type | Description |
---|---|---|
from | String | (optional) The address from which transactions should be made. |
gasPrice | String | (optional) The gas price in peb to use for transactions. |
gas | Number | (optional) The maximum gas provided for a transaction (gas limit). |
data | String | (optional) The byte code of the contract. Used when the contract gets deployed. |
Return Value
Type | Description |
---|---|
Object | The contract instance with all its methods and events. |
Example
options
The options
object for the contract instance. from
, gas
and gasPrice
are used as fallback values when sending transactions.
Properties
Name | Type | Description |
---|---|---|
address | String | The address where the contract is deployed. Also see options.address. |
jsonInterface | Array | The JSON interface of the contract. Also see options.jsonInterface. |
data | String | The byte code of the contract. Used when the contract gets deployed. |
from | String | The address from which transactions should be made. |
gasPrice | String | The gas price in peb to use for transactions. |
gas | Number | The maximum gas provided for a transaction (gas limit). |
Example
options.address
The address used for this contract instance myContract
. All transactions generated by caver-js from this contract will contain this address as the "to". The address is stored in lowercase.
Property
Name | Type | Description |
---|---|---|
address | String | | The address for this contract or |
Example
options.jsonInterface
The JSON interface object derived from the ABI of this contract myContract
.
Property
Name | Type | Description |
---|---|---|
jsonInterface | Array | The JSON interface for this contract. Re-setting this will regenerate the methods and events of the contract instance. |
Example
clone
Clones the current contract instance.
Parameters
None
Return Value
Type | Description |
---|---|
Object | The new cloned contract instance. |
Example
deploy
Deploys the contract to the Klaytn blockchain. After successful deployment, the promise will be resolved with a new contract instance.
Parameters
options
: the options object used for deployment:
Name | Type | Description |
---|---|---|
data | String | The byte code of the contract. |
arguments | Array | (optional) The arguments that get passed to the constructor on deployment. |
Return Value
Object
: The transaction object:
Type | Description |
---|---|
Array | arguments: The arguments passed to the method before. They can be changed. |
Function | send: Will deploy the contract. The promise will be resolved with the new contract instance, instead of the receipt. |
Function | estimateGas: Will estimate the gas used for the deployment. |
Function | encodeABI: Encodes the ABI of the deployment, which is contract data + constructor parameters. |
Example
methods
Creates a transaction object for that method, which then can be called, sent, estimated or ABI encoded.
The methods of this smart contract are available through:
The name:
myContract.methods.myMethod(123)
The name with parameters:
myContract.methods['myMethod(uint256)'](123)
The signature*:
myContract.methods['0x58cf5f10'](123)
This allows calling functions with the same name but different parameters from the JavaScript contract object.
cf) *Function signature (Function selector)
The first four bytes of the call data for a function call specifies the function to be called. It is the first (left, high-order in big-endian) four bytes of the Keccak-256 (SHA-3) hash of the signature of the function.
The function signature can be made by 2 different methods.
1. caver.klay.abi.encodeFunctionSignature('funcName(paramType1,paramType2,...)')
2. caver.utils.sha3('funcName(paramType1,paramType2,...)').substr(0, 10)
ex)
Parameters
Parameters of any method depend on the smart contracts methods, defined in the JSON interface.
Return Value
Object
: The transaction object:
Type | Description |
---|---|
Array | arguments: The arguments passed to the method before. They can be changed. |
Function | call: Will call the "constant" method and execute its smart contract method in the Klaytn Virtual Machine without sending a transaction (cannot alter the smart contract state). |
Function | send: Will send a transaction to the smart contract and execute its method (can alter the smart contract state). |
Function | estimateGas: Will estimate the gas used when the method would be executed on the blockchain. |
Function | encodeABI: Encodes the ABI for this method. This can be sent using a transaction, calling the method or passing into another smart contract method as argument. |
Example
methods.myMethod.call
Will call a "constant" method and execute its smart contract method in the Klaytn Virtual Machine without sending any transaction. Note that calling cannot alter the smart contract state.
Parameters
Name | Type | Description |
---|---|---|
options | Object | (optional) The options used for calling. See the table below for the details. |
callback | Function | (optional) This callback will be fired with the result of the smart contract method execution as the second argument, or with an error object as the first argument. |
The options object can contain the following:
Name | Type | Description |
---|---|---|
from | String | (optional) The address the call “transaction” should be made from. |
gasPrice | String | (optional) The gas price in peb to use for this call "transaction". |
gas | Number | (optional) The maximum gas provided for this call "transaction" (gas limit). |
Return Value
Promise
returns Mixed
: The return value(s) of the smart contract method. If it returns a single value, it is returned as it is. If it has multiple return values, they are returned as an object with properties and indices.
Example
methods.myMethod.send
Will send a transaction to the smart contract and execute its method. Note that this can alter the smart contract state.
Parameters
Name | Type | Description |
---|---|---|
options | Object | The options used for sending. See the table below for the details. |
callback | Function | (optional) This callback will be fired first with the "transactionHash", or with an error object as the first argument. |
The options object can contain the following:
Name | Type | Description |
---|---|---|
from | String | The address from which the transaction should be sent. |
gasPrice | String | (optional) The gas price in peb to use for this transaction. |
gas | Number | The maximum gas provided for this transaction (gas limit). |
value | Number | String | BN | BigNumber | (optional) The value transferred for the transaction in peb. |
Return Value
callback
will return the 32-byte transaction hash.
PromiEvent
: A promise combined event emitter. Will be resolved when the transaction receipt is available, or if this send()
is called from a someContract.deploy()
, then the promise will be resolved with the new contract instance. Additionally, the following events are available:
Name | Type | Description |
---|---|---|
transactionHash | String | Is fired right after the transaction is sent and a transaction hash is available. |
receipt | Object | Is fired when the transaction receipt is available. Receipts from contracts will have no |
error | Error | Is fired if an error occurs during sending. On an out-of-gas error, the second parameter is the receipt. |
Example
methods.myMethod.estimateGas
Will estimate the gas that a method execution will take when executed in the Klaytn Virtual Machine. The estimation can differ from the actual gas used when later sending a transaction, as the state of the smart contract can be different at that time.
Parameters
Name | Type | Description |
---|---|---|
options | Object | (optional) The options used for calling. See the table below for the details. |
callback | Function | (optional) This callback will be fired with the result of the gas estimation as the second argument, or with an error object as the first argument. |
The options object can contain the following:
Name | Type | Description |
---|---|---|
from | String | (optional) The address from which the call "transaction" should be made. |
gas | Number | (optional) The maximum gas provided for this call "transaction" (gas limit). Setting a specific value helps to detect out of gas errors. If all gas is used, it will return the same number. |
value | Number | String | BN | BigNumber | (optional) The value transferred for the call "transaction" in peb. |
Return Value
Promise
returns Number
- the used gas for the simulated call/transaction.
Example
methods.myMethod.encodeABI
Encodes the ABI for this method. This can be used to send a transaction, call a method, or pass it into another smart contract method as arguments.
Parameters
None
Return Value
Type | Description |
---|---|
String | The encoded ABI byte code to send via a transaction or call. |
Example
once
Subscribes to an event and unsubscribes immediately after the first event or error. Will only fire for a single event.
Parameters
Name | Type | Description |
---|---|---|
event | String | The name of the event in the contract, or |
options | Object | (optional) The options used for deployment. See the table below for the details. |
callback | Function | This callback will be fired for the first event as the second argument, or an error as the first argument. See getPastEvents return values for details about the event structure. |
The options object can contain the following:
Name | Type | Description |
---|---|---|
filter | Object | (optional) Lets you filter events by indexed parameters, e.g., |
topics | Array | (optional) This allows you to manually set the topics for the event filter. If given the filter property and event signature, |
Return Value
undefined
Example
events
Subscribes to an event.
Parameters
Name | Type | Description |
---|---|---|
options | Object | (optional) The options used for deployment. See the table below for the details. |
callback | Function | (optional) This callback will be fired for each event as the second argument, or an error as the first argument. |
The options object can contain the following:
Name | Type | Description |
---|---|---|
filter | Object | (optional) Lets you filter events by indexed parameters, e.g., |
fromBlock | Number | (optional) The block number from which to get events on. |
topics | Array | (optional) This allows to manually set the topics for the event filter. If given the filter property and event signature, |
Return Value
EventEmitter
: The event emitter has the following events:
Name | Type | Description |
---|---|---|
data | Object | Fires on each incoming event with the event object as argument. |
error | Object | Fires when an error in the subscription occurs. |
The structure of the returned event Object
looks as follows:
Name | Type | Description |
---|---|---|
event | String | The event name. |
signature | String | | The event signature, |
address | String | Address which from this event originated. |
returnValues | Object | The return values coming from the event, e.g., |
logIndex | Number | Integer of the event index position in the block. |
transactionIndex | Number | Integer of the transaction's index position where the event was created. |
transactionHash | 32-byte String | Hash of the block this event was created in. |
blockHash | 32-byte String | Hash of the block this event was created in. |
blockNumber | Number | The block number this log was created in. |
raw.data | String | The data containing non-indexed log parameter. |
raw.topics | Array | An array with max 4 32-byte topics, topic 1-3 contains indexed parameters of the event. |
id | String | A log identifier. It is made through concatenating "log_" string with |
Example
events.allEvents
Same as events but receives all events from this smart contract. Optionally, the filter property can filter those events.
getPastEvents
Gets past events for this contract.
Parameters
Name | Type | Description |
---|---|---|
event | String | The name of the event in the contract, or |
options | Object | (optional) The options used for deployment. See the table below for the details. |
callback | Function | (optional) This callback will be fired with an array of event logs as the second argument, or an error as the first argument. |
To options object can contain the following:
Name | Type | Description |
---|---|---|
filter | Object | (optional) Lets you filter events by indexed parameters, e.g., |
fromBlock | Number | (optional) The block number from which to get events on. |
toBlock | Number | (optional) The block number to get events up to (defaults to |
topics | Array | (optional) This allows manually setting the topics for the event filter. If given the filter property and event signature, |
Return Value
Promise
returns Array
: An array with the past event objects, matching the given event name and filter.
Example
Last updated