Variables
Const ENTRYPOINT_MAX_LENGTH
ENTRYPOINT_MAX_LENGTH: 31 = 31
Const branchDecoder
branchDecoder: (Anonymous function) = prefixDecoder(Prefix.B)
Const branchEncoder
branchEncoder: (Anonymous function) = prefixEncoder(Prefix.B)
Const entrypointMappingReverse
entrypointMappingReverse: {} = (() => {const result: { [key: string]: string } = {};Object.keys(entrypointMapping).forEach((key: string) => {result[entrypointMapping[key]] = key;});return result;})()
Const kindMappingReverse
kindMappingReverse: {} = (() => {const result: { [key: string]: string } = {};Object.keys(kindMapping).forEach((key: number | string) => {const keyNum = typeof key === 'string' ? parseInt(key, 10) : key;result[kindMapping[keyNum]] = pad(keyNum, 2);});return result;})()
Const opMappingReverse
opMappingReverse: {} = (() => {const result: { [key: string]: string } = {};Object.keys(opMapping).forEach((key: string) => {result[opMapping[key]] = key;});return result;})()
Const tz1Decoder
tz1Decoder: (Anonymous function) = prefixDecoder(Prefix.TZ1)
Const tz1Encoder
tz1Encoder: (Anonymous function) = prefixEncoder(Prefix.TZ1)