From ae236dd3f67686fab3383733a587392b2ebf52c9 Mon Sep 17 00:00:00 2001 From: 0xmuralik Date: Wed, 14 Dec 2022 14:07:00 +0530 Subject: [PATCH] change chain id to laconic --- app/ante/ante_test.go | 26 +++++++++---------- app/ante/utils_test.go | 2 +- app/benchmark_test.go | 2 +- app/utils.go | 2 +- cmd/laconicd/cmd_test.go | 2 +- ethereum/eip712/preprocess_test.go | 2 +- init.bat | 2 +- init.sh | 2 +- rpc/backend/backend_suite_test.go | 2 +- scripts/contract-test.sh | 2 +- scripts/ethermint-devnet.yaml | 2 +- scripts/laconicd-devnet.yaml | 2 +- scripts/start.sh | 6 ++--- starport.yml | 2 +- tests/importer/importer_test.go | 2 +- .../configs/cosmovisor.jsonnet | 2 +- .../integration_tests/configs/default.jsonnet | 2 +- .../configs/enable-indexer.jsonnet | 2 +- .../configs/pruned_node.jsonnet | 2 +- .../configs/rollback-test.jsonnet | 2 +- tests/integration_tests/network.py | 2 +- tests/integration_tests/test_rollback.py | 6 ++--- tests/integration_tests/test_upgrade.py | 2 +- tests/solidity/init-test-node.sh | 2 +- types/chain_id_test.go | 2 +- x/auction/README.md | 4 +-- x/bond/README.md | 4 +-- x/evm/handler_test.go | 4 +-- x/evm/keeper/integration_test.go | 2 +- x/evm/keeper/keeper_test.go | 4 +-- x/feemarket/keeper/integration_test.go | 2 +- x/feemarket/keeper/keeper_test.go | 2 +- x/registry/README.md | 24 ++++++++--------- 33 files changed, 64 insertions(+), 64 deletions(-) diff --git a/app/ante/ante_test.go b/app/ante/ante_test.go index b8415fac..15f83483 100644 --- a/app/ante/ante_test.go +++ b/app/ante/ante_test.go @@ -311,7 +311,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9000-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9000-1", gas, amount) return txBuilder.GetTx() }, false, false, true, }, @@ -322,7 +322,7 @@ func (suite AnteTestSuite) TestAnteHandler() { gas := uint64(200000) coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas))) amount := sdk.NewCoins(coinAmount) - txBuilder := suite.CreateTestEIP712TxBuilderMsgDelegate(from, privKey, "ethermint_9000-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgDelegate(from, privKey, "laconic_9000-1", gas, amount) return txBuilder.GetTx() }, false, false, true, }, @@ -333,7 +333,7 @@ func (suite AnteTestSuite) TestAnteHandler() { coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)) amount := sdk.NewCoins(coinAmount) gas := uint64(200000) - txBuilder := suite.CreateTestEIP712MsgCreateValidator(from, privKey, "ethermint_9000-1", gas, amount) + txBuilder := suite.CreateTestEIP712MsgCreateValidator(from, privKey, "laconic_9000-1", gas, amount) return txBuilder.GetTx() }, false, false, true, }, @@ -346,7 +346,7 @@ func (suite AnteTestSuite) TestAnteHandler() { gas := uint64(200000) // reusing the gasAmount for deposit deposit := sdk.NewCoins(coinAmount) - txBuilder := suite.CreateTestEIP712SubmitProposal(from, privKey, "ethermint_9000-1", gas, gasAmount, deposit) + txBuilder := suite.CreateTestEIP712SubmitProposal(from, privKey, "laconic_9000-1", gas, gasAmount, deposit) return txBuilder.GetTx() }, false, false, true, }, @@ -364,7 +364,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from, grantee, &banktypes.SendAuthorization{SpendLimit: gasAmount}, &expiresAt, ) suite.Require().NoError(err) - return suite.CreateTestEIP712CosmosTxBuilder(from, privKey, "ethermint_9000-1", gas, gasAmount, msg).GetTx() + return suite.CreateTestEIP712CosmosTxBuilder(from, privKey, "laconic_9000-1", gas, gasAmount, msg).GetTx() }, false, false, true, }, @@ -375,7 +375,7 @@ func (suite AnteTestSuite) TestAnteHandler() { coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)) gasAmount := sdk.NewCoins(coinAmount) gas := uint64(200000) - txBuilder := suite.CreateTestEIP712GrantAllowance(from, privKey, "ethermint_9000-1", gas, gasAmount) + txBuilder := suite.CreateTestEIP712GrantAllowance(from, privKey, "laconic_9000-1", gas, gasAmount) return txBuilder.GetTx() }, false, false, true, }, @@ -386,7 +386,7 @@ func (suite AnteTestSuite) TestAnteHandler() { coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)) amount := sdk.NewCoins(coinAmount) gas := uint64(200000) - txBuilder := suite.CreateTestEIP712MsgEditValidator(from, privKey, "ethermint_9000-1", gas, amount) + txBuilder := suite.CreateTestEIP712MsgEditValidator(from, privKey, "laconic_9000-1", gas, amount) return txBuilder.GetTx() }, false, false, true, }, @@ -397,7 +397,7 @@ func (suite AnteTestSuite) TestAnteHandler() { coinAmount := sdk.NewCoin(evmtypes.DefaultEVMDenom, sdk.NewInt(20)) amount := sdk.NewCoins(coinAmount) gas := uint64(200000) - txBuilder := suite.CreateTestEIP712MsgEditValidator(from, privKey, "ethermint_9000-1", gas, amount) + txBuilder := suite.CreateTestEIP712MsgEditValidator(from, privKey, "laconic_9000-1", gas, amount) return txBuilder.GetTx() }, false, false, true, }, @@ -407,7 +407,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9002-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9002-1", gas, amount) return txBuilder.GetTx() }, false, false, false, }, @@ -417,7 +417,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9001-1", gas, amount) txBuilder.SetGasLimit(uint64(300000)) txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(30)))) return txBuilder.GetTx() @@ -429,7 +429,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9001-1", gas, amount) sigsV2 := signing.SignatureV2{} txBuilder.SetSignatures(sigsV2) return txBuilder.GetTx() @@ -441,7 +441,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9001-1", gas, amount) nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress()) suite.Require().NoError(err) sigsV2 := signing.SignatureV2{ @@ -461,7 +461,7 @@ func (suite AnteTestSuite) TestAnteHandler() { from := acc.GetAddress() gas := uint64(200000) amount := sdk.NewCoins(sdk.NewCoin(evmtypes.DefaultEVMDenom, sdkmath.NewInt(100*int64(gas)))) - txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "ethermint_9001-1", gas, amount) + txBuilder := suite.CreateTestEIP712TxBuilderMsgSend(from, privKey, "laconic_9001-1", gas, amount) nonce, err := suite.app.AccountKeeper.GetSequence(suite.ctx, acc.GetAddress()) suite.Require().NoError(err) sigsV2 := signing.SignatureV2{ diff --git a/app/ante/utils_test.go b/app/ante/utils_test.go index e9c6f6d8..79d3f097 100644 --- a/app/ante/utils_test.go +++ b/app/ante/utils_test.go @@ -100,7 +100,7 @@ func (suite *AnteTestSuite) SetupTest() { return genesis }) - suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{Height: 2, ChainID: "ethermint_9000-1", Time: time.Now().UTC()}) + suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{Height: 2, ChainID: "laconic_9000-1", Time: time.Now().UTC()}) suite.ctx = suite.ctx.WithMinGasPrices(sdk.NewDecCoins(sdk.NewDecCoin(evmtypes.DefaultEVMDenom, sdk.OneInt()))) suite.ctx = suite.ctx.WithBlockGasMeter(sdk.NewGasMeter(1000000000000000000)) suite.app.EvmKeeper.WithChainID(suite.ctx) diff --git a/app/benchmark_test.go b/app/benchmark_test.go index ce046d3f..14594ad3 100644 --- a/app/benchmark_test.go +++ b/app/benchmark_test.go @@ -25,7 +25,7 @@ func BenchmarkEthermintApp_ExportAppStateAndValidators(b *testing.B) { // Initialize the chain app.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, AppStateBytes: stateBytes, }, diff --git a/app/utils.go b/app/utils.go index 4774bce9..76883743 100644 --- a/app/utils.go +++ b/app/utils.go @@ -83,7 +83,7 @@ func SetupWithDB(isCheckTx bool, patchGenesis func(*EthermintApp, simapp.Genesis // Initialize the chain app.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, ConsensusParams: DefaultConsensusParams, AppStateBytes: stateBytes, diff --git a/cmd/laconicd/cmd_test.go b/cmd/laconicd/cmd_test.go index ec202291..6d1b76cc 100644 --- a/cmd/laconicd/cmd_test.go +++ b/cmd/laconicd/cmd_test.go @@ -20,7 +20,7 @@ func TestInitCmd(t *testing.T) { "init", // Test the init cmd "etherminttest", // Moniker fmt.Sprintf("--%s=%s", cli.FlagOverwrite, "true"), // Overwrite genesis.json, in case it already exists - fmt.Sprintf("--%s=%s", flags.FlagChainID, "ethermint_9000-1"), + fmt.Sprintf("--%s=%s", flags.FlagChainID, "laconic_9000-1"), }) err := svrcmd.Execute(rootCmd, "", app.DefaultNodeHome) diff --git a/ethereum/eip712/preprocess_test.go b/ethereum/eip712/preprocess_test.go index 06aa690b..2e000a94 100644 --- a/ethereum/eip712/preprocess_test.go +++ b/ethereum/eip712/preprocess_test.go @@ -24,7 +24,7 @@ import ( // Testing Constants var ( - chainId = "ethermint_9000-1" + chainId = "laconic_9000-1" ctx = client.Context{}.WithTxConfig( encoding.MakeConfig(app.ModuleBasics).TxConfig, ) diff --git a/init.bat b/init.bat index 002405a5..06b6ae84 100644 --- a/init.bat +++ b/init.bat @@ -9,7 +9,7 @@ rem 3. add path C:\msys64\mingw64\bin rem C:\msys64\usr\bin set KEY="mykey" -set CHAINID="ethermint_9000-1" +set CHAINID="laconic_9000-1" set MONIKER="localtestnet" set KEYRING="test" set KEYALGO="eth_secp256k1" diff --git a/init.sh b/init.sh index b06d0db4..b18ba487 100755 --- a/init.sh +++ b/init.sh @@ -1,7 +1,7 @@ #!/bin/bash KEY="mykey" -CHAINID="ethermint_9000-1" +CHAINID="laconic_9000-1" MONIKER="localtestnet" KEYRING="test" KEYALGO="eth_secp256k1" diff --git a/rpc/backend/backend_suite_test.go b/rpc/backend/backend_suite_test.go index ee9bd51f..bb6205b8 100644 --- a/rpc/backend/backend_suite_test.go +++ b/rpc/backend/backend_suite_test.go @@ -51,7 +51,7 @@ func (suite *BackendTestSuite) SetupTest() { } encodingConfig := encoding.MakeConfig(app.ModuleBasics) - clientCtx := client.Context{}.WithChainID("ethermint_9000-1"). + clientCtx := client.Context{}.WithChainID("laconic_9000-1"). WithHeight(1). WithTxConfig(encodingConfig.TxConfig). WithKeyringDir(clientDir). diff --git a/scripts/contract-test.sh b/scripts/contract-test.sh index 58abc872..c26be846 100755 --- a/scripts/contract-test.sh +++ b/scripts/contract-test.sh @@ -1,7 +1,7 @@ #!/bin/bash KEY="mykey" -CHAINID="ethermint_9000-1" +CHAINID="laconic_9000-1" MONIKER="localtestnet" # stop and remove existing daemon and client data and process(es) diff --git a/scripts/ethermint-devnet.yaml b/scripts/ethermint-devnet.yaml index 3a0fa687..551541be 100755 --- a/scripts/ethermint-devnet.yaml +++ b/scripts/ethermint-devnet.yaml @@ -1,5 +1,5 @@ dotenv: .env -ethermint_9000-1: +laconic_9000-1: cmd: laconicd start-flags: "--trace" app-config: diff --git a/scripts/laconicd-devnet.yaml b/scripts/laconicd-devnet.yaml index 3a0fa687..551541be 100755 --- a/scripts/laconicd-devnet.yaml +++ b/scripts/laconicd-devnet.yaml @@ -1,5 +1,5 @@ dotenv: .env -ethermint_9000-1: +laconic_9000-1: cmd: laconicd start-flags: "--trace" app-config: diff --git a/scripts/start.sh b/scripts/start.sh index b25ed14a..ea8cf7d7 100755 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -15,7 +15,7 @@ IP_ADDR="0.0.0.0" MODE="rpc" KEY="mykey" -CHAINID="ethermint_9000-1" +CHAINID="laconic_9000-1" MONIKER="mymoniker" ## default port prefixes for laconicd @@ -47,14 +47,14 @@ done set -euxo pipefail -DATA_DIR=$(mktemp -d -t ethermint_9000-datadir.XXXXX) +DATA_DIR=$(mktemp -d -t laconic_9000-datadir.XXXXX) if [[ ! "$DATA_DIR" ]]; then echo "Could not create $DATA_DIR" exit 1 fi -DATA_CLI_DIR=$(mktemp -d -t ethermint_9000-cli-datadir.XXXXX) +DATA_CLI_DIR=$(mktemp -d -t laconic_9000-cli-datadir.XXXXX) if [[ ! "$DATA_CLI_DIR" ]]; then echo "Could not create $DATA_CLI_DIR" diff --git a/starport.yml b/starport.yml index 90580ce8..4c6df8bb 100644 --- a/starport.yml +++ b/starport.yml @@ -24,7 +24,7 @@ init: address: "0.0.0.0:8545" # change the JSON-RPC address and port ws-address: "0.0.0.0:8546" # change the JSON-RPC websocket address and port genesis: - chain_id: "ethermint_9000-1" + chain_id: "laconic_9000-1" app_state: staking: params: diff --git a/tests/importer/importer_test.go b/tests/importer/importer_test.go index df8b4f71..c6819505 100644 --- a/tests/importer/importer_test.go +++ b/tests/importer/importer_test.go @@ -66,7 +66,7 @@ func (suite *ImporterTestSuite) DoSetupTest(t require.TestingT) { consAddress := sdk.ConsAddress(priv.PubKey().Address()) suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{ Height: 1, - ChainID: "ethermint_9000-1", + ChainID: "laconic_9000-1", Time: time.Now().UTC(), ProposerAddress: consAddress.Bytes(), Version: tmversion.Consensus{ diff --git a/tests/integration_tests/configs/cosmovisor.jsonnet b/tests/integration_tests/configs/cosmovisor.jsonnet index 1fbf075f..a7b80471 100644 --- a/tests/integration_tests/configs/cosmovisor.jsonnet +++ b/tests/integration_tests/configs/cosmovisor.jsonnet @@ -1,7 +1,7 @@ local config = import 'default.jsonnet'; config { - 'ethermint_9000-1'+: { + 'laconic_9000-1'+: { genesis+: { app_state+: { feemarket+: { diff --git a/tests/integration_tests/configs/default.jsonnet b/tests/integration_tests/configs/default.jsonnet index 890ef2ef..8a56753b 100644 --- a/tests/integration_tests/configs/default.jsonnet +++ b/tests/integration_tests/configs/default.jsonnet @@ -1,6 +1,6 @@ { dotenv: '../../../scripts/.env', - 'ethermint_9000-1': { + 'laconic_9000-1': { cmd: 'laconicd', 'start-flags': '--trace', config: { diff --git a/tests/integration_tests/configs/enable-indexer.jsonnet b/tests/integration_tests/configs/enable-indexer.jsonnet index c21c6a98..f50c2d7f 100644 --- a/tests/integration_tests/configs/enable-indexer.jsonnet +++ b/tests/integration_tests/configs/enable-indexer.jsonnet @@ -1,7 +1,7 @@ local config = import 'default.jsonnet'; config { - 'ethermint_9000-1'+: { + 'laconic_9000-1'+: { config+: { tx_index+: { indexer: 'null', diff --git a/tests/integration_tests/configs/pruned_node.jsonnet b/tests/integration_tests/configs/pruned_node.jsonnet index ffb6a830..37a47578 100644 --- a/tests/integration_tests/configs/pruned_node.jsonnet +++ b/tests/integration_tests/configs/pruned_node.jsonnet @@ -1,7 +1,7 @@ local config = import 'default.jsonnet'; config { - 'ethermint_9000-1'+: { + 'laconic_9000-1'+: { 'app-config'+: { pruning: 'everything', 'state-sync'+: { diff --git a/tests/integration_tests/configs/rollback-test.jsonnet b/tests/integration_tests/configs/rollback-test.jsonnet index e39437ec..9ca31e4c 100644 --- a/tests/integration_tests/configs/rollback-test.jsonnet +++ b/tests/integration_tests/configs/rollback-test.jsonnet @@ -1,7 +1,7 @@ local config = import 'default.jsonnet'; config { - 'ethermint_9000-1'+: { + 'laconic_9000-1'+: { validators: super.validators + [{ name: 'fullnode', }], diff --git a/tests/integration_tests/network.py b/tests/integration_tests/network.py index 28dcbb81..09dd2274 100644 --- a/tests/integration_tests/network.py +++ b/tests/integration_tests/network.py @@ -130,7 +130,7 @@ def setup_custom_ethermint( wait_for_port(ports.evmrpc_port(base_port)) wait_for_port(ports.evmrpc_ws_port(base_port)) yield Ethermint( - path / "ethermint_9000-1", chain_binary=chain_binary or DEFAULT_CHAIN_BINARY + path / "laconic_9000-1", chain_binary=chain_binary or DEFAULT_CHAIN_BINARY ) finally: os.killpg(os.getpgid(proc.pid), signal.SIGTERM) diff --git a/tests/integration_tests/test_rollback.py b/tests/integration_tests/test_rollback.py index 15f5249e..d7383645 100644 --- a/tests/integration_tests/test_rollback.py +++ b/tests/integration_tests/test_rollback.py @@ -15,7 +15,7 @@ def update_node2_cmd(path, cmd, i): ini = configparser.RawConfigParser() ini.read(ini_path) for section in ini.sections(): - if section == f"program:ethermint_9000-1-node{i}": + if section == f"program:laconic_9000-1-node{i}": ini[section].update( { "command": f"{cmd} start --home %(here)s/node{i}", @@ -28,7 +28,7 @@ def update_node2_cmd(path, cmd, i): def post_init(broken_binary): def inner(path, base_port, config): - chain_id = "ethermint_9000-1" + chain_id = "laconic_9000-1" update_node2_cmd(path / chain_id, broken_binary, 2) return inner @@ -82,7 +82,7 @@ def test_rollback(custom_ethermint): print("stop node2") supervisorctl( - custom_ethermint.base_dir / "../tasks.ini", "stop", "ethermint_9000-1-node2" + custom_ethermint.base_dir / "../tasks.ini", "stop", "laconic_9000-1-node2" ) print("do rollback on node2") diff --git a/tests/integration_tests/test_upgrade.py b/tests/integration_tests/test_upgrade.py index 8e63ef72..d8368ba5 100644 --- a/tests/integration_tests/test_upgrade.py +++ b/tests/integration_tests/test_upgrade.py @@ -36,7 +36,7 @@ def post_init(path, base_port, config): """ prepare cosmovisor for each node """ - chain_id = "ethermint_9000-1" + chain_id = "laconic_9000-1" cfg = json.loads((path / chain_id / "config.json").read_text()) for i, _ in enumerate(cfg["validators"]): home = path / chain_id / f"node{i}" diff --git a/tests/solidity/init-test-node.sh b/tests/solidity/init-test-node.sh index 8727fa8e..7f776efe 100755 --- a/tests/solidity/init-test-node.sh +++ b/tests/solidity/init-test-node.sh @@ -1,6 +1,6 @@ #!/bin/bash -CHAINID="ethermint_9000-1" +CHAINID="laconic_9000-1" MONIKER="localtestnet" # localKey address 0x7cb61d4117ae31a12e393a1cfa3bac666481d02e diff --git a/types/chain_id_test.go b/types/chain_id_test.go index a527ac76..1a0a4176 100644 --- a/types/chain_id_test.go +++ b/types/chain_id_test.go @@ -52,7 +52,7 @@ func TestParseChainID(t *testing.T) { "invalid eip155 chain-id, cannot invalid base", "ethermint_0x212-1", true, nil, }, { - "invalid eip155 chain-id, non-integer", "ethermint_ethermint_9000-1", true, nil, + "invalid eip155 chain-id, non-integer", "ethermint_laconic_9000-1", true, nil, }, { "invalid epoch, undefined", "ethermint_-", true, nil, diff --git a/x/auction/README.md b/x/auction/README.md index 565cdad7..f2778c10 100644 --- a/x/auction/README.md +++ b/x/auction/README.md @@ -20,7 +20,7 @@ The following steps need to be followed only before running the chain for the fi Keep a note of the keyring passphrase if you set it. 2. Init the chain: ``` - ./build/laconicd init test-moniker --chain-id ethermint_9000-1 + ./build/laconicd init test-moniker --chain-id laconic_9000-1 ``` 3. Add genesis account: ``` @@ -28,7 +28,7 @@ The following steps need to be followed only before running the chain for the fi ``` 4. Make a genesis tx: ``` - ./build/laconicd gentx root 1000000000000000000stake --chain-id ethermint_9000-1 + ./build/laconicd gentx root 1000000000000000000stake --chain-id laconic_9000-1 ``` 5. Collect gentxs: ``` diff --git a/x/bond/README.md b/x/bond/README.md index c774451c..12bd822d 100644 --- a/x/bond/README.md +++ b/x/bond/README.md @@ -9,9 +9,9 @@ $ make build ```bash ./build/laconicd keys add root -./build/laconicd init test-moniker --chain-id ethermint_9000-1 +./build/laconicd init test-moniker --chain-id laconic_9000-1 ./build/laconicd add-genesis-account $(./build/laconicd keys show root -a) 1000000000000000000aphoton,1000000000000000000stake -./build/laconicd gentx root 1000000000000000000stake --chain-id ethermint_9000-1 +./build/laconicd gentx root 1000000000000000000stake --chain-id laconic_9000-1 ./build/laconicd collect-gentxs ./build/laconicd start ``` diff --git a/x/evm/handler_test.go b/x/evm/handler_test.go index e1c1d864..4d662236 100644 --- a/x/evm/handler_test.go +++ b/x/evm/handler_test.go @@ -113,7 +113,7 @@ func (suite *EvmTestSuite) DoSetupTest(t require.TestingT) { // Initialize the chain suite.app.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, ConsensusParams: app.DefaultConsensusParams, AppStateBytes: stateBytes, @@ -122,7 +122,7 @@ func (suite *EvmTestSuite) DoSetupTest(t require.TestingT) { suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{ Height: 1, - ChainID: "ethermint_9000-1", + ChainID: "laconic_9000-1", Time: time.Now().UTC(), ProposerAddress: consAddress.Bytes(), Version: tmversion.Consensus{ diff --git a/x/evm/keeper/integration_test.go b/x/evm/keeper/integration_test.go index 31b482a8..0be27d5d 100644 --- a/x/evm/keeper/integration_test.go +++ b/x/evm/keeper/integration_test.go @@ -190,7 +190,7 @@ func setupChain(localMinGasPricesStr string) { // Initialize the chain newapp.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, AppStateBytes: stateBytes, ConsensusParams: app.DefaultConsensusParams, diff --git a/x/evm/keeper/keeper_test.go b/x/evm/keeper/keeper_test.go index 3472c9ca..dcdbb950 100644 --- a/x/evm/keeper/keeper_test.go +++ b/x/evm/keeper/keeper_test.go @@ -155,7 +155,7 @@ func (suite *KeeperTestSuite) SetupApp(checkTx bool) { // Initialize the chain suite.app.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, ConsensusParams: app.DefaultConsensusParams, AppStateBytes: stateBytes, @@ -165,7 +165,7 @@ func (suite *KeeperTestSuite) SetupApp(checkTx bool) { suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{ Height: 1, - ChainID: "ethermint_9000-1", + ChainID: "laconic_9000-1", Time: time.Now().UTC(), ProposerAddress: suite.consAddress.Bytes(), Version: tmversion.Consensus{ diff --git a/x/feemarket/keeper/integration_test.go b/x/feemarket/keeper/integration_test.go index 9a0ee2c7..16642364 100644 --- a/x/feemarket/keeper/integration_test.go +++ b/x/feemarket/keeper/integration_test.go @@ -505,7 +505,7 @@ func setupChain(localMinGasPricesStr string) { // Initialize the chain newapp.InitChain( abci.RequestInitChain{ - ChainId: "ethermint_9000-1", + ChainId: "laconic_9000-1", Validators: []abci.ValidatorUpdate{}, AppStateBytes: stateBytes, ConsensusParams: app.DefaultConsensusParams, diff --git a/x/feemarket/keeper/keeper_test.go b/x/feemarket/keeper/keeper_test.go index 0f2126b5..335950e0 100644 --- a/x/feemarket/keeper/keeper_test.go +++ b/x/feemarket/keeper/keeper_test.go @@ -91,7 +91,7 @@ func (suite *KeeperTestSuite) SetupApp(checkTx bool) { suite.ctx = suite.app.BaseApp.NewContext(checkTx, tmproto.Header{ Height: 1, - ChainID: "ethermint_9000-1", + ChainID: "laconic_9000-1", Time: time.Now().UTC(), ProposerAddress: suite.consAddress.Bytes(), Version: tmversion.Consensus{ diff --git a/x/registry/README.md b/x/registry/README.md index 20a3ecb3..e8c44e0a 100644 --- a/x/registry/README.md +++ b/x/registry/README.md @@ -9,9 +9,9 @@ $ make build ```bash ./build/laconicd keys add root -./build/laconicd init test-moniker --chain-id ethermint_9000-1 +./build/laconicd init test-moniker --chain-id laconic_9000-1 ./build/laconicd add-genesis-account $(./build/laconicd keys show root -a) 1000000000000000000aphoton,1000000000000000000stake -./build/laconicd gentx root 1000000000000000000stake --chain-id ethermint_9000-1 +./build/laconicd gentx root 1000000000000000000stake --chain-id laconic_9000-1 ./build/laconicd collect-gentxs ./build/laconicd start ``` @@ -58,7 +58,7 @@ $ ./build/laconicd q registry params -o json | jq . > First you have to Create bond ```bash -$ ./build/laconicd tx registry set ~/Desktop/examples/records/service_provider_example.yml 95f68b1b862bfd1609b0c9aaf7300287b92fec90ac64027092c3e723af36e83d --from root --chain-id ethermint_9000-1 --yes -o json +$ ./build/laconicd tx registry set ~/Desktop/examples/records/service_provider_example.yml 95f68b1b862bfd1609b0c9aaf7300287b92fec90ac64027092c3e723af36e83d --from root --chain-id laconic_9000-1 --yes -o json { "height": "0", "txhash": "BA44ABE1194724694E7CB290F9F3121DB4E63E1A030D95CB84813EEA132CF95F", @@ -121,7 +121,7 @@ $ ./build/laconicd q registry get bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my ## Reserve name ```bash - ./build/laconicd tx registry reserve-name hello --from root --chain-id ethermint_9000-1 --owner $(./build/laconicd key + ./build/laconicd tx registry reserve-name hello --from root --chain-id laconic_9000-1 --owner $(./build/laconicd key s show root -a) -y -o json | jq . { "height": "0", @@ -181,8 +181,8 @@ $ ./build/laconicd q registry balance -o json | jq . ## add bond to the authority ```bash -$ ./build/laconicd tx registry authority-bond [Authority Name] [Bond ID ] --from root --chain-id ethermint_9000-1 -y -o json | jq . -$ ./build/laconicd tx registry authority-bond hello 95f68b1b862bfd1609b0c9aaf7300287b92fec90ac64027092c3e723af36e83d --from root --chain-id ethermint_9000-1 -y -o json | jq . +$ ./build/laconicd tx registry authority-bond [Authority Name] [Bond ID ] --from root --chain-id laconic_9000-1 -y -o json | jq . +$ ./build/laconicd tx registry authority-bond hello 95f68b1b862bfd1609b0c9aaf7300287b92fec90ac64027092c3e723af36e83d --from root --chain-id laconic_9000-1 -y -o json | jq . ``` ## Query the records by associate bond id @@ -209,7 +209,7 @@ $ ./build/laconicd q registry query-by-bond 95f68b1b862bfd1609b0c9aaf7300287b92f ## dissociate bond from record ```bash -$ ./build/laconicd tx registry dissociate-bond bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae --from root --chain-id ethermint_9000-1 +$ ./build/laconicd tx registry dissociate-bond bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae --from root --chain-id laconic_9000-1 {"body":{"messages":[{"@type":"/vulcanize.registry.v1beta1.MsgDissociateBond","record_id":"bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae","signer":"ethm1mfdjngh5jvjs9lqtt9a7y2hlgw8v3syh3hsqzk"}],"memo":"","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":[]} confirm transaction before signing and broadcasting [y/N]: y @@ -231,7 +231,7 @@ txhash: 7AFEF524CB0D92D6576FC08601A787786E802449888FD8DDAA7635698CC85060 ## Associate bond with record ```bash -./build/laconicd tx registry associate-bond bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae c3f7a78c5042d2003880962ba31ff3b01fcf5942960e0bc3ca331f816346a440 --from root --chain-id ethermint_9000-1 -y -o json | jq . +./build/laconicd tx registry associate-bond bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae c3f7a78c5042d2003880962ba31ff3b01fcf5942960e0bc3ca331f816346a440 --from root --chain-id laconic_9000-1 -y -o json | jq . { "height": "0", "txhash": "F75C2BF2FE73668AE1332E1237F924AC549E31E822A56394DE5AC17200B199F9", @@ -252,7 +252,7 @@ txhash: 7AFEF524CB0D92D6576FC08601A787786E802449888FD8DDAA7635698CC85060 ## dissociate-records => remove all record from bond ```bash -$./build/laconicd tx registry dissociate-records c3f7a78c5042d2003880962ba31ff3b01fcf5942960e0bc3ca331f816346a440 --from root --chain-id ethermint_9000-1 -y -o json | jq . +$./build/laconicd tx registry dissociate-records c3f7a78c5042d2003880962ba31ff3b01fcf5942960e0bc3ca331f816346a440 --from root --chain-id laconic_9000-1 -y -o json | jq . { "height": "0", "txhash": "0316F503E5DEA47CB108AE6C7C7FFAF3F71CC56BC22F63CB97322E1BE48B33B9", @@ -274,14 +274,14 @@ $./build/laconicd tx registry dissociate-records c3f7a78c5042d2003880962ba31ff3b > When a record is expires , needs to renew record ```bash -$ ./build/laconicd tx registry renew-record bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae --from root --chain-id ethermint_9000-1 +$ ./build/laconicd tx registry renew-record bafyreih7un2ntk235wshncebus5emlozdhdixrrv675my5umb6fgdergae --from root --chain-id laconic_9000-1 ``` ## Set the authority name ```bash -$ ./build/laconicd tx registry set-name crn://hello/test test_hello_cid --from root --chain-id ethermint_9000-1 -y -o json | jq . +$ ./build/laconicd tx registry set-name crn://hello/test test_hello_cid --from root --chain-id laconic_9000-1 -y -o json | jq . { "height": "0", "txhash": "66A63C73B076EEE9A2F7605354448EDEB161F0115D4D03AF68C01BA28DB97486", @@ -301,7 +301,7 @@ $ ./build/laconicd tx registry set-name crn://hello/test test_hello_cid --from ## Delete the name ```bash -$./build/laconicd tx registry delete-name crn://hello/test --from root --chain-id ethermint_9000-1 -y +$./build/laconicd tx registry delete-name crn://hello/test --from root --chain-id laconic_9000-1 -y code: 0 codespace: "" data: ""