Skip to content

Commit 3dd41a1

Browse files
authored
Add 1.1.0 evm bindings (#457)
1 parent f8acdab commit 3dd41a1

9 files changed

+6512
-3
lines changed

sdk/evm/src/bindings.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Provider } from "ethers";
22

3-
import { _0_1_0, _1_0_0 } from "./ethers-contracts/index.js";
3+
import { _0_1_0, _1_0_0, _1_1_0 } from "./ethers-contracts/index.js";
44

55
export const AbiVersions = {
66
"0.1.0": _0_1_0,
77
"1.0.0": _1_0_0,
8-
default: _1_0_0,
8+
"1.1.0": _1_1_0,
9+
default: _1_1_0,
910
} as const;
1011
export type AbiVersion = keyof typeof AbiVersions;
1112

0 commit comments

Comments
 (0)