-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support to Sepolia and Gnosis networks (#596)
* sepolia network support * lib updates + sepolia contract verification * fix incompatible lib versions * gnosis network support * set node version
- Loading branch information
Showing
14 changed files
with
50,797 additions
and
41,148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.3.0" | ||
node-version: "16.20.0" | ||
|
||
- name: Setup SSH to install dependencies | ||
uses: webfactory/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.3.0" | ||
node-version: "16.20.0" | ||
|
||
- name: Setup SSH to install dependencies | ||
uses: webfactory/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.3.0" | ||
node-version: "16.20.0" | ||
|
||
- name: Setup SSH to install dependencies | ||
uses: webfactory/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16.3.0" | ||
node-version: "16.20.0" | ||
|
||
- name: Setup SSH to install dependencies | ||
uses: webfactory/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16 | ||
16.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { | ||
contracts as defaultContracts, | ||
ContractConfig, | ||
} from "../contracts.config"; | ||
|
||
const disabled: Array<string> = [ | ||
// Utility & Test Contracts disabled by default | ||
"OLToken", | ||
"TestToken1", | ||
"TestToken2", | ||
"TestFairShareCalc", | ||
"PixelNFT", | ||
"ProxToken", | ||
"ERC20Minter", | ||
"MockDao", | ||
"Multicall", | ||
"WETH", | ||
"ProxTokenContract", | ||
"ERC20MinterContract", | ||
// Adapters, Extensions and Factories disabled by default | ||
"NFTCollectionFactory", | ||
"ERC1271ExtensionFactory", | ||
"ExecutorExtensionFactory", | ||
"ERC1155TokenCollectionFactory", | ||
"NFTExtension", | ||
"ERC1271Extension", | ||
"ExecutorExtension", | ||
"ERC1155TokenExtension", | ||
"ERC1155AdapterContract", | ||
"FinancingContract", | ||
"OnboardingContract", | ||
"TributeContract", | ||
"TributeNFTContract", | ||
"LendNFTContract", | ||
]; | ||
|
||
export const contracts: Array<ContractConfig> = defaultContracts.map((c) => { | ||
if (disabled.find((e) => e === c.name)) { | ||
return { ...c, enabled: false }; | ||
} | ||
return c; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { | ||
contracts as defaultContracts, | ||
ContractConfig, | ||
} from "../contracts.config"; | ||
|
||
const disabled: Array<string> = [ | ||
// Utility & Test Contracts disabled by default | ||
"OLToken", | ||
"TestToken1", | ||
"TestToken2", | ||
"TestFairShareCalc", | ||
"PixelNFT", | ||
"ProxToken", | ||
"ERC20Minter", | ||
"MockDao", | ||
"Multicall", | ||
"WETH", | ||
"ProxTokenContract", | ||
"ERC20MinterContract", | ||
// Adapters, Extensions and Factories disabled by default | ||
"NFTCollectionFactory", | ||
"ERC1271ExtensionFactory", | ||
"ExecutorExtensionFactory", | ||
"ERC1155TokenCollectionFactory", | ||
"NFTExtension", | ||
"ERC1271Extension", | ||
"ExecutorExtension", | ||
"ERC1155TokenExtension", | ||
"ERC1155AdapterContract", | ||
"FinancingContract", | ||
"OnboardingContract", | ||
"TributeContract", | ||
"TributeNFTContract", | ||
"LendNFTContract", | ||
]; | ||
|
||
export const contracts: Array<ContractConfig> = defaultContracts.map((c) => { | ||
if (disabled.find((e) => e === c.name)) { | ||
return { ...c, enabled: false }; | ||
} | ||
return c; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.