Files
memecoin-botV2/.pnpm-store/v10/files/65/73857cb22f25153d429483b049e83eebf6a2a55fb23435dfd29d5d3fe2f4a9fe2219f0edd1ba4fde06c79fe0b935be54ad799161d275cc91102c4f9571de0c

13 lines
310 B
Plaintext

/**
* Maximum over-the-wire size of a Transaction
*
* 1280 is IPv6 minimum MTU
* 40 bytes is the size of the IPv6 header
* 8 bytes is the size of the fragment header
*/
export const PACKET_DATA_SIZE = 1280 - 40 - 8;
export const VERSION_PREFIX_MASK = 0x7f;
export const SIGNATURE_LENGTH_IN_BYTES = 64;