-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Uninstall * forge install: suave-std * Update forge example
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.8; | ||
|
||
import "suave-std/suavelib/SuaveForge.sol"; | ||
import "suave-std/Test.sol"; | ||
import "forge-std/Script.sol"; | ||
|
||
contract Forge is Script { | ||
contract Forge is Script, SuaveEnabled { | ||
address[] public addressList = [0xC8df3686b4Afb2BB53e60EAe97EF043FE03Fb829]; | ||
|
||
function run() public { | ||
Suave.DataRecord memory bid = SuaveForge.newDataRecord(0, addressList, addressList, "namespace"); | ||
Suave.DataRecord memory bid = Suave.newDataRecord(0, addressList, addressList, "namespace"); | ||
} | ||
} |
Submodule suave-std
updated
14 files
+22 −1 | .github/workflows/ci.yml | |
+28 −3 | .github/workflows/suave-lib-sync.yml | |
+35 −0 | README.md | |
+15 −0 | src/Test.sol | |
+13 −2 | src/Transactions.sol | |
+47 −0 | src/forge/Connector.sol | |
+41 −0 | src/forge/Registry.sol | |
+5 −4 | src/suavelib/Suave.sol | |
+0 −167 | src/suavelib/SuaveForge.sol | |
+20 −0 | test/Forge.t.sol | |
+26 −5 | test/Transactions.t.sol | |
+13 −0 | tools/forge-gen/README.md | |
+3 −0 | tools/forge-gen/go.mod | |
+168 −0 | tools/forge-gen/main.go |