cosmos-connect-core 0.1.16 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -127,7 +127,7 @@ export class WalletConnectV2 {
|
|
|
127
127
|
console.log(`WalletConnectV2: URI generated (attempt ${attempt + 1}/${maxRetries})`, uri);
|
|
128
128
|
this._uri = uri;
|
|
129
129
|
this.onUriCbs.forEach((cb) => cb(uri));
|
|
130
|
-
console.log(
|
|
130
|
+
console.log(`WalletConnectV2: Waiting for approval (timeout: ${pairingTimeout}ms)...`);
|
|
131
131
|
try {
|
|
132
132
|
const approvalPromise = approval();
|
|
133
133
|
const timeoutPromise = new Promise((_, reject) => setTimeout(() => reject(new Error('Connection approval timed out')), pairingTimeout));
|