UNPKG

1.11 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * The Satoshi base.
5 */
6exports.SATOSHI = 1e8;
7/**
8 * Alias of SATOSHI.
9 */
10exports.ARKTOSHI = exports.SATOSHI;
11/**
12 * Available transaction types.
13 */
14var TransactionTypes;
15(function (TransactionTypes) {
16 TransactionTypes[TransactionTypes["Transfer"] = 0] = "Transfer";
17 TransactionTypes[TransactionTypes["SecondSignature"] = 1] = "SecondSignature";
18 TransactionTypes[TransactionTypes["DelegateRegistration"] = 2] = "DelegateRegistration";
19 TransactionTypes[TransactionTypes["Vote"] = 3] = "Vote";
20 TransactionTypes[TransactionTypes["MultiSignature"] = 4] = "MultiSignature";
21 TransactionTypes[TransactionTypes["Ipfs"] = 5] = "Ipfs";
22 TransactionTypes[TransactionTypes["TimelockTransfer"] = 6] = "TimelockTransfer";
23 TransactionTypes[TransactionTypes["MultiPayment"] = 7] = "MultiPayment";
24 TransactionTypes[TransactionTypes["DelegateResignation"] = 8] = "DelegateResignation";
25})(TransactionTypes = exports.TransactionTypes || (exports.TransactionTypes = {}));
26//# sourceMappingURL=constants.js.map
\No newline at end of file