@reown/walletkit 1.1.2-canary-nbl-1 → 1.1.2-canary-wasm-2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function decompressData(data: Uint8Array): Promise<Uint8Array>;
2
+ //# sourceMappingURL=decompress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decompress.d.ts","sourceRoot":"","sources":["../../../src/utils/decompress.ts"],"names":[],"mappings":"AAEA,wBAAsB,cAAc,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,CAK1E"}
@@ -1,2 +1,3 @@
1
1
  export * from "./notifications";
2
+ export * from "./decompress";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@reown/walletkit",
3
3
  "description": "WalletKit for WalletConnect Protocol",
4
- "version": "1.1.2-canary-nbl-1",
4
+ "version": "1.1.2-canary-wasm-2",
5
5
  "private": false,
6
6
  "author": "Reown, Inc.",
7
7
  "homepage": "https://github.com/reown-com/",
@@ -28,18 +28,20 @@
28
28
  "build": "npm run build:pre; npm run build:source; npm run build:types",
29
29
  "test": "vitest run --dir test --no-threads",
30
30
  "lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
31
- "prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
31
+ "prettier": "prettier --ignore-path ./.prettierignore --check '{src,test}/**/*.{js,ts,jsx,tsx}' --write"
32
32
  },
33
33
  "dependencies": {
34
- "@walletconnect/core": "2.17.3-canary-nbl-1",
34
+ "@walletconnect/core": "2.17.3",
35
35
  "@walletconnect/jsonrpc-provider": "1.0.14",
36
36
  "@walletconnect/jsonrpc-utils": "1.0.8",
37
37
  "@walletconnect/logger": "2.1.2",
38
- "@walletconnect/sign-client": "2.17.3-canary-nbl-1",
39
- "@walletconnect/types": "2.17.3-canary-nbl-1",
40
- "@walletconnect/utils": "2.17.3-canary-nbl-1"
38
+ "@walletconnect/sign-client": "2.17.3",
39
+ "@walletconnect/types": "2.17.3",
40
+ "@walletconnect/utils": "2.17.3",
41
+ "brotli": "^1.3.3"
41
42
  },
42
43
  "devDependencies": {
43
- "@ethersproject/wallet": "5.7.0"
44
+ "@ethersproject/wallet": "5.7.0",
45
+ "@types/brotli": "^1.3.3"
44
46
  }
45
47
  }