Type Alias Amount1

Source
pub type Amount1 = Either<Confidential1, ExplicitAmount>;
Expand description

Amount of units of an Elements asset (confidential or explicit).

Aliased Type§

enum Amount1 {
    Left((u1, u256)),
    Right(u64),
}

Variants§

§

Left((u1, u256))

A value of type L.

§

Right(u64)

A value of type R.