UNPKG

pulsar-contracts

Version:

31 lines (30 loc) 1.08 kB
export { SETTLEMENT_MATRIX_SIZE, VALIDATOR_NUMBER, AGGREGATE_THRESHOLD, TOTAL_GENERATORS, LIST_LENGTH, MINIMUM_DEPOSIT_AMOUNT, WITHDRAW_DOWN_PAYMENT, BATCH_SIZE, MAX_SETTLEMENT_PER_BATCH, MAX_DEPOSIT_PER_BATCH, MAX_WITHDRAWAL_PER_BATCH, ACTION_QUEUE_SIZE, ENDPOINTS, }; declare const SETTLEMENT_MATRIX_SIZE = 8; declare const VALIDATOR_NUMBER = 1; declare const AGGREGATE_THRESHOLD = 32; declare const LIST_LENGTH: number; declare const TOTAL_GENERATORS: number; declare const MINIMUM_DEPOSIT_AMOUNT = 1000000000; declare const WITHDRAW_DOWN_PAYMENT = 1000000000; declare const BATCH_SIZE = 60; declare const MAX_SETTLEMENT_PER_BATCH = 1; declare const MAX_DEPOSIT_PER_BATCH = 60; declare const MAX_WITHDRAWAL_PER_BATCH = 9; declare const ACTION_QUEUE_SIZE = 3000; declare const ENDPOINTS: { NODE: { devnet: string; mainnet: string; lightnet: string; }; ARCHIVE: { devnet: string; mainnet: string; lightnet: string; }; EXPLORER: { devnet: string; mainnet: string; lightnet: string; }; };