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

Commit

Permalink
First pass merge of Angel-protocl repo into evm repo. Currently does …
Browse files Browse the repository at this point in the history
…not compile due to errors
  • Loading branch information
stevieraykatz committed Apr 26, 2023
1 parent c68463b commit bee5f39
Show file tree
Hide file tree
Showing 249 changed files with 40,001 additions and 996 deletions.
48 changes: 36 additions & 12 deletions .env.template
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=
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sol linguist-language=Solidity
22 changes: 18 additions & 4 deletions .gitignore
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
2 changes: 2 additions & 0 deletions .soliumignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
contracts/Migrations.sol
20 changes: 20 additions & 0 deletions .soliumrc.json
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"
]
}
}
Loading

0 comments on commit bee5f39

Please sign in to comment.