Calling Smart Contracts with the Rust Client
Smart contracts exist as stored on-chain logic, allowing disparate users to call the included entry points. This tutorial covers different ways to call Casper contracts with the Casper command-line client and the put-deploy
command. Each section below includes a short video demonstrating some example output.
The following examples use two contracts on Testnet:
- The Counter contract described while Writing a Basic Smart Contract in Rust. You will need to install this contract on Testnet
- The Auction contract found in this contract package, already installed on Testnet as a system contract. The examples will call its
delegate
entry point
Prerequisites
- You know how to send and verify deploys
- You know how to install contracts and query global state using the default Casper client
- Install the Counter contract on Testnet if you have not done so already
- Review the system Auction contract on Testnet
Calling Contracts by Contract Hash
After installing a contract in global state, you can use the contract's hash to call one of its entry points. The following usage of put-deploy
allows you to call an entry point and receive a deploy hash. The hash is needed to verify that the deploy was processed successfully.
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-hash [HEX_STRING] \
--session-entry-point [ENTRY_POINT_FUNCTION]
The arguments used above are:
node-address
- An IP address of a peer on the network. The default port for JSON-RPC servers on Mainnet and Testnet is 7777chain-name
- The chain name of the network where you wish to send the deploy. For Mainnet, use casper. For Testnet, use casper-testsecret-key
- The file name containing the secret key of the account paying for the deploypayment-amount
- The payment for the deploy in motessession-hash
- Hex-encoded hash of the stored contract to be called as the sessionsession-entry-point
- Name of the method that will be used when calling the session contract
Example - Calling the Counter contract by hash:
In this example, the --session-hash
option identifies a stored contract with an entry-point called "counter-inc".
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 100000000 \
--session-hash hash-22228188b85b6ee4a4a41c7e98225c3918139e9a5eb4b865711f2e409d85e88e \
--session-entry-point "counter-inc"
This put-deploy
command is nearly identical to the command used to install the contract. Here, instead of session-path
pointing to the Wasm binary, we have session-hash
and session-entry-point
identifying the on-chain contract and its associated entry point. No Wasm file is needed in this example since the contract is already on the blockchain, and the entry point doesn’t return a value. If an entry point returns a value, use code to interact with runtime return values.
The payment amount varies based on each deploy and network chainspec.
The following sample response contains a deploy_hash
, needed to verify the changes in global state, as described here.
Sample response
{
"id": 1197172763279676268,
"jsonrpc": "2.0",
"result": {
"api_version": "1.4.5",
"deploy_hash": "24b58fbc0cbbfa3be978e7b78b9b37fc1d17c887b1abed2b2e2e704f7ee5427c"
}
}
Video - Calling a contract by hash:
This video shows how to query a previously installed Counter contract by hash.
Calling Contracts with Session Arguments
When calling contract entry points, you may need to pass in information using session arguments. The put-deploy
command allows you to do this with the --session-arg
option:
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-hash [HEX_STRING] \
--session-entry-point [ENTRY_POINT_FUNCTION] \
--session-arg ["NAME:TYPE='VALUE'" OR "NAME:TYPE=null"]...
The arguments of interest are:
session-hash
- Hex-encoded hash of the stored contract to be called as the sessionsession-entry-point
- Name of the method that will be used when calling the session contractsession-arg
- For simple CLTypes, a named and typed arg is passed to the Wasm code. To see an example for each type, run: 'casper-client put-deploy --show-arg-examples'
Example - Calling the Auction contract using session arguments:
This example demonstrates how to call the Auction contract's entry point delegate
with three arguments:
- The argument
validator
is the public key of the validator to whom the tokens will be delegated - The argument
amount
is the number of tokens to be delegated - The argument
delegator
is the public key of the account delegating tokens to a validator
To make the call, we use the contract hash, hash-93d923e336b20a4c4ca14d592b60e5bd3fe330775618290104f9beb326db7ae2
, and the --session-hash
option.
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 2500000000 \
--session-hash hash-93d923e336b20a4c4ca14d592b60e5bd3fe330775618290104f9beb326db7ae2 \
--session-entry-point "delegate" \
--session-arg "validator:public_key='0145fb72c75e1b459839555d70356a5e6172e706efa204d86c86050e2f7878960f'" \
--session-arg "amount:u512='500000000000'" \
--session-arg "delegator:public_key='0154d828baafa6858b92919c4d78f26747430dcbecb9aa03e8b44077dc6266cabf'"
Video - Calling a contract with session arguments:
This video shows how to call a modified Counter contract using session arguments.
Calling Contracts by Package Hash
You can also call an entry point in a contract that is part of a contract package (see contract upgrades). Call put-deploy
using the stored package hash, the entry point you wish to access, the contract version number, and any runtime arguments. The call defaults to the highest enabled version if no version was specified.
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-package-hash [HEX_STRING] \
--session-entry-point [ENTRY_POINT_FUNCTION] \
--session-version [INTEGER]
The arguments of interest are:
session-package-hash
- Hex-encoded hash of the stored package to be called as the sessionsession-entry-point
- Name of the method that will be used when calling the session contractsession-version
- Version of the called session contract. The latest will be used by default
Example 1 - Calling the Counter using the package hash and version:
In this example, we call the Counter contract by its package hash and version number. The entry point invoked is "counter-inc".
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 100000000 \
--session-package-hash hash-76a8c3daa6d6ac799ce9f46d82ac98efb271d2d64b517861ec89a06051ef019e \
--session-entry-point "counter-inc" \
--session-version 1
To find the contract package hash, look at the account's named keys associated with the contract. Here is an example:
{
"key": "hash-76a8c3daa6d6ac799ce9f46d82ac98efb271d2d64b517861ec89a06051ef019e",
"name": "counter_package_name"
}
Example 2 - Calling the Auction using the package hash and version:
This example demonstrates how to call the Auction contract's delegate
entry point by specifying the package hash using the --session-package-hash
option. The call defaults to the highest enabled version since no version was specified with the --session-version
option.
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 2500000000 \
--session-package-hash hash-e375d42c29c0e4b2baefa63cf2d70af34439eda851e08129d8515515d63bd6a9 \
--session-entry-point "delegate" \
--session-arg "validator:public_key='0145fb72c75e1b459839555d70356a5e6172e706efa204d86c86050e2f7878960f'" \
--session-arg "amount:u512='500000000000'" \
--session-arg "delegator:public_key='0154d828baafa6858b92919c4d78f26747430dcbecb9aa03e8b44077dc6266cabf'"
Video - Calling a contract using the package hash:
The video shows how to query the previously installed Counter contract package.
Calling Contracts by Contract Name
We can also reference a contract using a key as the contract name. When you write the contract, use the put_key
function to add the ContractHash under the contract's NamedKeys.
Having a key enables you to call a contract's entry-point in global state by using the put-deploy
command as illustrated here:
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-name [NAMED_KEY_FOR_SMART_CONTRACT] \
--session-entry-point [ENTRY_POINT_FUNCTION]
The arguments of interest are:
session-name
- Name of the stored contract (associated with the executing account) to be called as the sessionsession-entry-point
- Name of the method that will be used when calling the session contract
Example 1 - Calling the Counter contract using a named key:
This example uses the Counter contract stored in global state under the "counter" named key. The code stores the ContractHash into a URef, which can be referenced once the contract is installed in global state. The full implementation is available on GitHub.
runtime::put_key(CONTRACT_KEY, stored_contract_hash.into());
The following command invokes the entry point "counter_inc" and the contract stored under the "counter" named key.
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [PATH_TO_YOUR_KEY]/secret_key.pem \
--payment-amount 100000000 \
--session-name "counter" \
--session-entry-point "counter_inc"
The sample response will contain a deploy_hash
, which you need to use as described here to verify the changes in global state.
Example 2 - Calling the Auction contract using a named key:
This example uses the system Auction contract stored in global state under the "auction" key and its delegate
entry point.
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 2500000000 \
--session-name "auction" \
--session-entry-point "delegate" \
--session-arg "validator:public_key='0145fb72c75e1b459839555d70356a5e6172e706efa204d86c86050e2f7878960f'" \
--session-arg "amount:u512='500000000000'" \
--session-arg "delegator:public_key='0154d828baafa6858b92919c4d78f26747430dcbecb9aa03e8b44077dc6266cabf'"
Video - Calling a contract using a named key:
This short video shows how to query the previously installed Counter contract using a named key, which is the name used to reference the contract.
Calling Contracts by Package Name
To call an entry point in a contract by referencing the contract package name, you can use the session-package-name
, session-entry-point
, and session-version
arguments. This will enable you to access the entry point in global state by using the put-deploy
command as illustrated here:
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-package-name [NAMED_KEY_FOR_PACKAGE] \
--session-entry-point [ENTRY_POINT_FUNCTION] \
--session-version [INTEGER]
The arguments of interest are:
session-package-name
- Name of the stored package to be called as the sessionsession-entry-point
- Name of the method that will be used when calling the session contractsession-version
- Version of the called session contract. The latest will be used by default
Example 1 - Specifying the package name and version number:
This example calls the entry point "counter-inc" as part of the contract package name "counter_package_name", version 1, without any runtime arguments.
You should have previously created the contract by using new_contract, and provided the contract package name as the hash_name
argument of new_contract
.
This example code stores the "contract_package_name" into a NamedKey, which you can reference once you install the contract in global state.
let (stored_contract_hash, contract_version) =
storage::new_contract(counter_entry_points,
Some(counter_named_keys),
Some("counter_package_name".to_string()),
Some("counter_access_uref".to_string())
);
Here is the command to call the contract using the package name:
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount 100000000 \
--session-package-name "counter_package_name" \
--session-entry-point "counter-inc" \
--session-version 1
Example 2 - Calling the package without specifying the version:
This example demonstrates how to call a contract that is part of the erc20_test_call
package using runtime arguments. The call invokes the "check_balance_of" entry point and defaults to the highest enabled version since no version was specified.
casper-client put-deploy \
--node-address http://3.143.158.19:7777 \
--chain-name integration-test \
--secret-key ~/casper/demo/user_a/secret_key.pem \
--payment-amount 1000000000 \
--session-package-name "erc20_test_call" \
--session-entry-point "check_balance_of" \
--session-arg "token_contract:account_hash='account-hash-b568f50a64acc8bbe43462ffe243849a88111060b228dacb8f08d42e26985180'" \
--session-arg "address:key='account-hash-303c0f8208220fe9a4de40e1ada1d35fdd6c678877908f01fddb2a56502d67fd'"
Video - Calling a contract using the package name:
This video demonstrates how to call versioned contracts by package name.
Calling a Contract using Wasm
Session code or contract code (compiled to Wasm) can act on a contract and change its state. The put-deploy
command supports this mechanism as well:
casper-client put-deploy \
--node-address [NODE_SERVER_ADDRESS] \
--chain-name [CHAIN_NAME] \
--secret-key [KEY_PATH]/secret_key.pem \
--payment-amount [PAYMENT_AMOUNT_IN_MOTES] \
--session-path [PATH]/[FILE_NAME].wasm
The argument of interest is:
session-path
- The path to the compiled Wasm on your computer
Example - Session code acting on a contract:
The Counter Contract Tutorial shows how to change the state of a contract (counter-v1.wasm) using session code (counter-call.wasm).
casper-client put-deploy \
--node-address http://65.21.235.219:7777 \
--chain-name casper-test \
--secret-key [PATH_TO_YOUR_KEY]/secret_key.pem \
--payment-amount 25000000000 \
--session-path [PATH_TO_YOUR_COMPILED_WASM]/counter-call.wasm
Video - Calling a contract using Wasm:
Calling Contracts that Return a Value
Visit the Interacting with Runtime Return Values tutorial to learn how to call a contract that returns a value using session code or contract code.
What's Next?
- The Counter Contract Tutorial takes you through a detailed walkthrough on how to query global state to verify a contract's state
- Learn more about Delegating with the Casper Client
- Look into the Resources for Smart Contract Authors
- See the Developer How To Guides