File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ forge install openvm-org/openvm-solidity-sdk
17
17
Once you have the SDK installed, you can import the SDK contracts into your Solidity project:
18
18
19
19
``` solidity
20
- import "openvm-solidity-sdk/v1.2 /OpenVmHalo2Verifier.sol";
20
+ import "openvm-solidity-sdk/v1.3 /OpenVmHalo2Verifier.sol";
21
21
```
22
22
23
23
If you are using an already-deployed verifier contract, you can simply import the ` IOpenVmHalo2Verifier ` interface:
24
24
25
25
``` solidity
26
- import { IOpenVmHalo2Verifier } from "openvm-solidity-sdk/v1.2 /interfaces/IOpenVmHalo2Verifier.sol";
26
+ import { IOpenVmHalo2Verifier } from "openvm-solidity-sdk/v1.3 /interfaces/IOpenVmHalo2Verifier.sol";
27
27
28
28
contract MyContract {
29
29
function myFunction() public view {
@@ -49,7 +49,7 @@ To deploy an instance of a verifier contract, you can clone the repo and simply
49
49
``` bash
50
50
git clone --recursive https://github.com/openvm-org/openvm-solidity-sdk.git
51
51
cd openvm-solidity-sdk
52
- forge create src/v1.2 /OpenVmHalo2Verifier.sol:OpenVmHalo2Verifier --rpc-url $RPC --private-key $PRIVATE_KEY --broadcast
52
+ forge create src/v1.3 /OpenVmHalo2Verifier.sol:OpenVmHalo2Verifier --rpc-url $RPC --private-key $PRIVATE_KEY --broadcast
53
53
```
54
54
55
55
We recommend a direct deployment from the SDK repo since the proper compiler configurations are all pre-set.
You can’t perform that action at this time.
0 commit comments