Compile Your Contract
Run the following command in your flipper
directory to compile your smart contract:
$ cargo contract build
This command will build the following for your contract:
a binary, a metadata file (which contains the
contract's ABI) and a .contract
file which bundles both.
In principle, you can also build your contract using just the normal Rust build workflow
(cargo build
). We'll use cargo-contract
though, as it invokes cargo build
with an
optimal set of flags.
If all goes well, you should see a target
folder that contains these files:
target
└─ ink
└─ flipper.polkavm <-- Raw contract binary
└─ flipper.json <-- Metadata for the contract
└─ flipper.contract <-- JSON file that combines binary + metadata
You can think of "Metadata" this way: the raw .polkavm
binary contains just
the bytecode of your contract. Without further information it's
not possible to know what this bytecode refers to. For example,
which functions can be called in there or what their arguments
are. This additional information that describes what the raw binary
is about is called metadata — data that describes other data.
The purpose of each file is:
flipper.polkavm
: This is the raw contract bytecode that will be deployed on-chain.flipper.json
: The isolated metadata, which is not stored on-chain. It's big and would take up too much space and costs. This file is used by e.g. a dApp user interface to know how to communicate with the on-chain contract.flipper.contract
: Combines both the contract's bytecode and the metadata. This file is used when you are usingcargo-contract
to interact with a contract or when you use a developer UI like Contracts UI.
Let's take a look at the structure of the flipper.json
:
{
"source": {...},
"contract": {...},
"spec": {
"constructors": [...],
"docs": [],
"events": [],
"messages": [...],
},
"storage": {...},
"types": [...],
"version": "6"
}
This file describes all the interfaces that can be used to interact with your contract:
types
provides the custom data types used throughout the rest of the JSON.storage
defines all the storage items managed by your contract and how to ultimately access them.spec
stores information about the callable functions like constructors and messages a user can call to interact with the contract. It also has helpful information like the events that are emitted by the contract or any docs.
If you look closely at the constructors and messages, you will also notice a selector
which
contains a 4-byte hash of the function name. This selector is used to route your contract calls to the correct
functions.
You can open up the flipper.contract
file in any text editor. You'll notice that it's
nearly the same as the flipper.json
. The only difference is that the .contract
file contains
an additional field with the hex-encoded binary of your contract:
{
"source": {
…
"contract_binary": "0x006173…",
},
…
}
Pipe the flipper.json
through jq
to pretty-print it: cat flipper.json | jq
.
Debug vs. Release Build
By default, cargo-contract
builds the contract in debug mode. This means
that debugging information will be preserved.
If you e.g. panic like this:
self.env().set_code_hash(&code_hash).unwrap_or_else(|err| {
panic!("Failed to `set_code_hash` to {code_hash:?} due to {err:?}")
});
The return value of a contract during a dry-run will contain this textual panic message. To support functionality like this the debug build of a contract includes some heavy-weight logic which increases the contract's size.
For contracts that are supposed to run in production you should always build the
contract with --release
:
$ cargo contract build --release
This will ensure that nothing unnecessary is compiled into the binary blob, making your contract faster and cheaper to deploy and execute.
With this behavior cargo-contract
mirrors how cargo
behaves for Rust programs:
the --release
flag has to be passed explicitly to cargo build
.