Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Cosmos FeeToken to GasToken #10595

Merged
merged 4 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion core/chains/cosmos/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func newChain(id string, cfg *CosmosConfig, db *sqlx.DB, ks loop.Keystore, logCf
gpe := cosmosclient.NewMustGasPriceEstimator([]cosmosclient.GasPricesEstimator{
cosmosclient.NewClosureGasPriceEstimator(func() (map[string]sdk.DecCoin, error) {
return map[string]sdk.DecCoin{
cfg.FeeToken(): sdk.NewDecCoinFromDec(cfg.FeeToken(), cfg.FallbackGasPrice()),
cfg.GasToken(): sdk.NewDecCoinFromDec(cfg.GasToken(), cfg.FallbackGasPrice()),
}, nil
}),
}, lggr)
Expand Down
8 changes: 4 additions & 4 deletions core/chains/cosmos/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ func setFromChain(c, f *coscfg.Chain) {
if f.FallbackGasPrice != nil {
c.FallbackGasPrice = f.FallbackGasPrice
}
if f.FeeToken != nil {
c.FeeToken = f.FeeToken
if f.GasToken != nil {
c.GasToken = f.GasToken
}
if f.GasLimitMultiplier != nil {
c.GasLimitMultiplier = f.GasLimitMultiplier
Expand Down Expand Up @@ -225,8 +225,8 @@ func (c *CosmosConfig) FallbackGasPrice() sdk.Dec {
return sdkDecFromDecimal(c.Chain.FallbackGasPrice)
}

func (c *CosmosConfig) FeeToken() string {
return *c.Chain.FeeToken
func (c *CosmosConfig) GasToken() string {
return *c.Chain.GasToken
}

func (c *CosmosConfig) GasLimitMultiplier() float64 {
Expand Down
2 changes: 1 addition & 1 deletion core/chains/cosmos/cosmostxm/txm.go
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ func (txm *Txm) GetMsgs(ids ...int64) (adapters.Msgs, error) {
// GasPrice returns the gas price from the estimator in the configured fee token.
func (txm *Txm) GasPrice() (sdk.DecCoin, error) {
prices := txm.gpe.GasPrices()
gasPrice, ok := prices[txm.cfg.FeeToken()]
gasPrice, ok := prices[txm.cfg.GasToken()]
if !ok {
return sdk.DecCoin{}, errors.New("unexpected empty gas price")
}
Expand Down
6 changes: 3 additions & 3 deletions core/chains/cosmos/cosmostxm/txm_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ func TestTxm(t *testing.T) {
logCfg := pgtest.NewQConfig(true)
chainID := cosmostest.RandomChainID()
two := int64(2)
feeToken := "ucosm"
gasToken := "ucosm"
cfg := &cosmos.CosmosConfig{Chain: coscfg.Chain{
MaxMsgsPerBatch: &two,
FeeToken: &feeToken,
GasToken: &gasToken,
}}
cfg.SetDefaults()
gpe := cosmosclient.NewMustGasPriceEstimator([]cosmosclient.GasPricesEstimator{
cosmosclient.NewFixedGasPriceEstimator(map[string]cosmostypes.DecCoin{
cfg.FeeToken(): cosmostypes.NewDecCoinFromDec(cfg.FeeToken(), cosmostypes.MustNewDecFromStr("0.01")),
cfg.GasToken(): cosmostypes.NewDecCoinFromDec(cfg.GasToken(), cosmostypes.MustNewDecFromStr("0.01")),
},
lggr.(logger.SugaredLogger),
),
Expand Down
12 changes: 6 additions & 6 deletions core/chains/cosmos/cosmostxm/txm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func TestTxm_Integration(t *testing.T) {
chainID := cosmostest.RandomChainID()
cosmosChain := coscfg.Chain{}
cosmosChain.SetDefaults()
fallbackGasPrice := sdk.NewDecCoinFromDec(*cosmosChain.FeeToken, sdk.MustNewDecFromStr("0.01"))
fallbackGasPrice := sdk.NewDecCoinFromDec(*cosmosChain.GasToken, sdk.MustNewDecFromStr("0.01"))
chainConfig := cosmos.CosmosConfig{ChainID: &chainID, Enabled: ptr(true), Chain: cosmosChain}
cfg, db := heavyweight.FullTestDBNoFixturesV2(t, "cosmos_txm", func(c *chainlink.Config, s *chainlink.Secrets) {
c.Cosmos = cosmos.CosmosConfigs{&chainConfig}
Expand All @@ -47,7 +47,7 @@ func TestTxm_Integration(t *testing.T) {
logCfg := pgtest.NewQConfig(true)
gpe := cosmosclient.NewMustGasPriceEstimator([]cosmosclient.GasPricesEstimator{
cosmosclient.NewFixedGasPriceEstimator(map[string]sdk.DecCoin{
*cosmosChain.FeeToken: fallbackGasPrice,
*cosmosChain.GasToken: fallbackGasPrice,
},
lggr.(logger.SugaredLogger),
),
Expand All @@ -59,7 +59,7 @@ func TestTxm_Integration(t *testing.T) {
ks := keystore.New(db, utils.FastScryptParams, lggr, pgtest.NewQConfig(true))
zeConfig := sdk.GetConfig()
fmt.Println(zeConfig)
accounts, testdir, tendermintURL := cosmosclient.SetupLocalCosmosNode(t, chainID, *cosmosChain.FeeToken)
accounts, testdir, tendermintURL := cosmosclient.SetupLocalCosmosNode(t, chainID, *cosmosChain.GasToken)
tc, err := cosmosclient.NewClient(chainID, tendermintURL, cosmos.DefaultRequestTimeout, lggr)
require.NoError(t, err)

Expand All @@ -77,16 +77,16 @@ func TestTxm_Integration(t *testing.T) {
require.NoError(t, err)
an, sn, err := tc.Account(accounts[0].Address)
require.NoError(t, err)
resp, err := tc.SignAndBroadcast([]sdk.Msg{banktypes.NewMsgSend(accounts[0].Address, transmitterID, sdk.NewCoins(sdk.NewInt64Coin(*cosmosChain.FeeToken, 100000)))},
an, sn, gpe.GasPrices()[*cosmosChain.FeeToken], accounts[0].PrivateKey, txtypes.BroadcastMode_BROADCAST_MODE_SYNC)
resp, err := tc.SignAndBroadcast([]sdk.Msg{banktypes.NewMsgSend(accounts[0].Address, transmitterID, sdk.NewCoins(sdk.NewInt64Coin(*cosmosChain.GasToken, 100000)))},
an, sn, gpe.GasPrices()[*cosmosChain.GasToken], accounts[0].PrivateKey, txtypes.BroadcastMode_BROADCAST_MODE_SYNC)
tx, success := cosmosclient.AwaitTxCommitted(t, tc, resp.TxResponse.TxHash)
require.True(t, success)
require.Equal(t, types.CodeTypeOK, tx.TxResponse.Code)
require.NoError(t, err)

// TODO: find a way to pull this test artifact from
// the chainlink-cosmos repo instead of copying it to cores testdata
contractID := cosmosclient.DeployTestContract(t, tendermintURL, chainID, *cosmosChain.FeeToken, accounts[0], cosmosclient.Account{
contractID := cosmosclient.DeployTestContract(t, tendermintURL, chainID, *cosmosChain.GasToken, accounts[0], cosmosclient.Account{
Name: "transmitter",
PrivateKey: cosmostxm.NewKeyWrapper(keystoreAdapter, transmitterAddress),
Address: transmitterID,
Expand Down
10 changes: 5 additions & 5 deletions core/cmd/cosmos_transaction_commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func TestShell_SendCosmosCoins(t *testing.T) {
chainID := cosmostest.RandomChainID()
cosmosChain := coscfg.Chain{}
cosmosChain.SetDefaults()
accounts, _, url := cosmosclient.SetupLocalCosmosNode(t, chainID, *cosmosChain.FeeToken)
accounts, _, url := cosmosclient.SetupLocalCosmosNode(t, chainID, *cosmosChain.GasToken)
require.Greater(t, len(accounts), 1)
nodes := cosmos.CosmosNodes{
&coscfg.Node{
Expand All @@ -71,7 +71,7 @@ func TestShell_SendCosmosCoins(t *testing.T) {
require.NoError(t, err)

require.Eventually(t, func() bool {
coin, err := reader.Balance(from.Address, *cosmosChain.FeeToken)
coin, err := reader.Balance(from.Address, *cosmosChain.GasToken)
if !assert.NoError(t, err) {
return false
}
Expand All @@ -97,7 +97,7 @@ func TestShell_SendCosmosCoins(t *testing.T) {
} {
tt := tt
t.Run(tt.amount, func(t *testing.T) {
startBal, err := reader.Balance(from.Address, *cosmosChain.FeeToken)
startBal, err := reader.Balance(from.Address, *cosmosChain.GasToken)
require.NoError(t, err)

set := flag.NewFlagSet("sendcosmoscoins", 0)
Expand Down Expand Up @@ -156,11 +156,11 @@ func TestShell_SendCosmosCoins(t *testing.T) {
}

// Check balance
endBal, err := reader.Balance(from.Address, *cosmosChain.FeeToken)
endBal, err := reader.Balance(from.Address, *cosmosChain.GasToken)
require.NoError(t, err)
if assert.NotNil(t, startBal) && assert.NotNil(t, endBal) {
diff := startBal.Sub(*endBal).Amount
sent, err := denom.ConvertDecCoinToDenom(sdk.NewDecCoinFromDec(nativeToken, sdk.MustNewDecFromStr(tt.amount)), *cosmosChain.FeeToken)
sent, err := denom.ConvertDecCoinToDenom(sdk.NewDecCoinFromDec(nativeToken, sdk.MustNewDecFromStr(tt.amount)), *cosmosChain.GasToken)
require.NoError(t, err)
if assert.True(t, diff.IsInt64()) && assert.True(t, sent.Amount.IsInt64()) {
require.Greater(t, diff.Int64(), sent.Amount.Int64())
Expand Down
4 changes: 2 additions & 2 deletions core/config/docs/chains-cosmos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ BlocksUntilTxTimeout = 30 # Default
ConfirmPollPeriod = '1s' # Default
# FallbackGasPrice sets a fallback gas price to use when the estimator is not available.
FallbackGasPrice = '0.015' # Default
# FeeToken is the token denomination which is being used to pay gas fees on this chain.
FeeToken = 'ucosm' # Default
# GasToken is the token denomination which is being used to pay gas fees on this chain.
GasToken = 'ucosm' # Default
# GasLimitMultiplier scales the estimated gas limit.
GasLimitMultiplier = '1.5' # Default
# MaxMsgsPerBatch limits the numbers of mesages per transaction batch.
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ require (
github.com/shirou/gopsutil/v3 v3.23.8 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704 // indirect
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512 // indirect
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47 // indirect
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc // indirect
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20230831134610-680240b97aca // indirect
github.com/smartcontractkit/chainlink-starknet/relayer v0.0.1-beta-test.0.20230901115736-bbabe542a918 // indirect
Expand Down
4 changes: 2 additions & 2 deletions core/scripts/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1375,8 +1375,8 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704 h1:T3lFWumvbfM1u/etVq42Afwq/jtNSBSOA8n5jntnNPo=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704/go.mod h1:2QuJdEouTWjh5BDy5o/vgGXQtR4Gz8yH1IYB5eT7u4M=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512 h1:DojChlaudA1HAxwQPKmt/EDf36OUeFJ0LJBYClauMyU=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47 h1:vdieOW3CZGdD2R5zvCSMS+0vksyExPN3/Fa1uVfld/A=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc h1:mQCCjnDz2I1XlYv/fDyFnEB8ryAchlpz12Eg0f7n/N0=
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc/go.mod h1:gWclxGW7rLkbjXn7FGizYlyKhp/boekto4MEYGyiMG4=
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20230831134610-680240b97aca h1:x7M0m512gtXw5Z4B1WJPZ52VgshoIv+IvHqQ8hsH4AE=
Expand Down
4 changes: 2 additions & 2 deletions core/services/chainlink/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ func TestConfig_Marshal(t *testing.T) {
BlocksUntilTxTimeout: ptr[int64](12),
ConfirmPollPeriod: relayutils.MustNewDuration(time.Second),
FallbackGasPrice: mustDecimal("0.001"),
FeeToken: ptr("ucosm"),
GasToken: ptr("ucosm"),
GasLimitMultiplier: mustDecimal("1.2"),
MaxMsgsPerBatch: ptr[int64](17),
OCR2CachePollPeriod: relayutils.MustNewDuration(time.Minute),
Expand Down Expand Up @@ -962,7 +962,7 @@ BlockRate = '1m0s'
BlocksUntilTxTimeout = 12
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.001'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.2'
MaxMsgsPerBatch = 17
OCR2CachePollPeriod = '1m0s'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func TestCoreRelayerChainInteroperators(t *testing.T) {
Chain: coscfg.Chain{
GasLimitMultiplier: ptr(decimal.RequireFromString("1.55555")),
Bech32Prefix: ptr("wasm"),
FeeToken: ptr("cosm"),
GasToken: ptr("cosm"),
},
Nodes: cosmos.CosmosNodes{
&coscfg.Node{
Expand All @@ -155,7 +155,7 @@ func TestCoreRelayerChainInteroperators(t *testing.T) {
Chain: coscfg.Chain{
GasLimitMultiplier: ptr(decimal.RequireFromString("0.777")),
Bech32Prefix: ptr("wasm"),
FeeToken: ptr("cosm"),
GasToken: ptr("cosm"),
},
Nodes: cosmos.CosmosNodes{
&coscfg.Node{
Expand Down
2 changes: 1 addition & 1 deletion core/services/chainlink/testdata/config-full.toml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ BlockRate = '1m0s'
BlocksUntilTxTimeout = 12
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.001'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.2'
MaxMsgsPerBatch = 17
OCR2CachePollPeriod = '1m0s'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ BlockRate = '6s'
BlocksUntilTxTimeout = 30
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.015'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.5'
MaxMsgsPerBatch = 13
OCR2CachePollPeriod = '4s'
Expand All @@ -474,7 +474,7 @@ BlockRate = '6s'
BlocksUntilTxTimeout = 20
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.015'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.5'
MaxMsgsPerBatch = 100
OCR2CachePollPeriod = '4s'
Expand Down
2 changes: 1 addition & 1 deletion core/web/cosmos_chains_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ BlockRate = '6s'
BlocksUntilTxTimeout = 30
ConfirmPollPeriod = '1s'
FallbackGasPrice = '9.999'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.55555'
MaxMsgsPerBatch = 100
OCR2CachePollPeriod = '4s'
Expand Down
4 changes: 2 additions & 2 deletions core/web/cosmos_transfer_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ func (tc *CosmosTransfersController) Create(c *gin.Context) {
jsonAPIError(c, http.StatusUnprocessableEntity, errors.Errorf("withdrawal source address is missing: %v", tr.FromAddress))
return
}
coin, err := denom.ConvertDecCoinToDenom(sdk.NewDecCoinFromDec(tr.Token, tr.Amount), chain.Config().FeeToken())
coin, err := denom.ConvertDecCoinToDenom(sdk.NewDecCoinFromDec(tr.Token, tr.Amount), chain.Config().GasToken())
if err != nil {
jsonAPIError(c, http.StatusBadRequest, errors.Errorf("unable to convert %s to %s: %v", tr.Token, chain.Config().FeeToken(), err))
jsonAPIError(c, http.StatusBadRequest, errors.Errorf("unable to convert %s to %s: %v", tr.Token, chain.Config().GasToken(), err))
return
} else if !coin.Amount.IsPositive() {
jsonAPIError(c, http.StatusBadRequest, errors.Errorf("amount must be greater than zero: %s", coin.Amount))
Expand Down
2 changes: 1 addition & 1 deletion core/web/resolver/testdata/config-full.toml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ BlockRate = '1m0s'
BlocksUntilTxTimeout = 12
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.001'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.2'
MaxMsgsPerBatch = 17
OCR2CachePollPeriod = '1m0s'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ BlockRate = '6s'
BlocksUntilTxTimeout = 30
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.015'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.5'
MaxMsgsPerBatch = 13
OCR2CachePollPeriod = '4s'
Expand All @@ -474,7 +474,7 @@ BlockRate = '6s'
BlocksUntilTxTimeout = 20
ConfirmPollPeriod = '1s'
FallbackGasPrice = '0.015'
FeeToken = 'ucosm'
GasToken = 'ucosm'
GasLimitMultiplier = '1.5'
MaxMsgsPerBatch = 100
OCR2CachePollPeriod = '4s'
Expand Down
4 changes: 2 additions & 2 deletions core/web/resolver/testdata/config-multi-chain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ WSURL = 'wss://web.socket/test/bar'
[[Cosmos]]
ChainID = 'Ibiza-808'
Bech32Prefix = 'wasm'
FeeToken = 'ucosm'
GasToken = 'ucosm'
MaxMsgsPerBatch = 13

[[Cosmos.Nodes]]
Expand All @@ -83,7 +83,7 @@ TendermintURL = 'http://columbus.cosmos.com'
ChainID = 'Malaga-420'
Bech32Prefix = 'wasm'
BlocksUntilTxTimeout = 20
FeeToken = 'ucosm'
GasToken = 'ucosm'

[[Cosmos.Nodes]]
Name = 'secondary'
Expand Down
8 changes: 4 additions & 4 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5140,7 +5140,7 @@ BlockRate = '6s' # Default
BlocksUntilTxTimeout = 30 # Default
ConfirmPollPeriod = '1s' # Default
FallbackGasPrice = '0.015' # Default
FeeToken = 'ucosm' # Default
GasToken = 'ucosm' # Default
GasLimitMultiplier = '1.5' # Default
MaxMsgsPerBatch = 100 # Default
OCR2CachePollPeriod = '4s' # Default
Expand Down Expand Up @@ -5191,11 +5191,11 @@ FallbackGasPrice = '0.015' # Default
```
FallbackGasPrice sets a fallback gas price to use when the estimator is not available.

### FeeToken
### GasToken
```toml
FeeToken = 'ucosm' # Default
GasToken = 'ucosm' # Default
```
FeeToken is the token denomination which is being used to pay gas fees on this chain.
GasToken is the token denomination which is being used to pay gas fees on this chain.

### GasLimitMultiplier
```toml
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ require (
github.com/shirou/gopsutil/v3 v3.23.8
github.com/shopspring/decimal v1.3.1
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20230831134610-680240b97aca
github.com/smartcontractkit/chainlink-starknet/relayer v0.0.1-beta-test.0.20230901115736-bbabe542a918
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1375,8 +1375,8 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704 h1:T3lFWumvbfM1u/etVq42Afwq/jtNSBSOA8n5jntnNPo=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704/go.mod h1:2QuJdEouTWjh5BDy5o/vgGXQtR4Gz8yH1IYB5eT7u4M=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512 h1:DojChlaudA1HAxwQPKmt/EDf36OUeFJ0LJBYClauMyU=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47 h1:vdieOW3CZGdD2R5zvCSMS+0vksyExPN3/Fa1uVfld/A=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc h1:mQCCjnDz2I1XlYv/fDyFnEB8ryAchlpz12Eg0f7n/N0=
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc/go.mod h1:gWclxGW7rLkbjXn7FGizYlyKhp/boekto4MEYGyiMG4=
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20230831134610-680240b97aca h1:x7M0m512gtXw5Z4B1WJPZ52VgshoIv+IvHqQ8hsH4AE=
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ require (
github.com/shopspring/decimal v1.3.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704 // indirect
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512 // indirect
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47 // indirect
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc // indirect
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20230831134610-680240b97aca // indirect
github.com/smartcontractkit/chainlink-starknet/relayer v0.0.1-beta-test.0.20230901115736-bbabe542a918 // indirect
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2248,8 +2248,8 @@ github.com/slack-go/slack v0.12.2 h1:x3OppyMyGIbbiyFhsBmpf9pwkUzMhthJMRNmNlA4LaQ
github.com/slack-go/slack v0.12.2/go.mod h1:hlGi5oXA+Gt+yWTPP0plCdRKmjsDxecdHxYQdlMQKOw=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704 h1:T3lFWumvbfM1u/etVq42Afwq/jtNSBSOA8n5jntnNPo=
github.com/smartcontractkit/caigo v0.0.0-20230621050857-b29a4ca8c704/go.mod h1:2QuJdEouTWjh5BDy5o/vgGXQtR4Gz8yH1IYB5eT7u4M=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512 h1:DojChlaudA1HAxwQPKmt/EDf36OUeFJ0LJBYClauMyU=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230831132059-42af68994512/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47 h1:vdieOW3CZGdD2R5zvCSMS+0vksyExPN3/Fa1uVfld/A=
github.com/smartcontractkit/chainlink-cosmos v0.4.1-0.20230913032705-f924d753cc47/go.mod h1:xMwqRdj5vqYhCJXgKVqvyAwdcqM6ZAEhnwEQ4Khsop8=
github.com/smartcontractkit/chainlink-env v0.36.0 h1:CFOjs0c0y3lrHi/fl5qseCH9EQa5W/6CFyOvmhe2VnA=
github.com/smartcontractkit/chainlink-env v0.36.0/go.mod h1:NbRExHmJGnKSYXmvNuJx5VErSx26GtE1AEN/CRzYOg8=
github.com/smartcontractkit/chainlink-relay v0.1.7-0.20230912195355-fec1da7953fc h1:mQCCjnDz2I1XlYv/fDyFnEB8ryAchlpz12Eg0f7n/N0=
Expand Down
Loading