Skip to content

Commit

Permalink
fix(paymaster): use string for nonce in user operation
Browse files Browse the repository at this point in the history
  • Loading branch information
roushou committed Jun 22, 2024
1 parent fdd0e9d commit a0a81c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/early-toes-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@coinbase-platform/paymaster": patch
---

fix(paymaster): use `string` for nonce in user operation
2 changes: 1 addition & 1 deletion packages/paymaster/src/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export type RpcRequestConfig =

type UserOperation = {
sender: string;
nonce: number;
nonce: string;
initCode: string;
callData: string;
callGasLimit: string;
Expand Down

0 comments on commit a0a81c9

Please sign in to comment.