-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFetchingAuthorizedOracles.py
More file actions
executable file
·195 lines (188 loc) · 6.08 KB
/
FetchingAuthorizedOracles.py
File metadata and controls
executable file
·195 lines (188 loc) · 6.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import json
from web3 import Web3
# Connect to an Ethereum node
w3 = Web3(Web3.HTTPProvider('https://rpc.pulsechain.com'))
# Contract address
contract_address = '0xe0F30cb149fAADC7247E953746Be9BbBB6B5751f'
# ABI as a JSON string
abi_json = '''
[
{
"anonymous": false,
"inputs": [
{"indexed": false, "internalType": "uint256", "name": "val", "type": "uint256"},
{"indexed": false, "internalType": "uint256", "name": "age", "type": "uint256"}
],
"name": "LogMedianPrice",
"type": "event"
},
{
"anonymous": true,
"inputs": [
{"indexed": true, "internalType": "bytes4", "name": "sig", "type": "bytes4"},
{"indexed": true, "internalType": "address", "name": "usr", "type": "address"},
{"indexed": true, "internalType": "bytes32", "name": "arg1", "type": "bytes32"},
{"indexed": true, "internalType": "bytes32", "name": "arg2", "type": "bytes32"},
{"indexed": false, "internalType": "bytes", "name": "data", "type": "bytes"}
],
"name": "LogNote",
"type": "event"
},
{
"inputs": [],
"name": "age",
"outputs": [{"internalType": "uint32", "name": "", "type": "uint32"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "bar",
"outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "", "type": "address"}],
"name": "bud",
"outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "usr", "type": "address"}],
"name": "deny",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address[]", "name": "a", "type": "address[]"}],
"name": "diss",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "a", "type": "address"}],
"name": "diss",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address[]", "name": "a", "type": "address[]"}],
"name": "drop",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address[]", "name": "a", "type": "address[]"}],
"name": "kiss",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "a", "type": "address"}],
"name": "kiss",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address[]", "name": "a", "type": "address[]"}],
"name": "lift",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "", "type": "address"}],
"name": "orcl",
"outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "peek",
"outputs": [
{"internalType": "uint256", "name": "", "type": "uint256"},
{"internalType": "bool", "name": "", "type": "bool"}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{"internalType": "uint256[]", "name": "val_", "type": "uint256[]"},
{"internalType": "uint256[]", "name": "age_", "type": "uint256[]"},
{"internalType": "uint8[]", "name": "v", "type": "uint8[]"},
{"internalType": "bytes32[]", "name": "r", "type": "bytes32[]"},
{"internalType": "bytes32[]", "name": "s", "type": "bytes32[]"}
],
"name": "poke",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "read",
"outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "usr", "type": "address"}],
"name": "rely",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "uint256", "name": "bar_", "type": "uint256"}],
"name": "setBar",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{"internalType": "uint8", "name": "", "type": "uint8"}],
"name": "slot",
"outputs": [{"internalType": "address", "name": "", "type": "address"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{"internalType": "address", "name": "", "type": "address"}],
"name": "wards",
"outputs": [{"internalType": "uint256", "name": "", "type": "uint256"}],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "wat",
"outputs": [{"internalType": "bytes32", "name": "", "type": "bytes32"}],
"stateMutability": "view",
"type": "function"
}
]
'''
# Load the ABI
abi = json.loads(abi_json)
# Create contract instance
contract = w3.eth.contract(address=contract_address, abi=abi)
# Fetch oracles from 'slot' mapping
oracles = []
for i in range(256):
address = contract.functions.slot(i).call()
if address != '0x0000000000000000000000000000000000000000':
oracles.append(address)
print("\nAuthorized Oracles:")
print("===================")
for idx, oracle_address in enumerate(oracles):
print(f" [{idx}]: {oracle_address}")