Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PublicLock V14 Eligibility #63

Merged
merged 22 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

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
Loading