avalanche-types 0.1.5

Avalanche primitive types in Rust
Documentation
1
2
3
4
5
6
7
8
9
//! Avalanche platformvm utilities.
pub mod txs;

use crate::ids;

/// ref. <https://pkg.go.dev/github.com/ava-labs/avalanchego/utils/constants#pkg-variables>
pub fn chain_id() -> ids::Id {
    ids::Id::empty()
}