mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-25 15:19:58 -07:00
10 lines
162 B
Rust
10 lines
162 B
Rust
use allocative::Allocative;
|
|
|
|
#[derive(Default, Allocative, Clone, Copy)]
|
|
pub enum AddressLiquidity {
|
|
#[default]
|
|
Illiquid,
|
|
Liquid,
|
|
HighlyLiquid,
|
|
}
|