Skip to content

Commit 746f2b2

Browse files
committed
Iterate on names and fix types
1 parent d4fad06 commit 746f2b2

File tree

3 files changed

+29
-16
lines changed

3 files changed

+29
-16
lines changed

typescript/examples/vercel-ai/abstract/index.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ const walletClient = createWalletClient({
2727
(async () => {
2828
const tools = await getOnChainTools({
2929
wallet: viem(walletClient, {
30-
defaultPaymaster: process.env.PAYMASTER_ADDRESS as `0x${string}`,
30+
paymaster: {
31+
defaultPaymaster:
32+
process.env.PAYMASTER_ADDRESS as `0x${string}`,
33+
},
3134
}),
3235
plugins: [sendETH(), erc20({ tokens: [USDC, PEPE] })],
3336
});
@@ -36,7 +39,8 @@ const walletClient = createWalletClient({
3639
model: openai("gpt-4o-mini"),
3740
tools: tools,
3841
maxSteps: 5,
39-
prompt: "Send 1 USDC to 0x016c0803FFC6880a9a871ba104709cDBf341A90a",
42+
prompt:
43+
"Send 0.000001 ETH to <address> and return the tx id",
4044
});
4145

4246
console.log(result.text);

typescript/packages/core/src/wallets/evm.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ export type EVMTransaction = {
1515
};
1616

1717
export type EVMTransactionOptions = {
18-
paymaster?: string;
19-
paymasterInput?: string;
18+
paymaster?: {
19+
address: `0x${string}`;
20+
input: `0x${string}`;
21+
};
2022
};
2123

2224
export type EVMReadRequest = {

typescript/packages/wallets/viem/src/index.ts

+19-12
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,27 @@ import {
1111
} from "viem";
1212
import { mainnet } from "viem/chains";
1313
import { normalize } from "viem/ens";
14-
import { eip712WalletActions } from "viem/zksync";
14+
import { eip712WalletActions, getGeneralPaymasterInput } from "viem/zksync";
15+
1516

1617
export type ViemOptions = {
17-
// Only used for zkSync Stack networks
18-
defaultPaymaster?: string;
19-
defaultPaymasterInput?: string;
18+
paymaster?: {
19+
defaultAddress: `0x${string}`;
20+
defaultInput: `0x${string}`;
21+
};
2022
};
2123

2224
export function viem(
2325
client: ViemWalletClient,
2426
options?: ViemOptions
2527
): EVMWalletClient {
26-
const defaultPaymaster = options?.defaultPaymaster;
27-
const defaultPaymasterInput = options?.defaultPaymasterInput;
28+
const defaultPaymaster = options?.paymaster?.defaultAddress ?? "";
29+
const defaultPaymasterInput =
30+
options?.paymaster?.defaultInput ??
31+
getGeneralPaymasterInput({
32+
innerInput: "0x",
33+
});
34+
2835

2936
const publicClient = client.extend(publicActions);
3037

@@ -85,13 +92,13 @@ export function viem(
8592

8693
const toAddress = await this.resolveAddress(to);
8794

88-
const paymaster = options?.paymaster ?? defaultPaymaster;
95+
const paymaster = options?.paymaster?.address ?? defaultPaymaster;
8996
const paymasterInput =
90-
options?.paymasterInput ?? defaultPaymasterInput;
91-
const isPaymasterTx = !!paymaster || !!paymasterInput;
97+
options?.paymaster?.input ?? defaultPaymasterInput;
98+
const txHasPaymaster = !!paymaster || !!paymasterInput;
9299

93100
// If paymaster params exist, extend with EIP712 actions
94-
const sendingClient = isPaymasterTx
101+
const sendingClient = txHasPaymaster
95102
? client.extend(eip712WalletActions())
96103
: client;
97104

@@ -102,7 +109,7 @@ export function viem(
102109
to: toAddress,
103110
chain: client.chain,
104111
value,
105-
...(isPaymasterTx ? { paymaster, paymasterInput } : {}),
112+
...(txHasPaymaster ? { paymaster, paymasterInput } : {}),
106113
};
107114

108115
const txHash = await sendingClient.sendTransaction(txParams);
@@ -130,7 +137,7 @@ export function viem(
130137
args,
131138
});
132139

133-
if (isPaymasterTx) {
140+
if (txHasPaymaster) {
134141
// With paymaster, we must use sendTransaction() directly
135142
const txParams = {
136143
account: client.account,

0 commit comments

Comments
 (0)