Skip to content

Commit 1066ec9

Browse files
authored
Merge pull request #484 from blockchain-etl/dencun_upgrade
Add EIP-4844 (Dencun) columns
2 parents 9e51c3b + 2a92ecb commit 1066ec9

34 files changed

+4972
-945
lines changed

docs/schema.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ gas_limit | bigint |
2222
gas_used | bigint |
2323
timestamp | bigint |
2424
transaction_count | bigint |
25-
base_fee_per_gas | bigint |
25+
base_fee_per_gas | bigint |
26+
withdrawals_root | string |
27+
withdrawals | string |
28+
blob_gas_used | bigint |
29+
excess_blob_gas | bigint |
2630

2731
---
2832

@@ -45,6 +49,8 @@ block_timestamp | bigint |
4549
max_fee_per_gas | bigint |
4650
max_priority_fee_per_gas | bigint |
4751
transaction_type | bigint |
52+
max_fee_per_blob_gas | bigint |
53+
blob_versioned_hashes | string |
4854

4955
---
5056

@@ -76,6 +82,8 @@ contract_address | address |
7682
root | hex_string |
7783
status | bigint |
7884
effective_gas_price | bigint |
85+
blob_gas_price | bigint |
86+
blob_gas_used | bigint |
7987

8088
---
8189

ethereumetl/domain/block.py

+3
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ def __init__(self):
4646
self.transaction_count = 0
4747
self.base_fee_per_gas = 0
4848
self.withdrawals = []
49+
50+
self.blob_gas_used = None
51+
self.excess_blob_gas = None

ethereumetl/domain/receipt.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ def __init__(self):
3838
self.l1_gas_used = None
3939
self.l1_gas_price = None
4040
self.l1_fee_scalar = None
41-
41+
self.blob_gas_price = None
42+
self.blob_gas_used = None

ethereumetl/domain/transaction.py

+2
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ def __init__(self):
3737
self.max_fee_per_gas = None
3838
self.max_priority_fee_per_gas = None
3939
self.transaction_type = None
40+
self.max_fee_per_blob_gas = None
41+
self.blob_versioned_hashes = []

ethereumetl/jobs/exporters/blocks_and_transactions_item_exporter.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@
4444
'transaction_count',
4545
'base_fee_per_gas',
4646
'withdrawals_root',
47-
'withdrawals'
47+
'withdrawals',
48+
'blob_gas_used',
49+
'excess_blob_gas'
4850
]
4951

5052
TRANSACTION_FIELDS_TO_EXPORT = [
@@ -62,7 +64,9 @@
6264
'block_timestamp',
6365
'max_fee_per_gas',
6466
'max_priority_fee_per_gas',
65-
'transaction_type'
67+
'transaction_type',
68+
'max_fee_per_blob_gas',
69+
'blob_versioned_hashes'
6670
]
6771

6872

ethereumetl/jobs/exporters/receipts_and_logs_item_exporter.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@
3737
'l1_fee',
3838
'l1_gas_used',
3939
'l1_gas_price',
40-
'l1_fee_scalar'
41-
40+
'l1_fee_scalar',
41+
'blob_gas_price',
42+
'blob_gas_used'
4243
]
4344

4445
LOG_FIELDS_TO_EXPORT = [

ethereumetl/mappers/block_mapper.py

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ def json_dict_to_block(self, json_dict):
5454
block.timestamp = hex_to_dec(json_dict.get('timestamp'))
5555
block.base_fee_per_gas = hex_to_dec(json_dict.get('baseFeePerGas'))
5656
block.withdrawals_root = json_dict.get('withdrawalsRoot')
57+
block.blob_gas_used = hex_to_dec(json_dict.get('blobGasUsed'))
58+
block.excess_blob_gas = hex_to_dec(json_dict.get('excessBlobGas'))
5759

5860
if 'transactions' in json_dict:
5961
block.transactions = [
@@ -104,4 +106,6 @@ def block_to_dict(self, block):
104106
'base_fee_per_gas': block.base_fee_per_gas,
105107
'withdrawals_root': block.withdrawals_root,
106108
'withdrawals': block.withdrawals,
109+
'blob_gas_used': block.blob_gas_used,
110+
'excess_blob_gas': block.excess_blob_gas,
107111
}

ethereumetl/mappers/receipt_mapper.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def json_dict_to_receipt(self, json_dict):
5454
receipt.l1_gas_used = hex_to_dec(json_dict.get('l1GasUsed'))
5555
receipt.l1_gas_price = hex_to_dec(json_dict.get('l1GasPrice'))
5656
receipt.l1_fee_scalar = to_float_or_none(json_dict.get('l1FeeScalar'))
57-
57+
receipt.blob_gas_price = hex_to_dec(json_dict.get('blobGasPrice'))
58+
receipt.blob_gas_used = hex_to_dec(json_dict.get('blobGasUsed'))
5859

5960
if 'logs' in json_dict:
6061
receipt.logs = [
@@ -79,6 +80,7 @@ def receipt_to_dict(self, receipt):
7980
'l1_fee': receipt.l1_fee,
8081
'l1_gas_used': receipt.l1_gas_used,
8182
'l1_gas_price': receipt.l1_gas_price,
82-
'l1_fee_scalar': receipt.l1_fee_scalar
83-
83+
'l1_fee_scalar': receipt.l1_fee_scalar,
84+
'blob_gas_price': receipt.blob_gas_price,
85+
'blob_gas_used': receipt.blob_gas_used
8486
}

ethereumetl/mappers/transaction_mapper.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ def json_dict_to_transaction(self, json_dict, **kwargs):
4343
transaction.max_fee_per_gas = hex_to_dec(json_dict.get('maxFeePerGas'))
4444
transaction.max_priority_fee_per_gas = hex_to_dec(json_dict.get('maxPriorityFeePerGas'))
4545
transaction.transaction_type = hex_to_dec(json_dict.get('type'))
46+
transaction.max_fee_per_blob_gas = hex_to_dec(json_dict.get('maxFeePerBlobGas'))
47+
48+
if 'blobVersionedHashes' in json_dict and isinstance(json_dict['blobVersionedHashes'], list):
49+
transaction.blob_versioned_hashes = json_dict['blobVersionedHashes']
50+
4651
return transaction
4752

4853
def transaction_to_dict(self, transaction):
@@ -62,5 +67,7 @@ def transaction_to_dict(self, transaction):
6267
'input': transaction.input,
6368
'max_fee_per_gas': transaction.max_fee_per_gas,
6469
'max_priority_fee_per_gas': transaction.max_priority_fee_per_gas,
65-
'transaction_type': transaction.transaction_type
70+
'transaction_type': transaction.transaction_type,
71+
"max_fee_per_blob_gas": transaction.max_fee_per_blob_gas,
72+
"blob_versioned_hashes": transaction.blob_versioned_hashes
6673
}

ethereumetl/streaming/enrich.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ def enrich_transactions(transactions, receipts):
7676
'block_hash',
7777
'max_fee_per_gas',
7878
'max_priority_fee_per_gas',
79-
'transaction_type'
79+
'transaction_type',
80+
'max_fee_per_blob_gas',
81+
'blob_versioned_hashes'
8082
],
8183
right_fields=[
8284
('cumulative_gas_used', 'receipt_cumulative_gas_used'),
@@ -88,8 +90,9 @@ def enrich_transactions(transactions, receipts):
8890
('l1_fee', 'receipt_l1_fee'),
8991
('l1_gas_used', 'receipt_l1_gas_used'),
9092
('l1_gas_price', 'receipt_l1_gas_price'),
91-
('l1_fee_scalar', 'receipt_l1_fee_scalar')
92-
93+
('l1_fee_scalar', 'receipt_l1_fee_scalar'),
94+
('blob_gas_price', 'receipt_blob_gas_price'),
95+
('blob_gas_used', 'receipt_blob_gas_used')
9396
]))
9497

9598
if len(result) != len(transactions):

tests/ethereumetl/job/test_export_blocks_job.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def read_resource(resource_group, file_name):
4141
(483920, 483920, 1, 'block_with_logs', 'mock', 'csv'),
4242
(47218, 47219, 1, 'blocks_with_transactions', 'mock', 'csv'),
4343
(47218, 47219, 2, 'blocks_with_transactions', 'mock', 'csv'),
44+
(19537146, 19537146, 1, 'blocks_with_dencun_transactions', 'mock', 'csv'),
4445
skip_if_slow_tests_disabled((0, 0, 1, 'block_without_transactions', 'infura', 'csv')),
4546
skip_if_slow_tests_disabled((483920, 483920, 1, 'block_with_logs', 'infura', 'csv')),
4647
skip_if_slow_tests_disabled((47218, 47219, 2, 'blocks_with_transactions', 'infura', 'csv')),

tests/ethereumetl/streaming/test_stream.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def read_resource(resource_group, file_name):
4646
(508110, 508110, 1, 'blocks_508110_508110', ['trace', 'contract', 'token'], 'mock'),
4747
(2112234, 2112234, 1, 'blocks_2112234_2112234', ['trace', 'contract', 'token'], 'mock'),
4848
skip_if_slow_tests_disabled([17173049, 17173050, 1, 'blocks_17173049_17173050', EntityType.ALL_FOR_INFURA, 'infura']),
49+
skip_if_slow_tests_disabled([19528783, 19528783, 1, 'blocks_19528783_19528783', EntityType.ALL_FOR_INFURA, 'infura']),
4950
])
5051
def test_stream(tmpdir, start_block, end_block, batch_size, resource_group, entity_types, provider_type):
5152
try:
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
number,hash,parent_hash,nonce,sha3_uncles,logs_bloom,transactions_root,state_root,receipts_root,miner,difficulty,total_difficulty,size,extra_data,gas_limit,gas_used,timestamp,transaction_count,base_fee_per_gas,withdrawals_root,withdrawals
2-
483920,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,0x2610dc6eb941f4bcbddfd2362b999087ccd956e978f0ece4f8da96851283a2ba,0x57a633e01197dc86,0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347,0x00000000000000000000000000800000000000000000000000000000800000000000000000000000000000008000000000000000000000000000000000000021000000080000000004000008000000000000000000000400000000000000000000000000000000400000000000000000000000000000000000000010000000000000000000000000000000000000000400000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000010000000000000000000000000000000000000000000000004000000000000000000000000000000000000040080000,0x2744d46ab0647ed91a9bbd08e19d3bb67491067e8cbe04a276ad2afde5ecd65e,0x48b17dd0031aa97d748a886c912539de22997e861d631fd1eb6509fbabef9651,0xada95dd1e1590fe095e67c58f41d633193b238e0e0c588de46682db595738f0b,0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5,7298514125186,2571481026230204460,1113,0xd783010203844765746887676f312e342e32856c696e7578,3141592,143706,1446561880,4,,,
1+
number,hash,parent_hash,nonce,sha3_uncles,logs_bloom,transactions_root,state_root,receipts_root,miner,difficulty,total_difficulty,size,extra_data,gas_limit,gas_used,timestamp,transaction_count,base_fee_per_gas,withdrawals_root,withdrawals,blob_gas_used,excess_blob_gas
2+
483920,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,0x2610dc6eb941f4bcbddfd2362b999087ccd956e978f0ece4f8da96851283a2ba,0x57a633e01197dc86,0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347,0x00000000000000000000000000800000000000000000000000000000800000000000000000000000000000008000000000000000000000000000000000000021000000080000000004000008000000000000000000000400000000000000000000000000000000400000000000000000000000000000000000000010000000000000000000000000000000000000000400000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000010000000000000000000000000000000000000000000000004000000000000000000000000000000000000040080000,0x2744d46ab0647ed91a9bbd08e19d3bb67491067e8cbe04a276ad2afde5ecd65e,0x48b17dd0031aa97d748a886c912539de22997e861d631fd1eb6509fbabef9651,0xada95dd1e1590fe095e67c58f41d633193b238e0e0c588de46682db595738f0b,0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5,7298514125186,2571481026230204460,1113,0xd783010203844765746887676f312e342e32856c696e7578,3141592,143706,1446561880,4,,,,,
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
hash,nonce,block_hash,block_number,transaction_index,from_address,to_address,value,gas,gas_price,input,block_timestamp,max_fee_per_gas,max_priority_fee_per_gas,transaction_type
2-
0x04cbcb236043d8fb7839e07bbc7f5eed692fb2ca55d897f1101eac3e3ad4fab8,12,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,0,0x1b63142628311395ceafeea5667e7c9026c862ca,0xf4eced2f682ce333f96f2d8966c613ded8fc95dd,0,150853,50000000000,0xa9059cbb000000000000000000000000ac4df82fe37ea2187bc8c011a23d743b4f39019a00000000000000000000000000000000000000000000000000000000000186a0,1446561880,,,0
3-
0xcea6f89720cc1d2f46cc7a935463ae0b99dd5fad9c91bb7357de5421511cee49,84,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,1,0x9b22a80d5c7b3374a05b446081f97d0a34079e7f,0xf4eced2f682ce333f96f2d8966c613ded8fc95dd,0,150853,50000000000,0xa9059cbb00000000000000000000000066f183060253cfbe45beff1e6e7ebbe318c81e560000000000000000000000000000000000000000000000000000000000030d40,1446561880,,,0
4-
0x463d53f0ad57677a3b430a007c1c31d15d62c37fab5eee598551697c297c235c,88,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,2,0x9df428a91ff0f3635c8f0ce752933b9788926804,0x9e669f970ec0f49bb735f20799a7e7c4a1c274e2,11000440000000000,90000,50000000000,0x,1446561880,,,0
5-
0x05287a561f218418892ab053adfb3d919860988b19458c570c5c30f51c146f02,20085,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,3,0x2a65aca4d5fc5b5c859090a6c34d164135398226,0x743b8aeedc163c0e3a0fe9f3910d146c48e70da8,1530219620000000000,90000,50000000000,0x,1446561880,,,0
1+
hash,nonce,block_hash,block_number,transaction_index,from_address,to_address,value,gas,gas_price,input,block_timestamp,max_fee_per_gas,max_priority_fee_per_gas,transaction_type,max_fee_per_blob_gas,blob_versioned_hashes
2+
0x04cbcb236043d8fb7839e07bbc7f5eed692fb2ca55d897f1101eac3e3ad4fab8,12,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,0,0x1b63142628311395ceafeea5667e7c9026c862ca,0xf4eced2f682ce333f96f2d8966c613ded8fc95dd,0,150853,50000000000,0xa9059cbb000000000000000000000000ac4df82fe37ea2187bc8c011a23d743b4f39019a00000000000000000000000000000000000000000000000000000000000186a0,1446561880,,,0,,
3+
0xcea6f89720cc1d2f46cc7a935463ae0b99dd5fad9c91bb7357de5421511cee49,84,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,1,0x9b22a80d5c7b3374a05b446081f97d0a34079e7f,0xf4eced2f682ce333f96f2d8966c613ded8fc95dd,0,150853,50000000000,0xa9059cbb00000000000000000000000066f183060253cfbe45beff1e6e7ebbe318c81e560000000000000000000000000000000000000000000000000000000000030d40,1446561880,,,0,,
4+
0x463d53f0ad57677a3b430a007c1c31d15d62c37fab5eee598551697c297c235c,88,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,2,0x9df428a91ff0f3635c8f0ce752933b9788926804,0x9e669f970ec0f49bb735f20799a7e7c4a1c274e2,11000440000000000,90000,50000000000,0x,1446561880,,,0,,
5+
0x05287a561f218418892ab053adfb3d919860988b19458c570c5c30f51c146f02,20085,0x246edb4b351d93c27926f4649bcf6c24366e2a7c7c718dc9158eea20c03bc6ae,483920,3,0x2a65aca4d5fc5b5c859090a6c34d164135398226,0x743b8aeedc163c0e3a0fe9f3910d146c48e70da8,1530219620000000000,90000,50000000000,0x,1446561880,,,0,,
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
number,hash,parent_hash,nonce,sha3_uncles,logs_bloom,transactions_root,state_root,receipts_root,miner,difficulty,total_difficulty,size,extra_data,gas_limit,gas_used,timestamp,transaction_count,base_fee_per_gas,withdrawals_root,withdrawals
2-
0,0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000042,0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347,0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421,0xd7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544,0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421,0x0000000000000000000000000000000000000000,17179869184,17179869184,540,0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa,5000,0,0,0,,,
1+
number,hash,parent_hash,nonce,sha3_uncles,logs_bloom,transactions_root,state_root,receipts_root,miner,difficulty,total_difficulty,size,extra_data,gas_limit,gas_used,timestamp,transaction_count,base_fee_per_gas,withdrawals_root,withdrawals,blob_gas_used,excess_blob_gas
2+
0,0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3,0x0000000000000000000000000000000000000000000000000000000000000000,0x0000000000000042,0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347,0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421,0xd7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544,0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421,0x0000000000000000000000000000000000000000,17179869184,17179869184,540,0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa,5000,0,0,0,,,,,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
number,hash,parent_hash,nonce,sha3_uncles,logs_bloom,transactions_root,state_root,receipts_root,miner,difficulty,total_difficulty,size,extra_data,gas_limit,gas_used,timestamp,transaction_count,base_fee_per_gas,withdrawals_root,withdrawals,blob_gas_used,excess_blob_gas
2+
19537146,0x831e700060bf486b138a148f2e60b1ce8595d6c85ffae24e997e4e090705dc05,0x847079e3806831b02da236bc0817a729cdf3752d1264523230b4928240426c4d,0x0000000000000000,0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347,0x78e368c169a0233f1afa43269e995a853c45c21c5ddd7041ab3d19da197aac9d46900d2ae60baa8187073d127e1c3396e2dda6259eeae83c81483e43d0ea6a70d040aa0f7d0c18ef79f6443fa32cc2ffcdac1e0357462c627114fcb3a62697c5d714e8110ff444f1a44ce15461052e7de4d94fc38d9987fcd7d82ed93a0a0c1b1c065ad6c386d9cc814ff3744b2b4cc41497d903bd3d121f576cc06a5bf1893c7e90d3465353efdb4ab354c5a9566fceb4a596a5e0317cccee5c262aa880ac65ebc23f93242689e8c1c1df57cd4ff6bb9e4824bb4d4c899a63a4487bc1f86b643078ad4f2ada6230db2d098d76c89e04eae8d9bb2f76fa6df1ab2d31380f56fd,0xa3127b4fa2caabad009e9cd351b6cd64803585a017950e48189bdf4675374a40,0x6a8317f54f03679ad9b4d911db52cff4ff2f59eb2bb8d0ddcf15ca10e337227c,0x808e58559360e74a16782e909e0863c25d0d386df2aac048587c1dc15d279566,0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97,0,58750003716598352816469,54072,0x546974616e2028746974616e6275696c6465722e78797a29,30000000,13743935,1711684859,164,23650844713,0x2a5defc36c775b5584b838a8809bbba0cce325f03fbabe286c9b176804df0786,"{""index"":40034966,""validator_index"":1089499,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18082404},{""index"":40034967,""validator_index"":1089500,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18056145},{""index"":40034968,""validator_index"":1089501,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18112607},{""index"":40034969,""validator_index"":1089502,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18039251},{""index"":40034970,""validator_index"":1089503,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18166026},{""index"":40034971,""validator_index"":1089504,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18101585},{""index"":40034972,""validator_index"":1089505,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":17984729},{""index"":40034973,""validator_index"":1089506,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18106463},{""index"":40034974,""validator_index"":1089507,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18165291},{""index"":40034975,""validator_index"":1089508,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18066624},{""index"":40034976,""validator_index"":1089509,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18121979},{""index"":40034977,""validator_index"":1089510,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18092740},{""index"":40034978,""validator_index"":1089511,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18160917},{""index"":40034979,""validator_index"":1089512,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18148794},{""index"":40034980,""validator_index"":1089513,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18137511},{""index"":40034981,""validator_index"":1089514,""address"":""0xc7c69e3f9bca6d935b7b8c1b4f170dc9cd658713"",""amount"":18050602}",786432,78381056

0 commit comments

Comments
 (0)