Skip to content

Commit

Permalink
Add Arthera network support (#107)
Browse files Browse the repository at this point in the history
* add arthera

* add engine

* add Arthera
  • Loading branch information
julienbrg authored Aug 20, 2023
1 parent 41948aa commit cba9226
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ To upload the membership NFT metadata, upload the manifesto, or submit a proposa
- Arbitrum Goerli Testnet
- Celo Alfajores Testnet
- Celo Mainnet
- Gnosis Chiado Testnet ([May-21-2023 04:52:35 PM +2 UTC](https://blockscout.com/gnosis/chiado/tx/0x001ed29b61456b912d6c2687893948e09d069ab36e5fd9ddb8abb2467e3a2962))
- Gnosis Chiado Testnet
- Gnosis Mainnet
- Mantle Testnet
- Arthera Testnet

## Security

Expand Down
12 changes: 10 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ const {

BASE_TESTNET_PRIVATE_KEY,

MANTLE_TESTNET_PRIVATE_KEY
MANTLE_TESTNET_PRIVATE_KEY,

ARTHERA_TESTNET_PRIVATE_KEY,

} = process.env;

Expand Down Expand Up @@ -68,6 +70,7 @@ const config: HardhatUserConfig = {
'optimism-goerli': {
url: OPTIMISM_TESTNET_ENDPOINT_URL as string,
accounts: OPTIMISM_TESTNET_PRIVATE_KEY !== undefined ? [OPTIMISM_TESTNET_PRIVATE_KEY] : [],
// gasPrice: 35000000000,
},
'optimism': {
url: OPTIMISM_MAINNET_ENDPOINT_URL as string,
Expand Down Expand Up @@ -103,7 +106,12 @@ const config: HardhatUserConfig = {
"mantle-testnet": {
url: "https://rpc.testnet.mantle.xyz/",
accounts: MANTLE_TESTNET_PRIVATE_KEY !== undefined ? [MANTLE_TESTNET_PRIVATE_KEY] : [],
}
},
'arthera-testnet': {
url: 'https://rpc-test.arthera.net',
chainId: 10243,
accounts: ARTHERA_TESTNET_PRIVATE_KEY !== undefined ? [ARTHERA_TESTNET_PRIVATE_KEY] : []
},
},
etherscan: {
apiKey: {
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "gov",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=18.16.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down

0 comments on commit cba9226

Please sign in to comment.