Skip to content

Commit

Permalink
Merge pull request #21 from superform-xyz/tamara-sup-9051-create-a-si…
Browse files Browse the repository at this point in the history
…mple-permissioned-factory-with-events-to-be-the

feat: create a simple permissioned factory with events to be the [sup-9051] [sup-9049]
  • Loading branch information
TamaraRingas authored Nov 4, 2024
2 parents 75b788d + 25511e0 commit d2b2e7d
Show file tree
Hide file tree
Showing 12 changed files with 1,039 additions and 325 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/superform-core"]
path = lib/superform-core
url = https://github.com/superform-xyz/superform-core
[submodule "lib/tokenized-strategy"]
path = lib/tokenized-strategy
url = https://github.com/yearn/tokenized-strategy
[submodule "lib/superform-core"]
path = lib/superform-core
url = https://github.com/superform-xyz/superform-core
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ifeq ($(ENVIRONMENT), local)
export FANTOM_RPC_URL := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/FANTOM_RPC_URL/credential)
export LINEA_RPC_URL := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/LINEA_RPC_URL/credential)
export BLAST_RPC_URL := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BLAST_RPC_URL/credential)
export BARTIO_RPC_URL := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BARTIO_RPC_URL/credential)
export ETHEREUM_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/ETHEREUM_RPC_URL/credential)
export BSC_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BSC_RPC_URL/credential)
export AVALANCHE_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/AVALANCHE_RPC_URL/credential)
Expand All @@ -27,6 +28,7 @@ ifeq ($(ENVIRONMENT), local)
export BSC_TESTNET_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BSC_TESTNET_RPC_URL/credential)
export LINEA_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/LINEA_RPC_URL/credential)
export BLAST_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BLAST_RPC_URL/credential)
export BARTIO_RPC_URL_QN := $(shell op read op://5ylebqljbh3x6zomdxi3qd7tsa/BARTIO_RPC_URL/credential)

endif

Expand All @@ -37,7 +39,7 @@ update:; forge update
# Build & test
build :; FOUNDRY_PROFILE=production forge build
build-sizes :; FOUNDRY_PROFILE=production forge build --sizes
test-vvv :; forge test --match-test test_superVault_rebalance_notWhitelisted --evm-version cancun -vvv
test-vvv :; forge test --match-test test_superVaultConstructorReverts --evm-version cancun -vvv
ftest :; forge test --evm-version cancun
coverage :; forge coverage --evm-version cancun --report lcov
clean :; forge clean
Expand Down
Loading

0 comments on commit d2b2e7d

Please sign in to comment.