1 | import { availableNetworks } from '../networks.js';
|
2 | export const defaults = {
|
3 | allowedDecodedLengths: [1, 2, 4, 8, 32, 33],
|
4 | // publicKey has prefix + 2 checksum bytes, short only prefix + 1 checksum byte
|
5 | allowedEncodedLengths: [3, 4, 6, 10, 35, 36, 37, 38],
|
6 | allowedPrefix: availableNetworks.map(({ prefix }) => prefix),
|
7 | prefix: 42
|
8 | };
|