Polkadot Apps
    Preparing search index...

    Interface BalanceApi

    Minimal structural type for a PAPI typed API with System.Account.

    Structural so it works with any chain that has the System pallet, without importing chain-specific descriptors.

    interface BalanceApi {
        query: {
            System: {
                Account: {
                    getValue(
                        address: string,
                    ): Promise<{ data: { free: bigint; frozen: bigint; reserved: bigint } }>;
                };
            };
        };
    }
    Index

    Properties

    Properties

    query: {
        System: {
            Account: {
                getValue(
                    address: string,
                ): Promise<{ data: { free: bigint; frozen: bigint; reserved: bigint } }>;
            };
        };
    }