-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tests and deploy to testnet
- Loading branch information
1 parent
1d81e58
commit 57efc39
Showing
6 changed files
with
317 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
MUMBAI_RPC_URL= |
142 changes: 142 additions & 0 deletions
142
broadcast/DeployTestERC1155A.s.sol/80001/deploy-latest.json
Large diffs are not rendered by default.
Oops, something went wrong.
142 changes: 142 additions & 0 deletions
142
broadcast/DeployTestERC1155A.s.sol/80001/run-1706004511.json
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.23; | ||
|
||
import { Script } from "forge-std/Script.sol"; | ||
|
||
import "forge-std/console.sol"; | ||
|
||
import "src/test/mocks/MockERC1155A.sol"; | ||
|
||
contract DeployTestERC1155A is Script { | ||
address public deployedContract; | ||
|
||
function deploy() external { | ||
vm.startBroadcast(); | ||
MockERC1155A erc1155a = new MockERC1155A("Example", "EXM"); | ||
erc1155a.mint(0x48aB8AdF869Ba9902Ad483FB1Ca2eFDAb6eabe92, 1, 100, "" ""); | ||
deployedContract = address(erc1155a); | ||
vm.stopBroadcast(); | ||
console.log("Deployed contract at: %s", deployedContract); | ||
} | ||
} |
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,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Read the RPC URL | ||
source .env | ||
|
||
forge script script/DeployTestERC1155A.s.sol:DeployTestERC1155A --sig "deploy()" --rpc-url $MUMBAI_RPC_URL --broadcast --slow --account defaultKey --sender 0x48aB8AdF869Ba9902Ad483FB1Ca2eFDAb6eabe92 |
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