Skip to content

Commit 1817d52

Browse files
authored
Add missed ABI (#243)
Signed-off-by: cyc60 <[email protected]>
1 parent 4c34f20 commit 1817d52

File tree

3 files changed

+147
-3
lines changed

3 files changed

+147
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ docker build --pull -t stakewiselabs/v3-operator .
211211
or pull existing one:
212212
213213
```sh
214-
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.2
214+
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.3
215215
```
216216
217217
You have to mount keystores and deposit data folders into docker container.
@@ -221,7 +221,7 @@ Start the container with the following command:
221221
```sh
222222
docker run --restart on-failure:10 \
223223
-v ~/.stakewise/:/data \
224-
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.2 \
224+
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v1.0.3 \
225225
src/main.py start \
226226
--vault=0x3320a...68 \
227227
--data-dir=/data \

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "v3-operator"
3-
version = "v1.0.2"
3+
version = "v1.0.3"
44
description = "StakeWise operator service for registering vault validators"
55
authors = ["StakeWise Labs <[email protected]>"]
66

src/common/abi/IV2PoolEscrow.json

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
[
2+
{
3+
"inputs": [
4+
{
5+
"internalType": "address",
6+
"name": "_owner",
7+
"type": "address"
8+
}
9+
],
10+
"stateMutability": "nonpayable",
11+
"type": "constructor"
12+
},
13+
{
14+
"anonymous": false,
15+
"inputs": [
16+
{
17+
"indexed": true,
18+
"internalType": "address",
19+
"name": "previousOwner",
20+
"type": "address"
21+
},
22+
{
23+
"indexed": true,
24+
"internalType": "address",
25+
"name": "newOwner",
26+
"type": "address"
27+
}
28+
],
29+
"name": "OwnershipTransferApplied",
30+
"type": "event"
31+
},
32+
{
33+
"anonymous": false,
34+
"inputs": [
35+
{
36+
"indexed": true,
37+
"internalType": "address",
38+
"name": "currentOwner",
39+
"type": "address"
40+
},
41+
{
42+
"indexed": true,
43+
"internalType": "address",
44+
"name": "futureOwner",
45+
"type": "address"
46+
}
47+
],
48+
"name": "OwnershipTransferCommitted",
49+
"type": "event"
50+
},
51+
{
52+
"anonymous": false,
53+
"inputs": [
54+
{
55+
"indexed": true,
56+
"internalType": "address",
57+
"name": "sender",
58+
"type": "address"
59+
},
60+
{
61+
"indexed": true,
62+
"internalType": "address",
63+
"name": "payee",
64+
"type": "address"
65+
},
66+
{
67+
"indexed": false,
68+
"internalType": "uint256",
69+
"name": "amount",
70+
"type": "uint256"
71+
}
72+
],
73+
"name": "Withdrawn",
74+
"type": "event"
75+
},
76+
{
77+
"inputs": [],
78+
"name": "applyOwnershipTransfer",
79+
"outputs": [],
80+
"stateMutability": "nonpayable",
81+
"type": "function"
82+
},
83+
{
84+
"inputs": [
85+
{
86+
"internalType": "address",
87+
"name": "newOwner",
88+
"type": "address"
89+
}
90+
],
91+
"name": "commitOwnershipTransfer",
92+
"outputs": [],
93+
"stateMutability": "nonpayable",
94+
"type": "function"
95+
},
96+
{
97+
"inputs": [],
98+
"name": "futureOwner",
99+
"outputs": [
100+
{
101+
"internalType": "address",
102+
"name": "",
103+
"type": "address"
104+
}
105+
],
106+
"stateMutability": "view",
107+
"type": "function"
108+
},
109+
{
110+
"inputs": [],
111+
"name": "owner",
112+
"outputs": [
113+
{
114+
"internalType": "address",
115+
"name": "",
116+
"type": "address"
117+
}
118+
],
119+
"stateMutability": "view",
120+
"type": "function"
121+
},
122+
{
123+
"inputs": [
124+
{
125+
"internalType": "address payable",
126+
"name": "payee",
127+
"type": "address"
128+
},
129+
{
130+
"internalType": "uint256",
131+
"name": "amount",
132+
"type": "uint256"
133+
}
134+
],
135+
"name": "withdraw",
136+
"outputs": [],
137+
"stateMutability": "nonpayable",
138+
"type": "function"
139+
},
140+
{
141+
"stateMutability": "payable",
142+
"type": "receive"
143+
}
144+
]

0 commit comments

Comments
 (0)