@hiveio/dhive 1.1.0 → 1.1.1
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/dist/dhive.d.ts +27 -27
- package/dist/dhive.js +1 -1
- package/dist/dhive.js.gz +0 -0
- package/dist/dhive.js.map +1 -1
- package/lib/chain/operation.d.ts +1 -1
- package/lib/chain/serializer.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/lib/chain/operation.d.ts
CHANGED
|
@@ -453,8 +453,8 @@ export interface LimitOrderCreate2Operation extends Operation {
|
|
|
453
453
|
owner: string;
|
|
454
454
|
orderid: number;
|
|
455
455
|
amount_to_sell: Asset | string;
|
|
456
|
-
fill_or_kill: boolean;
|
|
457
456
|
exchange_rate: PriceType;
|
|
457
|
+
fill_or_kill: boolean;
|
|
458
458
|
expiration: string;
|
|
459
459
|
};
|
|
460
460
|
}
|
package/lib/chain/serializer.js
CHANGED
|
@@ -374,8 +374,8 @@ OperationSerializers.limit_order_create2 = OperationDataSerializer(21, [
|
|
|
374
374
|
['owner', StringSerializer],
|
|
375
375
|
['orderid', UInt32Serializer],
|
|
376
376
|
['amount_to_sell', AssetSerializer],
|
|
377
|
-
['fill_or_kill', BooleanSerializer],
|
|
378
377
|
['exchange_rate', PriceSerializer],
|
|
378
|
+
['fill_or_kill', BooleanSerializer],
|
|
379
379
|
['expiration', DateSerializer]
|
|
380
380
|
]);
|
|
381
381
|
OperationSerializers.recover_account = OperationDataSerializer(25, [
|
package/lib/version.js
CHANGED