We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 044b093 commit b48e2b8Copy full SHA for b48e2b8
3 files changed
packages/executooor-ethers/src/index.ts
@@ -1,3 +1,2 @@
1
-export { ExecutorEncoder } from "./ExecutorEncoder";
2
-export type { AssetRequest } from "./ExecutorEncoder";
+export * from "./ExecutorEncoder";
3
export * from "./types";
packages/executooor-viem/src/ExecutorEncoder.ts
@@ -19,8 +19,6 @@ import { writeContract } from "viem/actions";
19
import { erc20WrapperAbi } from "./abis";
20
import { executorAbi } from "./contracts/Executor";
21
22
-export type PromiseOrValue<T> = T | Promise<T>;
23
-
24
export interface AssetRequest {
25
asset: Address;
26
amount: bigint;
packages/executooor-viem/src/index.ts
export * from "./contracts/Executor";
0 commit comments