-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try pay user operation request model validator
- Loading branch information
1 parent
77570db
commit 74c8675
Showing
8 changed files
with
295 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package model | ||
|
||
type UserOperationItem struct { | ||
Sender string `json:"sender"` | ||
Nonce string `json:"nonce"` | ||
InitCode string `json:"init_code"` | ||
CallGasLimit string `json:"call_gas_limit"` | ||
VerificationGasList string `json:"verification_gas_list"` | ||
PerVerificationGas string `json:"per_verification_gas"` | ||
MaxFeePerGas string `json:"max_fee_per_gas"` | ||
MaxPriorityFeePerGas string `json:"max_priority_fee_per_gas"` | ||
Sender string `json:"sender" binding:"required"` | ||
Nonce string `json:"nonce" binding:"required"` | ||
InitCode string `json:"init_code" binding:"required"` | ||
CallGasLimit string `json:"call_gas_limit" binding:"required"` | ||
VerificationGasList string `json:"verification_gas_list" binding:"required"` | ||
PerVerificationGas string `json:"per_verification_gas" binding:"required"` | ||
MaxFeePerGas string `json:"max_fee_per_gas" binding:"required"` | ||
MaxPriorityFeePerGas string `json:"max_priority_fee_per_gas" binding:"required"` | ||
Signature string `json:"signature" binding:"required"` | ||
//paymasterAndData string `json:"paymaster_and_data"` | ||
Signature string `json:"signature"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.