pub struct AssetParams {
    pub ticker: String,
    pub unit_of_accounting: String,
    pub indivisible_unit: String,
    pub divisibility: u64,
    pub asset_id: AssetId,
    pub asset_system: AssetSystem,
}
Expand description

Parameters for a given asset, which are shared between different types of Layer 1, 2 and 3 assets.

Fields

ticker: String

Short asset name, or ticker, like BTC for bitcoin. Case-sensitive with default use of uppercase.

unit_of_accounting: String

Full name for a given asset as a unit of accounting, for instance “Bitcoin”. Also case-sensitive.

indivisible_unit: String

Full name for the smallest indivisible unit, like “satoshi” for Bitcoin network

divisibility: u64

Number of smallest indivisible units inside the unit of accounting

asset_id: AssetId

Identifier of the asset; for native chain assets matches to the genesis block hash of the chain itself (i.e. ChainParams::genesis_hash), for other assets are specific to a given asset system: for confidential assets this is an AssetId, for RGB – hash of asset genesis transition, i.e. ContractId.

asset_system: AssetSystem

AssetSystem in which asset is defined

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Decode with the given std::io::Read instance; must either construct an instance or return implementation-specific error type. Read more

Tries to deserialize byte array into the current type using StrictDecode::strict_decode. If there are some data remains in the buffer once deserialization is completed, fails with Error::DataNotEntirelyConsumed. Use io::Cursor over the buffer and StrictDecode::strict_decode to avoid such failures. Read more

Reads data from file at path and reconstructs object from it. Fails with Error::DataNotEntirelyConsumed if file contains remaining data after the object reconstruction. Read more

Encode with the given std::io::Write instance; must return result with either amount of bytes encoded – or implementation-specific error type. Read more

Serializes data as a byte array using StrictEncode::strict_encode function Read more

Saves data to a file at a given path. If the file does not exists, attempts to create the file. If the file already exists, it gets truncated. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.