We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c900505 commit 35b273dCopy full SHA for 35b273d
packages/core/src/Cardano/Address/BaseAddress.ts
@@ -121,7 +121,7 @@ export class BaseAddress {
121
* @param data The serialized address data.
122
*/
123
static unpackParts(type: number, data: Uint8Array): Address {
124
- if (data.length !== 57) throw new InvalidArgumentError('data', 'Base address data length should be 57 bytes long.');
+ // if (data.length !== 57) throw new InvalidArgumentError('data', 'Base address data length should be 57 bytes long.');
125
126
const network = data[0] & 0b0000_1111;
127
const paymentCredential = Hash28ByteBase16(Buffer.from(data.slice(1, 29)).toString('hex'));
0 commit comments