mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
Rename simapp -> simapp42
This commit is contained in:
parent
72509f5ba2
commit
d0e81e665c
@ -88,11 +88,11 @@ jobs:
|
||||
background: true
|
||||
- run:
|
||||
name: Start simapp
|
||||
command: ./scripts/simapp/start.sh
|
||||
command: ./scripts/simapp42/start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start slow simapp
|
||||
command: ./scripts/simapp/slow_start.sh
|
||||
command: ./scripts/simapp42/slow_start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start Tendermint blockchains
|
||||
@ -176,8 +176,8 @@ jobs:
|
||||
command: |
|
||||
./scripts/socketserver/stop.sh
|
||||
./scripts/tendermint/all_stop.sh
|
||||
./scripts/simapp/stop.sh
|
||||
./scripts/simapp/slow_stop.sh
|
||||
./scripts/simapp42/stop.sh
|
||||
./scripts/simapp42/slow_stop.sh
|
||||
./scripts/wasmd/stop.sh
|
||||
./scripts/launchpad/stop.sh
|
||||
test-node-v14:
|
||||
@ -208,11 +208,11 @@ jobs:
|
||||
background: true
|
||||
- run:
|
||||
name: Start simapp
|
||||
command: ./scripts/simapp/start.sh
|
||||
command: ./scripts/simapp42/start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start slow simapp
|
||||
command: ./scripts/simapp/slow_start.sh
|
||||
command: ./scripts/simapp42/slow_start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start Tendermint blockchains
|
||||
@ -291,8 +291,8 @@ jobs:
|
||||
command: |
|
||||
./scripts/socketserver/stop.sh
|
||||
./scripts/tendermint/all_stop.sh
|
||||
./scripts/simapp/stop.sh
|
||||
./scripts/simapp/slow_stop.sh
|
||||
./scripts/simapp42/stop.sh
|
||||
./scripts/simapp42/slow_stop.sh
|
||||
./scripts/wasmd/stop.sh
|
||||
./scripts/launchpad/stop.sh
|
||||
test-chrome:
|
||||
@ -324,11 +324,11 @@ jobs:
|
||||
background: true
|
||||
- run:
|
||||
name: Start simapp
|
||||
command: ./scripts/simapp/start.sh
|
||||
command: ./scripts/simapp42/start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start slow simapp
|
||||
command: ./scripts/simapp/slow_start.sh
|
||||
command: ./scripts/simapp42/slow_start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start Tendermint blockchains
|
||||
@ -394,8 +394,8 @@ jobs:
|
||||
command: |
|
||||
./scripts/socketserver/stop.sh
|
||||
./scripts/tendermint/all_stop.sh
|
||||
./scripts/simapp/stop.sh
|
||||
./scripts/simapp/slow_stop.sh
|
||||
./scripts/simapp42/stop.sh
|
||||
./scripts/simapp42/slow_stop.sh
|
||||
./scripts/wasmd/stop.sh
|
||||
./scripts/launchpad/stop.sh
|
||||
coverage:
|
||||
@ -426,11 +426,11 @@ jobs:
|
||||
background: true
|
||||
- run:
|
||||
name: Start simapp
|
||||
command: ./scripts/simapp/start.sh
|
||||
command: ./scripts/simapp42/start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start slow simapp
|
||||
command: ./scripts/simapp/slow_start.sh
|
||||
command: ./scripts/simapp42/slow_start.sh
|
||||
background: true
|
||||
- run:
|
||||
name: Start Tendermint blockchains
|
||||
@ -499,8 +499,8 @@ jobs:
|
||||
command: |
|
||||
./scripts/socketserver/stop.sh
|
||||
./scripts/tendermint/all_stop.sh
|
||||
./scripts/simapp/stop.sh
|
||||
./scripts/simapp/slow_stop.sh
|
||||
./scripts/simapp42/stop.sh
|
||||
./scripts/simapp42/slow_stop.sh
|
||||
./scripts/wasmd/stop.sh
|
||||
./scripts/launchpad/stop.sh
|
||||
docs-build:
|
||||
|
@ -58,7 +58,7 @@ transactions.
|
||||
### Stargate tests
|
||||
|
||||
Start a local Stargate blockchain as described in
|
||||
[scripts/simapp/README.md](https://github.com/cosmos/cosmjs/blob/main/scripts/simapp/README.md)
|
||||
[scripts/simapp42/README.md](https://github.com/cosmos/cosmjs/blob/main/scripts/simapp42/README.md)
|
||||
and execute:
|
||||
|
||||
```sh
|
||||
|
@ -17,7 +17,7 @@ import {
|
||||
} from "cosmjs-types/ibc/core/connection/v1/connection";
|
||||
import Long from "long";
|
||||
|
||||
// From scripts/simapp/genesis-ibc.json
|
||||
// From scripts/simapp42/genesis-ibc.json
|
||||
|
||||
export const portId = "transfer";
|
||||
export const channelId = "channel-0";
|
||||
@ -50,7 +50,7 @@ export const identifiedChannel = IdentifiedChannel.fromPartial({
|
||||
|
||||
/**
|
||||
* ```
|
||||
* jq ".channel_genesis.commitments[0]" scripts/simapp/genesis-ibc.json
|
||||
* jq ".channel_genesis.commitments[0]" scripts/simapp42/genesis-ibc.json
|
||||
* ```
|
||||
*/
|
||||
export const commitment = {
|
||||
@ -69,7 +69,7 @@ export const packetState = PacketState.fromPartial({
|
||||
* Unfortunatly empty right now
|
||||
*
|
||||
* ```
|
||||
* jq ".channel_genesis.acknowledgements" scripts/simapp/genesis-ibc.json
|
||||
* jq ".channel_genesis.acknowledgements" scripts/simapp42/genesis-ibc.json
|
||||
* ```
|
||||
*/
|
||||
export const packetAcknowledgements: PacketState[] = [];
|
||||
|
@ -126,10 +126,10 @@ export const unused = {
|
||||
|
||||
export const validator = {
|
||||
/**
|
||||
* From first gentx's auth_info.signer_infos in scripts/simapp/template/.simapp/config/genesis.json
|
||||
* From first gentx's auth_info.signer_infos in scripts/simapp42/template/.simapp/config/genesis.json
|
||||
*
|
||||
* ```
|
||||
* jq ".app_state.genutil.gen_txs[0].auth_info.signer_infos[0].public_key" scripts/simapp/template/.simapp/config/genesis.json
|
||||
* jq ".app_state.genutil.gen_txs[0].auth_info.signer_infos[0].public_key" scripts/simapp42/template/.simapp/config/genesis.json
|
||||
* ```
|
||||
*/
|
||||
pubkey: {
|
||||
@ -137,18 +137,18 @@ export const validator = {
|
||||
value: "AtDcuH4cX1eaxZrJ5shheLG3tXPAoV4awoIZmNQtQxmf",
|
||||
},
|
||||
/**
|
||||
* delegator_address from /cosmos.staking.v1beta1.MsgCreateValidator in scripts/simapp/template/.simapp/config/genesis.json
|
||||
* delegator_address from /cosmos.staking.v1beta1.MsgCreateValidator in scripts/simapp42/template/.simapp/config/genesis.json
|
||||
*
|
||||
* ```
|
||||
* jq ".app_state.genutil.gen_txs[0].body.messages[0].delegator_address" scripts/simapp/template/.simapp/config/genesis.json
|
||||
* jq ".app_state.genutil.gen_txs[0].body.messages[0].delegator_address" scripts/simapp42/template/.simapp/config/genesis.json
|
||||
* ```
|
||||
*/
|
||||
delegatorAddress: "cosmos1urk9gy7cfws0ak9x5nu7lx4un9n6gqkry79679",
|
||||
/**
|
||||
* validator_address from /cosmos.staking.v1beta1.MsgCreateValidator in scripts/simapp/template/.simapp/config/genesis.json
|
||||
* validator_address from /cosmos.staking.v1beta1.MsgCreateValidator in scripts/simapp42/template/.simapp/config/genesis.json
|
||||
*
|
||||
* ```
|
||||
* jq ".app_state.genutil.gen_txs[0].body.messages[0].validator_address" scripts/simapp/template/.simapp/config/genesis.json
|
||||
* jq ".app_state.genutil.gen_txs[0].body.messages[0].validator_address" scripts/simapp42/template/.simapp/config/genesis.json
|
||||
* ```
|
||||
*/
|
||||
validatorAddress: "cosmosvaloper1urk9gy7cfws0ak9x5nu7lx4un9n6gqkrp230jk",
|
||||
|
Loading…
x
Reference in New Issue
Block a user