Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x | /* * Copyright © 2019 Lisk Foundation * * See the LICENSE file at the top-level directory of this distribution * for licensing information. * * Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation, * no part of this software, including this file, may be copied, modified, * propagated, or distributed except according to the terms contained in the * LICENSE file. * * Removal or modification of this copyright notice is prohibited. * */ /* tslint:disable:no-magic-numbers */ export const FIXED_POINT = 10 ** 8; export const TRANSFER_FEE = FIXED_POINT * 0.1; export const IN_TRANSFER_FEE = FIXED_POINT * 0.1; export const OUT_TRANSFER_FEE = FIXED_POINT * 0.1; export const SIGNATURE_FEE = FIXED_POINT * 5; export const DELEGATE_FEE = FIXED_POINT * 25; export const VOTE_FEE = FIXED_POINT * 1; export const MULTISIGNATURE_FEE = FIXED_POINT * 5; export const MULTISIGNATURE_MAX_LIFETIME = 72; export const MULTISIGNATURE_MIN_LIFETIME = 1; export const MULTISIGNATURE_MAX_KEYSGROUP = 15; export const MULTISIGNATURE_MIN_KEYSGROUP = 1; export const DAPP_FEE = FIXED_POINT * 25; export const USERNAME_MAX_LENGTH = 20; export const BYTESIZES = { TYPE: 1, TIMESTAMP: 4, MULTISIGNATURE_PUBLICKEY: 32, RECIPIENT_ID: 8, AMOUNT: 8, SIGNATURE_TRANSACTION: 64, SECOND_SIGNATURE_TRANSACTION: 64, DATA: 64, }; export const EPOCH_TIME = new Date(Date.UTC(2016, 4, 24, 17, 0, 0, 0)); export const EPOCH_TIME_MILLISECONDS = EPOCH_TIME.getTime(); const MS_FACTOR = 1000; export const EPOCH_TIME_SECONDS = Math.floor(EPOCH_TIME.getTime() / MS_FACTOR); // Largest possible number which can be stored in eight bytes. // Derived from bignum.fromBuffer(Buffer.from(new Array(8).fill(255))). const MAX_EIGHT_BYTE_NUMBER = '18446744073709551615'; export const MAX_ADDRESS_NUMBER = MAX_EIGHT_BYTE_NUMBER; export const MAX_TRANSACTION_ID = MAX_EIGHT_BYTE_NUMBER; // Largest possible amount. Maximum value for PostgreSQL bigint. export const MAX_TRANSACTION_AMOUNT = '9223372036854775807'; export const UNCONFIRMED_TRANSACTION_TIMEOUT = 10800; export const UNCONFIRMED_MULTISIG_TRANSACTION_TIMEOUT = 10800 * 8; export const MAX_MULTISIG_SIGNATURES = 15; export const MAX_PUBLIC_KEY_LENGTH = 32; export const MAX_TRANSFER_ASSET_DATA_LENGTH = 64; export const NETWORK_IDENTIFIER_LENGTH = 32; |