Skip to content

Commit

Permalink
Merge pull request #112 from kaleido-io/uri-fix
Browse files Browse the repository at this point in the history
Fix URI param
  • Loading branch information
nguyer authored Jan 19, 2023
2 parents 7acf36f + 9f0228e commit e4dccc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tokens/erc1155.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export const DynamicMethods: Record<TokenOperation, MethodSignature[]> = {
for (let i = 0; i < amount; i++) {
to.push(dto.to);
}
return [packTokenId(poolLocator.poolId), to, encodeHex(dto.data ?? ''), dto.uri];
return [packTokenId(poolLocator.poolId), to, encodeHex(dto.data ?? ''), dto.uri ?? ''];
}
return undefined;
},
Expand Down

0 comments on commit e4dccc4

Please sign in to comment.