-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1037 from liquity/main
Update master / release assets
- Loading branch information
Showing
212 changed files
with
56,502 additions
and
27,069 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,7 @@ | ||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.5.1.cjs |
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
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,25 @@ | ||
import { HardhatUserConfig } from "hardhat/config"; | ||
|
||
const alchemyApiKey = process.env.ALCHEMY_API_KEY; | ||
|
||
const config: HardhatUserConfig = { | ||
solidity: "0.7.3", | ||
networks: { | ||
hardhat: { | ||
chainId: 1, | ||
forking: { | ||
url: `https://eth-mainnet.g.alchemy.com/v2/${alchemyApiKey}`, | ||
blockNumber: 16233419 | ||
}, | ||
accounts: [ | ||
{ | ||
privateKey: "0x4d5db4107d237df6a3d58ee5f70ae63d73d7658d4026f2eefd2f204c81682cb7", | ||
balance: "100000000000000000000000" | ||
} | ||
], | ||
initialBaseFeePerGas: 0 | ||
} | ||
} | ||
}; | ||
|
||
export default config; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
version: "2" | ||
region: "eu" | ||
web_addr: 127.0.0.1:41356 | ||
tunnels: | ||
web: | ||
addr: 32318 | ||
proto: http | ||
schemes: [http] | ||
host_header: rewrite | ||
rpc: | ||
addr: 8545 | ||
proto: http | ||
schemes: [http] |
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 |
---|---|---|
|
@@ -14,6 +14,9 @@ | |
"**/react-scripts" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=14.0.0 <17.0.0" | ||
}, | ||
"release": { | ||
"extends": "semantic-release-monorepo", | ||
"branches": [ | ||
|
@@ -40,15 +43,19 @@ | |
] | ||
}, | ||
"scripts": { | ||
"build": "run-s build:*", | ||
"build": "run-s 'build:*'", | ||
"build:dev-frontend": "yarn workspace @liquity/dev-frontend build", | ||
"build:subgraph": "yarn workspace @liquity/subgraph build", | ||
"deploy": "yarn workspace @liquity/lib-ethers hardhat deploy", | ||
"docs": "run-s docs:*", | ||
"deploy:chicken-bonds": "yarn --cwd ../ChickenBond deploy-fork compile publish:local", | ||
"watch:chicken-bonds": "yarn --cwd ../ChickenBond watch", | ||
"link:chicken-bonds": "yarn workspace @liquity/dev-frontend link:chicken-bonds", | ||
"unlink:chicken-bonds": "yarn workspace @liquity/dev-frontend unlink:chicken-bonds", | ||
"docs": "run-s 'docs:*'", | ||
"docs:collect-sdk-apis": "node scripts/collect-sdk-apis.js", | ||
"docs:api-documenter": "api-documenter generate -i temp/sdk-apis -o docs/sdk", | ||
"fuzzer": "yarn workspace @liquity/fuzzer fuzzer", | ||
"prepare": "run-s prepare:*", | ||
"postinstall": "run-s prepare", | ||
"prepare": "run-s 'prepare:*'", | ||
"prepare:contracts": "yarn workspace @liquity/contracts prepare", | ||
"prepare:lib-base": "yarn workspace @liquity/lib-base prepare", | ||
"prepare:lib-ethers": "yarn workspace @liquity/lib-ethers prepare", | ||
|
@@ -58,35 +65,37 @@ | |
"prepare:subgraph": "yarn workspace @liquity/subgraph prepare", | ||
"prepare:docs": "run-s docs", | ||
"rebuild": "run-s prepare build", | ||
"release": "run-s release:*", | ||
"release": "run-s 'release:*'", | ||
"release:delete-dev-deployments": "yarn workspace @liquity/lib-ethers delete-dev-deployments", | ||
"release:lib-base": "yarn workspace @liquity/lib-base semantic-release", | ||
"release:lib-ethers": "yarn workspace @liquity/lib-ethers semantic-release", | ||
"release:lib-react": "yarn workspace @liquity/lib-react semantic-release", | ||
"release:providers": "yarn workspace @liquity/providers semantic-release", | ||
"save-live-version": "yarn workspace @liquity/lib-ethers save-live-version", | ||
"start-dev-chain": "run-s start-dev-chain:*", | ||
"start-dev-chain": "run-s 'start-dev-chain:*'", | ||
"start-dev-chain:openethereum": "node dev-chain/start.js", | ||
"start-dev-chain:prepare-providers": "yarn prepare:providers", | ||
"start-dev-chain:deploy-contracts": "yarn deploy --network dev", | ||
"start-dev-chain:prepare-lib-ethers": "yarn prepare:lib-ethers", | ||
"stop-dev-chain": "docker kill openethereum", | ||
"start-dev-frontend": "yarn workspace @liquity/dev-frontend start", | ||
"start-demo": "run-s start-demo:*", | ||
"start-demo": "run-s 'start-demo:*'", | ||
"start-demo:dev-chain": "yarn start-dev-chain", | ||
"start-demo:dev-frontend": "yarn workspace @liquity/dev-frontend start-demo", | ||
"stop-demo": "yarn stop-dev-chain", | ||
"test": "run-s test:*", | ||
"start-fork": "hardhat --config hardhat.config.mainnet-fork.ts node", | ||
"start-tunnel": "./scripts/start-local-tunnel.sh", | ||
"test": "run-s 'test:*'", | ||
"test:lib-base": "yarn workspace @liquity/lib-base test", | ||
"test:lib-ethers": "yarn workspace @liquity/lib-ethers test", | ||
"test:dev-frontend": "run-s --continue-on-error test:dev-frontend:*", | ||
"test:dev-frontend": "run-s --continue-on-error 'test:dev-frontend:*'", | ||
"test:dev-frontend:start-dev-chain": "yarn start-dev-chain", | ||
"test:dev-frontend:run": "yarn workspace @liquity/dev-frontend test --watchAll=false --forceExit --detectOpenHandles", | ||
"test:dev-frontend:run": "yarn workspace @liquity/dev-frontend test run", | ||
"test:dev-frontend:stop-dev-chain": "yarn stop-dev-chain", | ||
"test-contracts": "yarn workspace @liquity/contracts test", | ||
"test-live": "run-s test-live:*", | ||
"test-live": "run-s 'test-live:*'", | ||
"test-live:lib-ethers": "yarn workspace @liquity/lib-ethers test-live", | ||
"coverage": "run-s coverage:*", | ||
"coverage": "run-s 'coverage:*'", | ||
"coverage:contracts": "yarn workspace @liquity/contracts coverage" | ||
}, | ||
"devDependencies": { | ||
|
@@ -98,5 +107,6 @@ | |
"prettier": "^2.1.2", | ||
"semantic-release": "^17.4.2", | ||
"semantic-release-monorepo": "^7.0.4" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.