Skip to content

Commit 368d5d8

Browse files
committed
docs: update README
1 parent 05d7d05 commit 368d5d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ forge install openvm-org/openvm-solidity-sdk
1717
If you are using a deployed instance of the verifier contract, then you can import the interfaces in your contract directly.
1818

1919
```solidity
20-
import { IOpenVmHalo2Verifier } from "openvm-solidity-sdk/v1.1.1/interfaces/IOpenVmHalo2Verifier.sol";
20+
import { IOpenVmHalo2Verifier } from "openvm-solidity-sdk/v1.1/interfaces/IOpenVmHalo2Verifier.sol";
2121
2222
contract MyContract {
2323
function myFunction() public view {
@@ -34,7 +34,7 @@ contract MyContract {
3434
If you want to deploy your own instance of the verifier contract, you can use `forge create`:
3535

3636
```bash
37-
forge create src/v1.1.1/OpenVmHalo2Verifier.sol:OpenVmHalo2Verifier --rpc-url $RPC --private-key $PRIVATE_KEY --broadcast
37+
forge create src/v1.1/OpenVmHalo2Verifier.sol:OpenVmHalo2Verifier --rpc-url $RPC --private-key $PRIVATE_KEY --broadcast
3838
```
3939

4040
If you want to import the verifier contract into your own repository for testing purposes, note that it is locked to Solidity version `0.8.19`. If your project uses a different version, the import may not compile. As a workaround, you can compile the contract separately and use `vm.etch()` to inject the raw bytecode into your tests.

0 commit comments

Comments
 (0)