interface Pool {
    scaling_factor: bigint;
    shareholders: string[];
    shareholders_limit: bigint;
    shares: SimpleMap<string, bigint>;
    total_coins: bigint;
    total_shares: bigint;
}

Properties

scaling_factor: bigint
shareholders: string[]
shareholders_limit: bigint
shares: SimpleMap<string, bigint>
total_coins: bigint
total_shares: bigint