@walletconnect/react-native-compat 2.13.0 → 2.13.1-rc-20e12b0a

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.
Files changed (2) hide show
  1. package/index.js +18 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -14,6 +14,24 @@ if (typeof Buffer === "undefined") {
14
14
  global.Buffer = require("buffer").Buffer;
15
15
  }
16
16
 
17
+ // Polyfill btoa
18
+ if (typeof btoa === "undefined") {
19
+ global.btoa = function (str) {
20
+ return Buffer.alloc(str.length, str, "binary").toString("base64");
21
+ };
22
+ }
23
+
24
+ // Polyfill atob
25
+ if (typeof atob === "undefined") {
26
+ global.atob = function (b64Encoded) {
27
+ return Buffer.alloc(
28
+ Buffer.from(b64Encoded, "base64").length,
29
+ Buffer.from(b64Encoded, "base64"),
30
+ "binary",
31
+ ).toString("binary");
32
+ };
33
+ }
34
+
17
35
  if (typeof global?.Linking === "undefined") {
18
36
  try {
19
37
  global.Linking = require("react-native").Linking;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@walletconnect/react-native-compat",
3
3
  "description": "Shims for WalletConnect Protocol in React Native Projects",
4
- "version": "2.13.0",
4
+ "version": "2.13.1-rc-20e12b0a",
5
5
  "author": "WalletConnect, Inc. <walletconnect.com>",
6
6
  "homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
7
7
  "license": "Apache-2.0",