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 1a08293 commit 3ddd31cCopy full SHA for 3ddd31c
examples/native-fungible/index.html
@@ -171,7 +171,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
171
172
let errors = [];
173
try {
174
- const match = recipient.match(/^(0x[0-9a-f]{40})@([0-9a-f]{64})$/);
+ const match = recipient.match(/^(0x[0-9a-f]{40}|0x[0-9a-f]{64})@([0-9a-f]{64})$/i);
175
if (!match) throw new Error('Invalid recipient address: expected `owner@chain_id`');
176
177
const query = gql(`mutation(
0 commit comments