Skip to content

Commit 953ecb2

Browse files
Merge branch 'main' of github.com:podnetwork/pod-sdk into feat/bridge
2 parents 0fbdce5 + 8e45453 commit 953ecb2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

solidity-sdk/foundry.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ bytecode_hash = "none"
88
cbor_metadata = false
99
remappings = [
1010
"pod-protocol/=../protocol/src",
11+
"pod-sdk/=./src",
1112
"@openzeppelin/=lib/openzeppelin-contracts/"
1213
]
1314
allow_paths = [

solidity-sdk/src/verifier/PodECDSA.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

4-
import {ECDSA} from "./ECDSA.sol";
5-
import {MerkleTree} from "./MerkleTree.sol";
4+
import {ECDSA} from "pod-sdk/verifier/ECDSA.sol";
5+
import {MerkleTree} from "pod-sdk/verifier/MerkleTree.sol";
66
import {IPodRegistry} from "pod-protocol/interfaces/IPodRegistry.sol";
77
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
88
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";

0 commit comments

Comments
 (0)