UNPKG

cardano-wallet-js

Version:

javascript/typescript client for the official cardano-wallet api

84 lines (81 loc) 2.27 kB
/* tslint:disable */ /* eslint-disable */ /** * Cardano Wallet Backend API * <p align=\"right\"><img style=\"position: relative; top: -10em; margin-bottom: -12em;\" width=\"20%\" src=\"https://cardanodocs.com/img/cardano.png\"></img></p> * * 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. */ import { ApiNetworkParametersActiveSlotCoefficient, ApiNetworkParametersEpochLength, ApiNetworkParametersEras, ApiNetworkParametersSlotLength, WalletsTipHeight, WalletswalletIdpaymentfeesAmount } from "."; /** * * @export * @interface ApiNetworkParameters */ export interface ApiNetworkParameters { /** * The hash of genesis block * @type {string} * @memberof ApiNetworkParameters */ genesis_block_hash: any; /** * * @type {string} * @memberof ApiNetworkParameters */ blockchain_start_time: any; /** * * @type {ApiNetworkParametersSlotLength} * @memberof ApiNetworkParameters */ slot_length: ApiNetworkParametersSlotLength; /** * * @type {ApiNetworkParametersEpochLength} * @memberof ApiNetworkParameters */ epoch_length: ApiNetworkParametersEpochLength; /** * * @type {WalletsTipHeight} * @memberof ApiNetworkParameters */ security_parameter: WalletsTipHeight; /** * * @type {ApiNetworkParametersActiveSlotCoefficient} * @memberof ApiNetworkParameters */ active_slot_coefficient: ApiNetworkParametersActiveSlotCoefficient; /** * * @type {ApiNetworkParametersActiveSlotCoefficient} * @memberof ApiNetworkParameters */ decentralization_level: ApiNetworkParametersActiveSlotCoefficient; /** * * @type {number} * @memberof ApiNetworkParameters */ desired_pool_number: any; /** * * @type {WalletswalletIdpaymentfeesAmount} * @memberof ApiNetworkParameters */ minimum_utxo_value: WalletswalletIdpaymentfeesAmount; /** * * @type {ApiNetworkParametersEras} * @memberof ApiNetworkParameters */ eras: ApiNetworkParametersEras; }