forked from scaffold-eth/scaffold-eth-typescript-challenges
-
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.
Features/scaffold-eth#47 (scaffold-eth#49)
* Feature/scaffold-eth#29 eth-hooks v4 changes (scaffold-eth#32) * scaffold-eth#29 testing out contracts context * scaffold-eth#29 v4 compatability changes and merging develop * scaffold-eth#29 eth-hooks v4 minor updates * scaffold-eth#29 more work on contract context scaffold-eth/eth-ui#101 - external contracts are now handles - worked on the contract context initalization in app * scaffold-eth#29 more work on contract context scaffold-eth/eth-ui#101 - created an contract context factory * scaffold-eth#29 preliminary typing system for all the app contracts * scaffold-eth#29 contract typing is almost working * scaffold-eth#29 checkpoint * scaffold-eth#29 checkpoint * scaffold-eth#29 regenerate lock file * scaffold-eth#29 general refactor of v4 types and function names * scaffold-eth#29 created hook and system to load contracts * scaffold-eth#29 using the new eth-hooksv4 paradigm * scaffold-eth#29 fixes from eth-hooksv4 and eth-components * scaffold-eth#29 fixes from eth-hooksv4 and eth-components * scaffold-eth#29 fixes from eth-hooksv4 loading contractrats * scaffold-eth#29 changes to how main provider is passed around * added react async * scaffold-eth#29 final changes to inital beta * scaffold-eth#29 final changes to inital beta * scaffold-eth#29 changes from scaffold-eth/eth-ui#114 * scaffold-eth#29 changes from scaffold-eth/eth-ui#114 * scaffold-eth#29 changes from scaffold-eth/eth-ui#114 event based updates * replace apollo with react-query and graphql-request. lazy load GraphiQl * scaffold-eth#29 tried to make folder structure simpler. better commands to build contracts * scaffold-eth#29 minor fixes * scaffold-eth#29 more comments to contract * update packages * scaffold-eth#46 fixes and autconnect to burner with an option * scaffold-eth#46 packages updates * changes for scaffold-eth/eth-ui#120 useBalance * scaffold-eth#47 changes to building contract, bug fixes, and updates to packages * reenabled dai * scaffold-eth#47 updated packages * scaffold-eth#47 updated packages, fixed externals for vite. * disabled subgraph for now scaffold-eth#48 * updated git ignore * scaffold-eth#47 fix to generic-contract. removed generated fiels * scaffold-eth#47 updated git ignore * scaffold-eth#47 updated action * scaffold-eth#47 updated action * scaffold-eth#47 updated action
- Loading branch information
1 parent
db74761
commit 29a4ce9
Showing
63 changed files
with
25,595 additions
and
26,054 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
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 |
---|---|---|
|
@@ -18,6 +18,8 @@ | |
"test": "yarn workspace @scaffold-eth/hardhat test", | ||
"start": "yarn workspace @scaffold-eth/vite-app start", | ||
"compile": "yarn workspace @scaffold-eth/hardhat compile", | ||
"contracts:build": "yarn workspace @scaffold-eth/hardhat hardhat compile && yarn workspace @scaffold-eth/vite-app contracts:external", | ||
"contracts:rebuild": "yarn workspace @scaffold-eth/hardhat hardhat clean && yarn contracts:build", | ||
"export": "yarn workspace @scaffold-eth/hardhat export", | ||
"deploy": "yarn workspace @scaffold-eth/hardhat deploy", | ||
"watch": "yarn workspace @scaffold-eth/hardhat watch", | ||
|
@@ -59,11 +61,8 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"eslint": "^7.32.0", | ||
"prettier": "^2.4.1", | ||
"shx": "^0.3.3" | ||
}, | ||
"dependencies": { | ||
"react": "^17.0.2" | ||
"eslint": "^8.6.0", | ||
"prettier": "^2.5.1", | ||
"shx": "^0.3.4" | ||
} | ||
} |
This file was deleted.
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
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore | ||
!contract-types | ||
!.gitignore |
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.