Type alias AccountBalancesQuery

AccountBalancesQuery: {
    __typename?: "Query";
    accountBalances: {
        __typename?: "AccountBalance";
        account: {
            __typename?: "Account";
            accountId: string;
            id: string;
            marketId?: number | null;
            poolId?: number | null;
        };
        assetId: string;
        balance: any;
        id: string;
    }[];
}

Type declaration

  • Optional __typename?: "Query"
  • accountBalances: {
        __typename?: "AccountBalance";
        account: {
            __typename?: "Account";
            accountId: string;
            id: string;
            marketId?: number | null;
            poolId?: number | null;
        };
        assetId: string;
        balance: any;
        id: string;
    }[]

Generated using TypeDoc