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 | 13x 13x 13x 13x 13x 13x 13x | /* * 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. * */ export const GET = 'GET'; export const POST = 'POST'; export const PUT = 'PUT'; export const TESTNET_NETHASH = 'da3ed6a45429278bac2666961289ca17ad86595d33b31037615d4b8e8f158bba'; export const MAINNET_NETHASH = 'ed14889723f24ecc54871d058d98ce91ff2f973192075c0155ba2b7b70ad2511'; export const TESTNET_NODES: ReadonlyArray<string> = [ 'https://testnet.lisk.io:443', ]; export const MAINNET_NODES: ReadonlyArray<string> = [ 'https://node01.lisk.io:443', 'https://node02.lisk.io:443', 'https://node03.lisk.io:443', 'https://node04.lisk.io:443', 'https://node05.lisk.io:443', 'https://node06.lisk.io:443', 'https://node07.lisk.io:443', 'https://node08.lisk.io:443', ]; |