@@ -11,20 +11,27 @@ import {
11
11
} from "viem" ;
12
12
import { mainnet } from "viem/chains" ;
13
13
import { normalize } from "viem/ens" ;
14
- import { eip712WalletActions } from "viem/zksync" ;
14
+ import { eip712WalletActions , getGeneralPaymasterInput } from "viem/zksync" ;
15
+
15
16
16
17
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
+ } ;
20
22
} ;
21
23
22
24
export function viem (
23
25
client : ViemWalletClient ,
24
26
options ?: ViemOptions
25
27
) : 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
+
28
35
29
36
const publicClient = client . extend ( publicActions ) ;
30
37
@@ -85,13 +92,13 @@ export function viem(
85
92
86
93
const toAddress = await this . resolveAddress ( to ) ;
87
94
88
- const paymaster = options ?. paymaster ?? defaultPaymaster ;
95
+ const paymaster = options ?. paymaster ?. address ?? defaultPaymaster ;
89
96
const paymasterInput =
90
- options ?. paymasterInput ?? defaultPaymasterInput ;
91
- const isPaymasterTx = ! ! paymaster || ! ! paymasterInput ;
97
+ options ?. paymaster ?. input ?? defaultPaymasterInput ;
98
+ const txHasPaymaster = ! ! paymaster || ! ! paymasterInput ;
92
99
93
100
// If paymaster params exist, extend with EIP712 actions
94
- const sendingClient = isPaymasterTx
101
+ const sendingClient = txHasPaymaster
95
102
? client . extend ( eip712WalletActions ( ) )
96
103
: client ;
97
104
@@ -102,7 +109,7 @@ export function viem(
102
109
to : toAddress ,
103
110
chain : client . chain ,
104
111
value,
105
- ...( isPaymasterTx ? { paymaster, paymasterInput } : { } ) ,
112
+ ...( txHasPaymaster ? { paymaster, paymasterInput } : { } ) ,
106
113
} ;
107
114
108
115
const txHash = await sendingClient . sendTransaction ( txParams ) ;
@@ -130,7 +137,7 @@ export function viem(
130
137
args,
131
138
} ) ;
132
139
133
- if ( isPaymasterTx ) {
140
+ if ( txHasPaymaster ) {
134
141
// With paymaster, we must use sendTransaction() directly
135
142
const txParams = {
136
143
account : client . account ,
0 commit comments