Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/of-372-redeploy-reward-facet #141

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,14 @@ update:; make \
update-ERC721FactoryFacet:; forge script scripts/facet/ERC721FactoryFacet.s.sol:Update --rpc-url $(rpc) --broadcast $(verbose) $(legacy) $(slow)
update-ERC20FactoryFacet:; forge script scripts/facet/ERC20FactoryFacet.s.sol:Update --rpc-url $(rpc) --broadcast $(verbose) $(legacy) $(slow)

update-RewardsFacet:; forge script scripts/facet/RewardsFacet.s.sol:Update --rpc-url $(rpc) --broadcast $(verbose) $(legacy) $(slow)

# Add badge minting functionality
# Date 20.05.24
# updates ERC721RewardFacet to update mintERC721 function and add mintBadge and batchMintBadge functions
# deploys and registers RewardsFacet contract
# PR #126 https://github.com/open-format/contracts/pull/126
update-RewardsFacet:; forge script scripts/facet/RewardsFacet.s.sol:Update_Add_badgeMintingFunctionality --rpc-url $(rpc) --broadcast $(verbose) $(legacy) $(slow)
update-RewardsFacet-add-badgeMintingFunctionality:; forge script scripts/facet/RewardsFacet.s.sol:Update_Add_badgeMintingFunctionality --rpc-url $(rpc) --broadcast $(verbose) $(legacy) $(slow)

# Add ERC721Badge contract
# Date 14.05.24
Expand Down
4 changes: 2 additions & 2 deletions deployed/421614-staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"startBlock": 53180881
},
"RewardFacet": {
"address": "0xDEc4CaD610B79a0c6e5D3530E6e45662ba6D0f3c",
"startBlock": 53194440
"address": "0x13dd8f63A9452adEA3f2152B12a13563AC433c41",
"startBlock": 85607165
},
"SettingsFacet": {
"address": "0xe0aaaf2A2F05DbE1feDa6aA6336fF2533D079BF0",
Expand Down
4 changes: 2 additions & 2 deletions deployed/421614.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"startBlock": 32647137
},
"RewardFacet": {
"address": "0xc0553B98d93114FB241196272603DF4543359820",
"startBlock": 61039040
"address": "0x5D558E68b32E6f416b09d639B601f6eE8729Fbc7",
"startBlock": 87103667
},
"SettingsFacet": {
"address": "0xA09a42BbA9Ba0bF06dFE3ED77a0086C7Ee831163",
Expand Down
Loading