Keeta LogoKeeta Logo@keetanetwork/keetanet-client
    Preparing search index...

    Interface InitialConfigSupply

    interface InitialConfigSupply {
        addSupply: {
            amount: bigint;
            delegate: boolean;
            delegateTo?: Account<KeyPairKeyAlgorithm>;
            recipient: Account;
        };
        baseNetworkInfo?: Partial<
            Pick<
                NetworkAccountInfo,
                "name"
                | "description"
                | "defaultPermission"
                | "metadata",
            >,
        >;
        baseTokenInfo?: BaseTokenInfo;
        initialTrustedAccount: Account;
        network: bigint;
        voteSerial?: bigint;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addSupply: {
        amount: bigint;
        delegate: boolean;
        delegateTo?: Account<KeyPairKeyAlgorithm>;
        recipient: Account;
    }
    baseNetworkInfo?: Partial<
        Pick<
            NetworkAccountInfo,
            "name"
            | "description"
            | "defaultPermission"
            | "metadata",
        >,
    >
    baseTokenInfo?: BaseTokenInfo
    initialTrustedAccount: Account
    network: bigint
    voteSerial?: bigint