Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

feat: swap adapter #281

Draft
wants to merge 28 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ GOERLI_API_KEY="provider api key"
MUMBAI_MNEMONIC="your mumbai mnemonic"
MUMBAI_PROVIDER_URL="provider url"
MUMBAI_API_KEY="provider api key"
USDC_OWNER_ADDRESS=0x7713974908Be4BEd47172370115e8b1219F4A5f0
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
ifneq (,$(wildcard ./.env))
include .env
export
endif

URL?=http://localhost:8545

install-deps:
Expand All @@ -19,7 +24,7 @@ start-ganache:

start-forkedMainnet:
@echo " > \033[32mStarting forked environment... \033[0m "
ganache -f $(FORKED_TESTS_PROVIDER) & sleep 3
ganache -f $(FORKED_TESTS_PROVIDER) -u ${USDC_OWNER_ADDRESS} & sleep 3

test-forked:
@echo " > \033[32mTesting contracts... \033[0m "
Expand Down
Loading
Loading