forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetallblobs.js
247 lines (228 loc) · 7.33 KB
/
getallblobs.js
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
const { Web3 } = require('web3');
const web3 = new Web3('http://127.0.0.1:8545');
const fs = require('fs');
const abi = [
{
"inputs": [
{
"internalType": "uint256",
"name": "_chainId",
"type": "uint256"
},
{
"components": [
{
"internalType": "uint64",
"name": "batchNumber",
"type": "uint64"
},
{
"internalType": "bytes32",
"name": "batchHash",
"type": "bytes32"
},
{
"internalType": "uint64",
"name": "indexRepeatedStorageChanges",
"type": "uint64"
},
{
"internalType": "uint256",
"name": "numberOfLayer1Txs",
"type": "uint256"
},
{
"internalType": "bytes32",
"name": "priorityOperationsHash",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "l2LogsTreeRoot",
"type": "bytes32"
},
{
"internalType": "uint256",
"name": "timestamp",
"type": "uint256"
},
{
"internalType": "bytes32",
"name": "commitment",
"type": "bytes32"
}
],
"internalType": "struct IExecutor.StoredBatchInfo",
"name": "",
"type": "tuple"
},
{
"components": [
{
"internalType": "uint64",
"name": "batchNumber",
"type": "uint64"
},
{
"internalType": "uint64",
"name": "timestamp",
"type": "uint64"
},
{
"internalType": "uint64",
"name": "indexRepeatedStorageChanges",
"type": "uint64"
},
{
"internalType": "bytes32",
"name": "newStateRoot",
"type": "bytes32"
},
{
"internalType": "uint256",
"name": "numberOfLayer1Txs",
"type": "uint256"
},
{
"internalType": "bytes32",
"name": "priorityOperationsHash",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "bootloaderHeapInitialContentsHash",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "eventsQueueStateHash",
"type": "bytes32"
},
{
"internalType": "bytes",
"name": "systemLogs",
"type": "bytes"
},
{
"internalType": "bytes",
"name": "pubdataCommitments",
"type": "bytes"
}
],
"internalType": "struct IExecutor.CommitBatchInfo[]",
"name": "_newBatchesData",
"type": "tuple[]"
}
],
"name": "commitBatchesSharedBridge",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
const contract = new web3.eth.Contract(abi);
function hexToUtf8(hex) {
// Remove the '0x' prefix if present
if (hex.startsWith('0x')) {
hex = hex.slice(2);
}
// Ensure the hex string has an even length
if (hex.length % 2 !== 0) {
throw new Error('Invalid hex string length');
}
// Convert hex string to a byte array
const bytes = [];
for (let i = 0; i < hex.length; i += 2) {
bytes.push(parseInt(hex.substr(i, 2), 16));
}
// Convert byte array to UTF-8 string
const utf8String = new TextDecoder('utf-8').decode(new Uint8Array(bytes));
return utf8String;
}
function uint8ArrayToHex(uint8Array) {
return Array.from(uint8Array)
.map(byte => byte.toString(16).padStart(2, '0')) // Convert each byte to a 2-digit hex value
.join(''); // Join all the hex values into a single string
}
async function getTransactions(validatorTimelockAddress, commitBatchesSharedBridge_functionSelector) {
const latestBlock = await web3.eth.getBlockNumber();
let jsonArray = [];
for (let i = 0; i <= latestBlock; i++) {
const block = await web3.eth.getBlock(i, true);
await Promise.all(block.transactions.map(async tx => {
if (tx.to && (tx.to.toLowerCase() == validatorTimelockAddress.toLowerCase())) {
const input = tx.input;
const txSelector = input.slice(0, 10);
if (txSelector == commitBatchesSharedBridge_functionSelector) {
const functionAbi = contract.options.jsonInterface.find(item => item.name === 'commitBatchesSharedBridge');
const decodedParams = web3.eth.abi.decodeParameters(
functionAbi.inputs,
input.slice(10) // Remove the function selector (first 10 characters of the calldata)
);
commitment = hexToUtf8(decodedParams._newBatchesData[0].pubdataCommitments.slice(4));
let blob = await get(commitment);
const blobHex = uint8ArrayToHex(blob);
jsonArray.push({
commitment: commitment,
blob: blobHex
});
}
}
}));
}
const jsonString = JSON.stringify(jsonArray, null, 2);
fs.writeFileSync("blob_data.json", jsonString, 'utf8');
}
async function get(commitment) {
try {
const url = `http://localhost:4242/get/0x${commitment}`;
const response = await fetch(url);
if (response.ok) {
// Expecting the response body to be binary data
const body = await response.arrayBuffer();
return new Uint8Array(body);
} else {
return []; // Return empty array if the response is not successful
}
} catch (error) {
// Handle any errors
console.error('Error fetching data:', error);
throw error; // Re-throw the error or return an empty array, depending on requirements
}
}
function getArguments() {
const args = process.argv.slice(2); // Get arguments after the first two (which are node and script path)
let validatorTimelockAddress = null;
let commitBatchesSharedBridge_functionSelector = null;
args.forEach(arg => {
const [key, value] = arg.split('=');
if (key === 'validatorTimelockAddress') {
validatorTimelockAddress = value;
} else if (key === 'commitBatchesSharedBridge_functionSelector') {
commitBatchesSharedBridge_functionSelector = value;
}
});
// Check if both arguments are provided
if (!validatorTimelockAddress || !commitBatchesSharedBridge_functionSelector) {
console.error('Usage: node getallblobs.js validatorTimelockAddress=<validatorTimelockAddress> commitBatchesSharedBridge_functionSelector=<commitBatchesSharedBridge_functionSelector>');
process.exit(1); // Exit with error
}
return { validatorTimelockAddress, commitBatchesSharedBridge_functionSelector };
}
function main() {
// Values for local node:
// validatorTimelockAddress = check in zk init
// commitBatchesSharedBridge_functionSelector = "0x6edd4f12"
const { validatorTimelockAddress, commitBatchesSharedBridge_functionSelector } = getArguments();
getTransactions(validatorTimelockAddress, commitBatchesSharedBridge_functionSelector);
}
main();
//Contracts being called in L1:
//Chain Admin
//Diamond Proxy
//Governance
//Validator Timelock //6edd4f12 function selector commitBatchesSharedBridge
//BridgeHub Proxy
//Transparent Proxy
//Create2 Factory
//Contracts Create2Factory (verifier)