Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit 5269444

Browse files
Merge pull request #46 from AngelProtocolFinance/merge-pedals
Merge pedals
2 parents c68463b + 50dc7db commit 5269444

File tree

859 files changed

+251833
-44910
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

859 files changed

+251833
-44910
lines changed

.env.template

Lines changed: 37 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
1-
## API KEYS
2-
ETHERSCAN_API_KEY=
3-
POLYSCAN_API_KEY
4-
MAINNET_URL=
5-
GOERLI_URL=
6-
POLYGON_URL=
7-
MUMBAI_URL=
8-
9-
## EOA PKEYS/ADDRS
10-
DEPLOYER_KEY=
11-
DEPLOYER_ADDR=
12-
USER_KEY=
13-
USER_ADDR=
1+
## Network where to deploy contracts
2+
# options=[hardhat, polygon, mumbai, goerli]
3+
NETWORK="hardhat"
4+
VERIFY_CONTRACTS=false
5+
PROD=true
6+
7+
## Etherscan explorer API config
8+
ETHERSCAN_API_KEY=""
9+
MAINNET_URL="https://api.etherscan.io/"
10+
GOERLI_RPC_URL="https://api-goerli.etherscan.io/"
11+
12+
## Polyscan explorer API config
13+
POLYSCAN_API_KEY=""
14+
POLYGON_RPC_URL="https://api.polygonscan.com/"
15+
MUMBAI_RPC_URL="https://api-testnet.polygonscan.com/"
16+
17+
##Solidity config settings
18+
OPTIMIZER_FLAG=true
19+
OPTIMIZER_RUNS=200
20+
21+
## Ganache config
22+
GANACHE_RPC_URL="http://127.0.0.1:8545"
23+
GANACHE_PRIVATE_KEY=""
24+
25+
ROUTER_ADDRESS=""
26+
27+
## Account private keys
28+
DEPLOYER_KEY=""
29+
DEPLOYER_ADDRESS=""
30+
PROXY_ADMIN_KEY=""
31+
PROXY_ADMIN_ADDRESS=""
32+
AP_TEAM_1_KEY=""
33+
AP_TEAM_1_ADDRESS=""
34+
AP_TEAM_2_KEY=""
35+
AP_TEAM_2_ADDRESS=""
36+
AP_TEAM_3_KEY=""
37+
AP_TEAM_3_ADDRESS=""

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.sol linguist-language=Solidity

.gitignore

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
## Local dev env
1+
## Local env
22
node_modules
3+
.idea
4+
package-lock.json
5+
.yarnclean
6+
.vscode
7+
.env
8+
.prettierrc
9+
.nvmrc
10+
contract-address-local.json
11+
dist
12+
13+
#Coverage files
14+
coverage
15+
16+
#Hardhat files
317
cache
418
artifacts
5-
dist
6-
.env
719
.openzeppelin
8-
.vscode
20+
21+
# Py
22+
Pipfile.lock

.soliumignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
contracts/Migrations.sol

.soliumrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"extends": "solium:recommended",
3+
"plugins": [
4+
"security"
5+
],
6+
"rules": {
7+
"quotes": [
8+
"error",
9+
"double"
10+
],
11+
"indentation": [
12+
"error",
13+
4
14+
],
15+
"linebreak-style": [
16+
"error",
17+
"unix"
18+
]
19+
}
20+
}

0 commit comments

Comments
 (0)