Initialize a smart contract instance#

This guide will show you how to initialize a smart contract from a deployed smart contract module with parameters in JSON or binary format. Additionally, it will show how to name an instance.

You can also watch a video about initializing smart contract instances.

Note

Parameters that are passed to the smart contract must be stored in a file. You cannot pass parameters directly on the command-line using concordium-client.

Preparation#

Make sure that you are running a node using the latest Concordium software and that you have a smart contract deployed in some module on-chain.

Since initializing a smart contract is a transaction, you should also make sure to have concordium-client set up with an account with enough CCD to pay for the transaction.

Note

The cost of this transaction depends on the size of the parameters sent to the init function and the complexity of the function itself.

To ease deployment and initialization, you can use the Smart contract deploy and initialize tool instead of the process below. It works with the Concordium Wallet for Web to deploy and initialize smart contracts to Mainnet and Testnet.

Initialization#

To initialize an instance of the parameterless smart contract my_contract from a deployed module with reference 9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 while allowing up to 10000 NRG to be used, run the following command:

$concordium-client contract init \
         9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 \
         --sender my_account \
         --contract my_contract \
         --energy 10000

If successful, the output should be similar to the following:

Contract successfully initialized with address: {"index":0,"subindex":0}

Seeing this message means that a new on-chain contract instance has been created with the address shown.

See also

To get a deeper understanding of contract initialization, see Instantiate a smart contract on-chain.

For more information about module references and instance addresses, see References on-chain.

Using module references directly can be inconvenient; to name them, see Naming a module.

Passing parameters in JSON format#

A parameter in JSON format can be passed if a smart contract schema is supplied, either as a file or embedded in the module. The schema is used to serialize the JSON into binary.

To initialize an instance of the contract my_parameter_contract from the module with reference 9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 with a parameter file my_parameter.json in JSON format, run the following command:

$concordium-client contract init \
         9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 \
         --contract my_parameter_contract \
         --energy 10000 \
         --parameter-json my_parameter.json

If successful, the output should be similar to the following:

Contract successfully initialized with address: {"index":0,"subindex":0}

Otherwise, an error describing the problem is displayed.

Note

If the parameter provided in JSON format does not conform to the type specified in the schema, an error message will be displayed. For example:

Error: Could not decode parameters from file 'my_parameter.json' as JSON:
Expected value of type "UInt64", but got: "hello".
In field 'first_field'.
In {
    "first_field": "hello",
    "second_field": 42
}.

Note

If a given module does not contain an embedded schema, it can be supplied using the --schema /path/to/schema.bin parameter.

Note

CCD can also be transferred to a contract instance during initialization using the --amount AMOUNT parameter.

Passing parameters in binary format#

When passing parameters in binary format, a contract schema is not needed.

To initialize an instance of the contract my_parameter_contract from the module with reference 9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 with the parameter file my_parameter.bin in binary format, run the following command:

$concordium-client contract init \
         9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 \
         --contract my_parameter_contract \
         --energy 10000 \
         --parameter-bin my_parameter.bin

If successful, the output should be similar to the following:

Contract successfully initialized with address: {"index":0,"subindex":0}

See also

For information on how to work with parameters in smart contracts, see Work with parameters.

Naming a contract instance#

A contract instance can be given a local alias, or name, which makes referencing it easier. The name is only stored locally by concordium-client, and is not visible on-chain.

See also

For an explanation of how and where the names and other local settings are stored, see Local settings.

To add a name during initialization, the --name parameter is used.

Here, you are initializing the contract my_contract from the deployed module 9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 and naming it my_named_contract:

$concordium-client contract init \
         9eb82a01d96453dbf793acebca0ce25c617f6176bf7a564846240c9a68b15fd2 \
         --contract my_contract \
         --energy 10000 \
         --name my_named_contract

If successful, the output should be similar to the following:

Contract successfully initialized with address: {"index":0,"subindex":0} (my_named_contract).

Contract instances can also be named using the name command. To name an instance with the address index 0 as my_named_contract, run the following command:

$concordium-client contract name 0 --name my_named_contract

If successful, the output should be similar to the following:

Contract address {"index":0,"subindex":0} was successfully named 'my_named_contract'.

See also

For more information about contract instance addresses, see References on-chain.

Was this article helpful?
Legal information