@atomiqlabs/chain-evm 1.0.6 → 1.0.7
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/dist/utils/Utils.js +1 -0
- package/package.json +1 -1
- package/src/utils/Utils.ts +1 -0
package/dist/utils/Utils.js
CHANGED
|
@@ -80,6 +80,7 @@ exports.allowedEthersErrorCodes = new Set([
|
|
|
80
80
|
"CALL_EXCEPTION", "NONCE_EXPIRED", "REPLACEMENT_UNDERPRICED", "TRANSACTION_REPLACED", "UNCONFIGURED_NAME", "OFFCHAIN_FAULT", "ACTION_REJECTED"
|
|
81
81
|
]);
|
|
82
82
|
exports.allowedEthersErrorNumbers = new Set([
|
|
83
|
+
3,
|
|
83
84
|
-32700,
|
|
84
85
|
-32600,
|
|
85
86
|
-32601,
|
package/package.json
CHANGED
package/src/utils/Utils.ts
CHANGED
|
@@ -92,6 +92,7 @@ export const allowedEthersErrorCodes: Set<string> = new Set([
|
|
|
92
92
|
]);
|
|
93
93
|
|
|
94
94
|
export const allowedEthersErrorNumbers: Set<number> = new Set([
|
|
95
|
+
3, //Revertion during eth_getAccessList call
|
|
95
96
|
-32700, //Invalid JSON
|
|
96
97
|
-32600, //Invalid request
|
|
97
98
|
-32601, //Method not found
|