@nosplatform/stake-transactions-crypto
Advanced tools
Comparing version 0.2.14 to 0.3.0-alpha
export * from "./stake-create"; | ||
export * from "./stake-redeem"; | ||
export * from "./stake-cancel"; | ||
export * from "./stake-extend"; |
@@ -9,2 +9,3 @@ "use strict"; | ||
__export(require("./stake-cancel")); | ||
__export(require("./stake-extend")); | ||
//# sourceMappingURL=index.js.map |
export declare enum StakeTransactionType { | ||
StakeCreate = 0, | ||
StakeRedeem = 1, | ||
StakeCancel = 2 | ||
StakeCancel = 2, | ||
StakeExtend = 3 | ||
} | ||
@@ -10,3 +11,4 @@ export declare const StakeTransactionGroup = 100; | ||
StakeRedeem = "0", | ||
StakeCancel = "0" | ||
StakeCancel = "0", | ||
StakeExtend = "0" | ||
} |
@@ -8,2 +8,3 @@ "use strict"; | ||
StakeTransactionType[StakeTransactionType["StakeCancel"] = 2] = "StakeCancel"; | ||
StakeTransactionType[StakeTransactionType["StakeExtend"] = 3] = "StakeExtend"; | ||
})(StakeTransactionType = exports.StakeTransactionType || (exports.StakeTransactionType = {})); | ||
@@ -16,3 +17,4 @@ exports.StakeTransactionGroup = 100; | ||
StakeTransactionStaticFees["StakeCancel"] = "0"; | ||
StakeTransactionStaticFees["StakeExtend"] = "0"; | ||
})(StakeTransactionStaticFees = exports.StakeTransactionStaticFees || (exports.StakeTransactionStaticFees = {})); | ||
//# sourceMappingURL=enums.js.map |
@@ -13,2 +13,6 @@ import { Utils } from "@arkecosystem/crypto"; | ||
} | ||
export interface IStakeExtendAsset { | ||
id: string; | ||
duration: number; | ||
} | ||
export declare type StakeLevel = "3m" | "6m" | "1y" | "2y"; | ||
@@ -15,0 +19,0 @@ export interface IStakeTimestamps { |
export * from "./stake-create"; | ||
export * from "./stake-redeem"; | ||
export * from "./stake-cancel"; | ||
export * from "./stake-extend"; |
@@ -9,2 +9,3 @@ "use strict"; | ||
__export(require("./stake-cancel")); | ||
__export(require("./stake-extend")); | ||
//# sourceMappingURL=index.js.map |
@@ -20,3 +20,2 @@ "use strict"; | ||
fee: { bignumber: { minimum: 0, maximum: 0 } }, | ||
recipientId: { $ref: "address" }, | ||
asset: { | ||
@@ -23,0 +22,0 @@ type: "object", |
{ | ||
"name": "@nosplatform/stake-transactions-crypto", | ||
"description": "Provides stake transactions crypto logic for Ark Core", | ||
"version": "0.2.14", | ||
"version": "0.3.0-alpha", | ||
"contributors": [ | ||
@@ -6,0 +6,0 @@ "Dean van Dugteren <dean@nos.io>" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
660933
47
601