Expand description
The ink! intermediate representation (IR) and abstractions.
This module defines everything the ink! procedural macro needs in order to parse, analyze and generate code for ink! smart contracts.
The entry point for every ink! smart contract is the
Contract
with its Config
provided
in the initial invocation at #[ink::contract(... configuration ...)]
.
The ink! IR tries to stay close to the original Rust syntactic structure.
All ink! definitions of an ink! smart contract are always defined within
a so-called Rust inline module (mod my_module { ... items ... }
).
Therefore all ink! definition are found and accessed using the
ItemMod
data structure.
Modules§
- ast
- Types and abstractions for ink! definitions that require custom syntax.
- marker
- Marker types and definitions.
- utils
Macros§
- format_
err - Creates a
syn::Error
with the format message and infers theSpan
usingSpanned
. - format_
err_ spanned - Creates a
syn::Error
with the format message and infers theSpan
usingToTokens
.
Structs§
- Blake2x256
Macro - Computes the BLAKE2b-256 bit hash of a string or byte string literal.
- Callable
With Selector - Wrapper for a callable that adds its composed selector.
- Chain
Extension - An ink! chain extension.
- Chain
Extension Method - An ink! chain extension method.
- Config
- The ink! configuration.
- Constructor
- An ink! constructor definition.
- Contract
- An ink! contract definition consisting of the ink! configuration and module.
- Event
- A checked ink! event with its configuration.
- Extension
Id - The unique ID of an chain extension.
- InkItem
Trait - A checked ink! trait definition without its configuration.
- InkTest
- The ink! test with all required information.
- InkTrait
Definition - A checked ink! trait definition without its configuration.
- InkTrait
Message - A checked ink! message of an ink! trait definition.
- Inputs
Iter - Iterator over the input parameters of an ink! message or constructor.
- Item
Impl - An ink! implementation block.
- ItemMod
- The ink! module.
- Iter
Constructors - Iterator yielding all ink! constructor within a source ink!
ir::ItemImpl
. - Iter
Events - Iterator yielding all ink! event definitions within the ink!
ItemMod
. - Iter
InkTrait Items - Iterator over all the ink! trait items of an ink! trait definition.
- Iter
Item Impls - Iterator yielding all ink! implementation block definitions within the ink!
ItemMod
. - Iter
Messages - Iterator yielding all ink! messages within a source ink!
ir::ItemImpl
. - Message
- An ink! message definition.
- Namespace
- An ink! namespace applicable to a trait implementation block.
- Selector
- The selector of an ink! dispatchable.
- Selector
Macro - The selector ID of an ink! dispatchable.
- Signature
Topic Arg - The signature topic argument of an event variant.
- Storage
- An ink! storage struct definition.
- Storage
Item - A checked ink! storage item with its configuration.
Enums§
- Abi
- ABI spec for encoding/decoding contract calls.
- Callable
Kind - The kind of externally callable smart contract entity.
- Impl
Item - An item within an ink! implementation block.
- InkItem
- An ink! specific item.
- InkTrait
Item - An ink! item within an ink! trait definition.
- Item
- An item in the root of the ink! module (
ir::ItemMod
). - Receiver
- The receiver of an ink! message.
- Visibility
- The visibility of an ink! message or constructor.
Traits§
- Callable
- An ink! callable.
- HexLiteral
- Used to convert literal values into their hex representations for code generation.
- IsDoc
Attribute - An extension trait for
syn::Attribute
in order to query for documentation.
Functions§
- blake2b_
256 - Computes the BLAKE-2b 256-bit hash for the given input and stores it in output.