@rango-dev/signer-evm 0.22.0 → 0.23.0
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.
- package/CHANGELOG.md +1 -16
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
# 0.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* better parsing of evm rpc errors ([f23031a](https://github.com/yeager-eren/rango-client/commit/f23031ae14e6e841ee488591bd1bf58cfa7ca15b))
|
|
7
|
-
* fix HMR for widget and playground ([8524820](https://github.com/yeager-eren/rango-client/commit/8524820f10cf0b8921f3db0c4f620ff98daa4103))
|
|
8
|
-
* fix signer wait change network issues ([e453db6](https://github.com/yeager-eren/rango-client/commit/e453db6ccf7736e36e5ada0c29502be32254fe9c))
|
|
9
|
-
* show tenderly error on call exception ([c218f49](https://github.com/yeager-eren/rango-client/commit/c218f49f3330706d9262b0cf3ec8e293e91e3729))
|
|
10
|
-
* update rango-types and fix notification bugs ([993f185](https://github.com/yeager-eren/rango-client/commit/993f185e0b8c5e5e15a2c65ba2d85d1f9c8daa90))
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* Support for WalletConnect 2 ([faedef0](https://github.com/yeager-eren/rango-client/commit/faedef0b5e6fc3c5ef881cbbe4ec05334cc1c910))
|
|
16
|
-
* support safe wallet ([d04cbcd](https://github.com/yeager-eren/rango-client/commit/d04cbcd2a612755563512d9dff6f2312088d8b4d))
|
|
1
|
+
# [0.23.0](https://github.com/rango-exchange/rango-client/compare/signer-evm@0.21.0...signer-evm@0.23.0) (2023-12-24)
|
|
17
2
|
|
|
18
3
|
|
|
19
4
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/signer-evm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./dist/index.js"
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "node ../../scripts/build/command.mjs --path signers/signer-evm",
|
|
18
|
-
"ts-check": "tsc --declaration --emitDeclarationOnly -p ./tsconfig.json",
|
|
19
18
|
"clean": "rimraf dist",
|
|
20
19
|
"format": "prettier --write '{.,src}/**/*.{ts,tsx}'",
|
|
21
20
|
"lint": "eslint \"**/*.{ts,tsx}\" --ignore-path ../../.eslintignore",
|
|
@@ -27,7 +26,7 @@
|
|
|
27
26
|
"@ethersproject/abstract-provider": "^5.7.0",
|
|
28
27
|
"eth-rpc-errors": "^4.0.3",
|
|
29
28
|
"ethers": "^5.7.2",
|
|
30
|
-
"rango-types": "^0.1.
|
|
29
|
+
"rango-types": "^0.1.46"
|
|
31
30
|
},
|
|
32
31
|
"publishConfig": {
|
|
33
32
|
"access": "public"
|