@gearbox-protocol/cli-utils 5.61.0 → 5.61.1

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.
@@ -69,7 +69,15 @@ function getProviders(config) {
69
69
  break;
70
70
  }
71
71
  }
72
- return result.filter(p => !!p.url);
72
+ return result
73
+ .map(p => ({
74
+ ...p,
75
+ httpClientOptions: {
76
+ ...p.httpClientOptions,
77
+ methods: { exclude: ["eth_fillTransaction"] },
78
+ },
79
+ }))
80
+ .filter(p => !!p.url);
73
81
  }
74
82
  export function createRevolverTransport(providers, config) {
75
83
  return RevolverTransport.create({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/cli-utils",
3
3
  "description": "Utils for creating cli apps",
4
- "version": "5.61.0",
4
+ "version": "5.61.1",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"
@@ -29,13 +29,13 @@
29
29
  "package:version": "yarn version"
30
30
  },
31
31
  "dependencies": {
32
- "@aws-sdk/client-secrets-manager": "^3.940.0",
33
- "@aws-sdk/client-ssm": "^3.940.0",
32
+ "@aws-sdk/client-secrets-manager": "^3.943.0",
33
+ "@aws-sdk/client-ssm": "^3.943.0",
34
34
  "@gearbox-protocol/sdk": ">=11.8.4",
35
- "abitype": "^1.2.0",
35
+ "abitype": "^1.2.1",
36
36
  "commander": "^14.0.2",
37
37
  "lodash-es": "^4.17.21",
38
- "viem": "^2.40.3",
38
+ "viem": "^2.41.2",
39
39
  "yaml": "^2.8.2",
40
40
  "zod": "^4.1.13"
41
41
  },