@cobo/cobo-waas2 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -2
- package/dist/ApiClient.js +56 -6
- package/dist/api/DevelopersWebhooksApi.js +2 -2
- package/dist/api/StakingsApi.js +91 -7
- package/dist/api/TransactionsApi.js +4 -4
- package/dist/crypto/Ed25519Signer.js +36 -0
- package/dist/crypto/Secp256k1Signer.js +36 -0
- package/dist/index.js +70 -7
- package/dist/model/Activity.js +4 -8
- package/dist/model/ActivityAction.js +20 -0
- package/dist/model/ActivityType.js +5 -0
- package/dist/model/AutoFuelType.js +61 -0
- package/dist/model/BabylonValidator.js +4 -12
- package/dist/model/ContractCallParams.js +9 -0
- package/dist/model/CoreStakeExtra.js +170 -0
- package/dist/model/CoreStakingExtra.js +187 -0
- package/dist/model/CreateClaimActivity.js +139 -0
- package/dist/model/CreateClaimActivityRequest.js +182 -0
- package/dist/model/CreateStakeActivity.js +4 -8
- package/dist/model/CreateStakeActivityExtra.js +60 -8
- package/dist/model/CreateStakeActivityRequest.js +5 -10
- package/dist/model/CreateWithdrawActivity.js +0 -13
- package/dist/model/CreateWithdrawActivityRequest.js +0 -18
- package/dist/model/EstimateClaimFee.js +145 -0
- package/dist/model/EstimateContractCallFeeParams.js +2 -2
- package/dist/model/EstimateFeeParams.js +1 -1
- package/dist/model/EstimateStakeFee.js +5 -10
- package/dist/model/EstimateWithdrawFee.js +0 -18
- package/dist/model/EstimatedFee.js +1 -1
- package/dist/model/EstimatedFixedFee.js +4 -4
- package/dist/model/EstimatedUtxoFeeSlow.js +3 -3
- package/dist/model/EthStakingExtra.js +31 -0
- package/dist/model/EthStakingExtraAllOfBeaconValidators.js +140 -0
- package/dist/model/FeeAmount.js +1 -1
- package/dist/model/FeeRate.js +1 -1
- package/dist/model/FixedFeeRate.js +2 -2
- package/dist/model/GetStakingEstimationFeeRequest.js +39 -17
- package/dist/model/MPCProject.js +4 -4
- package/dist/model/MpcTransferSource.js +1 -1
- package/dist/model/Pagination.js +2 -2
- package/dist/model/StakingPoolId.js +81 -0
- package/dist/model/StakingPoolType.js +5 -0
- package/dist/model/Stakings.js +10 -14
- package/dist/model/StakingsExtra.js +67 -8
- package/dist/model/TransactionRbf.js +9 -0
- package/dist/model/TransactionRbfSource.js +1 -1
- package/dist/model/TransactionRequestEvmEip1559Fee.js +1 -1
- package/dist/model/TransactionRequestEvmLegacyFee.js +1 -1
- package/dist/model/TransactionRequestFixedFee.js +1 -1
- package/dist/model/TransactionRequestUtxoFee.js +1 -1
- package/dist/model/TransferParams.js +9 -0
- package/docs/Activity.md +1 -1
- package/docs/ActivityAction.md +8 -0
- package/docs/ActivityType.md +2 -0
- package/docs/AutoFuelType.md +12 -0
- package/docs/BabylonValidator.md +4 -4
- package/docs/ContractCallParams.md +1 -0
- package/docs/CoreStakeExtra.md +13 -0
- package/docs/CoreStakingExtra.md +14 -0
- package/docs/CreateClaimActivity.md +11 -0
- package/docs/CreateClaimActivityRequest.md +12 -0
- package/docs/CreateStakeActivity.md +1 -1
- package/docs/CreateStakeActivityExtra.md +4 -0
- package/docs/CreateStakeActivityRequest.md +1 -1
- package/docs/CreateWithdrawActivity.md +0 -1
- package/docs/CreateWithdrawActivityRequest.md +0 -1
- package/docs/DevelopersWebhooksApi.md +1 -1
- package/docs/EstimateClaimFee.md +11 -0
- package/docs/EstimateContractCallFeeParams.md +1 -1
- package/docs/EstimateFeeParams.md +1 -1
- package/docs/EstimateStakeFee.md +1 -1
- package/docs/EstimateWithdrawFee.md +0 -1
- package/docs/EstimatedFee.md +1 -1
- package/docs/EstimatedFixedFee.md +1 -1
- package/docs/EstimatedUtxoFeeSlow.md +1 -1
- package/docs/EthStakingExtra.md +1 -0
- package/docs/EthStakingExtraAllOfBeaconValidators.md +14 -0
- package/docs/FeeAmount.md +1 -1
- package/docs/FeeRate.md +1 -1
- package/docs/FixedFeeRate.md +1 -1
- package/docs/GetStakingEstimationFeeRequest.md +2 -3
- package/docs/MPCProject.md +1 -1
- package/docs/MpcTransferSource.md +1 -1
- package/docs/Pagination.md +1 -1
- package/docs/PoolDetailsAllOfValidatorsInfo.md +4 -4
- package/docs/StakingPoolId.md +20 -0
- package/docs/StakingPoolType.md +2 -0
- package/docs/Stakings.md +2 -2
- package/docs/StakingsApi.md +108 -2
- package/docs/StakingsExtra.md +5 -0
- package/docs/TransactionRbf.md +1 -0
- package/docs/TransactionRbfSource.md +1 -1
- package/docs/TransactionsApi.md +2 -2
- package/docs/TransferParams.md +1 -0
- package/package.json +3 -2
- package/dist/model/StakingsValidatorInfo.js +0 -140
- package/docs/StakingsValidatorInfo.md +0 -13
|
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
8
|
var _BaseStakeExtra = _interopRequireDefault(require("./BaseStakeExtra"));
|
|
9
|
+
var _EthStakingExtraAllOfBeaconValidators = _interopRequireDefault(require("./EthStakingExtraAllOfBeaconValidators"));
|
|
9
10
|
var _StakingPoolType = _interopRequireDefault(require("./StakingPoolType"));
|
|
10
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
11
12
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -75,6 +76,9 @@ var EthStakingExtra = /*#__PURE__*/function () {
|
|
|
75
76
|
if (data.hasOwnProperty('pos_chain')) {
|
|
76
77
|
obj['pos_chain'] = _ApiClient["default"].convertToType(data['pos_chain'], 'String');
|
|
77
78
|
}
|
|
79
|
+
if (data.hasOwnProperty('beacon_validators')) {
|
|
80
|
+
obj['beacon_validators'] = _ApiClient["default"].convertToType(data['beacon_validators'], [_EthStakingExtraAllOfBeaconValidators["default"]]);
|
|
81
|
+
}
|
|
78
82
|
}
|
|
79
83
|
return obj;
|
|
80
84
|
}
|
|
@@ -106,6 +110,27 @@ var EthStakingExtra = /*#__PURE__*/function () {
|
|
|
106
110
|
if (data['pos_chain'] && !(typeof data['pos_chain'] === 'string' || data['pos_chain'] instanceof String)) {
|
|
107
111
|
throw new Error("Expected the field `pos_chain` to be a primitive type in the JSON string but got " + data['pos_chain']);
|
|
108
112
|
}
|
|
113
|
+
if (data['beacon_validators']) {
|
|
114
|
+
// data not null
|
|
115
|
+
// ensure the json data is an array
|
|
116
|
+
if (!Array.isArray(data['beacon_validators'])) {
|
|
117
|
+
throw new Error("Expected the field `beacon_validators` to be an array in the JSON data but got " + data['beacon_validators']);
|
|
118
|
+
}
|
|
119
|
+
// validate the optional field `beacon_validators` (array)
|
|
120
|
+
var _iterator2 = _createForOfIteratorHelper(data['beacon_validators']),
|
|
121
|
+
_step2;
|
|
122
|
+
try {
|
|
123
|
+
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
124
|
+
var item = _step2.value;
|
|
125
|
+
_EthStakingExtraAllOfBeaconValidators["default"].validateJSON(item);
|
|
126
|
+
}
|
|
127
|
+
} catch (err) {
|
|
128
|
+
_iterator2.e(err);
|
|
129
|
+
} finally {
|
|
130
|
+
_iterator2.f();
|
|
131
|
+
}
|
|
132
|
+
;
|
|
133
|
+
}
|
|
109
134
|
return true;
|
|
110
135
|
}
|
|
111
136
|
}]);
|
|
@@ -123,6 +148,12 @@ EthStakingExtra.prototype['pool_type'] = undefined;
|
|
|
123
148
|
*/
|
|
124
149
|
EthStakingExtra.prototype['pos_chain'] = undefined;
|
|
125
150
|
|
|
151
|
+
/**
|
|
152
|
+
* The list of validator information.
|
|
153
|
+
* @member {Array.<module:model/EthStakingExtraAllOfBeaconValidators>} beacon_validators
|
|
154
|
+
*/
|
|
155
|
+
EthStakingExtra.prototype['beacon_validators'] = undefined;
|
|
156
|
+
|
|
126
157
|
// Implement BaseStakeExtra interface:
|
|
127
158
|
/**
|
|
128
159
|
* @member {module:model/StakingPoolType} pool_type
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _AmountStatus = _interopRequireDefault(require("./AmountStatus"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
12
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
13
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* Cobo Wallet as a Service 2.0
|
|
17
|
+
*
|
|
18
|
+
* Contact: help@cobo.com
|
|
19
|
+
*
|
|
20
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
21
|
+
* https://openapi-generator.tech
|
|
22
|
+
* Do not edit the class manually.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
/**
|
|
26
|
+
* The EthStakingExtraAllOfBeaconValidators model module.
|
|
27
|
+
* @module model/EthStakingExtraAllOfBeaconValidators
|
|
28
|
+
*/
|
|
29
|
+
var EthStakingExtraAllOfBeaconValidators = /*#__PURE__*/function () {
|
|
30
|
+
/**
|
|
31
|
+
* Constructs a new <code>EthStakingExtraAllOfBeaconValidators</code>.
|
|
32
|
+
* @alias module:model/EthStakingExtraAllOfBeaconValidators
|
|
33
|
+
*/
|
|
34
|
+
function EthStakingExtraAllOfBeaconValidators() {
|
|
35
|
+
_classCallCheck(this, EthStakingExtraAllOfBeaconValidators);
|
|
36
|
+
EthStakingExtraAllOfBeaconValidators.initialize(this);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Initializes the fields of this object.
|
|
41
|
+
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
|
|
42
|
+
* Only for internal use.
|
|
43
|
+
*/
|
|
44
|
+
return _createClass(EthStakingExtraAllOfBeaconValidators, null, [{
|
|
45
|
+
key: "initialize",
|
|
46
|
+
value: function initialize(obj) {}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Constructs a <code>EthStakingExtraAllOfBeaconValidators</code> from a plain JavaScript object, optionally creating a new instance.
|
|
50
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
51
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
52
|
+
* @param {module:model/EthStakingExtraAllOfBeaconValidators} obj Optional instance to populate.
|
|
53
|
+
* @return {module:model/EthStakingExtraAllOfBeaconValidators} The populated <code>EthStakingExtraAllOfBeaconValidators</code> instance.
|
|
54
|
+
*/
|
|
55
|
+
}, {
|
|
56
|
+
key: "constructFromObject",
|
|
57
|
+
value: function constructFromObject(data, obj) {
|
|
58
|
+
if (data) {
|
|
59
|
+
obj = obj || new EthStakingExtraAllOfBeaconValidators();
|
|
60
|
+
if (data.hasOwnProperty('pubkey')) {
|
|
61
|
+
obj['pubkey'] = _ApiClient["default"].convertToType(data['pubkey'], 'String');
|
|
62
|
+
}
|
|
63
|
+
if (data.hasOwnProperty('status')) {
|
|
64
|
+
obj['status'] = _AmountStatus["default"].constructFromObject(data['status']);
|
|
65
|
+
}
|
|
66
|
+
if (data.hasOwnProperty('apy')) {
|
|
67
|
+
obj['apy'] = _ApiClient["default"].convertToType(data['apy'], 'Number');
|
|
68
|
+
}
|
|
69
|
+
if (data.hasOwnProperty('staked_amount')) {
|
|
70
|
+
obj['staked_amount'] = _ApiClient["default"].convertToType(data['staked_amount'], 'String');
|
|
71
|
+
}
|
|
72
|
+
if (data.hasOwnProperty('rewards_received')) {
|
|
73
|
+
obj['rewards_received'] = _ApiClient["default"].convertToType(data['rewards_received'], 'String');
|
|
74
|
+
}
|
|
75
|
+
if (data.hasOwnProperty('updated_timestamp')) {
|
|
76
|
+
obj['updated_timestamp'] = _ApiClient["default"].convertToType(data['updated_timestamp'], 'Number');
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return obj;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Validates the JSON data with respect to <code>EthStakingExtraAllOfBeaconValidators</code>.
|
|
84
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
85
|
+
* @return {boolean} to indicate whether the JSON data is valid with respect to <code>EthStakingExtraAllOfBeaconValidators</code>.
|
|
86
|
+
*/
|
|
87
|
+
}, {
|
|
88
|
+
key: "validateJSON",
|
|
89
|
+
value: function validateJSON(data) {
|
|
90
|
+
// ensure the json data is a string
|
|
91
|
+
if (data['pubkey'] && !(typeof data['pubkey'] === 'string' || data['pubkey'] instanceof String)) {
|
|
92
|
+
throw new Error("Expected the field `pubkey` to be a primitive type in the JSON string but got " + data['pubkey']);
|
|
93
|
+
}
|
|
94
|
+
// ensure the json data is a string
|
|
95
|
+
if (data['staked_amount'] && !(typeof data['staked_amount'] === 'string' || data['staked_amount'] instanceof String)) {
|
|
96
|
+
throw new Error("Expected the field `staked_amount` to be a primitive type in the JSON string but got " + data['staked_amount']);
|
|
97
|
+
}
|
|
98
|
+
// ensure the json data is a string
|
|
99
|
+
if (data['rewards_received'] && !(typeof data['rewards_received'] === 'string' || data['rewards_received'] instanceof String)) {
|
|
100
|
+
throw new Error("Expected the field `rewards_received` to be a primitive type in the JSON string but got " + data['rewards_received']);
|
|
101
|
+
}
|
|
102
|
+
return true;
|
|
103
|
+
}
|
|
104
|
+
}]);
|
|
105
|
+
}();
|
|
106
|
+
/**
|
|
107
|
+
* The public key of the validator.
|
|
108
|
+
* @member {String} pubkey
|
|
109
|
+
*/
|
|
110
|
+
EthStakingExtraAllOfBeaconValidators.prototype['pubkey'] = undefined;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* @member {module:model/AmountStatus} status
|
|
114
|
+
*/
|
|
115
|
+
EthStakingExtraAllOfBeaconValidators.prototype['status'] = undefined;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* The annual percentage yield (APY) of the validator.
|
|
119
|
+
* @member {Number} apy
|
|
120
|
+
*/
|
|
121
|
+
EthStakingExtraAllOfBeaconValidators.prototype['apy'] = undefined;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* The staked amount.
|
|
125
|
+
* @member {String} staked_amount
|
|
126
|
+
*/
|
|
127
|
+
EthStakingExtraAllOfBeaconValidators.prototype['staked_amount'] = undefined;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* The rewards received.
|
|
131
|
+
* @member {String} rewards_received
|
|
132
|
+
*/
|
|
133
|
+
EthStakingExtraAllOfBeaconValidators.prototype['rewards_received'] = undefined;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* The time when the validator's status was last updated, in Unix timestamp format and measured in milliseconds.
|
|
137
|
+
* @member {Number} updated_timestamp
|
|
138
|
+
*/
|
|
139
|
+
EthStakingExtraAllOfBeaconValidators.prototype['updated_timestamp'] = undefined;
|
|
140
|
+
var _default = exports["default"] = EthStakingExtraAllOfBeaconValidators;
|
package/dist/model/FeeAmount.js
CHANGED
|
@@ -81,7 +81,7 @@ var FeeAmount = /*#__PURE__*/function () {
|
|
|
81
81
|
}]);
|
|
82
82
|
}();
|
|
83
83
|
/**
|
|
84
|
-
* The fee that you need to pay for the transaction.
|
|
84
|
+
* The transaction fee that you need to pay for the transaction.
|
|
85
85
|
* @member {String} fee_amount
|
|
86
86
|
*/
|
|
87
87
|
FeeAmount.prototype['fee_amount'] = undefined;
|
package/dist/model/FeeRate.js
CHANGED
|
@@ -241,7 +241,7 @@ FeeRate.prototype['fee_type'] = undefined;
|
|
|
241
241
|
FeeRate.prototype['token_id'] = undefined;
|
|
242
242
|
|
|
243
243
|
/**
|
|
244
|
-
* The fee that you need to pay for the transaction.
|
|
244
|
+
* The transaction fee that you need to pay for the transaction.
|
|
245
245
|
* @member {String} fee_amount
|
|
246
246
|
*/
|
|
247
247
|
FeeRate.prototype['fee_amount'] = undefined;
|
|
@@ -121,7 +121,7 @@ var FixedFeeRate = /*#__PURE__*/function () {
|
|
|
121
121
|
FixedFeeRate.RequiredProperties = ["fee_type", "token_id"];
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
|
-
* The fee that you need to pay for the transaction.
|
|
124
|
+
* The transaction fee that you need to pay for the transaction.
|
|
125
125
|
* @member {String} fee_amount
|
|
126
126
|
*/
|
|
127
127
|
FixedFeeRate.prototype['fee_amount'] = undefined;
|
|
@@ -139,7 +139,7 @@ FixedFeeRate.prototype['token_id'] = undefined;
|
|
|
139
139
|
|
|
140
140
|
// Implement FeeAmount interface:
|
|
141
141
|
/**
|
|
142
|
-
* The fee that you need to pay for the transaction.
|
|
142
|
+
* The transaction fee that you need to pay for the transaction.
|
|
143
143
|
* @member {String} fee_amount
|
|
144
144
|
*/
|
|
145
145
|
_FeeAmount["default"].prototype['fee_amount'] = undefined;
|
|
@@ -7,9 +7,11 @@ exports["default"] = void 0;
|
|
|
7
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
8
|
var _ActivityType = _interopRequireDefault(require("./ActivityType"));
|
|
9
9
|
var _CreateUnstakeActivityExtra = _interopRequireDefault(require("./CreateUnstakeActivityExtra"));
|
|
10
|
+
var _EstimateClaimFee = _interopRequireDefault(require("./EstimateClaimFee"));
|
|
10
11
|
var _EstimateStakeFee = _interopRequireDefault(require("./EstimateStakeFee"));
|
|
11
12
|
var _EstimateUnstakeFee = _interopRequireDefault(require("./EstimateUnstakeFee"));
|
|
12
13
|
var _EstimateWithdrawFee = _interopRequireDefault(require("./EstimateWithdrawFee"));
|
|
14
|
+
var _StakingPoolId = _interopRequireDefault(require("./StakingPoolId"));
|
|
13
15
|
var _StakingSource = _interopRequireDefault(require("./StakingSource"));
|
|
14
16
|
var _TransactionRequestFee = _interopRequireDefault(require("./TransactionRequestFee"));
|
|
15
17
|
var _GetStakingEstimationFeeRequest;
|
|
@@ -38,7 +40,7 @@ var GetStakingEstimationFeeRequest = /*#__PURE__*/function () {
|
|
|
38
40
|
/**
|
|
39
41
|
* Constructs a new <code>GetStakingEstimationFeeRequest</code>.
|
|
40
42
|
* @alias module:model/GetStakingEstimationFeeRequest
|
|
41
|
-
* @param {(module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} instance The actual instance to initialize GetStakingEstimationFeeRequest.
|
|
43
|
+
* @param {(module:model/EstimateClaimFee|module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} instance The actual instance to initialize GetStakingEstimationFeeRequest.
|
|
42
44
|
*/
|
|
43
45
|
function GetStakingEstimationFeeRequest() {
|
|
44
46
|
var instance = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
|
|
@@ -59,6 +61,10 @@ var GetStakingEstimationFeeRequest = /*#__PURE__*/function () {
|
|
|
59
61
|
var discriminatorValue = instance["activity_type"];
|
|
60
62
|
if (discriminatorValue) {
|
|
61
63
|
switch (discriminatorValue) {
|
|
64
|
+
case "Claim":
|
|
65
|
+
this.actualInstance = _EstimateClaimFee["default"].constructFromObject(instance);
|
|
66
|
+
match++;
|
|
67
|
+
break;
|
|
62
68
|
case "Stake":
|
|
63
69
|
this.actualInstance = _EstimateStakeFee["default"].constructFromObject(instance);
|
|
64
70
|
match++;
|
|
@@ -146,13 +152,36 @@ var GetStakingEstimationFeeRequest = /*#__PURE__*/function () {
|
|
|
146
152
|
// json data failed to deserialize into EstimateWithdrawFee
|
|
147
153
|
errorMessages.push("Failed to construct EstimateWithdrawFee: " + err);
|
|
148
154
|
}
|
|
155
|
+
try {
|
|
156
|
+
if (instance instanceof _EstimateClaimFee["default"]) {
|
|
157
|
+
this.actualInstance = instance;
|
|
158
|
+
} else if (!!_EstimateClaimFee["default"].validateJSON && _EstimateClaimFee["default"].validateJSON(instance)) {
|
|
159
|
+
// plain JS object
|
|
160
|
+
// create EstimateClaimFee from JS object
|
|
161
|
+
this.actualInstance = _EstimateClaimFee["default"].constructFromObject(instance);
|
|
162
|
+
} else {
|
|
163
|
+
if (_EstimateClaimFee["default"].constructFromObject(instance)) {
|
|
164
|
+
if (!!_EstimateClaimFee["default"].constructFromObject(instance).toJSON) {
|
|
165
|
+
if (_EstimateClaimFee["default"].constructFromObject(instance).toJSON()) {
|
|
166
|
+
this.actualInstance = _EstimateClaimFee["default"].constructFromObject(instance);
|
|
167
|
+
}
|
|
168
|
+
} else {
|
|
169
|
+
this.actualInstance = _EstimateClaimFee["default"].constructFromObject(instance);
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
match++;
|
|
174
|
+
} catch (err) {
|
|
175
|
+
// json data failed to deserialize into EstimateClaimFee
|
|
176
|
+
errorMessages.push("Failed to construct EstimateClaimFee: " + err);
|
|
177
|
+
}
|
|
149
178
|
|
|
150
179
|
// if (match > 1) {
|
|
151
|
-
// throw new Error("Multiple matches found constructing `GetStakingEstimationFeeRequest` with oneOf schemas EstimateStakeFee, EstimateUnstakeFee, EstimateWithdrawFee. Input: " + JSON.stringify(instance));
|
|
180
|
+
// throw new Error("Multiple matches found constructing `GetStakingEstimationFeeRequest` with oneOf schemas EstimateClaimFee, EstimateStakeFee, EstimateUnstakeFee, EstimateWithdrawFee. Input: " + JSON.stringify(instance));
|
|
152
181
|
// } else
|
|
153
182
|
if (match === 0) {
|
|
154
183
|
// this.actualInstance = null; // clear the actual instance in case there are multiple matches
|
|
155
|
-
// throw new Error("No match found constructing `GetStakingEstimationFeeRequest` with oneOf schemas EstimateStakeFee, EstimateUnstakeFee, EstimateWithdrawFee. Details: " +
|
|
184
|
+
// throw new Error("No match found constructing `GetStakingEstimationFeeRequest` with oneOf schemas EstimateClaimFee, EstimateStakeFee, EstimateUnstakeFee, EstimateWithdrawFee. Details: " +
|
|
156
185
|
// errorMessages.join(", "));
|
|
157
186
|
return;
|
|
158
187
|
} else {// only 1 match
|
|
@@ -171,16 +200,16 @@ var GetStakingEstimationFeeRequest = /*#__PURE__*/function () {
|
|
|
171
200
|
key: "getActualInstance",
|
|
172
201
|
value:
|
|
173
202
|
/**
|
|
174
|
-
* Gets the actual instance, which can be <code>EstimateStakeFee</code>, <code>EstimateUnstakeFee</code>, <code>EstimateWithdrawFee</code>.
|
|
175
|
-
* @return {(module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} The actual instance.
|
|
203
|
+
* Gets the actual instance, which can be <code>EstimateClaimFee</code>, <code>EstimateStakeFee</code>, <code>EstimateUnstakeFee</code>, <code>EstimateWithdrawFee</code>.
|
|
204
|
+
* @return {(module:model/EstimateClaimFee|module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} The actual instance.
|
|
176
205
|
*/
|
|
177
206
|
function getActualInstance() {
|
|
178
207
|
return this.actualInstance;
|
|
179
208
|
}
|
|
180
209
|
|
|
181
210
|
/**
|
|
182
|
-
* Sets the actual instance, which can be <code>EstimateStakeFee</code>, <code>EstimateUnstakeFee</code>, <code>EstimateWithdrawFee</code>.
|
|
183
|
-
* @param {(module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} obj The actual instance.
|
|
211
|
+
* Sets the actual instance, which can be <code>EstimateClaimFee</code>, <code>EstimateStakeFee</code>, <code>EstimateUnstakeFee</code>, <code>EstimateWithdrawFee</code>.
|
|
212
|
+
* @param {(module:model/EstimateClaimFee|module:model/EstimateStakeFee|module:model/EstimateUnstakeFee|module:model/EstimateWithdrawFee)} obj The actual instance.
|
|
184
213
|
*/
|
|
185
214
|
}, {
|
|
186
215
|
key: "setActualInstance",
|
|
@@ -220,8 +249,7 @@ GetStakingEstimationFeeRequest.prototype['request_id'] = undefined;
|
|
|
220
249
|
GetStakingEstimationFeeRequest.prototype['source'] = undefined;
|
|
221
250
|
|
|
222
251
|
/**
|
|
223
|
-
*
|
|
224
|
-
* @member {String} pool_id
|
|
252
|
+
* @member {module:model/StakingPoolId} pool_id
|
|
225
253
|
*/
|
|
226
254
|
GetStakingEstimationFeeRequest.prototype['pool_id'] = undefined;
|
|
227
255
|
|
|
@@ -242,15 +270,9 @@ GetStakingEstimationFeeRequest.prototype['fee'] = undefined;
|
|
|
242
270
|
GetStakingEstimationFeeRequest.prototype['extra'] = undefined;
|
|
243
271
|
|
|
244
272
|
/**
|
|
245
|
-
* The ID of the
|
|
273
|
+
* The ID of the staking position. You can retrieve a list of staking positions by calling [List staking positions](/v2/api-references/stakings/list-staking-positions).
|
|
246
274
|
* @member {String} staking_id
|
|
247
275
|
*/
|
|
248
276
|
GetStakingEstimationFeeRequest.prototype['staking_id'] = undefined;
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
* The withdrawal address.
|
|
252
|
-
* @member {String} address
|
|
253
|
-
*/
|
|
254
|
-
GetStakingEstimationFeeRequest.prototype['address'] = undefined;
|
|
255
|
-
GetStakingEstimationFeeRequest.OneOf = ["EstimateStakeFee", "EstimateUnstakeFee", "EstimateWithdrawFee"];
|
|
277
|
+
GetStakingEstimationFeeRequest.OneOf = ["EstimateClaimFee", "EstimateStakeFee", "EstimateUnstakeFee", "EstimateWithdrawFee"];
|
|
256
278
|
var _default = exports["default"] = GetStakingEstimationFeeRequest;
|
package/dist/model/MPCProject.js
CHANGED
|
@@ -72,8 +72,8 @@ var MPCProject = /*#__PURE__*/function () {
|
|
|
72
72
|
if (data.hasOwnProperty('threshold')) {
|
|
73
73
|
obj['threshold'] = _ApiClient["default"].convertToType(data['threshold'], 'Number');
|
|
74
74
|
}
|
|
75
|
-
if (data.hasOwnProperty('
|
|
76
|
-
obj['
|
|
75
|
+
if (data.hasOwnProperty('created_timestamp')) {
|
|
76
|
+
obj['created_timestamp'] = _ApiClient["default"].convertToType(data['created_timestamp'], 'Number');
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
return obj;
|
|
@@ -135,7 +135,7 @@ MPCProject.prototype['threshold'] = undefined;
|
|
|
135
135
|
|
|
136
136
|
/**
|
|
137
137
|
* The project's creation time in Unix timestamp format, measured in milliseconds.
|
|
138
|
-
* @member {Number}
|
|
138
|
+
* @member {Number} created_timestamp
|
|
139
139
|
*/
|
|
140
|
-
MPCProject.prototype['
|
|
140
|
+
MPCProject.prototype['created_timestamp'] = undefined;
|
|
141
141
|
var _default = exports["default"] = MPCProject;
|
|
@@ -177,7 +177,7 @@ MpcTransferSource.prototype['source_type'] = undefined;
|
|
|
177
177
|
MpcTransferSource.prototype['wallet_id'] = undefined;
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
|
-
* The wallet address. If you want to specify the UTXOs to be used, please provide the `included_utxos` property. If you specify both the `address` and `included_utxos` properties, the specified included UTXOs must belong to the address. You need to provide either the `address` or `included_utxos` property. If neither property is provided, the transfer will fail.
|
|
180
|
+
* The wallet address. If you want to specify the UTXOs to be used, please provide the `included_utxos` property. If you specify both the `address` and `included_utxos` properties, the specified included UTXOs must belong to the address. It is recommended to specify no more than 100 included UTXOs to ensure optimal transaction processing. You need to provide either the `address` or `included_utxos` property. If neither property is provided, the transfer will fail.
|
|
181
181
|
* @member {String} address
|
|
182
182
|
*/
|
|
183
183
|
MpcTransferSource.prototype['address'] = undefined;
|
package/dist/model/Pagination.js
CHANGED
|
@@ -35,7 +35,7 @@ var Pagination = /*#__PURE__*/function () {
|
|
|
35
35
|
* @alias module:model/Pagination
|
|
36
36
|
* @param before {String} An object ID that serves as a starting point for retrieving data in reverse chronological order for the next request. If this property is empty, it means that you have reached the start of the data records.
|
|
37
37
|
* @param after {String} An object ID that acts as a starting point for retrieving data in chronological order for the next request. If this property is empty, it means that you have reached the end of the data records.
|
|
38
|
-
* @param total_count {Number} The total number of records that match the query,
|
|
38
|
+
* @param total_count {Number} The total number of records that match the query criteria, unaffected by the pagination parameters (`before` , `after`, and `limit`).
|
|
39
39
|
*/
|
|
40
40
|
function Pagination(before, after, total_count) {
|
|
41
41
|
_classCallCheck(this, Pagination);
|
|
@@ -130,7 +130,7 @@ Pagination.prototype['before'] = undefined;
|
|
|
130
130
|
Pagination.prototype['after'] = undefined;
|
|
131
131
|
|
|
132
132
|
/**
|
|
133
|
-
* The total number of records that match the query,
|
|
133
|
+
* The total number of records that match the query criteria, unaffected by the pagination parameters (`before` , `after`, and `limit`).
|
|
134
134
|
* @member {Number} total_count
|
|
135
135
|
*/
|
|
136
136
|
Pagination.prototype['total_count'] = undefined;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
9
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
10
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
11
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
12
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
13
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* Cobo Wallet as a Service 2.0
|
|
17
|
+
*
|
|
18
|
+
* Contact: help@cobo.com
|
|
19
|
+
*
|
|
20
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
21
|
+
* https://openapi-generator.tech
|
|
22
|
+
* Do not edit the class manually.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
/**
|
|
26
|
+
* Enum class StakingPoolId.
|
|
27
|
+
* @enum {}
|
|
28
|
+
* @readonly
|
|
29
|
+
*/
|
|
30
|
+
var StakingPoolId = exports["default"] = /*#__PURE__*/function () {
|
|
31
|
+
function StakingPoolId() {
|
|
32
|
+
_classCallCheck(this, StakingPoolId);
|
|
33
|
+
/**
|
|
34
|
+
* value: "babylon_btc_signet"
|
|
35
|
+
* @const
|
|
36
|
+
*/
|
|
37
|
+
_defineProperty(this, "babylon_btc_signet", "babylon_btc_signet");
|
|
38
|
+
/**
|
|
39
|
+
* value: "babylon_btc"
|
|
40
|
+
* @const
|
|
41
|
+
*/
|
|
42
|
+
_defineProperty(this, "babylon_btc", "babylon_btc");
|
|
43
|
+
/**
|
|
44
|
+
* value: "beacon_eth"
|
|
45
|
+
* @const
|
|
46
|
+
*/
|
|
47
|
+
_defineProperty(this, "beacon_eth", "beacon_eth");
|
|
48
|
+
/**
|
|
49
|
+
* value: "beacon_eth_holesky"
|
|
50
|
+
* @const
|
|
51
|
+
*/
|
|
52
|
+
_defineProperty(this, "beacon_eth_holesky", "beacon_eth_holesky");
|
|
53
|
+
/**
|
|
54
|
+
* value: "core_btc"
|
|
55
|
+
* @const
|
|
56
|
+
*/
|
|
57
|
+
_defineProperty(this, "core_btc", "core_btc");
|
|
58
|
+
/**
|
|
59
|
+
* value: "core_xtn"
|
|
60
|
+
* @const
|
|
61
|
+
*/
|
|
62
|
+
_defineProperty(this, "core_xtn", "core_xtn");
|
|
63
|
+
/**
|
|
64
|
+
* value: "unknown_default_open_api"
|
|
65
|
+
* @const
|
|
66
|
+
*/
|
|
67
|
+
_defineProperty(this, "unknown_default_open_api", "unknown_default_open_api");
|
|
68
|
+
}
|
|
69
|
+
return _createClass(StakingPoolId, null, [{
|
|
70
|
+
key: "constructFromObject",
|
|
71
|
+
value:
|
|
72
|
+
/**
|
|
73
|
+
* Returns a <code>StakingPoolId</code> enum value from a Javascript object name.
|
|
74
|
+
* @param {Object} data The plain JavaScript object containing the name of the enum value.
|
|
75
|
+
* @return {module:model/StakingPoolId} The enum <code>StakingPoolId</code> value.
|
|
76
|
+
*/
|
|
77
|
+
function constructFromObject(object) {
|
|
78
|
+
return object;
|
|
79
|
+
}
|
|
80
|
+
}]);
|
|
81
|
+
}();
|
|
@@ -40,6 +40,11 @@ var StakingPoolType = exports["default"] = /*#__PURE__*/function () {
|
|
|
40
40
|
* @const
|
|
41
41
|
*/
|
|
42
42
|
_defineProperty(this, "ETHBeacon", "ETHBeacon");
|
|
43
|
+
/**
|
|
44
|
+
* value: "CoreBTC"
|
|
45
|
+
* @const
|
|
46
|
+
*/
|
|
47
|
+
_defineProperty(this, "CoreBTC", "CoreBTC");
|
|
43
48
|
/**
|
|
44
49
|
* value: "unknown_default_open_api"
|
|
45
50
|
* @const
|
package/dist/model/Stakings.js
CHANGED
|
@@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
8
|
var _AmountDetailsInner = _interopRequireDefault(require("./AmountDetailsInner"));
|
|
9
|
+
var _BabylonValidator = _interopRequireDefault(require("./BabylonValidator"));
|
|
10
|
+
var _StakingPoolId = _interopRequireDefault(require("./StakingPoolId"));
|
|
9
11
|
var _StakingsExtra = _interopRequireDefault(require("./StakingsExtra"));
|
|
10
|
-
var _StakingsValidatorInfo = _interopRequireDefault(require("./StakingsValidatorInfo"));
|
|
11
12
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
13
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
13
14
|
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
@@ -40,11 +41,11 @@ var Stakings = /*#__PURE__*/function () {
|
|
|
40
41
|
* @param wallet_id {String} The staker's wallet ID.
|
|
41
42
|
* @param address {String} The staker's wallet address.
|
|
42
43
|
* @param amounts {Array.<module:model/AmountDetailsInner>} The details about the staking amount.
|
|
43
|
-
* @param pool_id {
|
|
44
|
+
* @param pool_id {module:model/StakingPoolId}
|
|
44
45
|
* @param token_id {String} The token ID.
|
|
45
46
|
* @param created_timestamp {Number} The time when the staking position was created.
|
|
46
47
|
* @param updated_timestamp {Number} The time when the staking position was last updated.
|
|
47
|
-
* @param validator_info {module:model/
|
|
48
|
+
* @param validator_info {module:model/BabylonValidator}
|
|
48
49
|
*/
|
|
49
50
|
function Stakings(id, wallet_id, address, amounts, pool_id, token_id, created_timestamp, updated_timestamp, validator_info) {
|
|
50
51
|
_classCallCheck(this, Stakings);
|
|
@@ -95,7 +96,7 @@ var Stakings = /*#__PURE__*/function () {
|
|
|
95
96
|
obj['amounts'] = _ApiClient["default"].convertToType(data['amounts'], [_AmountDetailsInner["default"]]);
|
|
96
97
|
}
|
|
97
98
|
if (data.hasOwnProperty('pool_id')) {
|
|
98
|
-
obj['pool_id'] =
|
|
99
|
+
obj['pool_id'] = _StakingPoolId["default"].constructFromObject(data['pool_id']);
|
|
99
100
|
}
|
|
100
101
|
if (data.hasOwnProperty('token_id')) {
|
|
101
102
|
obj['token_id'] = _ApiClient["default"].convertToType(data['token_id'], 'String');
|
|
@@ -110,7 +111,7 @@ var Stakings = /*#__PURE__*/function () {
|
|
|
110
111
|
obj['updated_timestamp'] = _ApiClient["default"].convertToType(data['updated_timestamp'], 'Number');
|
|
111
112
|
}
|
|
112
113
|
if (data.hasOwnProperty('validator_info')) {
|
|
113
|
-
obj['validator_info'] =
|
|
114
|
+
obj['validator_info'] = _BabylonValidator["default"].constructFromObject(data['validator_info']);
|
|
114
115
|
}
|
|
115
116
|
if (data.hasOwnProperty('extra')) {
|
|
116
117
|
obj['extra'] = _StakingsExtra["default"].constructFromObject(data['extra']);
|
|
@@ -176,18 +177,14 @@ var Stakings = /*#__PURE__*/function () {
|
|
|
176
177
|
;
|
|
177
178
|
}
|
|
178
179
|
// ensure the json data is a string
|
|
179
|
-
if (data['pool_id'] && !(typeof data['pool_id'] === 'string' || data['pool_id'] instanceof String)) {
|
|
180
|
-
throw new Error("Expected the field `pool_id` to be a primitive type in the JSON string but got " + data['pool_id']);
|
|
181
|
-
}
|
|
182
|
-
// ensure the json data is a string
|
|
183
180
|
if (data['token_id'] && !(typeof data['token_id'] === 'string' || data['token_id'] instanceof String)) {
|
|
184
181
|
throw new Error("Expected the field `token_id` to be a primitive type in the JSON string but got " + data['token_id']);
|
|
185
182
|
}
|
|
186
183
|
// validate the optional field `validator_info`
|
|
187
184
|
if (data['validator_info']) {
|
|
188
185
|
// data not null
|
|
189
|
-
if (!!
|
|
190
|
-
|
|
186
|
+
if (!!_BabylonValidator["default"].validateJSON) {
|
|
187
|
+
_BabylonValidator["default"].validateJSON(data['validator_info']);
|
|
191
188
|
}
|
|
192
189
|
}
|
|
193
190
|
// validate the optional field `extra`
|
|
@@ -228,8 +225,7 @@ Stakings.prototype['address'] = undefined;
|
|
|
228
225
|
Stakings.prototype['amounts'] = undefined;
|
|
229
226
|
|
|
230
227
|
/**
|
|
231
|
-
*
|
|
232
|
-
* @member {String} pool_id
|
|
228
|
+
* @member {module:model/StakingPoolId} pool_id
|
|
233
229
|
*/
|
|
234
230
|
Stakings.prototype['pool_id'] = undefined;
|
|
235
231
|
|
|
@@ -258,7 +254,7 @@ Stakings.prototype['created_timestamp'] = undefined;
|
|
|
258
254
|
Stakings.prototype['updated_timestamp'] = undefined;
|
|
259
255
|
|
|
260
256
|
/**
|
|
261
|
-
* @member {module:model/
|
|
257
|
+
* @member {module:model/BabylonValidator} validator_info
|
|
262
258
|
*/
|
|
263
259
|
Stakings.prototype['validator_info'] = undefined;
|
|
264
260
|
|