Skip to content

Commit

Permalink
Auto-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
modules-registry-bot committed Sep 23, 2024
2 parents 9c20441 + 4212b61 commit 584e769
Show file tree
Hide file tree
Showing 8 changed files with 688 additions and 0 deletions.

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions test/arbitrumDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Arbitrum deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnArbitrum = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/baseDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Base deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnBase = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/celoDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Celo deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnCelo = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/gnosisDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Gnosis deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnGnosis = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/mainnetDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Mainnet deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnMainnet = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/optimismDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Optimism deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnOptimism = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down
9 changes: 9 additions & 0 deletions test/polygonDeployments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ describe("Polygon deployments", () => {
if (module.name === "JokeRace Eligibility") {
continue;
}

// the unlock module has dependencies on other external contracts
if (
module.implementationAddress ===
"0x4c7803041851f7a17Fc6b5Ff5c911FC748160637"
) {
continue;
}

// check if module is deployed on goerli. If not, then skip
let isOnPolygon = false;
for (let i = 0; i < module.deployments.length; i++) {
Expand Down

0 comments on commit 584e769

Please sign in to comment.