/** * 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. */ /** * Reward pool for the coin * @export * @interface RewardPool */ export interface RewardPool { /** * Reward pool contract address * @type {string} * @memberof RewardPool */ address?: string; /** * Reward pool balance * @type {number} * @memberof RewardPool */ balance?: number; } /** * Check if a given object implements the RewardPool interface. */ export declare function instanceOfRewardPool(value: object): value is RewardPool; export declare function RewardPoolFromJSON(json: any): RewardPool; export declare function RewardPoolFromJSONTyped(json: any, ignoreDiscriminator: boolean): RewardPool; export declare function RewardPoolToJSON(value?: RewardPool | null): any;