We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6354cd0 commit 78cf35eCopy full SHA for 78cf35e
packages/btcindexer/src/btcindexer.ts
@@ -1310,9 +1310,6 @@ export function parseSuiRecipientFromOpReturn(script: Buffer): string | null {
1310
// Check simple transfer format: 1-byte flag (0x00)
1311
if (payload[0] === 0x00) {
1312
const addressBytes = payload.subarray(1);
1313
- if (addressBytes.length !== 32) {
1314
- return null;
1315
- }
1316
const address = `0x${addressBytes.toString("hex")}`;
1317
if (!isValidSuiAddress(address)) {
1318
return null;
0 commit comments