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

Kernel v2.1 #96

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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.

91 changes: 77 additions & 14 deletions abi/Kernel.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,26 @@
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "AlreadyInitialized",
"type": "error"
},
{
"inputs": [],
"name": "DisabledMode",
"type": "error"
},
{
"inputs": [],
"name": "NotAuthorizedCaller",
"type": "error"
},
{
"inputs": [],
"name": "NotEntryPoint",
"type": "error"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -82,7 +102,50 @@
],
"name": "disableMode",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "eip712Domain",
"outputs": [
{
"internalType": "bytes1",
"name": "fields",
"type": "bytes1"
},
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "string",
"name": "version",
"type": "string"
},
{
"internalType": "uint256",
"name": "chainId",
"type": "uint256"
},
{
"internalType": "address",
"name": "verifyingContract",
"type": "address"
},
{
"internalType": "bytes32",
"name": "salt",
"type": "bytes32"
},
{
"internalType": "uint256[]",
"name": "extensions",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
Expand Down Expand Up @@ -123,7 +186,7 @@
],
"name": "execute",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand All @@ -132,7 +195,7 @@
"outputs": [
{
"internalType": "contract IKernelValidator",
"name": "",
"name": "validator",
"type": "address"
}
],
Expand All @@ -145,7 +208,7 @@
"outputs": [
{
"internalType": "bytes4",
"name": "",
"name": "disabled",
"type": "bytes4"
}
],
Expand All @@ -165,13 +228,13 @@
{
"components": [
{
"internalType": "uint48",
"name": "validUntil",
"internalType": "ValidAfter",
"name": "validAfter",
"type": "uint48"
},
{
"internalType": "uint48",
"name": "validAfter",
"internalType": "ValidUntil",
"name": "validUntil",
"type": "uint48"
},
{
Expand Down Expand Up @@ -253,7 +316,7 @@
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand Down Expand Up @@ -420,7 +483,7 @@
],
"name": "setDefaultValidator",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand Down Expand Up @@ -458,7 +521,7 @@
],
"name": "setExecution",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand All @@ -471,7 +534,7 @@
],
"name": "upgradeTo",
"outputs": [],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand Down Expand Up @@ -552,12 +615,12 @@
"name": "validateUserOp",
"outputs": [
{
"internalType": "uint256",
"internalType": "ValidationData",
"name": "validationData",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"stateMutability": "payable",
"type": "function"
},
{
Expand Down
Loading