Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Add 2.2 Kernel support #119

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 0 additions & 112 deletions abi/ECDSAKernelFactory.json

This file was deleted.

34 changes: 29 additions & 5 deletions abi/ECDSAValidator.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
],
"name": "disable",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand Down Expand Up @@ -67,7 +67,31 @@
],
"name": "enable",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_caller",
"type": "address"
},
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "validCaller",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
Expand All @@ -86,7 +110,7 @@
"name": "validateSignature",
"outputs": [
{
"internalType": "uint256",
"internalType": "ValidationData",
"name": "",
"type": "uint256"
}
Expand Down Expand Up @@ -172,12 +196,12 @@
"name": "validateUserOp",
"outputs": [
{
"internalType": "uint256",
"internalType": "ValidationData",
"name": "validationData",
"type": "uint256"
}
],
"stateMutability": "view",
"stateMutability": "payable",
"type": "function"
}
]
Expand Down
Loading