@tonconnect/sdk 0.0.41 → 0.0.42

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.
@@ -160,7 +160,7 @@ class BridgeProvider {
160
160
  const url = new URL(this.walletConnectionSource.universalLink);
161
161
  url.searchParams.append('v', protocol.version.toString());
162
162
  url.searchParams.append('id', this.session.sessionCrypto.sessionId);
163
- url.searchParams.append('r', protocol_1.Base64.encode(JSON.stringify(message), true));
163
+ url.searchParams.append('r', JSON.stringify(message));
164
164
  return url.toString();
165
165
  }
166
166
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonconnect/sdk",
3
- "version": "0.0.41",
3
+ "version": "0.0.42",
4
4
  "scripts": {
5
5
  "build": "npx rimraf lib && ttsc && npx rimraf dist && webpack --mode development",
6
6
  "build:production": "npx rimraf lib && ttsc --sourceMap false && npx rimraf dist && webpack --mode production"