Skip to content

Commit

Permalink
Use more realistic values for FeeQuoter configs
Browse files Browse the repository at this point in the history
  • Loading branch information
asoliman92 committed Feb 25, 2025
1 parent 3b8d0ad commit 8208263
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deployment/ccip/changeset/v1_6/cs_chain_contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -1721,20 +1721,20 @@ func DefaultFeeQuoterDestChainConfig(configEnabled bool, destChainSelector ...ui
return fee_quoter.FeeQuoterDestChainConfig{
IsEnabled: configEnabled,
MaxNumberOfTokensPerMsg: 10,
MaxDataBytes: 256,
MaxDataBytes: 30_000,
MaxPerMsgGasLimit: 3_000_000,
DestGasOverhead: ccipevm.DestGasOverhead,
DefaultTokenFeeUSDCents: 1,
DefaultTokenFeeUSDCents: 25,
DestGasPerPayloadByteBase: ccipevm.CalldataGasPerByteBase,
DestGasPerPayloadByteHigh: ccipevm.CalldataGasPerByteHigh,
DestGasPerPayloadByteThreshold: ccipevm.CalldataGasPerByteThreshold,
DestDataAvailabilityOverheadGas: 100,
DestGasPerDataAvailabilityByte: 100,
DestDataAvailabilityMultiplierBps: 1,
DefaultTokenDestGasOverhead: 125_000,
DestDataAvailabilityOverheadGas: 35_648,
DestGasPerDataAvailabilityByte: 16,
DestDataAvailabilityMultiplierBps: 6500,
DefaultTokenDestGasOverhead: 90_000,
DefaultTxGasLimit: 200_000,
GasMultiplierWeiPerEth: 11e17, // Gas multiplier in wei per eth is scaled by 1e18, so 11e17 is 1.1 = 110%
NetworkFeeUSDCents: 1,
NetworkFeeUSDCents: 10,
ChainFamilySelector: [4]byte(familySelector),
}
}
Expand Down

0 comments on commit 8208263

Please sign in to comment.