Skip to content
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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,10 @@ require (
replace (
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.1
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.1.430
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.1.431
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.0.3
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.1.172
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.1.173
google.golang.org/grpc => google.golang.org/grpc v1.33.2
)
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1069,12 +1069,12 @@ github.com/seccomp/libseccomp-golang v0.9.2-0.20210429002308-3879420cc921/go.mod
github.com/securego/gosec/v2 v2.11.0 h1:+PDkpzR41OI2jrw1q6AdXZCbsNGNGT7pQjal0H0cArI=
github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+fscA+Pulbpo=
github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY=
github.com/sei-protocol/sei-cosmos v0.1.430 h1:pES4tltIoBaQzg8OYzjDWS790o+uImpits5Wes0I0PU=
github.com/sei-protocol/sei-cosmos v0.1.430/go.mod h1:luUxbQqdQ/xHQi2iSHQjsGV22644e0omq1kFlxwnEoc=
github.com/sei-protocol/sei-cosmos v0.1.431 h1:dHiav7EXEtgYgxMdYZZfgCrSFmmhhbN0+IgNkbGB+CQ=
github.com/sei-protocol/sei-cosmos v0.1.431/go.mod h1:luUxbQqdQ/xHQi2iSHQjsGV22644e0omq1kFlxwnEoc=
github.com/sei-protocol/sei-iavl v0.0.3 h1:01eZo2RvPrp9wtf+fgmyKiGhIIaV7KY1Shg/M94WXZY=
github.com/sei-protocol/sei-iavl v0.0.3/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
github.com/sei-protocol/sei-tendermint v0.1.172 h1:JxPEqOvLE0AD1M8OqQb7JkaMsVay4dgZuq4gB7ntqQM=
github.com/sei-protocol/sei-tendermint v0.1.172/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
github.com/sei-protocol/sei-tendermint v0.1.173 h1:esmwDMCXFu8Ij5H1A7nt72rAxXasndmAYuSs/ZdazlA=
github.com/sei-protocol/sei-tendermint v0.1.173/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
github.com/sei-protocol/sei-wasmd v0.0.1 h1:dRvdapc1sqWxhIB2+DKS5LfilFjOsaFwWkGkSWwQIow=
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ def prepare_genesis(args):
raise RuntimeError('Please specify a version')

# TODO(bweng): Decrease starting balance after testnet
add_genesis_account(DEFAULT_VALIDATOR_ACC_NAME, '100000000sei')
gentx(args.chain_id, DEFAULT_VALIDATOR_ACC_NAME, '10000sei', args.gentx_args)
add_genesis_account(DEFAULT_VALIDATOR_ACC_NAME, '2sei')
gentx(args.chain_id, DEFAULT_VALIDATOR_ACC_NAME, '1sei', args.gentx_args)


def setup_oracle(args):
Expand Down