Skip to content

Commit 84f463e

Browse files
committed
feat: add dg support in omnibus
1 parent 5fb396a commit 84f463e

File tree

16 files changed

+1637
-50
lines changed

16 files changed

+1637
-50
lines changed

abi/dg/AdminExecutor.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
[
2+
{
3+
"inputs": [{ "internalType": "address", "name": "owner", "type": "address" }],
4+
"stateMutability": "nonpayable",
5+
"type": "constructor"
6+
},
7+
{
8+
"inputs": [{ "internalType": "address", "name": "target", "type": "address" }],
9+
"name": "AddressEmptyCode",
10+
"type": "error"
11+
},
12+
{
13+
"inputs": [{ "internalType": "address", "name": "account", "type": "address" }],
14+
"name": "AddressInsufficientBalance",
15+
"type": "error"
16+
},
17+
{ "inputs": [], "name": "FailedInnerCall", "type": "error" },
18+
{
19+
"inputs": [{ "internalType": "address", "name": "owner", "type": "address" }],
20+
"name": "OwnableInvalidOwner",
21+
"type": "error"
22+
},
23+
{
24+
"inputs": [{ "internalType": "address", "name": "account", "type": "address" }],
25+
"name": "OwnableUnauthorizedAccount",
26+
"type": "error"
27+
},
28+
{
29+
"anonymous": false,
30+
"inputs": [
31+
{ "indexed": false, "internalType": "address", "name": "sender", "type": "address" },
32+
{ "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" }
33+
],
34+
"name": "ETHReceived",
35+
"type": "event"
36+
},
37+
{
38+
"anonymous": false,
39+
"inputs": [
40+
{ "indexed": true, "internalType": "address", "name": "target", "type": "address" },
41+
{ "indexed": false, "internalType": "uint256", "name": "ethValue", "type": "uint256" },
42+
{ "indexed": false, "internalType": "bytes", "name": "data", "type": "bytes" },
43+
{ "indexed": false, "internalType": "bytes", "name": "returndata", "type": "bytes" }
44+
],
45+
"name": "Executed",
46+
"type": "event"
47+
},
48+
{
49+
"anonymous": false,
50+
"inputs": [
51+
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
52+
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
53+
],
54+
"name": "OwnershipTransferred",
55+
"type": "event"
56+
},
57+
{
58+
"inputs": [
59+
{ "internalType": "address", "name": "target", "type": "address" },
60+
{ "internalType": "uint256", "name": "value", "type": "uint256" },
61+
{ "internalType": "bytes", "name": "payload", "type": "bytes" }
62+
],
63+
"name": "execute",
64+
"outputs": [],
65+
"stateMutability": "payable",
66+
"type": "function"
67+
},
68+
{
69+
"inputs": [],
70+
"name": "owner",
71+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
72+
"stateMutability": "view",
73+
"type": "function"
74+
},
75+
{ "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
76+
{
77+
"inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
78+
"name": "transferOwnership",
79+
"outputs": [],
80+
"stateMutability": "nonpayable",
81+
"type": "function"
82+
},
83+
{ "stateMutability": "payable", "type": "receive" }
84+
]

0 commit comments

Comments
 (0)