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

    Interface InitialConfigSupply

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

    Hierarchy (View Summary)

    Index

    Properties

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