-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from ethpandaops/feat/eth68
Feat/eth68
- Loading branch information
Showing
44 changed files
with
1,691 additions
and
1,057 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.20 AS builder | ||
FROM golang:1.22 AS builder | ||
WORKDIR /src | ||
COPY go.sum go.mod ./ | ||
RUN go mod download | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
ALTER TABLE mempool_transaction_local on cluster '{cluster}' | ||
DROP COLUMN gas_tip_cap, | ||
DROP COLUMN gas_fee_cap, | ||
DROP COLUMN blob_gas, | ||
DROP COLUMN blob_gas_fee_cap, | ||
DROP COLUMN blob_hashes, | ||
DROP COLUMN blob_sidecars_size, | ||
DROP COLUMN blob_sidecars_empty_size; | ||
|
||
ALTER TABLE mempool_transaction on cluster '{cluster}' | ||
DROP COLUMN gas_tip_cap, | ||
DROP COLUMN gas_fee_cap, | ||
DROP COLUMN blob_gas, | ||
DROP COLUMN blob_gas_fee_cap, | ||
DROP COLUMN blob_hashes, | ||
DROP COLUMN blob_sidecars_size, | ||
DROP COLUMN blob_sidecars_empty_size; | ||
|
||
ALTER TABLE canonical_beacon_block_execution_transaction_local on cluster '{cluster}' | ||
DROP COLUMN gas_tip_cap, | ||
DROP COLUMN gas_fee_cap, | ||
DROP COLUMN blob_gas, | ||
DROP COLUMN blob_gas_fee_cap, | ||
DROP COLUMN blob_hashes, | ||
DROP COLUMN blob_sidecars_size, | ||
DROP COLUMN blob_sidecars_empty_size; | ||
|
||
ALTER TABLE canonical_beacon_block_execution_transaction on cluster '{cluster}' | ||
DROP COLUMN gas_tip_cap, | ||
DROP COLUMN gas_fee_cap, | ||
DROP COLUMN blob_gas, | ||
DROP COLUMN blob_gas_fee_cap, | ||
DROP COLUMN blob_hashes, | ||
DROP COLUMN blob_sidecars_size, | ||
DROP COLUMN blob_sidecars_empty_size; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
ALTER TABLE mempool_transaction_local on cluster '{cluster}' | ||
ADD COLUMN gas_tip_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas, | ||
ADD COLUMN gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas_tip_cap, | ||
ADD COLUMN blob_gas Nullable(UInt64) Codec(ZSTD(1)) AFTER call_data_size, | ||
ADD COLUMN blob_gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER blob_gas, | ||
ADD COLUMN blob_hashes Array(String) Codec(ZSTD(1)) AFTER blob_gas_fee_cap, | ||
ADD COLUMN blob_sidecars_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_hashes, | ||
ADD COLUMN blob_sidecars_empty_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_sidecars_size, | ||
COMMENT COLUMN gas_tip_cap 'The priority fee (tip) the user has set for the transaction', | ||
COMMENT COLUMN gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_gas 'The maximum gas provided for the blob transaction execution', | ||
COMMENT COLUMN blob_gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_hashes 'The hashes of the blob commitments for blob transactions', | ||
COMMENT COLUMN blob_sidecars_size 'The total size of the sidecars for blob transactions in bytes', | ||
COMMENT COLUMN blob_sidecars_empty_size 'The total empty size of the sidecars for blob transactions in bytes'; | ||
|
||
ALTER TABLE mempool_transaction on cluster '{cluster}' | ||
ADD COLUMN gas_tip_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas, | ||
ADD COLUMN gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas_tip_cap, | ||
ADD COLUMN blob_gas Nullable(UInt64) Codec(ZSTD(1)) AFTER call_data_size, | ||
ADD COLUMN blob_gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER blob_gas, | ||
ADD COLUMN blob_hashes Array(String) Codec(ZSTD(1)) AFTER blob_gas_fee_cap, | ||
ADD COLUMN blob_sidecars_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_hashes, | ||
ADD COLUMN blob_sidecars_empty_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_sidecars_size, | ||
COMMENT COLUMN gas_tip_cap 'The priority fee (tip) the user has set for the transaction', | ||
COMMENT COLUMN gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_gas 'The maximum gas provided for the blob transaction execution', | ||
COMMENT COLUMN blob_gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_hashes 'The hashes of the blob commitments for blob transactions', | ||
COMMENT COLUMN blob_sidecars_size 'The total size of the sidecars for blob transactions in bytes', | ||
COMMENT COLUMN blob_sidecars_empty_size 'The total empty size of the sidecars for blob transactions in bytes'; | ||
|
||
ALTER TABLE canonical_beacon_block_execution_transaction_local on cluster '{cluster}' | ||
ADD COLUMN gas_tip_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas, | ||
ADD COLUMN gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas_tip_cap, | ||
ADD COLUMN blob_gas Nullable(UInt64) Codec(ZSTD(1)) AFTER call_data_size, | ||
ADD COLUMN blob_gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER blob_gas, | ||
ADD COLUMN blob_hashes Array(String) Codec(ZSTD(1)) AFTER blob_gas_fee_cap, | ||
ADD COLUMN blob_sidecars_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_hashes, | ||
ADD COLUMN blob_sidecars_empty_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_sidecars_size, | ||
COMMENT COLUMN gas_tip_cap 'The priority fee (tip) the user has set for the transaction', | ||
COMMENT COLUMN gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_gas 'The maximum gas provided for the blob transaction execution', | ||
COMMENT COLUMN blob_gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_hashes 'The hashes of the blob commitments for blob transactions', | ||
COMMENT COLUMN blob_sidecars_size 'The total size of the sidecars for blob transactions in bytes', | ||
COMMENT COLUMN blob_sidecars_empty_size 'The total empty size of the sidecars for blob transactions in bytes'; | ||
|
||
ALTER TABLE canonical_beacon_block_execution_transaction on cluster '{cluster}' | ||
ADD COLUMN gas_tip_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas, | ||
ADD COLUMN gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER gas_tip_cap, | ||
ADD COLUMN blob_gas Nullable(UInt64) Codec(ZSTD(1)) AFTER call_data_size, | ||
ADD COLUMN blob_gas_fee_cap Nullable(UInt128) Codec(ZSTD(1)) AFTER blob_gas, | ||
ADD COLUMN blob_hashes Array(String) Codec(ZSTD(1)) AFTER blob_gas_fee_cap, | ||
ADD COLUMN blob_sidecars_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_hashes, | ||
ADD COLUMN blob_sidecars_empty_size Nullable(UInt32) Codec(ZSTD(1)) AFTER blob_sidecars_size, | ||
COMMENT COLUMN gas_tip_cap 'The priority fee (tip) the user has set for the transaction', | ||
COMMENT COLUMN gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_gas 'The maximum gas provided for the blob transaction execution', | ||
COMMENT COLUMN blob_gas_fee_cap 'The max fee the user has set for the transaction', | ||
COMMENT COLUMN blob_hashes 'The hashes of the blob commitments for blob transactions', | ||
COMMENT COLUMN blob_sidecars_size 'The total size of the sidecars for blob transactions in bytes', | ||
COMMENT COLUMN blob_sidecars_empty_size 'The total empty size of the sidecars for blob transactions in bytes'; |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.