UNPKG

417 BTypeScriptView Raw
1/**
2 * The Satoshi base.
3 */
4export declare const SATOSHI: number;
5/**
6 * Alias of SATOSHI.
7 */
8export declare const ARKTOSHI: number;
9/**
10 * Available transaction types.
11 */
12export declare enum TransactionTypes {
13 Transfer = 0,
14 SecondSignature = 1,
15 DelegateRegistration = 2,
16 Vote = 3,
17 MultiSignature = 4,
18 Ipfs = 5,
19 TimelockTransfer = 6,
20 MultiPayment = 7,
21 DelegateResignation = 8
22}