This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First pass merge of Angel-protocl repo into evm repo. Currently does …
…not compile due to errors
- Loading branch information
1 parent
c68463b
commit bee5f39
Showing
249 changed files
with
40,001 additions
and
996 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 |
---|---|---|
@@ -1,13 +1,37 @@ | ||
## API KEYS | ||
## Network where to deploy contracts | ||
# options = [polygon, mumbai, goerli] | ||
NETWORK="mumbai" | ||
VERIFY_CONTRACTS = false | ||
PROD = true | ||
|
||
|
||
## Goerli config | ||
GOERLI_RPC_URL= | ||
ETHERSCAN_API_KEY= | ||
POLYSCAN_API_KEY | ||
MAINNET_URL= | ||
GOERLI_URL= | ||
POLYGON_URL= | ||
MUMBAI_URL= | ||
|
||
## EOA PKEYS/ADDRS | ||
DEPLOYER_KEY= | ||
DEPLOYER_ADDR= | ||
USER_KEY= | ||
USER_ADDR= | ||
|
||
## Polygon tetnet config | ||
MUMBAI_RPC_URL= | ||
POLYSCAN_API_KEY= | ||
|
||
## Polygon mainnet config | ||
POLYGON_RPC_URL= | ||
|
||
##Solidity config settings | ||
OPTIMIZER_FLAG=true | ||
OPTIMIZER_RUNS=200 | ||
|
||
GANACHE_RPC_URL = "http://127.0.0.1:7545" | ||
ROUTER_ADDRESS = | ||
GANACHE_PRIVATE_KEY = | ||
|
||
## Account private keys | ||
ACCOUNT_PRIVATE_KEY= | ||
ACCOUNT_ADDRESS= | ||
PROXY_ADMIN_KEY= | ||
PROXY_ADMIN_ADDRESS= | ||
AP_TEAM_1_KEY= | ||
AP_TEAM_1_ADDRESS= | ||
AP_TEAM_2_KEY= | ||
AP_TEAM_2_ADDRESS= | ||
AP_TEAM_3_KEY= | ||
AP_TEAM_3_ADDRESS= |
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 @@ | ||
*.sol linguist-language=Solidity |
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,8 +1,22 @@ | ||
## Local dev env | ||
## Local env | ||
node_modules | ||
.idea | ||
package-lock.json | ||
yarn.lock | ||
.vscode | ||
.env | ||
.prettierrc | ||
.nvmrc | ||
contract-address-local.json | ||
dist | ||
|
||
#Coverage files | ||
coverage | ||
|
||
#Hardhat files | ||
cache | ||
artifacts | ||
dist | ||
.env | ||
.openzeppelin | ||
.vscode | ||
|
||
# Py | ||
Pipfile.lock |
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,2 @@ | ||
node_modules | ||
contracts/Migrations.sol |
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,20 @@ | ||
{ | ||
"extends": "solium:recommended", | ||
"plugins": [ | ||
"security" | ||
], | ||
"rules": { | ||
"quotes": [ | ||
"error", | ||
"double" | ||
], | ||
"indentation": [ | ||
"error", | ||
4 | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
] | ||
} | ||
} |
Oops, something went wrong.