-
Notifications
You must be signed in to change notification settings - Fork 30
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 #303 from oasisprotocol/CedarMist/client-refactor
Add Viem v2 & Wagmi v2 packages, and remove Ethers dependency
- Loading branch information
Showing
174 changed files
with
17,366 additions
and
13,720 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
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,16 @@ | ||
NPM ?= pnpm | ||
|
||
subdirs = runtime clients integrations contracts | ||
|
||
all: | ||
@echo ... | ||
|
||
clean distclean build lint:: | ||
for sd in $(subdirs); do $(MAKE) -C $$sd $@; done | ||
|
||
$(subdirs):: | ||
$(MAKE) -C $@ | ||
|
||
full: clean build | ||
|
||
.PHONY: full all |
Oops, something went wrong.