-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor:
PluginSetup
and deployment helpers (Proxy
, `CloneFactor…
…y`) (#46) * refactor: deployment helpers and plugin setup * refactor: enforce setting the implementation through the setup constructor * chore: maintained changelog * style: run prettier * chore: bump package version * style: run eslint * fix: wrong variable name * style: run solhint * refactor: renaming * docs: improved natspec * refactor: added explicit function returning the implementation * refactor: provide default implementation for the initial build * build: clean typechain * refactor: remove default prepareUpdate implementation for the upgradeable setup * test: setups and deployment helpers * chore: maintained changelog * style: fix linting issues * test: use address constant * test: initialization * docs: typo * refactor: renaming * style: remove trailing underscore * style: improve library order * feat: added event to sdk * build: use sdk 0.0.1-alpha.5 * build: print coverage report in the console * test: use fixtures * fix: linter * refactor: fix names * refactor: reverting prepareUpdate default implementation * style: move fixtures to the end of the files * revert: remove default implementation * style: move fixture to the EOF * Apply suggestions from code review Co-authored-by: Mathias Scherer <[email protected]> --------- Co-authored-by: Mathias Scherer <[email protected]>
- Loading branch information
1 parent
67b6ccd
commit e788454
Showing
26 changed files
with
942 additions
and
341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
"name": "@aragon/osx-commons-contracts", | ||
"license": "AGPL-3.0-or-later", | ||
"description": "The Aragon OSx contracts package containing common utilities", | ||
"version": "1.4.0-alpha.2", | ||
"version": "1.4.0-alpha.3", | ||
"author": { | ||
"name": "aragon", | ||
"url": "https://github.com/aragon" | ||
}, | ||
"devDependencies": { | ||
"@aragon/osx-commons-sdk": "0.0.1-alpha.3", | ||
"@aragon/osx-commons-sdk": "0.0.1-alpha.5", | ||
"@aragon/osx-ethers-v1.0.0": "npm:@aragon/[email protected]", | ||
"@aragon/osx-ethers-v1.3.0": "npm:@aragon/[email protected]", | ||
"@ethersproject/abi": "^5.7.0", | ||
|
@@ -74,7 +74,7 @@ | |
"lint:ts": "cd .. && yarn run lint:contracts:ts", | ||
"test": "hardhat test", | ||
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain", | ||
"clean": "rimraf ./artifacts ./cache ./coverage ./types ./coverage.json && yarn typechain", | ||
"clean": "rimraf ./artifacts ./cache ./coverage ./typechain ./types ./coverage.json && yarn typechain", | ||
"docgen": "hardhat docgen" | ||
} | ||
} |
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
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
Oops, something went wrong.