forked from zerodevapp/zerodev-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
157 lines (141 loc) · 4.5 KB
/
utils.ts
File metadata and controls
157 lines (141 loc) · 4.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Utilities for examples
import { signerToEcdsaValidator } from "@zerodev/ecdsa-validator";
import { createEcdsaKernelAccountClient } from "@zerodev/presets/zerodev";
import {
KernelAccountClient,
KernelSmartAccount,
SponsorUserOperationParameters,
createKernelAccount,
createKernelAccountClient,
createKernelV1Account,
createZeroDevPaymasterClient,
} from "@zerodev/sdk";
import { ENTRYPOINT_ADDRESS_V06, ENTRYPOINT_ADDRESS_V07 } from "permissionless";
import { SmartAccount } from "permissionless/accounts";
import { Middleware } from "permissionless/actions/smartAccount";
import {
ENTRYPOINT_ADDRESS_V06_TYPE,
EntryPoint,
} from "permissionless/types/entrypoint";
import { Chain, Hex, Transport, createPublicClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { polygonMumbai, sepolia } from "viem/chains";
const zeroDevProjectId = process.env.ZERODEV_PROJECT_ID;
const privateKey = process.env.PRIVATE_KEY;
if (!zeroDevProjectId || !privateKey) {
throw new Error("ZERODEV_PROJECT_ID or PRIVATE_KEY is not set");
}
const signer = privateKeyToAccount(privateKey as Hex);
const chain = sepolia;
const publicClient = createPublicClient({
transport: http(process.env.BUNDLER_RPC),
});
export const getKernelClient = async <entryPoint extends EntryPoint>(
entryPointAddress: entryPoint
) => {
const ecdsaValidator = await signerToEcdsaValidator(publicClient, {
signer,
entryPoint: entryPointAddress,
});
const account = await createKernelAccount(publicClient, {
plugins: {
sudo: ecdsaValidator,
},
entryPoint: entryPointAddress,
});
console.log("My account:", account.address);
return createKernelAccountClient({
account,
entryPoint: entryPointAddress,
chain,
bundlerTransport: http(process.env.BUNDLER_RPC),
middleware: {
sponsorUserOperation: async ({ userOperation }) => {
const paymasterClient = createZeroDevPaymasterClient({
chain,
transport: http(process.env.PAYMASTER_RPC),
entryPoint: entryPointAddress,
});
const _userOperation =
userOperation as SponsorUserOperationParameters<entryPoint>["userOperation"];
return paymasterClient.sponsorUserOperation({
userOperation: _userOperation,
entryPoint: entryPointAddress,
});
},
},
});
};
export const getKernelV1Account = async (): Promise<
KernelSmartAccount<ENTRYPOINT_ADDRESS_V06_TYPE>
> => {
const privateKey = process.env.PRIVATE_KEY as Hex;
if (!privateKey) {
throw new Error("PRIVATE_KEY environment variable not set");
}
const rpcUrl = process.env.BUNDLER_RPC;
if (!rpcUrl) {
throw new Error("BUNDLER_RPC environment variable not set");
}
const publicClient = createPublicClient({
transport: http(rpcUrl),
});
const signer = privateKeyToAccount(privateKey);
return createKernelV1Account(publicClient, {
signer,
index: BigInt(0),
// [TODO]: fix type, change to entryPoint from entrypoint
entrypoint: ENTRYPOINT_ADDRESS_V06,
}) as unknown as KernelSmartAccount<
ENTRYPOINT_ADDRESS_V06_TYPE,
Transport,
Chain
>;
};
export const getKernelV1AccountClient = async ({
account,
middleware,
}: Middleware<ENTRYPOINT_ADDRESS_V06_TYPE> & {
account?: KernelSmartAccount<ENTRYPOINT_ADDRESS_V06_TYPE>;
} = {}) => {
const zeroDevBundlerRpcHost = process.env.BUNDLER_RPC;
return createKernelAccountClient({
account,
chain,
bundlerTransport: http(zeroDevBundlerRpcHost),
middleware,
entryPoint: ENTRYPOINT_ADDRESS_V06,
}) as KernelAccountClient<
EntryPoint,
Transport,
Chain,
KernelSmartAccount<EntryPoint>
>;
};
export const getZeroDevPaymasterClient = <entryPoint extends EntryPoint>(
entryPointAddress: entryPoint
) => {
if (!process.env.PAYMASTER_RPC)
throw new Error("PAYMASTER_RPC environment variable not set");
const paymasterRpc = process.env.PAYMASTER_RPC;
return createZeroDevPaymasterClient({
chain,
transport: http(paymasterRpc),
entryPoint: entryPointAddress,
});
};
export const getZeroDevERC20PaymasterClient = <entryPoint extends EntryPoint>(
entryPointAddress: entryPoint
) => {
if (!process.env.ZERODEV_PROJECT_ID)
throw new Error("ZERODEV_PROJECT_ID environment variable not set");
return createZeroDevPaymasterClient({
chain,
transport: http(
process.env.PAYMASTER_RPC ||
"https://rpc.zerodev.app/api/v2/paymaster/" +
process.env.ZERODEV_PROJECT_ID
),
entryPoint: entryPointAddress,
});
};