Crate concordium_contracts_common

Source
Expand description

This library provides the core API that can be used to write smart contracts for the Concordium blockchain in the Rust programming language. It aims to provide safe wrappers around the core primitives exposed by the chain and accessible to smart contracts.

By default the library will be linked with the std crate, the rust standard library, however to minimize code size this library supports toggling compilation with the #![no_std] attribute via the feature std which is enabled by default.

To use this library without the std feature you have to disable it, which can be done, for example, as follows.

[dependencies.concordium-contracts-common]
default-features = false

In your project’s Cargo.toml file.

§Wasm32

This crate supports both compilation to x86 native code, as well as to the wasm32-unknown-unknown target. When there is a conflict, the preference should always be to make the wasm32-unknown-unknown the more efficient one.

§concordium-std

The functionality in this library is re-exported via the concordium-std crate, which is intended as the entry-point for development of smart contracts in Rust. concordium-std adds a number of helper macros and traits on top of the basic functionality available here.

§Features

This library supports two features, std and derive-serde. The former one is enabled by default, but the latter is disabled.

The derive-serde feature is intended to be used by off-chain tools to make it easier to test smart contracts, as well as to inter-operate with them once they are deployed. It can also be used in unit tests, since enabling this feature exposes additional trait implementations on the defined types.

The reason these trait implementations are not enabled by default is that they have non-trivial dependencies, which tends to increase compilation times, as well as code size, if used accidentally.

§Traits

The main traits defined in this crate deal with binary serialization. The general principles behind serialization is to consistently use little-endian encoding. The native endianess of Wasm32 (when, e.g., reading from linear memory) is little endian, thus having serialization in little endian means as little overhead as possible.

The two core traits are Serial and Deserial. The rest are helper traits there for convenience.

In particular, the Get is noteworthy. It makes it possible to omit writing the type explicitly, if it is already clear from the context, allowing us to write, e.g.,

   let n = source.get()?;

instead of

   let n = u8::deserial(source)?;

The Get trait has a generic implementation in terms of Deserial, so only the latter should be implemented for new types.

Re-exports§

pub use crate::hashes::ModuleReference;

Modules§

attributes
Currently defined attributes possible in a policy.
constants
hashes
Different types of hashes based on SHA256.
schema
Types related to contract schemas. These are optional annotations in modules that allow the users of smart contracts to interact with them in a way that is better than constructing raw bytes as parameters.
schema_json

Structs§

AccountAddress
Address of an account, as raw bytes.
AccountBalance
The current public balances of an account.
AccountPublicKeys
Public keys of an account, together with the thresholds.
AccountSignatures
Account signatures. This is an analogue of transaction signatures that are part of transactions that get sent to the chain.
Amount
The type of amounts on the chain.
AttributeTag
Tag of an attribute. See the module attributes for the currently supported attributes.
AttributeValue
An attribute value. The meaning of the bytes is dependent on the type of the attribute.
Chain
Adapter to chain together two readers.
ChainMetadata
Chain metadata accessible to both receive and init methods. Information about the chain available to smart contracts.
ContractAddress
Address of a contract.
ContractName
A contract name. Expected format: “init_<contract_name>”.
CredentialPublicKeys
CredentialSignatures
Cursor
Add offset tracking inside a data structure.
Duration
Duration of time in milliseconds.
EntrypointName
An entrypoint name (borrowed version). Expected format: “<func_name>” where the name of the function consists solely of ASCII alphanumeric or punctuation characters.
ExceedsParameterSize
ExchangeRate
An exchange rate between two quantities. This is never 0, and the exchange rate should also never be infinite.
ExchangeRates
The euro/NRG and microCCD/euro exchange rates.
NonZeroThresholdU8
A type representing a u8 threshold, typically used for signatures. Serialization for this type ensures that the threshold is never 0.
OwnedContractName
A contract name (owned version). Expected format: “init_<contract_name>”.
OwnedEntrypointName
An entrypoint name (owned version). Expected format: “<func_name>”. Most methods on this type are available via the as_entrypoint_name and the methods on the EntrypointName type.
OwnedParameter
Parameter to the init function or entrypoint. Owned version.
OwnedReceiveName
A receive name (owned version). Expected format: “<contract_name>.<func_name>”. Most methods are available only on the ReceiveName type, the intention is to access those via the as_receive_name method.
Parameter
Parameter to the init function or entrypoint.
ParseError
Zero-sized type to represent an error when reading bytes and deserializing.
Policy
Policy on the credential of the account.
PublicKeyEcdsaSecp256k1
Public key for ECDSA over Secp256k1. Must be 33 bytes long.
PublicKeyEd25519
Public key for Ed25519. Must be 32 bytes long.
ReceiveName
A receive name. Expected format: “<contract_name>.<func_name>”.
SignatureEcdsaSecp256k1
Signature for a ECDSA (over Secp256k1) message. Must be 64 bytes longs (serialized in compressed format).
SignatureEd25519
Signature for a Ed25519 message. Must be 64 bytes long.
Timestamp
Timestamp represented as milliseconds since unix epoch.
TimestampOverflow
U8WasmVersionConvertError
WasmVersionParseError
ZeroSignatureThreshold
An error type that indicates that a 0 attempted to be used as a signature threshold.

Enums§

AccountAddressParseError
Error type for when parsing an account address.
AccountKind
A marker type used to define the AccountThreshold. This is used only at the type-level and there are no values of the type.
Address
Either an address of an account, or contract.
AddressParseError
Error that can occur when parsing an Address from a string.
AmountParseError
An error indicating why parsing of an amount failed. Since amount parsing is typically a user-facing activity this is fairly precise, so we can notify the user why we failed, and what they can do to fix it.
ContractAddressParseError
Error that can occur when parsing a ContractAddress from a string.
ExchangeRateConversionError
An error that may occur when converting from a string to an exchange rate.
ExchangeRateJSON
NewAttributeValueError
Errors that can occur when constructing a new AttributeValue.
NewContractNameError
NewReceiveNameError
ParseDurationError
ParseTimestampError
PublicKey
A public indexed by the signature scheme. Currently only a single scheme is supported, ed25519.
SeekFrom
This is essentially equivalent to the SeekFrom type from the rust standard library, but reproduced here to avoid dependency on std::io, as well as to use 32-bit integers to specify positions. This saves some computation and space, and is adequate for the kind of data sizes that are possible in smart contracts.
Signature
A cryptographic signature indexed by the signature scheme. Currently only a single scheme is supported, ed25519.
SignatureKind
A marker type used to define the SignatureThreshold. This is used only at the type-level and there are no values of the type.
WasmVersion
Version of the module. This determines the chain API that the module can access.

Constants§

ACCOUNT_ADDRESS_SIZE
Size of an account address when serialized in binary. NB: This is different from the Base58 representation.

Traits§

Deserial
The Deserial trait provides a means of reading structures from byte-sources (Read).
DeserialCtx
The DeserialCtx trait provides a means of reading structures from byte-sources (Read) using contextual information. The contextual information is:
Get
A more convenient wrapper around Deserial that makes it easier to write deserialization code. It has a blanked implementation for any read and serialize pair. The key idea is that the type to deserialize is inferred from the context, enabling one to write, for example,
HasSize
The HasSize trait provides a function for getting the current byte size.
Read
The Read trait provides a means of reading from byte streams.
Seek
The Seek trait provides a cursor which can be moved within a stream of bytes. This is essentially a copy of std::io::Seek, but avoiding its dependency on std::io::Error, and the associated code size increase. Additionally, the positions are expressed in terms of 32-bit integers since this is adequate for the sizes of data in smart contracts.
Serial
The Serial trait provides a means of writing structures into byte-sinks (Write).
SerialCtx
The SerialCtx trait provides a means of writing structures into byte-sinks (Write) using contextual information. The contextual information is:
Serialize
The Serialize trait provides a means of writing structures into byte-sinks (Write) or reading structures from byte sources (Read).
Write
The Write trait provides functionality for writing to byte streams.

Functions§

deserial_hashmap_no_length
Read a HashMap as a list of key-value pairs given some length.
deserial_hashset_no_length
Read a HashSet as a list of keys, given some length. NB: This ensures there are no duplicates.
deserial_map_no_length
Read a BTreeMap as a list of key-value pairs given some length. NB: This ensures there are no duplicates, hence the specialized type. Moreover this will only succeed if keys are listed in order.
deserial_map_no_length_no_order_check
Read a BTreeMap as a list of key-value pairs given some length. Slightly faster version of deserial_map_no_length as it is skipping the order checking
deserial_set_no_length
Read a BTreeSet as a list of keys, given some length. NB: This ensures there are no duplicates, hence the specialized type. Moreover this will only succeed if keys are listed in order.
deserial_set_no_length_no_order_check
Read a BTreeSet as an list of key-value pairs given some length. Slightly faster version of deserial_set_no_length as it is skipping the order checking. The only check that is made to the set is that there are no duplicates.
deserial_vector_no_length
Read a vector given a length.
from_bytes
Dual to to_bytes.
is_valid_entrypoint_name
Check whether the given string is a valid contract entrypoint name. This is the case if and only if
serial_hashmap_no_length
Write a HashMap as a list of key-value pairs in to particular order, without the length information.
serial_hashset_no_length
Write a HashSet as a list of keys in no particular order, without the length information.
serial_map_no_length
Write a Map as a list of key-value pairs ordered by the key, without the length information.
serial_set_no_length
Write a BTreeSet as an ascending list of keys, without the length information.
serial_vector_no_length
Write a slice of elements, without including length information. This is intended to be used either when the length is statically known, or when the length is serialized independently as part of a bigger structure.
to_bytes
Serialize the given value to a freshly allocated vector of bytes using the provided Serial instance.

Type Aliases§

AccountThreshold
The minimum number of credentials that need to sign any transaction coming from an associated account.
ContractIndex
Contract address index. A contract address consists of an index and a subindex. This type is for the index.
ContractSubIndex
Contract address subindex. A contract address consists of an index and a subindex. This type is for the subindex.
HashMap
Reexport of the HashMap from hashbrown with the default hasher set to the fnv hash function.
HashSet
Reexport of the HashSet from hashbrown with the default hasher set to the fnv hash function.
IdentityProvider
Index of the identity provider on the chain. An identity provider with the given index will not be replaced, so this is a stable identifier.
OwnedPolicy
A policy with a vector of attributes, fully allocated and owned. This is in contrast to a policy which is lazily read from a read source. The latter is useful for efficiency, this type is more useful for testing since the values are easier to construct.
ParseResult
A type alias used to indicate that the value is a result of parsing from binary via the Serial instance.
SignatureThreshold
The minimum number of signatures on a credential that need to sign any transaction coming from an associated account.
SlotTime
Time at the beginning of the current slot, in miliseconds since unix epoch.

Derive Macros§

Deserial
Derive the Deserial trait. See the documentation of derive(Serial) for details and limitations.
Serial
Derive the Serial trait for the type.
Serialize
A helper macro to derive both the Serial and Deserial traits. [derive(Serialize)] is equivalent to [derive(Serial, Deserial)], see documentation of the latter two for details and options: derive(Serial), derive(Deserial).