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 36275a3 commit 0a2e928Copy full SHA for 0a2e928
examples/native-fungible/index.html
@@ -180,7 +180,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
180
181
let errors = [];
182
try {
183
- 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);
184
if (!match) throw new Error('Invalid recipient address: expected `owner@chain_id`');
185
186
const query = gql(`mutation(
0 commit comments