@@ -6,16 +6,18 @@ import (
66
77 "github.com/Masterminds/semver/v3"
88 "github.com/gagliardetto/solana-go"
9+
10+ cldf_chain "github.com/smartcontractkit/chainlink-deployments-framework/chain"
11+ "github.com/smartcontractkit/chainlink-deployments-framework/operations"
12+ cldf_ops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
13+
914 fqops "github.com/smartcontractkit/chainlink-ccip/chains/solana/deployment/v1_6_0/operations/fee_quoter"
1015 offrampops "github.com/smartcontractkit/chainlink-ccip/chains/solana/deployment/v1_6_0/operations/offramp"
1116 routerops "github.com/smartcontractkit/chainlink-ccip/chains/solana/deployment/v1_6_0/operations/router"
1217 "github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/v0_1_1/fee_quoter"
1318 "github.com/smartcontractkit/chainlink-ccip/deployment/lanes"
1419 ccipapi "github.com/smartcontractkit/chainlink-ccip/deployment/lanes"
1520 "github.com/smartcontractkit/chainlink-ccip/deployment/utils/sequences"
16- cldf_chain "github.com/smartcontractkit/chainlink-deployments-framework/chain"
17- "github.com/smartcontractkit/chainlink-deployments-framework/operations"
18- cldf_ops "github.com/smartcontractkit/chainlink-deployments-framework/operations"
1921)
2022
2123var ConfigureLaneLegAsSource = operations .NewSequence (
@@ -86,10 +88,10 @@ var ConfigureLaneLegAsDest = operations.NewSequence(
8688
8789 // Add DestChain to OffRamp
8890 offRampOut , err := operations .ExecuteOperation (b , offrampops .ConnectChains , chains .SolanaChains ()[input .Dest .Selector ], offrampops.ConnectChainsParams {
89- RemoteChainSelector : input .Source .Selector ,
90- OffRamp : offRampAddress ,
91- SourceOnRamp : input .Source .OnRamp ,
92- EnabledAsSource : ! input .IsDisabled ,
91+ RemoteChainSelector : input .Source .Selector ,
92+ OffRamp : offRampAddress ,
93+ SourceOnRamp : input .Source .OnRamp ,
94+ EnabledAsSource : ! input .IsDisabled ,
9395 IsRMNVerificationDisabled : ! input .Source .RMNVerificationEnabled ,
9496 })
9597 if err != nil {
@@ -131,7 +133,7 @@ func TranslateFQ(fqc lanes.FeeQuoterDestChainConfig) fee_quoter.DestChainConfig
131133 DefaultTxGasLimit : fqc .DefaultTxGasLimit ,
132134 GasMultiplierWeiPerEth : fqc .GasMultiplierWeiPerEth ,
133135 GasPriceStalenessThreshold : fqc .GasPriceStalenessThreshold ,
134- NetworkFeeUsdcents : fqc .NetworkFeeUSDCents ,
136+ NetworkFeeUsdcents : uint32 ( fqc .NetworkFeeUSDCents ) ,
135137 }
136138}
137139
0 commit comments