changed package name from tharsis/ethermint to cerc-io/laconicd

This commit is contained in:
SpideyPool192
2022-09-07 12:06:11 +05:30
parent 680d585084
commit a57e5f4fd9
214 changed files with 523 additions and 518 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/flags"
grpctypes "github.com/cosmos/cosmos-sdk/types/grpc"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
// GetQueryCmd returns the parent command for all x/feemarket CLI query commands.
+2 -2
View File
@@ -4,8 +4,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tharsis/ethermint/x/feemarket/keeper"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/keeper"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
// InitGenesis initializes genesis state based on exported genesis
+1 -1
View File
@@ -3,8 +3,8 @@ package keeper
import (
"fmt"
"github.com/cerc-io/laconicd/x/feemarket/types"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tharsis/ethermint/x/feemarket/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)
+1 -1
View File
@@ -5,7 +5,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
var _ types.QueryServer = Keeper{}
+1 -1
View File
@@ -1,9 +1,9 @@
package keeper_test
import (
"github.com/cerc-io/laconicd/x/feemarket/types"
sdk "github.com/cosmos/cosmos-sdk/types"
ethparams "github.com/ethereum/go-ethereum/params"
"github.com/tharsis/ethermint/x/feemarket/types"
)
func (suite *KeeperTestSuite) TestQueryParams() {
+1 -1
View File
@@ -6,8 +6,8 @@ import (
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tendermint/tendermint/libs/log"
"github.com/cerc-io/laconicd/x/feemarket/types"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
"github.com/tharsis/ethermint/x/feemarket/types"
)
// Keeper grants access to the Fee Market module state.
+6 -6
View File
@@ -9,18 +9,18 @@ import (
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/cerc-io/laconicd/app"
"github.com/cerc-io/laconicd/crypto/ethsecp256k1"
"github.com/cerc-io/laconicd/encoding"
"github.com/cerc-io/laconicd/tests"
ethermint "github.com/cerc-io/laconicd/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/crypto/keyring"
sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/tharsis/ethermint/app"
"github.com/tharsis/ethermint/crypto/ethsecp256k1"
"github.com/tharsis/ethermint/encoding"
"github.com/tharsis/ethermint/tests"
ethermint "github.com/tharsis/ethermint/types"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/ethereum/go-ethereum/common"
ethtypes "github.com/ethereum/go-ethereum/core/types"
+1 -1
View File
@@ -3,7 +3,7 @@ package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"
v010 "github.com/tharsis/ethermint/x/feemarket/migrations/v010"
v010 "github.com/cerc-io/laconicd/x/feemarket/migrations/v010"
)
// Migrator is a struct for handling in-place store migrations.
+2 -2
View File
@@ -3,8 +3,8 @@ package keeper_test
import (
"math/big"
"github.com/tharsis/ethermint/x/feemarket/keeper"
v010 "github.com/tharsis/ethermint/x/feemarket/migrations/v010"
"github.com/cerc-io/laconicd/x/feemarket/keeper"
v010 "github.com/cerc-io/laconicd/x/feemarket/migrations/v010"
)
func (suite *KeeperTestSuite) TestMigration1To2() {
+1 -1
View File
@@ -3,8 +3,8 @@ package keeper
import (
"math/big"
"github.com/cerc-io/laconicd/x/feemarket/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/tharsis/ethermint/x/feemarket/types"
)
// GetParams returns the total set of fee market parameters.
+1 -1
View File
@@ -1,7 +1,7 @@
package keeper_test
import (
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
func (suite *KeeperTestSuite) TestSetGetParams() {
+2 -2
View File
@@ -5,10 +5,10 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
v09types "github.com/cerc-io/laconicd/x/feemarket/migrations/v09/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
v09types "github.com/tharsis/ethermint/x/feemarket/migrations/v09/types"
"github.com/tharsis/ethermint/x/feemarket/types"
)
// KeyPrefixBaseFeeV1 is the base fee key prefix used in version 1
+6 -6
View File
@@ -9,13 +9,13 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tharsis/ethermint/encoding"
"github.com/cerc-io/laconicd/encoding"
"github.com/tharsis/ethermint/app"
feemarketkeeper "github.com/tharsis/ethermint/x/feemarket/keeper"
v010 "github.com/tharsis/ethermint/x/feemarket/migrations/v010"
"github.com/tharsis/ethermint/x/feemarket/types"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/app"
feemarketkeeper "github.com/cerc-io/laconicd/x/feemarket/keeper"
v010 "github.com/cerc-io/laconicd/x/feemarket/migrations/v010"
"github.com/cerc-io/laconicd/x/feemarket/types"
feemarkettypes "github.com/cerc-io/laconicd/x/feemarket/types"
)
func TestMigrateStore(t *testing.T) {
+4 -4
View File
@@ -19,10 +19,10 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/tharsis/ethermint/x/feemarket/client/cli"
"github.com/tharsis/ethermint/x/feemarket/keeper"
"github.com/tharsis/ethermint/x/feemarket/simulation"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/client/cli"
"github.com/cerc-io/laconicd/x/feemarket/keeper"
"github.com/cerc-io/laconicd/x/feemarket/simulation"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
var (
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/tharsis/ethermint/x/feemarket/types"
"github.com/cerc-io/laconicd/x/feemarket/types"
)
// RandomizedGenState generates a random GenesisState for nft