/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { UserCoinsResponse } from '../models'; export interface GetWalletCoinsRequest { walletId: string; offset?: number; limit?: number; } /** * */ export declare class WalletApi extends runtime.BaseAPI { /** * @hidden * Gets a list of the coins held by a wallet address and their balances */ getWalletCoinsRaw(params: GetWalletCoinsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Gets a list of the coins held by a wallet address and their balances */ getWalletCoins(params: GetWalletCoinsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }