Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,10 @@ func (c *CliqueConfig) String() string {

// OptimismConfig is the optimism config.
type OptimismConfig struct {
BaseFeeRecipient common.Address `json:"baseFeeRecipient"`
L1FeeRecipient common.Address `json:"l1FeeRecipient"`
BaseFeeRecipient common.Address `json:"baseFeeRecipient"`
L1FeeRecipient common.Address `json:"l1FeeRecipient"`
EIP1559Elasticity uint64 `json:"eip1559Elasticity"`
EIP1559Denominator uint64 `json:"eip1559Denominator"`
}

// String implements the stringer interface, returning the optimism fee config details.
Expand Down