/** * Cardano Wallet Backend API *
* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * Estimated cost set by the pool operator when registering his pool. This fixed cost is taken from each reward earned by the pool before splitting rewards between stakeholders. May be omitted if the wallet hasn't found the pool's registration cerificate yet. * @export * @interface StakepoolsCost */ export interface StakepoolsCost { /** * * @type {number} * @memberof StakepoolsCost */ quantity: any; /** * * @type {string} * @memberof StakepoolsCost */ unit: StakepoolsCostUnitEnum; } /** * @export * @enum {string} */ export declare enum StakepoolsCostUnitEnum { Lovelace = "lovelace" }