@safe-global/safe-modules-deployments 2.2.1 → 2.2.3

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.
@@ -3,6 +3,7 @@
3
3
  "contractName": "Safe4337Module",
4
4
  "version": "0.2.0",
5
5
  "networkAddresses": {
6
+ "1": "0xa581c4A4DB7175302464fF3C06380BC3270b4037",
6
7
  "5": "0xa581c4A4DB7175302464fF3C06380BC3270b4037",
7
8
  "10": "0xa581c4A4DB7175302464fF3C06380BC3270b4037",
8
9
  "100": "0xa581c4A4DB7175302464fF3C06380BC3270b4037",
@@ -3,7 +3,17 @@
3
3
  "contractName": "Safe4337Module",
4
4
  "version": "0.3.0",
5
5
  "networkAddresses": {
6
+ "1": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
7
+ "10": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
8
+ "56": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
9
+ "97": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
10
+ "100": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
11
+ "137": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
6
12
  "480": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
13
+ "8453": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
14
+ "42161": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
15
+ "84532": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
16
+ "421614": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226",
7
17
  "11155111": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226"
8
18
  },
9
19
  "abi": [
@@ -3,7 +3,17 @@
3
3
  "contractName": "SafeModuleSetup",
4
4
  "version": "0.3.0",
5
5
  "networkAddresses": {
6
+ "1": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
7
+ "10": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
8
+ "56": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
9
+ "97": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
10
+ "100": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
11
+ "137": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
6
12
  "480": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
13
+ "8453": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
14
+ "42161": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
15
+ "84532": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
16
+ "421614": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47",
7
17
  "11155111": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47"
8
18
  },
9
19
  "abi": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@safe-global/safe-modules-deployments",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "Collection of Safe modules contract deployments",
5
5
  "homepage": "https://github.com/safe-global/safe-modules-deployments/",
6
6
  "license": "MIT",
@@ -10,6 +10,12 @@
10
10
  "dist",
11
11
  "src"
12
12
  ],
13
+ "scripts": {
14
+ "build": "rimraf dist && tsc",
15
+ "lint": "eslint --max-warnings 0 src/",
16
+ "lint:fix": "pnpm run lint --fix",
17
+ "prepare": "pnpm run build"
18
+ },
13
19
  "repository": {
14
20
  "type": "git",
15
21
  "url": "git+https://github.com/safe-global/safe-modules-deployments.git"
@@ -32,10 +38,5 @@
32
38
  "rimraf": "^5.0.7",
33
39
  "typescript": "^5.4.5",
34
40
  "typescript-eslint": "^7.13.0"
35
- },
36
- "scripts": {
37
- "build": "rimraf dist && tsc",
38
- "lint": "eslint --max-warnings 0 src/",
39
- "lint:fix": "pnpm run lint --fix"
40
41
  }
41
- }
42
+ }
@@ -1,9 +1,10 @@
1
1
  import AllowanceModule010 from './assets/allowance-module/v0.1.0/allowance-module.json';
2
+ import AllowanceModule011 from './assets/allowance-module/v0.1.1/allowance-module.json';
2
3
  import { DeploymentFilter, Deployment } from './types';
3
4
  import { applyFilterDefaults, findDeployment } from './utils';
4
5
 
5
6
  // The array should be sorted from the latest version to the oldest.
6
- const ALLOWANCE_MODULE_DEPLOYMENTS: Deployment[] = [AllowanceModule010];
7
+ const ALLOWANCE_MODULE_DEPLOYMENTS: Deployment[] = [AllowanceModule011, AllowanceModule010];
7
8
 
8
9
  export const getAllowanceModuleDeployment = (filter?: DeploymentFilter): Deployment | undefined => {
9
10
  return findDeployment(applyFilterDefaults(filter), ALLOWANCE_MODULE_DEPLOYMENTS);