interface GenesisArtifact {
    balances: [[address: string, amount: string]];
    hash: string;
    mutables: GenesisMutableProperties;
    number: number;
    previous_block_hash: string;
    previous_genesis_hash: string;
    properties: GenesisImmutableProperties;
    signature: string;
    timestamp: number;
}

Properties

balances: [[address: string, amount: string]]
hash: string
number: number
previous_block_hash: string
previous_genesis_hash: string
signature: string
timestamp: number