From dc307ad336afd7920378d5bc03ff1fba01ee4146 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 13:31:30 +0900 Subject: [PATCH 01/15] change docs --- COSMJS_CHANGELOG.md | 894 ------------------------------------ HACKING.md | 60 +-- README.md | 125 +---- packages/finschia/README.md | 2 +- 4 files changed, 34 insertions(+), 1047 deletions(-) delete mode 100644 COSMJS_CHANGELOG.md diff --git a/COSMJS_CHANGELOG.md b/COSMJS_CHANGELOG.md deleted file mode 100644 index 857340fe..00000000 --- a/COSMJS_CHANGELOG.md +++ /dev/null @@ -1,894 +0,0 @@ -# CHANGELOG - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to -[Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - -## [0.28.4] - 2022-04-15 - -### Added - -- @cosmjs/math: Add `Decimal.zero` and `Decimal.one` ([#1110]). -- @cosmjs/amino: Add `addCoins` ([#1116]) -- @cosmjs/stargate: Add `StargateClient.getBalanceStaked()` to query the sum of - all staked balance. ([#1116]) - -### Changed - -- @cosmjs/faucet: Docker build image is 90 % smaller now (from 500 MB to 50 MB) - due to build system optimizations ([#1120], [#1121]). -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.connect` and - `SigningCosmWasmClient.connectWithSigner` now accept custom HTTP headers - ([#1007]) -- @cosmjs/stargate: `StargateClient.connect` and - `SigningStargateClient.connectWithSigner` now accept custom HTTP headers - ([#1007]) -- @cosmjs/tendermint-rpc: `Tendermint34Client.connect` now accepts custom HTTP - headers ([#1007]). - -[#1007]: https://github.com/cosmos/cosmjs/issues/1007 -[#1110]: https://github.com/cosmos/cosmjs/issues/1110 -[#1120]: https://github.com/cosmos/cosmjs/pull/1120 -[#1121]: https://github.com/cosmos/cosmjs/pull/1121 -[#1116]: https://github.com/cosmos/cosmjs/issues/1116 - -## [0.28.3] - 2022-04-11 - -### Added - -- @cosmjs/encoding: Add missing export: `normalizeBech32`. - -## [0.28.2] - 2022-04-07 - -### Added - -- @cosmjs/encoding: Create `normalizeBech32`. -- @cosmjs/stargate: Added support for `MsgCreateVestingAccount` ([#1074]). - Please note that Amino JSON signing is currently not available for this type - ([#1115]). - -[#1074]: https://github.com/cosmos/cosmjs/issues/1074 -[#1115]: https://github.com/cosmos/cosmjs/issues/1115 - -## [0.28.1] - 2022-03-30 - -### Added - -- @cosmjs/stargate: Added the ability to specify a custom account parser for - `StargateClient` - -### Fixed - -- @cosmjs/proto-signing: Add missing runtime dependencies @cosmjs/encoding and - @cosmjs/utils. -- @cosmjs/tendermint-rpc: Add missing runtime dependency @cosmjs/utils. - -## [0.28.0] - 2022-03-17 - -### Changed - -- all: The TypeScript compilation target is now ES2018. -- @cosmjs/crypto: Add `Secp256k1.uncompressPubkey`. -- @cosmjs/crypto: Replace hashing implementations with @noble/hashes ([#960]). -- @cosmjs/faucet: Set default value of `FAUCET_GAS_LIMIT` to 100_000 to better - support Cosmos SDK 0.45 chains. -- @cosmjs/stargate: The `AminoTypes` now always requires an argument of type - `AminoTypesOptions`. This is an object with a required `prefix` field. Before - the prefix defaulted to "cosmos" but this is almost never the right choice for - CosmJS users that need to add Amino types manually. ([#989]) -- @cosmjs/cosmwasm-stargate: `height`, `gasWanted` and `gasUsed` have been added - to all result types of `SigningCosmWasmClient` -- @cosmjs/stargate: `MsgSend` and `Coin` are now parts of - `defaultRegistryTypes`. ([#994]) -- @cosmjs/proto-signing: `Registry`'s constructor can now override default - types. ([#994]) -- @cosmjs/tendermint-rpc: The property `evidence` in the interface `Block` is - now non-optional. ([#1011]) -- @cosmjs/stargate: Added the following message types to stargate's - `defaultRegistryTypes`: ([#1026]) - - cosmos.authz.v1beta1.MsgGrant - - cosmos.authz.v1beta1.MsgExec - - cosmos.authz.v1beta1.MsgRevoke - - cosmos.feegrant.v1beta1.MsgGrantAllowance - - cosmos.feegrant.v1beta1.MsgRevokeAllowance -- @cosmjs/stargate: In `AminoTypes` the uniqueness of the Amino type identifier - is checked in `fromAmino` now instead of the constructor. This only affects - you if multiple different protobuf type URLs map to the same Amino type - identifier which should not be the case anyways. -- @cosmjs/stargate: Added support for slashing queries ([#927]) -- @cosmjs/ledger-amino: Renamed `LaunchpadLedger` to `LedgerConnector` ([#955]) -- @cosmjs/encoding: Created `toBech32()` and `fromBech32()`. Class Bech32 is now - deprecated and should not longer be used. ([#1053]) -- @cosmjs/crypto: Use a custom BIP-39 implementation to reduce external - dependencies. This should also reduce the bundle size as only the English - wordlist is shipped. ([#966]) -- @cosmjs/cli: Rename binary `cosmwasm-cli` to `cosmjs-cli` ([#1033]). -- @cosmjs/stargate: Added Authz queries. ([#1080]). -- @cosmjs/stargate & @cosmjs/cosmwasm-stargate: Removed default types from - AminoTypes. ([#1079]) -- @cosmjs/cosmwasm-stargate: getCodes() automatically loops through all - pagination pages now. ([#1077]) -- @cosmjs/stargate & @cosmjs/cosmwasm-stargate: Timeout Errors shows more - relevant information about the timeout. ([#1066]) - -[#927]: https://github.com/cosmos/cosmjs/issues/927 -[#955]: https://github.com/cosmos/cosmjs/issues/955 -[#960]: https://github.com/cosmos/cosmjs/pull/960 -[#966]: https://github.com/cosmos/cosmjs/pull/966 -[#989]: https://github.com/cosmos/cosmjs/issues/989 -[#994]: https://github.com/cosmos/cosmjs/issues/994 -[#1011]: https://github.com/cosmos/cosmjs/issues/1011 -[#1026]: https://github.com/cosmos/cosmjs/issues/1026 -[#1033]: https://github.com/cosmos/cosmjs/issues/1033 -[#1053]: https://github.com/cosmos/cosmjs/issues/1053 -[#1066]: https://github.com/cosmos/cosmjs/issues/1066 -[#1077]: https://github.com/cosmos/cosmjs/issues/1077 -[#1078]: https://github.com/cosmos/cosmjs/issues/1078 -[#1079]: https://github.com/cosmos/cosmjs/issues/1079 -[#1080]: https://github.com/cosmos/cosmjs/issues/1080 - -### Removed - -- @cosmjs/crypto: Remove the SHA1 implementation (`Sha1` and `sha1`) as it is - not used in the Cosmos tech stack and not implemented in the hashing lib we - want to migrate to ([#1003]). Also it has known weaknesses. -- @cosmjs/launchpad: Package was removed as no support for Cosmos SDK 0.37-0.39 - is needed anymore ([#947]). - -[#947]: https://github.com/cosmos/cosmjs/issues/947 -[#1003]: https://github.com/cosmos/cosmjs/issues/1003 - -## [0.27.1] - 2022-01-26 - -### Added - -- @cosmjs/cosmwasm-stargate: Add `fromBinary`/`toBinary` to convert between - JavaScript objects and the JSON representation of `cosmwasm_std::Binary` - (base64). -- @cosmjs/cosmwasm-stargate: Export `WasmExtension` and `setupWasmExtension`. -- @cosmjs/ledger-amino: Added `LedgerSigner.showAddress` and - `LaunchpadLedger.showAddress` to show the user's address in the Ledger screen. - -### Changed - -- @cosmjs/stargate: The error messages for missing types in `AminoTypes` now - contain the type that was searched for ([#990]). -- @cosmjs/tendermint-rpc: Change the `Evidence` type to `any` and avoid decoding - it. The structure we had before was outdated and trying to decode it led to - exceptions at runtime when a block with actual values was encountered. - ([#980]) - -[#990]: https://github.com/cosmos/cosmjs/pull/990 -[#980]: https://github.com/cosmos/cosmjs/issues/980 - -## [0.27.0] - 2022-01-10 - -### Added - -- @cosmjs/tendermint-rpc: Add `hash` field to `BroadcastTxAsyncResponse` - ([#938]). -- @cosmjs/stargate: Add `denomMetadata` and `denomsMetadata` to `BankExtension` - ([#932]). -- @cosmjs/stargate: Merge `DeliverTxFailure` and `DeliverTxSuccess` into a - single `DeliverTxResponse` ([#878], [#949]). Add `assertIsDeliverTxFailure`. -- @cosmjs/stargate: Created initial `MintExtension`. -- @cosmjs/stargate: Created `types.Dec` decoder function - `decodeCosmosSdkDecFromProto`. -- @cosmjs/amino: Added `StdTx`, `isStdTx` and `makeStdTx` and removed them from - @cosmjs/launchpad. They are re-exported in @cosmjs/launchpad for backwards - compatibility. -- @cosmjs/stargate: Add `GasPrice.toString`. -- @cosmjs/faucet: Added a new functionality to faucet: Each address is only - allowed to get credits once every 24h to prevent draining. ([#962])) - -[#962]: https://github.com/cosmos/cosmjs/issues/962 -[#938]: https://github.com/cosmos/cosmjs/issues/938 -[#932]: https://github.com/cosmos/cosmjs/issues/932 -[#878]: https://github.com/cosmos/cosmjs/issues/878 -[#949]: https://github.com/cosmos/cosmjs/issues/949 - -### Fixed - -- @cosmjs/tendermint-rpc: Add missing `BlockSearchResponse` case to `Response`. - -### Changed - -- @cosmjs/stargate: Remove verified queries from `AuthExtension` and - `BankExtension` as well as `StargateClient.getAccountVerified` because the - storage layout is not stable across multiple Cosmos SDK releases. Verified - queries remain available in the `IbcExtension` because for IBC the storage - layout is standardized. Such queries can still be implemented in CosmJS caller - code that only needs to support one backend. ([#865]) -- @cosmjs/tendermint-rpc: Remove default URL from `HttpClient` and - `WebsocketClient` constructors ([#897]). -- all: Upgrade cosmjs-types to 0.4. This includes the types of the Cosmos SDK - 0.44 modules x/authz and x/feegrant. It causes a few breaking changes by - adding fields to interfaces as well as changing `Date` to a `Timestamp` - object. ([#928]) -- @cosmjs/stargate and @cosmjs/cosmwasm-stargate: Add simulation support - ([#931]). -- @cosmjs/cosmwasm-stargate: Rename `BroadcastTx{Success,Failure}` to - `DeliverTx{Success,Failure}`, `BroadcastTxResponse` to `DeliverTxResponse`, - `isBroadcastTx{Success,Failure}` to `isDeliverTx{Success,Failure}` and - `assertIsBroadcastTxSuccess` to `assertIsDeliverTxSuccess`. ([#946]) -- @cosmjs/tendermint-rpc: Remove `Tendermint33Client` and related symbols. -- @cosmjs/cosmwasm-stargate: Add support for wasmd 0.21. This changes the AMINO - JSON representation of `Msg{Execute,Instantiate,Migrate}Contract.msg` from - base64 strings to JSON objects. ([#948]) -- @cosmjs/cli: Replace `colors` dependency with `chalk` (see - https://snyk.io/blog/open-source-npm-packages-colors-faker/) - -[#865]: https://github.com/cosmos/cosmjs/issues/865 -[#897]: https://github.com/cosmos/cosmjs/issues/897 -[#928]: https://github.com/cosmos/cosmjs/issues/928 -[#931]: https://github.com/cosmos/cosmjs/pull/931 -[#709]: https://github.com/cosmos/cosmjs/issues/709 -[#946]: https://github.com/cosmos/cosmjs/pull/946 -[#948]: https://github.com/cosmos/cosmjs/pull/948 - -## [0.26.6] - 2022-01-10 - -### Changed - -- @cosmjs/cli: Replace `colors` dependency with `chalk` (see - https://snyk.io/blog/open-source-npm-packages-colors-faker/) - -## [0.26.5] - 2021-11-20 - -### Added - -- @cosmjs/amino: The `coin` and `coins` helpers now support both `number` and - `string` as input types for the amount. This is useful if your values exceed - the safe integer range. - -### Fixed - -- @cosmjs/tendermint-rpc: Fix undefined `this` in `decodeBroadcastTxAsync` and - `broadcastTxAsync` ([#937]). - -[#937]: https://github.com/cosmos/cosmjs/pull/937 - -## [0.26.4] - 2021-10-28 - -### Fixed - -- @cosmjs/cosmwasm-stargate: Fix response error handling for smart queries. - -## [0.26.3] - 2021-10-25 - -### Added - -- @cosmjs/ledger-amino: Add support for using forks of the Cosmos Ledger app by - adding the fields `LaunchpadLedgerOptions.ledgerAppName` and - `.minLedgerAppVersion`. - -### Deprecated - -- @cosmjs/stargate: The verified queries from `AuthExtension` and - `BankExtension` as well as `StargateClient.getAccountVerified` are deprecated - and will be removed in 0.27 ([#910]). - -[#910]: https://github.com/cosmos/cosmjs/pull/910 - -## [0.26.2] - 2021-10-12 - -### Fixed - -- @cosmjs/stargate: remove extra space in messageTimeout registry. -- @cosmjs/cosmwasm-stargate: Fix Amino JSON representation of - `MsgInstantiateContract`, `MsgMigrateContract` and `MsgExecuteContract` to - match the wasmd expectation. This was broken since the wasmd upgrade to - Stargate such that no Ledger signing was possible for those message types in - the meantime. - -## [0.26.1] - 2021-09-30 - -### Added - -- @cosmjs/amino: `decodeBech32Pubkey` and `decodeAminoPubkey` now support - decoding multisig public keys ([#882]). - -### Fixed - -- @cosmjs/stargate: Add missing pagination key arguments to query types in - `GovExtension`. - -[#882]: https://github.com/cosmos/cosmjs/issues/882 - -## [0.26.0] - 2021-08-24 - -### Added - -- @cosmjs/tendermint-rpc: `Tendermint34Client.blockSearch` and - `Tendermint34Client.blockSearchAll` were added to allow searching blocks in - Tendermint 0.34.9+ backends. -- @cosmjs/tendermint-rpc: `Tendermint33Client` has been added to provide support - for Tendermint v0.33. -- @cosmjs/tendermint-rpc: Exports relating to `Tendermint33Client` are now - available under `tendermint33`. -- @cosmjs/proto-signing and @cosmjs/stargate: Create a Stargate-ready - `parseCoins` that replaces the `parseCoins` re-export from `@cosmjs/amino`. -- @cosmjs/cosmwasm-stargate: Export `isValidBuilder`, which is a clone of - `isValidBuilder` from @cosmjs/cosmwasm-launchpad. -- @cosmjs/cosmwasm-stargate: Copy symbols `Code`, `CodeDetails`, `Contract`, - `ContractCodeHistoryEntry` and `JsonObject` from @cosmjs/cosmwasm-launchpad - and remove dependency on @cosmjs/cosmwasm-launchpad. -- @cosmjs/faucet: Add new configuration variable `FAUCET_PATH_PATTERN` to - configure the HD path of the faucet accounts ([#832]). -- @cosmjs/cosmwasm-stargate: Add field `ibcPortId` to `Contract` ([#836]). -- @cosmjs/stargate: Add `GovExtension` for query client. -- @cosmjs/stargate: Add support for `MsgDeposit`, `MsgSubmitProposal` and - `MsgVote`. - -[#832]: https://github.com/cosmos/cosmjs/issues/832 -[#836]: https://github.com/cosmos/cosmjs/issues/836 - -### Changed - -- @cosmjs/cosmwasm-launchpad: The `transferAmount` property on - `InstantiateOptions` (accepted as a parameter to - `SigningCosmWasmClient.instantiate`) has been renamed to `funds`. -- @cosmjs/cosmwasm-stargate: The `transferAmount` property on - `InstantiateOptions` (accepted as a parameter to - `SigningCosmWasmClient.instantiate`) has been renamed to `funds`. -- @cosmjs/cosmwasm-stargate: Default fee/gas values have been removed. Fees now - need to be calculated and passed to `SigningCosmWasmClient` when calling any - methods which submit transactions to the blockchain. -- @cosmjs/stargate: Default fee/gas values have been removed. Fees now need to - be calculated and passed to `SigningStargateClient` when calling any methods - which submit transactions to the blockchain. -- @cosmjs/tendermint-rpc: Make `tendermint34.Header.lastBlockId` and - `tendermint34.Block.lastCommit` optional to better handle the case of height 1 - where there is no previous block. -- @cosmjs/proto-signing: `makeAuthInfoBytes` now takes an array of pubkey - sequence pairs in order to support different sequences for different signers. -- @cosmjs/cosmwasm-stargate: Upgraded client to support wasmd 0.18 backends. - Other backends are not supported anymore. Update proto types from - `cosmwasm.wasm.v1beta1.*` to `cosmwasm.wasm.v1.*`. `MsgStoreCode.source` and - `MsgStoreCode.builder` were removed; `MsgInstantiateContract.initMsg` and - `MsgMigrateContract.migrateMsg` were renamed to `msg`; `Code.{source,builder}` - and `CodeDetails.{source,builder}` were removed; `isValidBuilder` was removed; - `UploadMeta` and the `meta` from `SigningCosmWasmClient.upload` were removed. - ([#863]) - -[#863]: https://github.com/cosmos/cosmjs/pull/863 - -### Removed - -- Node.js v10 is no longer supported. Please use v12 or later. -- @cosmjs/cosmwasm-stargate: Remove `CosmWasmFeeTable` type and - `defaultGasLimits` object. -- @cosmjs/stargate: Remove types, objects and functions to do with default fees: - `CosmosFeeTable`, `FeeTable`, `GasLimits`, `defaultGasLimits`, - `defaultGasPrice` and `buildFeeTable`. -- @cosmjs/tendermint-rpc: `Client` has been removed. Please use - `Tendermint33Client` or `Tendermint34Client`, depending on your needs. -- @cosmjs/cosmwasm: Package removed ([#786]). -- @cosmjs/cosmwasm-launchpad: Package removed ([#786]). - -[#786]: https://github.com/cosmos/cosmjs/issues/786 - -### Fixed - -- @cosmjs/socket: Upgrade dependency "ws" to version 7 to avoid potential - security problems. - -## [0.25.6] - 2021-07-26 - -### Fixed - -- @cosmjs/stargate: Fix types `AminoMsgTransfer` and `AminoHeight` as well as - the encoding of `MsgTransfer` for Amino signing. - -## [0.25.5] - 2021-06-23 - -### Added - -- @cosmjs/tendermint-rpc: `Tendermint34Client.blockSearch` and - `Tendermint34Client.blockSearchAll` were added to allow searching blocks in - Tendermint 0.34.9+ backends. This is a backport of [#815]. Note: Decoding - blocks of height 1 is unsupported. This is fixed in [#815] and will be - released as part of CosmJS 0.26. - -[#815]: https://github.com/cosmos/cosmjs/pull/815 - -## [0.25.4] - 2021-05-31 - -### Fixed - -- @cosmjs/socket: Upgrade dependency "ws" to version 7 to avoid potential - security problems. - -## [0.25.3] - 2021-05-18 - -### Fixed - -- @cosmjs/cosmwasm-stargate, @cosmjs/stargate: Fix error propagation in - `CosmWasmClient.broadcastTx` and `StargateClient.broadcastTx` ([#800]). This - bug was introduced with the switch from broadcast mode "commit" to "sync" in - version 0.25.0. -- @cosmjs/launchpad, @cosmjs/stargate: Avoid the use of named capture groups in - `GasPrice.fromString` to restore ES2017 compatibility and make the library - work with Hermes ([#801]; thanks [@AlexBHarley]). -- @cosmjs/launchpad: Adapt `GasPrice.fromString` denom pattern to Cosmos SDK - 0.39 rules: reduce denom length to 16 and allow digits in denom. -- @cosmjs/stargate: Adapt `GasPrice.fromString` denom pattern to Cosmos SDK 0.42 - rules: allow lengths up to 128, allow upper case letters and digits. - -[#800]: https://github.com/cosmos/cosmjs/issues/800 -[#801]: https://github.com/cosmos/cosmjs/issues/801 -[@alexbharley]: https://github.com/AlexBHarley - -## [0.25.2] - 2021-05-11 - -### Added - -- @cosmjs/cosmwasm-stargate: Add `broadcastTimeoutMs` and - `broadcastPollIntervalMs` options added to `SigningCosmWasmClientOptions`. -- @cosmjs/proto-signing: Add `serialize` and `serializeWithEncryptionKey` - methods to `DirectSecp256k1HdWallet`. Also add `deserialize` and - `deserializeWithEncryptionKey` static methods. -- @cosmjs/proto-signing: Export `extractKdfConfiguration` and `executeKdf` - helper functions and `KdfConfiguration` type. -- @cosmjs/proto-signing: Export `makeCosmoshubPath` helper. -- @cosmjs/stargate: Export `makeCosmoshubPath` helper. -- @cosmjs/stargate: Add `broadcastTimeoutMs` and `broadcastPollIntervalMs` - options added to `SigningStargateClientOptions`. - -## [0.25.1] - 2021-05-06 - -### Added - -- @cosmjs/cosmwasm-stargate: Export types `Code`, `CodeDetails`, `Contract`, - `ContractCodeHistoryEntry` and `JsonObject` which are response types of - `CosmWasmClient` methods. Export types `ChangeAdminResult`, `ExecuteResult`, - `InstantiateOptions`, `InstantiateResult`, `MigrateResult`, `UploadMeta` and - `UploadResult` which are argument or response types of `SigningCosmWasmClient` - methods. - -### Fixed - -- @cosmjs/cosmwasm-stargate: Use `CosmWasmFeeTable` instead of `CosmosFeeTable` - in `SigningCosmWasmClientOptions`; export type `CosmWasmFeeTable`. -- @cosmjs/amino, @cosmjs/cli, @cosmjs/ledger-amino, @cosmjs/proto-signing: Fix - runtime error caused by passing explicitly undefined options. - -## [0.25.0] - 2021-05-05 - -### Added - -- @cosmjs/cosmwasm-launchpad: Expose `SigningCosmWasmClient.fees`. -- @cosmjs/cosmwasm-stargate: Expose `SigningCosmWasmClient.fees` and - `SigningCosmWasmClient.registry`. -- @cosmjs/launchpad: Expose `SigningCosmosClient.fees`. -- @cosmjs/stargate: Expose `SigningStargateClient.fees` and - `SigningStargateClient.registry`. -- @cosmjs/stargate: Add support for different account types in `accountFromAny` - and `StargateClient`. Added `ModuleAccount` and vesting accounts - `BaseVestingAccount`, `ContinuousVestingAccount`, `DelayedVestingAccount` and - `PeriodicVestingAccount`. -- @cosmjs/stargate: Add codecs for IBC channel tx, client query/tx, and - connection tx, as well as Tendermint. -- @cosmjs/stargate: Add support for IBC message types in - `SigningStargateClient`. -- @cosmjs/stargate: Added new `logs` export with all the functionality from - @cosmjs/launchpad. -- @cosmjs/stargate: Added new `Coin`, `coin`, `coins` and `parseCoins` exports - which have the same functionality as already existed in @cosmjs/launchpad. -- @cosmjs/amino: New package created that contains the shared amino signing - functionality for @cosmjs/launchpad and @cosmjs/stargate. -- @cosmjs/amino: Split public key interfaces into `Pubkey`, `SinglePubkey` and - `Secp256k1Pubkey` where `Pubkey` is a generalization of the old `PubKey` that - supported nested pubkeys for multisig. `SinglePubkey` is the old `PubKey` in - which the `value` is a base64 encoded string. And `Secp256k1Pubkey` is a - single secp256k1 pubkey. -- @cosmjs/utils: The new `arrayContentStartsWith` works similar to - `arrayContentEquals` but only checks the start of an array. -- @cosmjs/proto-signing: Added new `Coin`, `coin`, `coins` and `parseCoins` - exports which have the same functionality as already existed in - @cosmjs/launchpad. -- @cosmjs/stargate: Add `SigningStargateClient.sign`, which allows you to create - signed transactions without broadcasting them directly. The new type - `SignerData` can be passed into `.sign` to skip querying account number, - sequence and chain ID -- @cosmjs/cosmwasm-stargate: Add `SigningCosmWasmClient.sign`, which allows you - to create signed transactions without broadcasting them directly. The new type - `SignerData` from @cosmjs/stargate can be passed into `.sign` to skip querying - account number, sequence and chain ID. -- @cosmjs/stargate: Add constructor `SigningStargateClient.offline` which does - not connect to Tendermint. This allows offline signing. -- @cosmjs/stargate: Add `makeMultisignedTx` which allows you to assemble a - transaction signed by a multisig account. -- @cosmjs/stargate: Add `delegateTokens`, `undelegateTokens` and - `withdrawRewards` methods to `SigningStargateClient`. -- @cosmjs/stargate: Export `defaultGasLimits` and `defaultGasPrice`. -- @cosmjs/cosmwasm-stargate: Export `defaultGasLimits`. -- @cosmjs/stargate: `SigningStargateClient` constructor is now `protected`. -- @cosmjs/cosmwasm-stargate: `SigningCosmWasmClient` constructor is now - `protected`. -- @cosmjs/cosmwasm-stargate: Add `SigningCosmWasmClient.offline` static method - for constructing offline clients without a Tendermint client. -- @cosmjs/stargate: Add `SigningStargateClient.sendIbcTokens` method. -- @cosmjs/amino: Export `Secp256k1HdWalletOptions` interface. -- @cosmjs/amino: Add `bip39Password` option to `Secp256k1HdWallet` options. -- @cosmjs/proto-signing: Export `DirectSecp256k1HdWalletOptions` interface. -- @cosmjs/proto-signing: Add `bip39Password` option to `DirectSecp256k1HdWallet` - options. -- @cosmjs/amino: Add `rawEd25519PubkeyToRawAddress` helper function. -- @cosmjs/tendermint-rpc: Add `pubkeyToAddress`, `pubkeyToRawAddress`, - `rawEd25519PubkeyToRawAddress`, and `rawSecp256k1PubkeyToRawAddress` helper - functions. -- @cosmjs/stargate: `StargateClient.broadcastTx` and `.getTx` results now - include `gasUsed` and `gasWanted` properties. -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.broadcastTx` and `.getTx` results - now include `gasUsed` and `gasWanted` properties. -- @cosmjs/proto-signing: Export `DecodeObject` and `TxBodyEncodeObject` - interfaces as well as `isTxBodyEncodeObject` helper function. -- @cosmjs/stargate: Add `MsgDelegateEncodeObject`, `MsgSendEncodeObject`, - `MsgTransferEncodeObject`, `MsgUndelegateEncodeObject` and - `MsgWithdrawDelegatorRewardEncodeObject` interfaces as well as - `isMsgDelegateEncodeObject` etc helpers. -- @cosmjs/cosmwasm-stargate: Add `MsgClearAdminEncodeObject`, - `MsgExecuteContractEncodeObject`, `MsgInstantiateContractEncodeObject`, - `MsgMigrateContractEncodeObject`, `MsgStoreCodeEncodeObject` and - `MsgUpdateAdminEncodeObject` interfaces as well as - `isMsgClearAdminEncodeObject` etc helpers. -- @cosmjs/stargate: Add transfer queries codec, as well as transfer query - methods to IBC query extension. -- @cosmjs/tendermint-rpc: Export `ValidatorSecp256k1Pubkey` interface. -- @cosmjs/proto-signing: Add transaction decoder `decodeTxRaw` for decoding - transaction bytes returned by Tendermint (e.g. in `IndexedTx.tx`). - -### Changed - -- @cosmjs/cosmwasm-stargate: Codec adapted to support wasmd 0.16. Older versions - of wasmd are not supported anymore. -- @cosmjs/stargate: Let `AuthExtension.account` and - `AuthExtension.unverified.account` return an account of type `Any`. This makes - the caller responsible for decoding the type. -- @cosmjs/stargate: Remove `accountFromProto` in favour of `accountFromAny`. -- @cosmjs/stargate: Rename `Rpc` interface to `ProtobufRpcClient` and - `createRpc` to `createProtobufRpcClient`. -- @cosmjs/stargate: Reorganize nesting structure of IBC query client and add - support for more methods. -- @cosmjs/tendermint-rpc: The fields `CommitSignature.validatorAddress`, - `.timestamp` and `.signature` are now optional. They are unset when - `blockIdFlag` is `BlockIdFlag.Absent`. The decoding into `CommitSignature` is - only updated for the class `Tendermint34Client`, not for `Client`. Please - migrate to the former. -- @cosmjs/launchpad: `rawSecp256k1PubkeyToAddress` was removed. Instead use - `Bech32.encode(prefix, rawSecp256k1PubkeyToRawAddress(pubkeyRaw))` with - `rawSecp256k1PubkeyToRawAddress` from @cosmjs/amino. -- @cosmjs/stargate: `parseRawLog` is now nested under the `logs` export. -- @cosmjs/stargate: Query extensions now have unverified queries at the root and - verified queries nested under `.verified`. -- @cosmjs/cosmwasm-stargate: `wasm` extension now has unverified queries at the - root. -- @cosmjs/stargate: `StargateClient.getAccount` now uses an unverified query and - `StargateClient.getAccountUnverified` has been removed. - `StargateClient.getAccountVerified` has been added, which performs a verified - query. -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.getAccount` now uses an unverified - query and `CosmWasmClient.getAccountUnverified` has been removed. - `CosmWasmClient.getAccountVerified` has been added, which performs a verified - query. -- @cosmjs/stargate: `StargateClient.getSequence` now rejects if the account is - not found, instead of returning null. -- @cosmjs/stargate: `StargateClient.getBalance` now returns a 0 balance instead - of null. -- @cosmjs/stargate: `StargateClient.getAllBalancesUnverified` has been renamed - `.getAllBalances`. -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.getSequence` now rejects if the - account is not found, instead of returning null. -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.getBalance` now returns a 0 balance - instead of null. -- @cosmjs/amino: Options for `Secp256k1HdWallet.fromMnemonic` are now passed via - a `Secp256k1HdWalletOptions` object. -- @cosmjs/proto-signing: Options for `DirectSecp256k1HdWallet.fromMnemonic` are - now passed via a `DirectSecp256k1HdWalletOptions` object. -- @cosmjs/stargate: `StargateClient.broadcastTx` now uses sync mode and then - polls for the transaction before resolving. The timeout and poll interval can - be configured. -- @cosmjs/cosmwasm-stargate: `CosmWasmClient.broadcastTx` now uses sync mode and - then polls for the transaction before resolving. The timeout and poll interval - can be configured. -- @cosmjs/tendermint-rpc: Tendermint v34 `TxData` type now includes `codeSpace`, - `gasWanted`, and `gasUsed` properties. -- @cosmjs/amino: `Secp256k1HdWallet.fromMnemonic` now accepts a - `Secp256k1HdWalletOptions` argument which includes an array of `hdPaths` - instead of a single `hdPath`. `Secp256k1HdWallet.generate` now also accepts - options via this interface. This adds support for multiple accounts from the - same mnemonic to `Secp256k1HdWallet`. -- @cosmjs/proto-signing: `DirectSecp256k1HdWallet.fromMnemonic` now accepts a - `DirectSecp256k1HdWalletOptions` argument which includes an array of `hdPaths` - instead of a single `hdPath`. `DirectSecp256k1HdWallet.generate` now also - accepts options via this interface. This adds support for multiple accounts - from the same mnemonic to `DirectSecp256k1HdWallet`. -- @cosmjs/tendermint-rpc: `ValidatorPubkey` is now a union of - `ValidatorEd25519Pubkey` and the newly exported `ValidatorSecp256k1Pubkey` - interface. -- @cosmjs/tendermint-rpc: `decodePubkey` now supports secp256k1 public keys. - -### Deprecated - -- @cosmjs/tendermint-rpc: `Client` has been deprecated. Launchpad applications - do not need a Tendermint RPC client and Stargate applications should use - `Tendermint34Client`. - -### Removed - -- @cosmjs/stargate: `coinFromProto` helper has been removed as it is no longer - needed after the `ts-proto` migration. - -## [0.24.1] - 2021-03-12 - -CHANGELOG entries missing. Please see [the diff][0.24.1]. - -## [0.24.0] - 2021-03-11 - -- @cosmjs/cosmwasm: This package is now deprecated. The same functionality is - now available in @cosmjs/cosmwasm-launchpad. -- @cosmjs/cosmwasm: `logs` is no longer exported. Use `logs` from - @cosmjs/launchpad instead. -- @cosmjs/cosmwasm: Export `JsonObject`, `ChangeAdminResult` and `WasmData` - types as well as `isValidBuilder` and `parseWasmData` functions. -- @cosmjs/cosmwasm: Add `CosmWasmClient.getTx` method for searching by ID and - remove such functionality from `CosmWasmClient.searchTx`. -- @cosmjs/cosmwasm: Rename `SigningCosmWasmClient.senderAddress` to - `.signerAddress`. -- @cosmjs/cosmwasm-stargate: Add new package for CosmWasm Stargate support. -- @cosmjs/crypto: Change `Secp256k1Keypair` from tagged type to simple - interface. -- @cosmjs/launchpad: Add `Secp256k1Wallet` to manage a single raw secp256k1 - keypair. -- @cosmjs/launchpad: `OfflineSigner` type’s `sign` method renamed `signAmino` - and `SignResponse` type renamed `AminoSignResponse`. -- @cosmjs/launchpad: `Secp256k1HdWallet.sign` method renamed `signAmino`. -- @cosmjs/launchpad: Add `CosmosClient.getTx` method for searching by ID and - remove such functionality from `CosmosClient.searchTx`. -- @cosmjs/launchpad: Add `SigningCosmosClient.sign` method for signing without - broadcasting. -- @cosmjs/launchpad: Add `SigningCosmosClient.appendSignature` method creating - transactions with multiple signatures. -- @cosmjs/launchpad: Add support for undefined memo in `makeSignDoc`. -- @cosmjs/launchpad: Rename `SigningCosmosClient.senderAddress` to - `.signerAddress`. -- @cosmjs/proto-signing: Add new package for handling transaction signing with - protobuf encoding. -- @cosmjs/proto-signing: Expose `DirectSignResponse` interface. -- @cosmjs/stargate: Add new package for Cosmos SDK Stargate support. -- @cosmjs/tendermint-rpc: Make `Client.detectVersion` private and let it return - a version instead of a client. -- @cosmjs/tendermint-rpc: Make the constructor of `Client` private. Add - `Client.create` for creating a Tendermint client given an RPC client and an - optional adaptor. -- @cosmjs/tendermint-rpc: Add an optional adaptor argument to `Client.connect` - which allows skipping the auto-detection. -- @cosmjs/tendermint-rpc: Remove export `v0_33` in favour of `adaptor33` and - `adaptor34`. Export the `Adaptor` type. -- @cosmjs/tendermint-rpc: Export `DateTime` class. -- @cosmjs/tendermint-rpc: Remove types `QueryString`, `Base64String`, - `HexString`, `IntegerString` and `IpPortString`. Use `string` instead. -- @cosmjs/tendermint-rpc: Remove types `BlockHash`, `TxBytes` and `TxHash`. Use - `Uint8Array` instead. - -### Added - -- @cosmjs/launchpad: Export distribution module msg types - `MsgFundCommunityPool`, `MsgSetWithdrawAddress`, `MsgWithdrawDelegatorReward`, - `MsgWithdrawValidatorCommission` and type checker helper functions. -- @cosmjs/utils: Added `assertDefinedAndNotNull`. -- @cosmjs/tendermint-rpc: The new `Tendermint34Client` is a copy of the old - `Client` but without the automatic version detection. Its usage is encouraged - over `Client` if you connect to a Tendermint 0.34 backend. - -### Changed - -- @cosmjs/encoding: Change return type of `fromRfc3339` from `ReadonlyDate` to - `Date` as the caller becomes the owner of the object and can safely mutate it - in any way. -- @cosmjs/launchpad-ledger: Renamed to @cosmjs/ledger-amino. -- @cosmjs/ledger-amino: `LedgerSigner.sign` method renamed `signAmino`. - -### Deprecated - -- @cosmjs/tendermint-rpc: Deprecate `DateTime` in favour of the free functions - `fromRfc3339WithNanoseconds` and `toRfc3339WithNanoseconds`. - -## 0.23.2 (2021-01-06) - -### Security - -- @cosmjs/cli: Update vulnerable axios dependency. -- @cosmjs/faucet-client: Update vulnerable axios dependency. -- @cosmjs/launchpad: Update vulnerable axios dependency. -- @cosmjs/tendermint-rpc: Update vulnerable axios dependency. - -## 0.23.1 (2020-10-27) - -- @cosmjs/crypto: Export new convenience functions `keccak256`, `ripemd160`, - `sha1`, `sha256` and `sha512`. -- @cosmjs/faucet-client: Add new package which exports `FaucetClient` class. - -## 0.23.0 (2020-10-09) - -- @cosmjs/cli: Expose `HdPath` type. -- @cosmjs/cosmwasm: Rename `CosmWasmClient.postTx` method to `.broadcastTx`. -- @cosmjs/cosmwasm: Rename `FeeTable` type to `CosmWasmFeeTable`. -- @cosmjs/cosmwasm: `SigningCosmWasmClient` constructor now takes optional - arguments `gasPrice` and `gasLimits` instead of `customFees` for easier - customization. -- @cosmjs/cosmwasm: Rename `SigningCosmWasmClient.signAndPost` method to - `.signAndBroadcast`. -- @cosmjs/cosmwasm: Use stricter type `Record` for smart query, - init, migrate and handle messages (in `WasmExtension.wasm.queryContractSmart`, - `CosmWasmClient.queryContractSmart`, `SigningCosmWasmClient.instantiate`, - `SigningCosmWasmClient.migrate`, `SigningCosmWasmClient.execute`). -- @cosmjs/crypto: Export new type alias `HdPath`. -- @cosmjs/crypto: Add `Secp256k1Signature.toFixedLength` method. -- @cosmjs/demo-staking: Remove package and supporting scripts. -- @cosmjs/encoding: Add `limit` parameter to `Bech32.encode` and `.decode`. The - new default limit for decoding is infinity (was 90 before). Set it to 90 to - create a strict decoder. -- @cosmjs/faucet: Environmental variable `FAUCET_FEE` renamed to - `FAUCET_GAS_PRICE` and now only accepts one token. Environmental variable - `FAUCET_GAS` renamed to `FAUCET_GAS_LIMIT`. -- @cosmjs/faucet: `/credit` API now expects `denom` (base token) instead of - `ticker` (unit token). Environmental variables specifying credit amounts now - need to use uppercase denom. -- @cosmjs/launchpad: Rename `FeeTable` type to `CosmosFeeTable` and export a new - more generic type `FeeTable`. -- @cosmjs/launchpad: Add new class `GasPrice`, new helper type `GasLimits` and - new helper function `buildFeeTable` for easier handling of gas prices and - fees. -- @cosmjs/launchpad: Rename `CosmosClient.postTx` method to `.broadcastTx`. -- @cosmjs/launchpad: `SigningCosmosClient` constructor now takes optional - arguments `gasPrice` and `gasLimits` instead of `customFees` for easier - customization. -- @cosmjs/launchpad: Rename `SigningCosmosClient.signAndPost` method to - `.signAndBroadcast`. -- @cosmjs/launchpad: Rename `PostTx`-related types to `BroadcastTxResult`, - `BroadcastTxSuccess` and `BroadcastTxFailure` respectively, as well as helper - functions `isBroadcastTxFailure`, `isBroadcastTxSuccess` and - `assertIsBroadcastTxSuccess`. -- @cosmjs/launchpad: Export `isSearchByIdQuery`, `isSearchByHeightQuery`, - `isSearchBySentFromOrToQuery` and `isSearchByTagsQuery`. -- @cosmjs/launchpad: Change type of `TxsResponse.logs` and - `BroadcastTxsResponse.logs` to `unknown[]`. -- @cosmjs/launchpad: Export `StdSignDoc` and create helpers to make and - serialize a `StdSignDoc`: `makeSignDoc` and `serializeSignDoc`. -- @cosmjs/launchpad: Let `OfflineSigner.sign` take an `StdSignDoc` instead of an - encoded message and return a `SignResponse` that includes the document which - was signed. -- @cosmjs/launchpad: Remove `PrehashType` and the prehash type argument in - `OfflineSigner.sign` because the signer now needs to know how to serialize an - `StdSignDoc`. -- @cosmjs/launchpad: Remove `makeSignBytes` in favour of `makeSignDoc` and - `serializeSignDoc`. -- @cosmjs/launchpad: Create `WrappedTx`, `WrappedStdTx` and `isWrappedStdTx` to - better represent the Amino tx interface. Deprecate `CosmosSdkTx`, which is an - alias for `WrappedStdTx`. -- @cosmjs/launchpad: Add `makeStdTx` to create an `StdTx`. -- @cosmjs/launchpad: Rename `Secp256k1Wallet` to `Secp256k1HdWallet`. Later on, - we'll use `Secp256k1Wallet` for single key wallets. -- @cosmjs/launchpad-ledger: Add package supporting Ledger device integration for - Launchpad. Two new classes are provided: `LedgerSigner` (for most use cases) - and `LaunchpadLedger` for more fine-grained access. -- @cosmjs/math: Add `.multiply` method to `Decimal` class. -- @cosmjs/math: Deprecate `Uint32.fromBigEndianBytes` in favour of - `Uint32.fromBytes`, which supports both big and little endian. -- @cosmjs/math: Deprecate `Uint64.fromBytesBigEndian` in favour of - `Uint64.fromBytes`, which supports both big and little endian. -- @cosmjs/math: Add `Uint32.fromString`. -- @cosmjs/tendermint-rpc: Make `BroadcastTxCommitResponse.height` non-optional. -- @cosmjs/tendermint-rpc: Make `TxProof.proof.leafHash` non-optional because it - is always set. -- @cosmjs/tendermint-rpc: Change type of `GenesisResponse.appState` to - `Record | undefined`. -- @cosmjs/tendermint-rpc: Remove obsolete `TxData.tags` and make `TxData.events` - non-optional. Rename `Tag` to `Attribute`. -- @cosmjs/tendermint-rpc: Remove obsolete `BlockResultsResponse.beginBlock` and - `.beginBlock`. The new `.beginBlockEvents` and `.endBlockEvents` now parse the - events correctly. -- @cosmjs/tendermint-rpc: Remove trivial helpers `getTxEventHeight`, - `getHeaderEventHeight` and `getBlockEventHeight` because they don't do - anything else than accessing an object member. -- @cosmjs/tendermint-rpc: Add support for connecting to Tendermint RPC 0.34. -- @cosmjs/tendermint-rpc: Make `TxEvent.index` optional and deprecate it because - it is not set anymore in Tendermint 0.34. -- @cosmjs/utils: Add `assertDefined`. -- @cosmjs/faucet: Rename binary from `cosmwasm-faucet` to `cosmos-faucet`. - -## 0.22.3 (2020-09-15) - -- @cosmjs/math: Add `Decimal.minus`. - -## 0.22.2 (2020-08-11) - -- @cosmjs/faucet: Log errors for failed send transactions. -- @cosmjs/faucet: Add config variable `FAUCET_MEMO`. -- @cosmjs/faucet: Add config variables `FAUCET_FEE` and `FAUCET_GAS`. -- @cosmjs/launchpad: Add `parseCoins` helper. - -## 0.22.1 (2020-08-11) - -- @cosmjs/cli: Import `encodeAminoPubkey`, `encodeBech32Pubkey`, - `decodeAminoPubkey` and `decodeBech32Pubkey` by default. -- @cosmjs/launchpad: Add ed25519 support to `encodeBech32Pubkey`. -- @cosmjs/launchpad: Add `encodeAminoPubkey` and `decodeAminoPubkey`. -- @cosmjs/utils: Add `arrayContentEquals`. -- @cosmjs/faucet: Add config variables `FAUCET_ADDRESS_PREFIX` and - `FAUCET_TOKENS`. -- @cosmjs/faucet: Remove broken chain ID from `cosmwasm-faucet generate`. - -## 0.22.0 (2020-08-03) - -- @cosmjs/cli: Now supports HTTPs URLs for `--init` code sources. -- @cosmjs/cli: Now supports adding code directly via `--code`. -- @cosmjs/cosmwasm: Rename `CosmWasmClient.getNonce` method to `.getSequence`. -- @cosmjs/cosmwasm: Remove `RestClient` class in favour of new modular - `LcdClient` class from @cosmjs/sdk38. -- @cosmjs/cosmwasm: Add `SigningCosmWasmClient.signAndPost` as a mid-level - abstraction between `SigningCosmWasmClient.upload`/`.instantiate`/`.execute` - and `.postTx`. -- @cosmjs/cosmwasm: Use `*PostTx*` types and helpers from @cosmjs/sdk38. Remove - exported `PostTxResult`. -- @cosmjs/cosmwasm: `ContractDetails` was removed in favour of just `Contract`. - The missing `init_msg` is now available via the contract's code history (see - `getContractCodeHistory`). -- @cosmjs/cosmwasm: Remove `SigningCallback` in favour of the `OfflineSigner` - interface. -- @cosmjs/sdk38: Rename `CosmosClient.getNonce` method to `.getSequence`. -- @cosmjs/sdk38: Remove `RestClient` class in favour of new modular `LcdClient` - class. -- @cosmjs/sdk38: Remove `Pen` type in favour of `OfflineSigner` and remove - `Secp256k1Pen` class in favour of `Secp256k1Wallet` which takes an - `OfflineSigner` instead of a `SigningCallback`. -- @cosmjs/sdk38: Rename `CosmosSdkAccount` to `BaseAccount` and export the type. -- @cosmjs/sdk38: `BaseAccount` now uses `number | string` as the type for - `account_number` and `sequence`. The new helpers `uint64ToNumber` and - `uint64ToString` allow you to normalize the mixed input. -- @cosmjs/sdk38: `BaseAccount` now uses `string | PubKey | null` as the type for - `public_key`. The new helper `normalizePubkey` allows you to normalize the - mixed input. -- @cosmjs/math: Add missing integer check to `Uint64.fromNumber`. Before - `Uint64.fromNumber(1.1)` produced some result. -- @cosmjs/sdk38: Add `SigningCosmosClient.signAndPost` as a mid-level - abstraction between `SigningCosmosClient.sendTokens` and `.postTx`. -- @cosmjs/sdk38: Export `PostTxFailure`/`PostTxSuccess` and type checkers - `isPostTxFailure`/`isPostTxSuccess`; export `assertIsPostTxSuccess`. -- @cosmjs/sdk38: `Secp256k1Wallet`s can now be generated randomly with - `Secp256k1Wallet.generate(n)` where `n` is 12, 15, 18, 21 or 24 mnemonic - words. -- @cosmjs/sdk38: The new `Secp256k1Wallet.serialize` and `.deserialize` allow - encrypted serialization of the wallet. -- @cosmjs/sdk38: Remove the obsolete `upload`, `init`, `exec` properties from - `FeeTable`. @cosmjs/cosmwasm has its own `FeeTable` with those properties. -- @cosmjs/sdk38: Rename package to @cosmjs/launchpad. - -[unreleased]: https://github.com/cosmos/cosmjs/compare/v0.28.4...HEAD -[0.28.4]: https://github.com/cosmos/cosmjs/compare/v0.28.3...v0.28.4 -[0.28.3]: https://github.com/cosmos/cosmjs/compare/v0.28.2...v0.28.3 -[0.28.2]: https://github.com/cosmos/cosmjs/compare/v0.28.1...v0.28.2 -[0.28.1]: https://github.com/cosmos/cosmjs/compare/v0.28.0...v0.28.1 -[0.28.0]: https://github.com/cosmos/cosmjs/compare/v0.27.1...v0.28.0 -[0.27.1]: https://github.com/cosmos/cosmjs/compare/v0.27.0...v0.27.1 -[0.27.0]: https://github.com/cosmos/cosmjs/compare/v0.26.6...v0.27.0 -[0.26.6]: https://github.com/cosmos/cosmjs/compare/v0.26.5...v0.26.6 -[0.26.5]: https://github.com/cosmos/cosmjs/compare/v0.26.4...v0.26.5 -[0.26.4]: https://github.com/cosmos/cosmjs/compare/v0.26.3...v0.26.4 -[0.26.3]: https://github.com/cosmos/cosmjs/compare/v0.26.2...v0.26.3 -[0.26.2]: https://github.com/cosmos/cosmjs/compare/v0.26.1...v0.26.2 -[0.26.1]: https://github.com/cosmos/cosmjs/compare/v0.26.0...v0.26.1 -[0.26.0]: https://github.com/cosmos/cosmjs/compare/v0.25.6...v0.26.0 -[0.25.6]: https://github.com/cosmos/cosmjs/compare/v0.25.5...v0.25.6 -[0.25.5]: https://github.com/cosmos/cosmjs/compare/v0.25.4...v0.25.5 -[0.25.4]: https://github.com/cosmos/cosmjs/compare/v0.25.3...v0.25.4 -[0.25.3]: https://github.com/cosmos/cosmjs/compare/v0.25.2...v0.25.3 -[0.25.2]: https://github.com/cosmos/cosmjs/compare/v0.25.1...v0.25.2 -[0.25.1]: https://github.com/cosmos/cosmjs/compare/v0.25.0...v0.25.1 -[0.25.0]: https://github.com/cosmos/cosmjs/compare/v0.24.1...v0.25.0 -[0.24.1]: https://github.com/cosmos/cosmjs/compare/v0.24.0...v0.24.1 -[0.24.0]: https://github.com/cosmos/cosmjs/compare/v0.23.0...v0.24.0 diff --git a/HACKING.md b/HACKING.md index 1936b850..1fd27192 100644 --- a/HACKING.md +++ b/HACKING.md @@ -1,7 +1,8 @@ -# Hacking CosmJS +# Hacking finschia-js -Welcome to CosmJS, glad to see you here. This document explains all you need to -work on CosmJS, i.e. modify it. It is not intended for users of CosmJS. +Welcome to finschia-js, glad to see you here. This document explains all you +need to work on finschia-js, i.e. modify it. It is not intended for users of +finschia-js. ## Prerequisite @@ -28,7 +29,7 @@ To verify everything worked as expected, check if the testing contracts are correctly checked out: ```sh -cd scripts/wasmd/contracts +cd scripts/simapp/contracts sha256sum -c checksums.sha256 ``` @@ -46,40 +47,21 @@ yarn test ``` To run the entire test suite, you need to run some local blockchain to test -against. We use [wasmd](https://github.com/CosmWasm/wasmd) for both CosmWasm -tests and as a generic Cosmos SDK 0.39 (Launchpad) blockchain. We also spawn -multiple versions of raw Tendermint and a basic WebSocket server. +against. We use [finschia](https://github.com/line/finschia) for both CosmWasm +tests and as a generic lbm SDK 0.47 blockchain. ```sh -# Start wasmd -./scripts/launchpad/start.sh -./scripts/launchpad/init.sh -export LAUNCHPAD_ENABLED=1 - -# Start Tendermint -./scripts/tendermint/all_start.sh -export TENDERMINT_ENABLED=1 - -# Start WebSocket server -./scripts/socketserver/start.sh -export SOCKETSERVER_ENABLED=1 - -# Start Http server -./scripts/httpserver/start.sh -export HTTPSERVER_ENABLED=1 +# Start finschia +./scripts/lbm/start.sh +./scripts/lbm/init.sh +export SIMAPP_ENABLED=1 # now more tests are running that were marked as "pending" before yarn test # And at the end of the day -unset HTTPSERVER_ENABLED -unset SOCKETSERVER_ENABLED -unset TENDERMINT_ENABLED -unset LAUNCHPAD_ENABLED -./scripts/httpserver/stop.sh -./scripts/socketserver/stop.sh -./scripts/tendermint/all_stop.sh -./scripts/launchpad/stop.sh +unset SIMAPP_ENABLED +./scripts/lbm/stop.sh ``` ## Sanity @@ -99,14 +81,8 @@ In the `scripts/` folder, a bunch of blockchains and other backend systems are started for testing purposes. Some ports need to be changed from the default in order to avoid conflicts. Here is an overview of the ports used: -| Port | Application | Usage | -| ----- | --------------------- | ------------------------------- | -| 1317 | simapp LCD API | Manual Stargate debugging | -| 1318 | lbm LCD API | Manual Stargate debugging | -| 4444 | socketserver | @cosmjs/sockets tests | -| 4445 | socketserver slow | @cosmjs/sockets tests | -| 5555 | httpserver | @cosmjs/tendermint-rpc tests | -| 9090 | simapp gRPC | Manual Stargate debugging | -| 11134 | Ostracon 0.34 RPC | @lbmjs/ostracon-rpc tests | -| 26658 | simapp Ostracon RPC | Stargate client tests | -| 26659 | lbm Ostracon RPC | @lbmjs/cosmwasm-stargate tests | +| Port | Application | Usage | +| ----- | ------------------- | ------------------------- | +| 1317 | simapp LCD API | Manual finschia debugging | +| 9090 | simapp gRPC | Manual finschia debugging | +| 26658 | simapp Ostracon RPC | finschia client tests | diff --git a/README.md b/README.md index ebeb1e06..c617a01e 100644 --- a/README.md +++ b/README.md @@ -7,80 +7,21 @@ -CosmJS is the Swiss Army knife to power JavaScript based client solutions +finschia-js is the Swiss Army knife to power JavaScript based client solutions ranging from Web apps/explorers over browser extensions to server-side clients like faucets/scrapers in the Cosmos ecosystem. -"Cosm" is short for Cosmos and "JS" is short for _runs everywhere_ – we actually -develop in TypeScript. - -## Documentation - -[Here is a list of examples][guided tour] using the Stargate package for use -with [Cosmos SDK 0.41] applications (like [gaia 4]). Take a look at the wiki -page, -["What can CosmJS do for me?"](https://github.com/cosmos/cosmjs/wiki/What-can-CosmJS-do-for-me%3F) -and various tests -([ex](https://github.com/cosmos/cosmjs/blob/main/packages/stargate/src/signingstargateclient.spec.ts)) -for more example usage of the packages. - -[guided tour]: - https://gist.github.com/webmaster128/8444d42a7eceeda2544c8a59fbd7e1d9 -[cosmos sdk 0.41]: https://github.com/cosmos/cosmos-sdk/tree/v0.41.0 -[gaia 4]: https://github.com/cosmos/gaia/tree/v4.0.0 - -### API documentation - -The full API documentation is hosted at [cosmos.github.io/cosmjs]. This is a bit -tricky to navigate and requires basic TypeScript understanding. It is helpful if -you have want to look up details for advanced use cases. This documentation is -auto-generated based on the current main branch and can occasionally diverge -from the latest release. - -[cosmos.github.io/cosmjs]: https://cosmos.github.io/cosmjs - -### Using custom Stargate modules - -Documentation on how to use your own custom modules with CosmJS for Stargate -chains (Cosmos SDK v0.41) can be found -[here](https://github.com/cosmos/cosmjs/blob/main/packages/stargate/CUSTOM_PROTOBUF_CODECS.md). - ## Packages -CosmJS is a library that consists of many smaller npm packages within the -[@cosmjs namespace](https://www.npmjs.com/org/cosmjs), a so called monorepo. +finschia-js is a library that consists of many smaller npm packages within the +[@finschia namespace](https://www.npmjs.com/org/finschia), a so called monorepo. Here are some of them to get an idea: -| Package | Description | Latest | -| ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | -| [@cosmjs/stargate](packages/stargate) | A client library for the Cosmos SDK 0.40+ (Stargate) | [![npm version](https://img.shields.io/npm/v/@cosmjs/stargate.svg)](https://www.npmjs.com/package/@cosmjs/stargate) | -| [@cosmjs/faucet](packages/faucet) | A faucet application for node.js | [![npm version](https://img.shields.io/npm/v/@cosmjs/faucet.svg)](https://www.npmjs.com/package/@cosmjs/faucet) | -| [@cosmjs/cosmwasm-stargate](packages/cosmwasm-stargate) | Client for Stargate chains with the CosmWasm module enabled | [![npm version](https://img.shields.io/npm/v/@cosmjs/cosmwasm-stargate.svg)](https://www.npmjs.com/package/@cosmjs/cosmwasm-stargate) | -| [@cosmjs/crypto](packages/crypto) | Cryptography for blockchain projects, e.g. hashing (SHA-2, Keccak256, Ripemd160), signing (secp256k1, ed25519), HD key derivation (BIP-39, SLIP-0010), KDFs and symmetric encryption for key storage (PBKDF2, Argon2, XChaCha20Poly1305) | [![npm version](https://img.shields.io/npm/v/@cosmjs/crypto.svg)](https://www.npmjs.com/package/@cosmjs/crypto) | -| [@cosmjs/encoding](packages/encoding) | Encoding helpers for blockchain projects | [![npm version](https://img.shields.io/npm/v/@cosmjs/encoding.svg)](https://www.npmjs.com/package/@cosmjs/encoding) | -| [@cosmjs/math](packages/math) | Safe integers; decimals for handling financial amounts | [![npm version](https://img.shields.io/npm/v/@cosmjs/math.svg)](https://www.npmjs.com/package/@cosmjs/math) | - -### Modularity - -We're pretty proud of the modularity and a clean dependency tree in this -monorepo. This ensures software quality on our side and lets users pick exactly -what they need. Here you see how everything fits together (every item is a npm -package; right depends on left): - -![CosmJS dependency tree](docs/cosmjs-tree.png) - -If this was not enough to scare you away, check out the version including app -runtime dependencies: [cosmjs-tree-full.png](docs/cosmjs-tree-full.png). +| Package | Description | Latest | +| --------------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| [@finschia/finschia](packages/finschia) | A client library for the Finschia SDK 0.43+ | [![npm version](https://img.shields.io/npm/v/@lbmjs/finschia.svg)](https://www.npmjs.com/package/@lbmjs/finschia) | - - -### Supported JS environments +## Supported JS environments Currently the codebase supports the following runtime environments: @@ -102,7 +43,7 @@ With WebPack 5, you have to be explicit about the usage of Node.js types and modules that were simply replaced with re-implementations for browsers in Webpack 4. -Configs for 0.28 and later: +Configs for v0.4.0-rc0 and later: ```js module.exports = [ @@ -129,7 +70,7 @@ module.exports = [ ]; ``` -Configs for CosmJS < 0.28 +Configs for finschia-js < v0.4.0-rc0 ```js module.exports = [ @@ -158,52 +99,16 @@ module.exports = [ ## Roadmap -We maintain a [development board](https://github.com/orgs/cosmos/projects/6), -use [release milestones](https://github.com/cosmos/cosmjs/milestones) and share -important updates in the [CosmWasm Community Call]. For higher level roadmap -discussion please reach out to the team. - -[cosmwasm community call]: - https://github.com/CosmWasm/cosmwasm/issues?q=label%3A%22Community+Call+%F0%9F%97%BA%F0%9F%93%9E%22 - -## Known limitations - -### 0.26 - -1. When connecting to a Cosmos SDK 0.44+ backend, the verified queries from - `AuthExtension` and `BankExtension` as well as - `StargateClient.getAccountVerified` will fail because the storage keys are - not stable. Unverified queries can be used instead. Those queries are - deprecated now and will be removed in 0.27 ([#910]). - -[#910]: https://github.com/cosmos/cosmjs/pull/910 - -### 0.25 - -1. Decoding blocks of height 1 is unsupported. This is fixed in [#815] and will - be released as part of CosmJS 0.26. - -[#815]: https://github.com/cosmos/cosmjs/pull/815 - -### 0.24 - -1. `AuthExtension` and all higher level Stargate clients only support - `BaseAccount`s for all functionality, including getting account numbers and - sequences for transaction signing. This will be implemented for all common - Cosmos SDK account types in the 0.25 series. +We use [release milestones](https://github.com/cosmos/cosmjs/milestones). For +higher level roadmap discussion please reach out to the team. ## Get in touch -The CosmJS development team is happy to get in touch with you for all questions -and suggestions. +The finschia-js development team is happy to get in touch with you for all +questions and suggestions. -- [GitHub issues](https://github.com/cosmos/cosmjs/issues) for bugs and feature - requests -- The #cosmjs channel on the - ["Cosmos Community" Discord server](https://discord.gg/vcExX9T) for questions - and open discussions -- [#CosmJS on Twitter](https://twitter.com/search?q=%23CosmJS) to spread the - word +- [GitHub issues](https://github.com/line/finschia-js/issues) for bugs and + feature requests ## Development diff --git a/packages/finschia/README.md b/packages/finschia/README.md index 3a716043..9dd837c0 100644 --- a/packages/finschia/README.md +++ b/packages/finschia/README.md @@ -1 +1 @@ -# @lbmjs/finschia +# @finschia/finschia From 28b8402781ae40f9a338c309643dfa212ec5eafa Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 13:47:35 +0900 Subject: [PATCH 02/15] change npm @lbmjs to @finschia --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c617a01e..1d2f247c 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ finschia-js is a library that consists of many smaller npm packages within the [@finschia namespace](https://www.npmjs.com/org/finschia), a so called monorepo. Here are some of them to get an idea: -| Package | Description | Latest | -| --------------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| [@finschia/finschia](packages/finschia) | A client library for the Finschia SDK 0.43+ | [![npm version](https://img.shields.io/npm/v/@lbmjs/finschia.svg)](https://www.npmjs.com/package/@lbmjs/finschia) | +| Package | Description | Latest | +| --------------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| [@finschia/finschia](packages/finschia) | A client library for the Finschia SDK 0.43+ | [![npm version](https://img.shields.io/npm/v/@finschia/finschia.svg)](https://www.npmjs.com/package/@finschia/finschia) | ## Supported JS environments From 1fe6f9e74da2940b54f9daa118ce28b092e5a8cf Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 13:48:16 +0900 Subject: [PATCH 03/15] change lbmjs to finschia in packages.json --- .pnp.cjs | 72 +++++++++++++++---------------- package.json | 4 +- scripts/lbm/deploy_hackatom.js | 2 +- scripts/lbm/deploy_ibc_reflect.js | 2 +- yarn.lock | 40 ++++++++--------- 5 files changed, 60 insertions(+), 60 deletions(-) diff --git a/.pnp.cjs b/.pnp.cjs index cda3143f..295e4249 100755 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -19,7 +19,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "dependencyTreeRoots": [ { - "name": "lbmjs-monorepo-root", + "name": "finschia-js-monorepo-root", "reference": "workspace:." }, { @@ -31,7 +31,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "ignorePatternData": "(^(?:\\.yarn\\/sdks(?:\\/(?!\\.{1,2}(?:\\/|$))(?:(?:(?!(?:^|\\/)\\.{1,2}(?:\\/|$)).)*?)|$))$)", "fallbackExclusionList": [ ["@lbmjs/finschia", ["workspace:packages/finschia"]], - ["lbmjs-monorepo-root", ["workspace:."]] + ["finschia-js-monorepo-root", ["workspace:."]] ], "fallbackPool": [ [ @@ -2571,9 +2571,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@lbmjs/finschia", "workspace:packages/finschia"], ["eslint", "npm:7.32.0"], ["karma-chrome-launcher", "npm:3.1.0"], - ["karma-jasmine", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:4.0.1"], - ["karma-spec-reporter", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:0.0.33"], - ["karma-typescript", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:5.5.3"], + ["karma-jasmine", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1"], + ["karma-spec-reporter", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33"], + ["karma-typescript", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3"], ["prettier", "npm:2.5.1"], ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] @@ -6226,6 +6226,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD", }] ]], + ["finschia-js-monorepo-root", [ + ["workspace:.", { + "packageLocation": "./", + "packageDependencies": [ + ["finschia-js-monorepo-root", "workspace:."], + ["@cosmjs/crypto", "npm:0.30.1"], + ["@cosmjs/encoding", "npm:0.30.1"], + ["@cosmjs/proto-signing", "npm:0.30.1"], + ["@cosmjs/stargate", "npm:0.30.1"], + ["@lbmjs/finschia", "workspace:packages/finschia"], + ["eslint", "npm:7.32.0"], + ["karma-chrome-launcher", "npm:3.1.0"], + ["karma-jasmine", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1"], + ["karma-spec-reporter", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33"], + ["karma-typescript", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3"], + ["prettier", "npm:2.5.1"], + ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], + ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] + ], + "linkType": "SOFT", + }] + ]], ["flat-cache", [ ["npm:3.0.4", { "packageLocation": "./.yarn/cache/flat-cache-npm-3.0.4-ee77e5911e-4fdd10ecbc.zip/node_modules/flat-cache/", @@ -7511,10 +7533,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "HARD", }], - ["virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:4.0.1", { - "packageLocation": "./.yarn/__virtual__/karma-jasmine-virtual-8cdf4f53da/0/cache/karma-jasmine-npm-4.0.1-47b681c3e0-28337c8294.zip/node_modules/karma-jasmine/", + ["virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1", { + "packageLocation": "./.yarn/__virtual__/karma-jasmine-virtual-acc49a953b/0/cache/karma-jasmine-npm-4.0.1-47b681c3e0-28337c8294.zip/node_modules/karma-jasmine/", "packageDependencies": [ - ["karma-jasmine", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:4.0.1"], + ["karma-jasmine", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1"], ["@types/karma", null], ["jasmine-core", "npm:3.99.0"], ["karma", null] @@ -7578,10 +7600,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "HARD", }], - ["virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:0.0.33", { - "packageLocation": "./.yarn/__virtual__/karma-spec-reporter-virtual-ebb7b6019f/0/cache/karma-spec-reporter-npm-0.0.33-5154ef57e1-6218d49ca4.zip/node_modules/karma-spec-reporter/", + ["virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33", { + "packageLocation": "./.yarn/__virtual__/karma-spec-reporter-virtual-5c9f93149d/0/cache/karma-spec-reporter-npm-0.0.33-5154ef57e1-6218d49ca4.zip/node_modules/karma-spec-reporter/", "packageDependencies": [ - ["karma-spec-reporter", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:0.0.33"], + ["karma-spec-reporter", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33"], ["@types/karma", null], ["colors", "npm:1.4.0"], ["karma", null] @@ -7661,10 +7683,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "HARD", }], - ["virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:5.5.3", { - "packageLocation": "./.yarn/__virtual__/karma-typescript-virtual-a82855ec24/0/cache/karma-typescript-npm-5.5.3-0c7472805b-0474336d20.zip/node_modules/karma-typescript/", + ["virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3", { + "packageLocation": "./.yarn/__virtual__/karma-typescript-virtual-5769796a5f/0/cache/karma-typescript-npm-5.5.3-0c7472805b-0474336d20.zip/node_modules/karma-typescript/", "packageDependencies": [ - ["karma-typescript", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:5.5.3"], + ["karma-typescript", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3"], ["@types/karma", null], ["@types/typescript", null], ["acorn", "npm:8.7.0"], @@ -7731,28 +7753,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD", }] ]], - ["lbmjs-monorepo-root", [ - ["workspace:.", { - "packageLocation": "./", - "packageDependencies": [ - ["lbmjs-monorepo-root", "workspace:."], - ["@cosmjs/crypto", "npm:0.30.1"], - ["@cosmjs/encoding", "npm:0.30.1"], - ["@cosmjs/proto-signing", "npm:0.30.1"], - ["@cosmjs/stargate", "npm:0.30.1"], - ["@lbmjs/finschia", "workspace:packages/finschia"], - ["eslint", "npm:7.32.0"], - ["karma-chrome-launcher", "npm:3.1.0"], - ["karma-jasmine", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:4.0.1"], - ["karma-spec-reporter", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:0.0.33"], - ["karma-typescript", "virtual:cd80f3fb0437801a99fef2ee022afb4ec84335515f39b9a71f5be11b41a1c8a81a2c10026f25c3f34e54cfd8c4a5902b4ddbca269433d0c19e81608f6cbd2aa6#npm:5.5.3"], - ["prettier", "npm:2.5.1"], - ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], - ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] - ], - "linkType": "SOFT", - }] - ]], ["lbmjs-types", [ ["npm:1.0.0-rc2", { "packageLocation": "./.yarn/cache/lbmjs-types-npm-1.0.0-rc2-e80fe73a1e-3ac7d105e9.zip/node_modules/lbmjs-types/", diff --git a/package.json b/package.json index 95678f8f..cf495126 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "lbmjs-monorepo-root", - "description": "Transaction codec and client to communicate with any wasmd blockchain", + "name": "finschia-js-monorepo-root", + "description": "Transaction codec and client to communicate with any finschia blockchain", "private": true, "author": "Ethan Frey ", "license": "Apache-2.0", diff --git a/scripts/lbm/deploy_hackatom.js b/scripts/lbm/deploy_hackatom.js index 81cf9f22..bce0d95b 100755 --- a/scripts/lbm/deploy_hackatom.js +++ b/scripts/lbm/deploy_hackatom.js @@ -1,7 +1,7 @@ #!/usr/bin/env -S yarn node /* eslint-disable @typescript-eslint/naming-convention */ -const { SigningFinschiaClient, makeLinkPath } = require("@lbmjs/finschia"); +const { SigningFinschiaClient, makeLinkPath } = require("@finschia/finschia"); const { DirectSecp256k1HdWallet } = require("@cosmjs/proto-signing"); const { calculateFee, GasPrice } = require("@cosmjs/stargate"); const fs = require("fs"); diff --git a/scripts/lbm/deploy_ibc_reflect.js b/scripts/lbm/deploy_ibc_reflect.js index 4488e2b3..d98fcfe0 100755 --- a/scripts/lbm/deploy_ibc_reflect.js +++ b/scripts/lbm/deploy_ibc_reflect.js @@ -1,7 +1,7 @@ #!/usr/bin/env -S yarn node /* eslint-disable @typescript-eslint/naming-convention */ -const { SigningFinschiaClient, makeLinkPath } = require("@lbmjs/finschia"); +const { SigningFinschiaClient, makeLinkPath } = require("@finschia/finschia"); const { DirectSecp256k1HdWallet } = require("@cosmjs/proto-signing"); const { calculateFee, GasPrice } = require("@cosmjs/stargate"); const fs = require("fs"); diff --git a/yarn.lock b/yarn.lock index 2f31a2eb..5e3e455e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3002,6 +3002,26 @@ __metadata: languageName: node linkType: hard +"finschia-js-monorepo-root@workspace:.": + version: 0.0.0-use.local + resolution: "finschia-js-monorepo-root@workspace:." + dependencies: + "@cosmjs/crypto": ^0.30.1 + "@cosmjs/encoding": ^0.30.1 + "@cosmjs/proto-signing": ^0.30.1 + "@cosmjs/stargate": ^0.30.1 + "@lbmjs/finschia": "workspace:packages/finschia" + eslint: ^7.5 + karma-chrome-launcher: ^3.1.0 + karma-jasmine: ^4.0.1 + karma-spec-reporter: ^0.0.33 + karma-typescript: ^5.5.3 + prettier: ^2.4.1 + ts-node: ^8 + typescript: ~4.4 + languageName: unknown + linkType: soft + "flat-cache@npm:^3.0.4": version: 3.0.4 resolution: "flat-cache@npm:3.0.4" @@ -4201,26 +4221,6 @@ __metadata: languageName: node linkType: hard -"lbmjs-monorepo-root@workspace:.": - version: 0.0.0-use.local - resolution: "lbmjs-monorepo-root@workspace:." - dependencies: - "@cosmjs/crypto": ^0.30.1 - "@cosmjs/encoding": ^0.30.1 - "@cosmjs/proto-signing": ^0.30.1 - "@cosmjs/stargate": ^0.30.1 - "@lbmjs/finschia": "workspace:packages/finschia" - eslint: ^7.5 - karma-chrome-launcher: ^3.1.0 - karma-jasmine: ^4.0.1 - karma-spec-reporter: ^0.0.33 - karma-typescript: ^5.5.3 - prettier: ^2.4.1 - ts-node: ^8 - typescript: ~4.4 - languageName: unknown - linkType: soft - "lbmjs-types@npm:^1.0.0-rc2": version: 1.0.0-rc2 resolution: "lbmjs-types@npm:1.0.0-rc2" From 127199c4b6d75d0fb9306744b0675f64ded5dc99 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 13:48:36 +0900 Subject: [PATCH 04/15] delete cosmwasm features in simapp --- scripts/simapp/contracts/checksums.sha256 | 2 - scripts/simapp/contracts/download.sh | 10 --- scripts/simapp/contracts/hackatom.wasm | 3 - scripts/simapp/contracts/ibc_reflect.wasm | 3 - scripts/simapp/deploy_hackatom.js | 86 ----------------------- scripts/simapp/deploy_ibc_reflect.js | 69 ------------------ scripts/simapp/init.sh | 29 -------- 7 files changed, 202 deletions(-) delete mode 100644 scripts/simapp/contracts/checksums.sha256 delete mode 100644 scripts/simapp/contracts/download.sh delete mode 100644 scripts/simapp/contracts/hackatom.wasm delete mode 100644 scripts/simapp/contracts/ibc_reflect.wasm delete mode 100755 scripts/simapp/deploy_hackatom.js delete mode 100755 scripts/simapp/deploy_ibc_reflect.js delete mode 100755 scripts/simapp/init.sh diff --git a/scripts/simapp/contracts/checksums.sha256 b/scripts/simapp/contracts/checksums.sha256 deleted file mode 100644 index 0654fe87..00000000 --- a/scripts/simapp/contracts/checksums.sha256 +++ /dev/null @@ -1,2 +0,0 @@ -470c5b703a682f778b8b088d48169b8d6e43f7f44ac70316692cdbe69e6605e3 hackatom.wasm -d92d2ecfc38986268d65034196cbedd7a401a0ac22617a7a63c29aebb0afa895 ibc_reflect.wasm diff --git a/scripts/simapp/contracts/download.sh b/scripts/simapp/contracts/download.sh deleted file mode 100644 index 356a74e9..00000000 --- a/scripts/simapp/contracts/download.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# This must get from 2-3 different repos, fix the versions here: - -COSMWASM_VERSION="v1.0.0-0.6.0" - -curl -sS -L -O "https://github.com/line/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm" -curl -sS -L -O "https://github.com/line/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm" - -sha256sum *.wasm > checksums.sha256 diff --git a/scripts/simapp/contracts/hackatom.wasm b/scripts/simapp/contracts/hackatom.wasm deleted file mode 100644 index 96e3f5a2..00000000 --- a/scripts/simapp/contracts/hackatom.wasm +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:470c5b703a682f778b8b088d48169b8d6e43f7f44ac70316692cdbe69e6605e3 -size 216295 diff --git a/scripts/simapp/contracts/ibc_reflect.wasm b/scripts/simapp/contracts/ibc_reflect.wasm deleted file mode 100644 index ae0d6d86..00000000 --- a/scripts/simapp/contracts/ibc_reflect.wasm +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d92d2ecfc38986268d65034196cbedd7a401a0ac22617a7a63c29aebb0afa895 -size 264774 diff --git a/scripts/simapp/deploy_hackatom.js b/scripts/simapp/deploy_hackatom.js deleted file mode 100755 index 81cf9f22..00000000 --- a/scripts/simapp/deploy_hackatom.js +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/env -S yarn node - -/* eslint-disable @typescript-eslint/naming-convention */ -const { SigningFinschiaClient, makeLinkPath } = require("@lbmjs/finschia"); -const { DirectSecp256k1HdWallet } = require("@cosmjs/proto-signing"); -const { calculateFee, GasPrice } = require("@cosmjs/stargate"); -const fs = require("fs"); - -const endpoint = "http://localhost:26658"; -const alice = { - mnemonic: - "mind flame tobacco sense move hammer drift crime ring globe art gaze cinnamon helmet cruise special produce notable negative wait path scrap recall have", - address0: "link146asaycmtydq45kxc8evntqfgepagygelel00h", - address1: "link1aaffxdz4dwcnjzumjm7h89yjw5c5wul88zvzuu", - address2: "link1ey0w0xj9v48vk82ht6mhqdlh9wqkx8enkpjwpr", - address3: "link1dfyywjglcfptn72axxhsslpy8ep6wq7wujasma", - address4: "link1equ4n3uwyhapak5g3leq0avz85k0q6jcdy5w0f", -}; - -const inits = [ - { - label: "From deploy_hackatom.js (0)", - msg: { - beneficiary: alice.address0, - verifier: alice.address0, - }, - admin: undefined, - }, - { - label: "From deploy_hackatom.js (1)", - msg: { - beneficiary: alice.address1, - verifier: alice.address1, - }, - admin: undefined, - }, - { - label: "From deploy_hackatom.js (2)", - msg: { - beneficiary: alice.address2, - verifier: alice.address2, - }, - admin: alice.address1, - }, -]; - -async function main() { - const gasPrice = GasPrice.fromString("0.025cony"); - const wallet = await DirectSecp256k1HdWallet.fromMnemonic(alice.mnemonic, { - hdPaths: [makeLinkPath(0)], - prefix: "link", - }); - const client = await SigningFinschiaClient.connectWithSigner(endpoint, wallet); - - const wasm = fs.readFileSync(__dirname + "/contracts/hackatom.wasm"); - const uploadFee = calculateFee(1_500_000, gasPrice); - const uploadReceipt = await client.upload(alice.address0, wasm, uploadFee, "Upload hackatom contract"); - console.info(`Upload succeeded. Receipt: ${JSON.stringify(uploadReceipt)}`); - - const instantiateFee = calculateFee(500_000, gasPrice); - for (const { label, msg, admin } of inits) { - const { contractAddress } = await client.instantiate( - alice.address0, - uploadReceipt.codeId, - msg, - label, - instantiateFee, - { - memo: `Create a hackatom instance in deploy_hackatom.js`, - admin: admin, - }, - ); - console.info(`Contract instantiated at ${contractAddress}`); - } -} - -main().then( - () => { - console.info("All done, let the coins flow."); - process.exit(0); - }, - (error) => { - console.error(error); - process.exit(1); - }, -); diff --git a/scripts/simapp/deploy_ibc_reflect.js b/scripts/simapp/deploy_ibc_reflect.js deleted file mode 100755 index 4488e2b3..00000000 --- a/scripts/simapp/deploy_ibc_reflect.js +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env -S yarn node - -/* eslint-disable @typescript-eslint/naming-convention */ -const { SigningFinschiaClient, makeLinkPath } = require("@lbmjs/finschia"); -const { DirectSecp256k1HdWallet } = require("@cosmjs/proto-signing"); -const { calculateFee, GasPrice } = require("@cosmjs/stargate"); -const fs = require("fs"); - -const endpoint = "http://localhost:26658"; -const alice = { - mnemonic: - "mind flame tobacco sense move hammer drift crime ring globe art gaze cinnamon helmet cruise special produce notable negative wait path scrap recall have", - address0: "link146asaycmtydq45kxc8evntqfgepagygelel00h", - address1: "link1aaffxdz4dwcnjzumjm7h89yjw5c5wul88zvzuu", - address2: "link1ey0w0xj9v48vk82ht6mhqdlh9wqkx8enkpjwpr", - address3: "link1dfyywjglcfptn72axxhsslpy8ep6wq7wujasma", - address4: "link1equ4n3uwyhapak5g3leq0avz85k0q6jcdy5w0f", -}; - -const inits = [ - { - label: "Instantiate IBC reflect", - msg: { - reflect_code_id: 222, // dummy value that will not work - }, - admin: undefined, - }, -]; - -async function main() { - const gasPrice = GasPrice.fromString("0.025cony"); - const wallet = await DirectSecp256k1HdWallet.fromMnemonic(alice.mnemonic, { - hdPaths: [makeLinkPath(0)], - prefix: "link", - }); - const client = await SigningFinschiaClient.connectWithSigner(endpoint, wallet); - - const wasm = fs.readFileSync(__dirname + "/contracts/ibc_reflect.wasm"); - const uploadFee = calculateFee(2_500_000, gasPrice); - const uploadReceipt = await client.upload(alice.address0, wasm, uploadFee, "Upload IBC reflect contract"); - console.info(`Upload succeeded. Receipt: ${JSON.stringify(uploadReceipt)}`); - - const instantiateFee = calculateFee(900_000, gasPrice); - for (const { label, msg, admin } of inits) { - const { contractAddress } = await client.instantiate( - alice.address0, - uploadReceipt.codeId, - msg, - label, - instantiateFee, - { - memo: `Create a ibc_reflect instance in deploy_ibc_reflect.js`, - admin: admin, - }, - ); - console.info(`Contract instantiated at ${contractAddress}`); - } -} - -main().then( - () => { - console.info("All done, have fun with IBC."); - process.exit(0); - }, - (error) => { - console.error(error); - process.exit(1); - }, -); diff --git a/scripts/simapp/init.sh b/scripts/simapp/init.sh deleted file mode 100755 index 0c3381fa..00000000 --- a/scripts/simapp/init.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -set -o errexit -o nounset -o pipefail -command -v shellcheck >/dev/null && shellcheck "$0" - -echo "Waiting for blockchain and REST server to be available ..." -timeout 60 bash -c "until curl -s http://localhost:1317/lbm/base/ostracon/v1/node_info > /dev/null; do sleep 0.5; done" -# The chain is unreliable in the first second of its existence (https://gist.github.com/webmaster128/8175692d4af5e6c572fddda7a9ef437c) -sleep 2 -echo "Waiting for height to be >= 1 ..." -timeout 20 bash -c "until [ \"\$( curl -s http://localhost:1317/lbm/base/ostracon/v1/blocks/latest | jq -r '.block.header.height // 0' )\" -ge 1 ]; do sleep 0.5; done" -echo "Okay, thank you for your patience." - -SCRIPT_DIR="$(realpath "$(dirname "$0")")" - -# -# Cosmos SDK init -# -#"$SCRIPT_DIR/send_first.js" - -# -# CosmWasm init -# -( - echo "Ensuring contracts' checksums are correct ..." - cd "$SCRIPT_DIR/contracts" - sha256sum --check checksums.sha256 -) -"$SCRIPT_DIR/deploy_hackatom.js" -"$SCRIPT_DIR/deploy_ibc_reflect.js" From b716bcdef35272009827b6392798746057ef8170 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 16:35:05 +0900 Subject: [PATCH 05/15] change lbm to finschia --- .github/workflows/finschia-test.yml | 10 +- .gitignore | 2 +- .pnp.cjs | 418 +++++++++--------- HACKING.md | 8 +- README.md | 45 +- package.json | 2 +- packages/finschia/package.json | 2 +- scripts/{lbm => finschia}/README.md | 11 +- .../contracts/checksums.sha256 | 0 .../{lbm => finschia}/contracts/download.sh | 0 .../{lbm => finschia}/contracts/hackatom.wasm | 0 .../contracts/ibc_reflect.wasm | 0 scripts/{lbm => finschia}/deploy_hackatom.js | 0 .../{lbm => finschia}/deploy_ibc_reflect.js | 0 scripts/{lbm => finschia}/env | 0 scripts/{lbm => finschia}/init.sh | 0 scripts/{lbm => finschia}/start.sh | 2 +- scripts/{lbm => finschia}/start_local.sh | 0 scripts/{lbm => finschia}/stop.sh | 2 +- .../template/.lbm/config/app.toml | 0 .../template/.lbm/config/client.toml | 0 .../template/.lbm/config/config.toml | 0 .../template/.lbm/config/genesis.json | 0 ...92cc468ada83add5486867ce12ae6ab25aa74.json | 1 + ...98792d07e8266fc6d52a3641db32ba79765d0.json | 0 .../template/.lbm/config/node_key.json | 0 .../.lbm/config/priv_validator_key.json | 0 .../.lbm/data/priv_validator_state.json | 0 ...7814c74f863bea49b433e51676bfd99bc1.address | 0 ...597f29240eafb883bee64e1420895e5259.address | 0 ...f24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address | 0 ...491fc242b9f95d31af087c243e43a703ce.address | 0 .../template/.lbm/keyring-test/account0.info | 0 .../template/.lbm/keyring-test/account1.info | 0 .../template/.lbm/keyring-test/account2.info | 0 .../template/.lbm/keyring-test/account3.info | 0 .../template/.lbm/keyring-test/account4.info | 0 .../template/.lbm/keyring-test/account5.info | 0 .../template/.lbm/keyring-test/account6.info | 0 .../template/.lbm/keyring-test/account7.info | 0 .../template/.lbm/keyring-test/account8.info | 0 ...daad146da2d167f55ec00a5360dd013b7a.address | 0 ...931b591a0ad2c6c1f2c9ac094643d41119.address | 0 ...c78e25fa1eda888ff207f5823d2cf06a58.address | 0 ...9a45654ecb1d575eb77037f72b81631f33.address | 0 ...33fc2858fbe68b38189596993b73fba5f4.address | 0 ...7c0cd770b0696c101db34a7c88c9e60ea3.address | 0 ...34556bb1390b9b96fd73949275314773e7.address | 0 .../template/.lbm/keyring-test/multisig0.info | 0 .../.lbm/keyring-test/validator0.info | 0 .../template/run_finschia.sh} | 0 scripts/{lbm => finschia}/template/setup.sh | 0 yarn.lock | 122 ++--- 53 files changed, 297 insertions(+), 328 deletions(-) rename scripts/{lbm => finschia}/README.md (51%) rename scripts/{lbm => finschia}/contracts/checksums.sha256 (100%) rename scripts/{lbm => finschia}/contracts/download.sh (100%) rename scripts/{lbm => finschia}/contracts/hackatom.wasm (100%) rename scripts/{lbm => finschia}/contracts/ibc_reflect.wasm (100%) rename scripts/{lbm => finschia}/deploy_hackatom.js (100%) rename scripts/{lbm => finschia}/deploy_ibc_reflect.js (100%) rename scripts/{lbm => finschia}/env (100%) rename scripts/{lbm => finschia}/init.sh (100%) rename scripts/{lbm => finschia}/start.sh (97%) rename scripts/{lbm => finschia}/start_local.sh (100%) rename scripts/{lbm => finschia}/stop.sh (90%) rename scripts/{lbm => finschia}/template/.lbm/config/app.toml (100%) rename scripts/{lbm => finschia}/template/.lbm/config/client.toml (100%) rename scripts/{lbm => finschia}/template/.lbm/config/config.toml (100%) rename scripts/{lbm => finschia}/template/.lbm/config/genesis.json (100%) create mode 100644 scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json rename scripts/{lbm => finschia}/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json (100%) rename scripts/{lbm => finschia}/template/.lbm/config/node_key.json (100%) rename scripts/{lbm => finschia}/template/.lbm/config/priv_validator_key.json (100%) rename scripts/{lbm => finschia}/template/.lbm/data/priv_validator_state.json (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account0.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account1.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account2.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account3.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account4.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account5.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account6.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account7.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/account8.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/multisig0.info (100%) rename scripts/{lbm => finschia}/template/.lbm/keyring-test/validator0.info (100%) rename scripts/{lbm/template/run_lbm.sh => finschia/template/run_finschia.sh} (100%) rename scripts/{lbm => finschia}/template/setup.sh (100%) diff --git a/.github/workflows/finschia-test.yml b/.github/workflows/finschia-test.yml index 98da8040..0636c8bb 100644 --- a/.github/workflows/finschia-test.yml +++ b/.github/workflows/finschia-test.yml @@ -17,7 +17,7 @@ jobs: - name: download contracts run: | - cd scripts/lbm/contracts + cd scripts/finschia/contracts bash download.sh - name: Set up Node.js @@ -37,11 +37,11 @@ jobs: - name: Build run: yarn build - - name: start lbm - run: CI= scripts/lbm/start.sh + - name: start finschia + run: CI= scripts/finschia/start.sh - - name: init contract on lbm - run: scripts/lbm/init.sh + - name: init contract on finschia + run: scripts/finschia/init.sh - name: Unit Test run: | diff --git a/.gitignore b/.gitignore index 3c8e876e..a019e3dd 100644 --- a/.gitignore +++ b/.gitignore @@ -36,4 +36,4 @@ coverage/ # We are not using yarn's deferred versioning for now (see https://yarnpkg.com/features/release-workflow) # !.yarn/versions scripts/simapp/test_chain_data -scripts/lbm/test_chain_data +scripts/finschia/test_chain_data diff --git a/.pnp.cjs b/.pnp.cjs index 295e4249..631b7674 100755 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -23,14 +23,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "reference": "workspace:." }, { - "name": "@lbmjs/finschia", + "name": "@finschia/finschia", "reference": "workspace:packages/finschia" } ], "enableTopLevelFallback": true, "ignorePatternData": "(^(?:\\.yarn\\/sdks(?:\\/(?!\\.{1,2}(?:\\/|$))(?:(?:(?!(?:^|\\/)\\.{1,2}(?:\\/|$)).)*?)|$))$)", "fallbackExclusionList": [ - ["@lbmjs/finschia", ["workspace:packages/finschia"]], + ["@finschia/finschia", ["workspace:packages/finschia"]], ["finschia-js-monorepo-root", ["workspace:."]] ], "fallbackPool": [ @@ -198,6 +198,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "@eslint/eslintrc", "npm:0.4.3" ], + [ + "@finschia/finschia", + "workspace:packages/finschia" + ], [ "@gar/promisify", "npm:1.1.2" @@ -216,7 +220,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "@istanbuljs/nyc-config-typescript", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.0.2" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.0.2" ], [ "@istanbuljs/schema", @@ -234,10 +238,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "@jridgewell/trace-mapping", "npm:0.3.2" ], - [ - "@lbmjs/finschia", - "workspace:packages/finschia" - ], [ "@noble/hashes", "npm:1.0.0" @@ -380,11 +380,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "@typescript-eslint/eslint-plugin", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0" ], [ "@typescript-eslint/parser", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0" ], [ "@typescript-eslint/scope-manager", @@ -392,7 +392,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "@typescript-eslint/type-utils", - "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0" + "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0" ], [ "@typescript-eslint/types", @@ -400,11 +400,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "@typescript-eslint/typescript-estree", - "virtual:007d1e3605d7b746b15c689ce3a5f0b2ad7ff4aa31effe8aabefb48248880a9faddad3e4b336bc6f0d553f3b8b3ad2061a5d14bbd8dc02e1e5a2b2a277ebc305#npm:5.17.0" + "virtual:973ff6f09795a9de637d7372490c92001560b93d02f97bd8f75dff2653905ae8bd560dedfdda3be137309aeb04dc9840d604d98bc5d8432464878116dbf02e37#npm:5.17.0" ], [ "@typescript-eslint/utils", - "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0" + "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0" ], [ "@typescript-eslint/visitor-keys", @@ -472,15 +472,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "@webpack-cli/configtest", - "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.1.1" + "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.1.1" ], [ "@webpack-cli/info", - "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.4.1" + "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.4.1" ], [ "@webpack-cli/serve", - "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.6.1" + "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.6.1" ], [ "@xtuc/ieee754", @@ -504,7 +504,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "acorn-import-assertions", - "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:1.8.0" + "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:1.8.0" ], [ "acorn-walk", @@ -1020,7 +1020,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "eslint-config-prettier", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.3.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.3.0" ], [ "eslint-import-resolver-node", @@ -1032,15 +1032,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "eslint-plugin-import", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:2.25.4" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:2.25.4" ], [ "eslint-plugin-prettier", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:3.4.1" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:3.4.1" ], [ "eslint-plugin-simple-import-sort", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:7.0.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:7.0.0" ], [ "eslint-scope", @@ -1612,19 +1612,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "karma-jasmine", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.0.1" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.0.1" ], [ "karma-jasmine-html-reporter", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.7.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.7.0" ], [ "karma-spec-reporter", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.0.33" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.0.33" ], [ "karma-typescript", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.5.3" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.5.3" ], [ "kind-of", @@ -2312,11 +2312,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "terser", - "virtual:cf464f9fb96f3c8ad828d748dd75c060c0488468f1eb07eb8609bfcd40533b3b7324fcae4f5c9dbf7db1d4b359a780e3c5549b3660564de106f962f845fe73d7#npm:5.10.0" + "virtual:e9edcbfbc067b15b1aff9306cae4fe30821ff634eb9a5994950ed156e322f11e870ce62faf7473b5240e4beaa6b4b791200a836fb0c4a2cf419f6eb32c37bcdd#npm:5.10.0" ], [ "terser-webpack-plugin", - "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:5.3.1" + "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:5.3.1" ], [ "test-exclude", @@ -2348,7 +2348,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "ts-node", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2" ], [ "tsconfig-paths", @@ -2360,7 +2360,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "tsutils", - "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0" + "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0" ], [ "tty-browserify", @@ -2384,7 +2384,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "typedoc", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.22.11" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.22.11" ], [ "typescript", @@ -2472,11 +2472,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], [ "webpack", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0" ], [ "webpack-cli", - "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2" + "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2" ], [ "webpack-merge", @@ -2568,14 +2568,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "npm:0.30.1"], ["@cosmjs/proto-signing", "npm:0.30.1"], ["@cosmjs/stargate", "npm:0.30.1"], - ["@lbmjs/finschia", "workspace:packages/finschia"], + ["@finschia/finschia", "workspace:packages/finschia"], ["eslint", "npm:7.32.0"], ["karma-chrome-launcher", "npm:3.1.0"], ["karma-jasmine", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1"], ["karma-spec-reporter", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33"], ["karma-typescript", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3"], ["prettier", "npm:2.5.1"], - ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], + ["ts-node", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "linkType": "SOFT", @@ -3107,6 +3107,68 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD", }] ]], + ["@finschia/finschia", [ + ["workspace:packages/finschia", { + "packageLocation": "./packages/finschia/", + "packageDependencies": [ + ["@finschia/finschia", "workspace:packages/finschia"], + ["@cosmjs/amino", "npm:0.30.1"], + ["@cosmjs/cosmwasm-stargate", "npm:0.30.1"], + ["@cosmjs/crypto", "npm:0.30.1"], + ["@cosmjs/encoding", "npm:0.30.1"], + ["@cosmjs/math", "npm:0.30.1"], + ["@cosmjs/proto-signing", "npm:0.30.1"], + ["@cosmjs/stargate", "npm:0.30.1"], + ["@cosmjs/tendermint-rpc", "npm:0.30.1"], + ["@cosmjs/utils", "npm:0.30.1"], + ["@istanbuljs/nyc-config-typescript", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.0.2"], + ["@types/eslint-plugin-prettier", "npm:3.1.0"], + ["@types/jasmine", "npm:3.10.3"], + ["@types/karma-firefox-launcher", "npm:2.1.1"], + ["@types/karma-jasmine", "npm:4.0.2"], + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"], + ["@types/long", "npm:4.0.1"], + ["@types/node", "npm:15.14.9"], + ["@types/pako", "npm:1.0.3"], + ["@typescript-eslint/eslint-plugin", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0"], + ["@typescript-eslint/parser", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0"], + ["cosmjs-types", "npm:0.7.1"], + ["eslint", "npm:7.32.0"], + ["eslint-config-prettier", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.3.0"], + ["eslint-import-resolver-node", "npm:0.3.6"], + ["eslint-plugin-import", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:2.25.4"], + ["eslint-plugin-prettier", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:3.4.1"], + ["eslint-plugin-simple-import-sort", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:7.0.0"], + ["esm", "npm:3.2.25"], + ["glob", "npm:7.2.0"], + ["jasmine", "npm:3.99.0"], + ["jasmine-spec-reporter", "npm:6.0.0"], + ["karma", "npm:6.3.17"], + ["karma-chrome-launcher", "npm:3.1.0"], + ["karma-firefox-launcher", "npm:2.1.2"], + ["karma-jasmine", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.0.1"], + ["karma-jasmine-html-reporter", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.7.0"], + ["karma-spec-reporter", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.0.33"], + ["karma-typescript", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.5.3"], + ["lbmjs-types", "npm:1.0.0-rc2"], + ["long", "npm:4.0.0"], + ["nyc", "npm:15.1.0"], + ["pako", "npm:2.0.4"], + ["prettier", "npm:2.5.1"], + ["protobufjs", "npm:6.10.2"], + ["readonly-date", "npm:1.0.0"], + ["ses", "npm:0.11.1"], + ["source-map-support", "npm:0.5.21"], + ["ts-node", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2"], + ["typedoc", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.22.11"], + ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"], + ["webpack", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0"], + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"], + ["xstream", "npm:11.14.0"] + ], + "linkType": "SOFT", + }] + ]], ["@gar/promisify", [ ["npm:1.1.2", { "packageLocation": "./.yarn/cache/@gar-promisify-npm-1.1.2-2343f94380-d05081e088.zip/node_modules/@gar/promisify/", @@ -3159,10 +3221,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.0.2", { - "packageLocation": "./.yarn/__virtual__/@istanbuljs-nyc-config-typescript-virtual-c958527e2c/0/cache/@istanbuljs-nyc-config-typescript-npm-1.0.2-379c0ff62d-df6f9c9b17.zip/node_modules/@istanbuljs/nyc-config-typescript/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.0.2", { + "packageLocation": "./.yarn/__virtual__/@istanbuljs-nyc-config-typescript-virtual-474acf4f98/0/cache/@istanbuljs-nyc-config-typescript-npm-1.0.2-379c0ff62d-df6f9c9b17.zip/node_modules/@istanbuljs/nyc-config-typescript/", "packageDependencies": [ - ["@istanbuljs/nyc-config-typescript", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.0.2"], + ["@istanbuljs/nyc-config-typescript", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.0.2"], ["@istanbuljs/schema", "npm:0.1.3"], ["@types/nyc", null], ["nyc", "npm:15.1.0"] @@ -3212,68 +3274,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD", }] ]], - ["@lbmjs/finschia", [ - ["workspace:packages/finschia", { - "packageLocation": "./packages/finschia/", - "packageDependencies": [ - ["@lbmjs/finschia", "workspace:packages/finschia"], - ["@cosmjs/amino", "npm:0.30.1"], - ["@cosmjs/cosmwasm-stargate", "npm:0.30.1"], - ["@cosmjs/crypto", "npm:0.30.1"], - ["@cosmjs/encoding", "npm:0.30.1"], - ["@cosmjs/math", "npm:0.30.1"], - ["@cosmjs/proto-signing", "npm:0.30.1"], - ["@cosmjs/stargate", "npm:0.30.1"], - ["@cosmjs/tendermint-rpc", "npm:0.30.1"], - ["@cosmjs/utils", "npm:0.30.1"], - ["@istanbuljs/nyc-config-typescript", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.0.2"], - ["@types/eslint-plugin-prettier", "npm:3.1.0"], - ["@types/jasmine", "npm:3.10.3"], - ["@types/karma-firefox-launcher", "npm:2.1.1"], - ["@types/karma-jasmine", "npm:4.0.2"], - ["@types/karma-jasmine-html-reporter", "npm:1.7.0"], - ["@types/long", "npm:4.0.1"], - ["@types/node", "npm:15.14.9"], - ["@types/pako", "npm:1.0.3"], - ["@typescript-eslint/eslint-plugin", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0"], - ["@typescript-eslint/parser", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0"], - ["cosmjs-types", "npm:0.7.1"], - ["eslint", "npm:7.32.0"], - ["eslint-config-prettier", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.3.0"], - ["eslint-import-resolver-node", "npm:0.3.6"], - ["eslint-plugin-import", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:2.25.4"], - ["eslint-plugin-prettier", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:3.4.1"], - ["eslint-plugin-simple-import-sort", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:7.0.0"], - ["esm", "npm:3.2.25"], - ["glob", "npm:7.2.0"], - ["jasmine", "npm:3.99.0"], - ["jasmine-spec-reporter", "npm:6.0.0"], - ["karma", "npm:6.3.17"], - ["karma-chrome-launcher", "npm:3.1.0"], - ["karma-firefox-launcher", "npm:2.1.2"], - ["karma-jasmine", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.0.1"], - ["karma-jasmine-html-reporter", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.7.0"], - ["karma-spec-reporter", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.0.33"], - ["karma-typescript", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.5.3"], - ["lbmjs-types", "npm:1.0.0-rc2"], - ["long", "npm:4.0.0"], - ["nyc", "npm:15.1.0"], - ["pako", "npm:2.0.4"], - ["prettier", "npm:2.5.1"], - ["protobufjs", "npm:6.10.2"], - ["readonly-date", "npm:1.0.0"], - ["ses", "npm:0.11.1"], - ["source-map-support", "npm:0.5.21"], - ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], - ["typedoc", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.22.11"], - ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"], - ["webpack", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0"], - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"], - ["xstream", "npm:11.14.0"] - ], - "linkType": "SOFT", - }] - ]], ["@noble/hashes", [ ["npm:1.0.0", { "packageLocation": "./.yarn/cache/@noble-hashes-npm-1.0.0-893cbd74b3-bdf1c28a4b.zip/node_modules/@noble/hashes/", @@ -3646,24 +3646,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-660abb215c/0/cache/@typescript-eslint-eslint-plugin-npm-5.17.0-dbaffa3f00-62ec611fb3.zip/node_modules/@typescript-eslint/eslint-plugin/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-617bb9366b/0/cache/@typescript-eslint-eslint-plugin-npm-5.17.0-dbaffa3f00-62ec611fb3.zip/node_modules/@typescript-eslint/eslint-plugin/", "packageDependencies": [ - ["@typescript-eslint/eslint-plugin", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0"], + ["@typescript-eslint/eslint-plugin", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0"], ["@types/eslint", null], ["@types/typescript", null], ["@types/typescript-eslint__parser", null], - ["@typescript-eslint/parser", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0"], + ["@typescript-eslint/parser", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0"], ["@typescript-eslint/scope-manager", "npm:5.17.0"], - ["@typescript-eslint/type-utils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0"], - ["@typescript-eslint/utils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0"], + ["@typescript-eslint/type-utils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0"], + ["@typescript-eslint/utils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0"], ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"], ["eslint", "npm:7.32.0"], ["functional-red-black-tree", "npm:1.0.1"], ["ignore", "npm:5.2.0"], ["regexpp", "npm:3.2.0"], ["semver", "npm:7.3.5"], - ["tsutils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0"], + ["tsutils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "packagePeers": [ @@ -3685,15 +3685,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-007d1e3605/0/cache/@typescript-eslint-parser-npm-5.17.0-86c42aa2f8-15b855ea84.zip/node_modules/@typescript-eslint/parser/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-973ff6f097/0/cache/@typescript-eslint-parser-npm-5.17.0-86c42aa2f8-15b855ea84.zip/node_modules/@typescript-eslint/parser/", "packageDependencies": [ - ["@typescript-eslint/parser", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.17.0"], + ["@typescript-eslint/parser", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.17.0"], ["@types/eslint", null], ["@types/typescript", null], ["@typescript-eslint/scope-manager", "npm:5.17.0"], ["@typescript-eslint/types", "npm:5.17.0"], - ["@typescript-eslint/typescript-estree", "virtual:007d1e3605d7b746b15c689ce3a5f0b2ad7ff4aa31effe8aabefb48248880a9faddad3e4b336bc6f0d553f3b8b3ad2061a5d14bbd8dc02e1e5a2b2a277ebc305#npm:5.17.0"], + ["@typescript-eslint/typescript-estree", "virtual:973ff6f09795a9de637d7372490c92001560b93d02f97bd8f75dff2653905ae8bd560dedfdda3be137309aeb04dc9840d604d98bc5d8432464878116dbf02e37#npm:5.17.0"], ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"], ["eslint", "npm:7.32.0"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] @@ -3726,16 +3726,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-a3b4aba7f2/0/cache/@typescript-eslint-type-utils-npm-5.17.0-3ebebf42f5-9aad46ea7a.zip/node_modules/@typescript-eslint/type-utils/", + ["virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-6bd2b20282/0/cache/@typescript-eslint-type-utils-npm-5.17.0-3ebebf42f5-9aad46ea7a.zip/node_modules/@typescript-eslint/type-utils/", "packageDependencies": [ - ["@typescript-eslint/type-utils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0"], + ["@typescript-eslint/type-utils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0"], ["@types/eslint", null], ["@types/typescript", null], - ["@typescript-eslint/utils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0"], + ["@typescript-eslint/utils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0"], ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"], ["eslint", "npm:7.32.0"], - ["tsutils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0"], + ["tsutils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "packagePeers": [ @@ -3764,10 +3764,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:007d1e3605d7b746b15c689ce3a5f0b2ad7ff4aa31effe8aabefb48248880a9faddad3e4b336bc6f0d553f3b8b3ad2061a5d14bbd8dc02e1e5a2b2a277ebc305#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-0f535fb34a/0/cache/@typescript-eslint-typescript-estree-npm-5.17.0-843fe64714-589829b1bb.zip/node_modules/@typescript-eslint/typescript-estree/", + ["virtual:973ff6f09795a9de637d7372490c92001560b93d02f97bd8f75dff2653905ae8bd560dedfdda3be137309aeb04dc9840d604d98bc5d8432464878116dbf02e37#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-fb36914ad1/0/cache/@typescript-eslint-typescript-estree-npm-5.17.0-843fe64714-589829b1bb.zip/node_modules/@typescript-eslint/typescript-estree/", "packageDependencies": [ - ["@typescript-eslint/typescript-estree", "virtual:007d1e3605d7b746b15c689ce3a5f0b2ad7ff4aa31effe8aabefb48248880a9faddad3e4b336bc6f0d553f3b8b3ad2061a5d14bbd8dc02e1e5a2b2a277ebc305#npm:5.17.0"], + ["@typescript-eslint/typescript-estree", "virtual:973ff6f09795a9de637d7372490c92001560b93d02f97bd8f75dff2653905ae8bd560dedfdda3be137309aeb04dc9840d604d98bc5d8432464878116dbf02e37#npm:5.17.0"], ["@types/typescript", null], ["@typescript-eslint/types", "npm:5.17.0"], ["@typescript-eslint/visitor-keys", "npm:5.17.0"], @@ -3775,7 +3775,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["globby", "npm:11.1.0"], ["is-glob", "npm:4.0.3"], ["semver", "npm:7.3.5"], - ["tsutils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0"], + ["tsutils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "packagePeers": [ @@ -3784,10 +3784,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "HARD", }], - ["virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-41025fe9c0/0/cache/@typescript-eslint-typescript-estree-npm-5.17.0-843fe64714-589829b1bb.zip/node_modules/@typescript-eslint/typescript-estree/", + ["virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-98bd51b175/0/cache/@typescript-eslint-typescript-estree-npm-5.17.0-843fe64714-589829b1bb.zip/node_modules/@typescript-eslint/typescript-estree/", "packageDependencies": [ - ["@typescript-eslint/typescript-estree", "virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:5.17.0"], + ["@typescript-eslint/typescript-estree", "virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:5.17.0"], ["@types/typescript", null], ["@typescript-eslint/types", "npm:5.17.0"], ["@typescript-eslint/visitor-keys", "npm:5.17.0"], @@ -3795,7 +3795,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["globby", "npm:11.1.0"], ["is-glob", "npm:4.0.3"], ["semver", "npm:7.3.5"], - ["tsutils", "virtual:41025fe9c00ae4a5f15b3c6c2b659d93e0c158b8843d4f2d1951fa0695b862123db02b80e8d0dd19ff8be5d9c5424ad53dc4b89a59c9faa4e564cc398d3a6b13#npm:3.21.0"], + ["tsutils", "virtual:98bd51b1752fb1a7d8d5927176d8f9c7b6f8a5a4414fafb7bc2d1be74b811671bf877fd54621f2eb6318c67dd9ca501d0268003ba28726bf3e6f049a820d4d78#npm:3.21.0"], ["typescript", null] ], "packagePeers": [ @@ -3813,18 +3813,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0", { - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-1ae6935934/0/cache/@typescript-eslint-utils-npm-5.17.0-04e9362391-88de02eafb.zip/node_modules/@typescript-eslint/utils/", + ["virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0", { + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-a27dec2b26/0/cache/@typescript-eslint-utils-npm-5.17.0-04e9362391-88de02eafb.zip/node_modules/@typescript-eslint/utils/", "packageDependencies": [ - ["@typescript-eslint/utils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:5.17.0"], + ["@typescript-eslint/utils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:5.17.0"], ["@types/eslint", null], ["@types/json-schema", "npm:7.0.11"], ["@typescript-eslint/scope-manager", "npm:5.17.0"], ["@typescript-eslint/types", "npm:5.17.0"], - ["@typescript-eslint/typescript-estree", "virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:5.17.0"], + ["@typescript-eslint/typescript-estree", "virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:5.17.0"], ["eslint", "npm:7.32.0"], ["eslint-scope", "npm:5.1.1"], - ["eslint-utils", "virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:3.0.0"] + ["eslint-utils", "virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:3.0.0"] ], "packagePeers": [ "@types/eslint", @@ -4023,14 +4023,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.1.1", { - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-72ddfcc368/0/cache/@webpack-cli-configtest-npm-1.1.1-87de53d084-c4e7fca213.zip/node_modules/@webpack-cli/configtest/", + ["virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.1.1", { + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-0f2ae8dde4/0/cache/@webpack-cli-configtest-npm-1.1.1-87de53d084-c4e7fca213.zip/node_modules/@webpack-cli/configtest/", "packageDependencies": [ - ["@webpack-cli/configtest", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.1.1"], + ["@webpack-cli/configtest", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.1.1"], ["@types/webpack", null], ["@types/webpack-cli", null], - ["webpack", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0"], - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"] + ["webpack", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0"], + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"] ], "packagePeers": [ "@types/webpack-cli", @@ -4049,13 +4049,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.4.1", { - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-7b4eb397bf/0/cache/@webpack-cli-info-npm-1.4.1-34c6d9b3f1-7a7cac2ba4.zip/node_modules/@webpack-cli/info/", + ["virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.4.1", { + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-a1cba9249e/0/cache/@webpack-cli-info-npm-1.4.1-34c6d9b3f1-7a7cac2ba4.zip/node_modules/@webpack-cli/info/", "packageDependencies": [ - ["@webpack-cli/info", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.4.1"], + ["@webpack-cli/info", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.4.1"], ["@types/webpack-cli", null], ["envinfo", "npm:7.8.1"], - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"] + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"] ], "packagePeers": [ "@types/webpack-cli", @@ -4072,13 +4072,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.6.1", { - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-a358b0287c/0/cache/@webpack-cli-serve-npm-1.6.1-e0ea59ed03-8b273f906a.zip/node_modules/@webpack-cli/serve/", + ["virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.6.1", { + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-05b77e40a6/0/cache/@webpack-cli-serve-npm-1.6.1-e0ea59ed03-8b273f906a.zip/node_modules/@webpack-cli/serve/", "packageDependencies": [ - ["@webpack-cli/serve", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.6.1"], + ["@webpack-cli/serve", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.6.1"], ["@types/webpack-cli", null], ["@types/webpack-dev-server", null], - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"], + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"], ["webpack-dev-server", null] ], "packagePeers": [ @@ -4152,10 +4152,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:1.8.0", { - "packageLocation": "./.yarn/__virtual__/acorn-import-assertions-virtual-5238fddffd/0/cache/acorn-import-assertions-npm-1.8.0-e9a9d57e27-5c4cf7c850.zip/node_modules/acorn-import-assertions/", + ["virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:1.8.0", { + "packageLocation": "./.yarn/__virtual__/acorn-import-assertions-virtual-ed4ad9038f/0/cache/acorn-import-assertions-npm-1.8.0-e9a9d57e27-5c4cf7c850.zip/node_modules/acorn-import-assertions/", "packageDependencies": [ - ["acorn-import-assertions", "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:1.8.0"], + ["acorn-import-assertions", "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:1.8.0"], ["@types/acorn", null], ["acorn", "npm:8.7.0"] ], @@ -5769,10 +5769,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.3.0", { - "packageLocation": "./.yarn/__virtual__/eslint-config-prettier-virtual-cca25c9098/0/cache/eslint-config-prettier-npm-8.3.0-f540cd1f53-df4cea3032.zip/node_modules/eslint-config-prettier/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.3.0", { + "packageLocation": "./.yarn/__virtual__/eslint-config-prettier-virtual-764883ddf3/0/cache/eslint-config-prettier-npm-8.3.0-f540cd1f53-df4cea3032.zip/node_modules/eslint-config-prettier/", "packageDependencies": [ - ["eslint-config-prettier", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.3.0"], + ["eslint-config-prettier", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.3.0"], ["@types/eslint", null], ["eslint", "npm:7.32.0"] ], @@ -5813,10 +5813,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:2.25.4", { - "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-8fe393dfd1/0/cache/eslint-plugin-import-npm-2.25.4-cd0cf8b05b-0af24f5c7c.zip/node_modules/eslint-plugin-import/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:2.25.4", { + "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-faa9cd28c3/0/cache/eslint-plugin-import-npm-2.25.4-cd0cf8b05b-0af24f5c7c.zip/node_modules/eslint-plugin-import/", "packageDependencies": [ - ["eslint-plugin-import", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:2.25.4"], + ["eslint-plugin-import", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:2.25.4"], ["@types/eslint", null], ["array-includes", "npm:3.1.4"], ["array.prototype.flat", "npm:1.2.5"], @@ -5848,15 +5848,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:3.4.1", { - "packageLocation": "./.yarn/__virtual__/eslint-plugin-prettier-virtual-6fa307d52c/0/cache/eslint-plugin-prettier-npm-3.4.1-c0bf5af22f-fa6a89f0d7.zip/node_modules/eslint-plugin-prettier/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:3.4.1", { + "packageLocation": "./.yarn/__virtual__/eslint-plugin-prettier-virtual-7dce0046c9/0/cache/eslint-plugin-prettier-npm-3.4.1-c0bf5af22f-fa6a89f0d7.zip/node_modules/eslint-plugin-prettier/", "packageDependencies": [ - ["eslint-plugin-prettier", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:3.4.1"], + ["eslint-plugin-prettier", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:3.4.1"], ["@types/eslint", null], ["@types/eslint-config-prettier", null], ["@types/prettier", null], ["eslint", "npm:7.32.0"], - ["eslint-config-prettier", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.3.0"], + ["eslint-config-prettier", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.3.0"], ["prettier", "npm:2.5.1"], ["prettier-linter-helpers", "npm:1.0.0"] ], @@ -5879,10 +5879,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:7.0.0", { - "packageLocation": "./.yarn/__virtual__/eslint-plugin-simple-import-sort-virtual-4d37ffd060/0/cache/eslint-plugin-simple-import-sort-npm-7.0.0-45d08a8927-6aacb7179c.zip/node_modules/eslint-plugin-simple-import-sort/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:7.0.0", { + "packageLocation": "./.yarn/__virtual__/eslint-plugin-simple-import-sort-virtual-2dfcf368fb/0/cache/eslint-plugin-simple-import-sort-npm-7.0.0-45d08a8927-6aacb7179c.zip/node_modules/eslint-plugin-simple-import-sort/", "packageDependencies": [ - ["eslint-plugin-simple-import-sort", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:7.0.0"], + ["eslint-plugin-simple-import-sort", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:7.0.0"], ["@types/eslint", null], ["eslint", "npm:7.32.0"] ], @@ -5920,10 +5920,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:3.0.0", { - "packageLocation": "./.yarn/__virtual__/eslint-utils-virtual-2a28615e30/0/cache/eslint-utils-npm-3.0.0-630b3a4013-0668fe02f5.zip/node_modules/eslint-utils/", + ["virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:3.0.0", { + "packageLocation": "./.yarn/__virtual__/eslint-utils-virtual-a9a4e6a9bd/0/cache/eslint-utils-npm-3.0.0-630b3a4013-0668fe02f5.zip/node_modules/eslint-utils/", "packageDependencies": [ - ["eslint-utils", "virtual:1ae6935934342b2759698be199e8e51eceb565e462c89d5e266ca92ed0a10fbb2d5bb47fa8246af7c9951391a5da45d6a9e1d587dfb61f804624e5a873ee2403#npm:3.0.0"], + ["eslint-utils", "virtual:a27dec2b265632ec584621a69711d5766c9956de832dab9b4b0809295cc90bfe3c2c18e79490f4b5897a9a6758f8962231c8ba70f9327fe0a0ae1a5b7ff84171#npm:3.0.0"], ["@types/eslint", null], ["eslint", "npm:7.32.0"], ["eslint-visitor-keys", "npm:2.1.0"] @@ -6235,14 +6235,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "npm:0.30.1"], ["@cosmjs/proto-signing", "npm:0.30.1"], ["@cosmjs/stargate", "npm:0.30.1"], - ["@lbmjs/finschia", "workspace:packages/finschia"], + ["@finschia/finschia", "workspace:packages/finschia"], ["eslint", "npm:7.32.0"], ["karma-chrome-launcher", "npm:3.1.0"], ["karma-jasmine", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:4.0.1"], ["karma-spec-reporter", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:0.0.33"], ["karma-typescript", "virtual:9a842b4a7a5fe4769a842c3ebbc18cbcd9f506570e36ba1f80ab66228de0e7586728fd2deea163cd319ef38230dc6abdadaa32d0de113707b52a27c7a29fc3a0#npm:5.5.3"], ["prettier", "npm:2.5.1"], - ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], + ["ts-node", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2"], ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "linkType": "SOFT", @@ -7519,10 +7519,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.0.1", { - "packageLocation": "./.yarn/__virtual__/karma-jasmine-virtual-2155e46abe/0/cache/karma-jasmine-npm-4.0.1-47b681c3e0-28337c8294.zip/node_modules/karma-jasmine/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.0.1", { + "packageLocation": "./.yarn/__virtual__/karma-jasmine-virtual-4c8ff5028d/0/cache/karma-jasmine-npm-4.0.1-47b681c3e0-28337c8294.zip/node_modules/karma-jasmine/", "packageDependencies": [ - ["karma-jasmine", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.0.1"], + ["karma-jasmine", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.0.1"], ["@types/karma", null], ["jasmine-core", "npm:3.99.0"], ["karma", "npm:6.3.17"] @@ -7556,16 +7556,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.7.0", { - "packageLocation": "./.yarn/__virtual__/karma-jasmine-html-reporter-virtual-c5ce27c1eb/0/cache/karma-jasmine-html-reporter-npm-1.7.0-87aa5c7cce-926c25858e.zip/node_modules/karma-jasmine-html-reporter/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.7.0", { + "packageLocation": "./.yarn/__virtual__/karma-jasmine-html-reporter-virtual-0545b21ce6/0/cache/karma-jasmine-html-reporter-npm-1.7.0-87aa5c7cce-926c25858e.zip/node_modules/karma-jasmine-html-reporter/", "packageDependencies": [ - ["karma-jasmine-html-reporter", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:1.7.0"], + ["karma-jasmine-html-reporter", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:1.7.0"], ["@types/jasmine-core", null], ["@types/karma", null], ["@types/karma-jasmine", "npm:4.0.2"], ["jasmine-core", null], ["karma", "npm:6.3.17"], - ["karma-jasmine", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.0.1"] + ["karma-jasmine", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.0.1"] ], "packagePeers": [ "@types/jasmine-core", @@ -7586,10 +7586,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.0.33", { - "packageLocation": "./.yarn/__virtual__/karma-spec-reporter-virtual-ea4ff1c4f1/0/cache/karma-spec-reporter-npm-0.0.33-5154ef57e1-6218d49ca4.zip/node_modules/karma-spec-reporter/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.0.33", { + "packageLocation": "./.yarn/__virtual__/karma-spec-reporter-virtual-43cc66c093/0/cache/karma-spec-reporter-npm-0.0.33-5154ef57e1-6218d49ca4.zip/node_modules/karma-spec-reporter/", "packageDependencies": [ - ["karma-spec-reporter", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.0.33"], + ["karma-spec-reporter", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.0.33"], ["@types/karma", null], ["colors", "npm:1.4.0"], ["karma", "npm:6.3.17"] @@ -7623,10 +7623,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.5.3", { - "packageLocation": "./.yarn/__virtual__/karma-typescript-virtual-fa68df31aa/0/cache/karma-typescript-npm-5.5.3-0c7472805b-0474336d20.zip/node_modules/karma-typescript/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.5.3", { + "packageLocation": "./.yarn/__virtual__/karma-typescript-virtual-49f59d9020/0/cache/karma-typescript-npm-5.5.3-0c7472805b-0474336d20.zip/node_modules/karma-typescript/", "packageDependencies": [ - ["karma-typescript", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.5.3"], + ["karma-typescript", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.5.3"], ["@types/karma", null], ["@types/typescript", null], ["acorn", "npm:8.7.0"], @@ -9734,10 +9734,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:cf464f9fb96f3c8ad828d748dd75c060c0488468f1eb07eb8609bfcd40533b3b7324fcae4f5c9dbf7db1d4b359a780e3c5549b3660564de106f962f845fe73d7#npm:5.10.0", { - "packageLocation": "./.yarn/__virtual__/terser-virtual-3d7761dfc4/0/cache/terser-npm-5.10.0-1690d2acb8-1080faeb6d.zip/node_modules/terser/", + ["virtual:e9edcbfbc067b15b1aff9306cae4fe30821ff634eb9a5994950ed156e322f11e870ce62faf7473b5240e4beaa6b4b791200a836fb0c4a2cf419f6eb32c37bcdd#npm:5.10.0", { + "packageLocation": "./.yarn/__virtual__/terser-virtual-1c5f5340e8/0/cache/terser-npm-5.10.0-1690d2acb8-1080faeb6d.zip/node_modules/terser/", "packageDependencies": [ - ["terser", "virtual:cf464f9fb96f3c8ad828d748dd75c060c0488468f1eb07eb8609bfcd40533b3b7324fcae4f5c9dbf7db1d4b359a780e3c5549b3660564de106f962f845fe73d7#npm:5.10.0"], + ["terser", "virtual:e9edcbfbc067b15b1aff9306cae4fe30821ff634eb9a5994950ed156e322f11e870ce62faf7473b5240e4beaa6b4b791200a836fb0c4a2cf419f6eb32c37bcdd#npm:5.10.0"], ["@types/acorn", null], ["acorn", null], ["commander", "npm:2.20.3"], @@ -9759,10 +9759,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:5.3.1", { - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-cf464f9fb9/0/cache/terser-webpack-plugin-npm-5.3.1-0c0596f996-1b808fd4f5.zip/node_modules/terser-webpack-plugin/", + ["virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:5.3.1", { + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-e9edcbfbc0/0/cache/terser-webpack-plugin-npm-5.3.1-0c0596f996-1b808fd4f5.zip/node_modules/terser-webpack-plugin/", "packageDependencies": [ - ["terser-webpack-plugin", "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:5.3.1"], + ["terser-webpack-plugin", "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:5.3.1"], ["@swc/core", null], ["@types/esbuild", null], ["@types/swc__core", null], @@ -9773,9 +9773,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["schema-utils", "npm:3.1.1"], ["serialize-javascript", "npm:6.0.0"], ["source-map", "npm:0.6.1"], - ["terser", "virtual:cf464f9fb96f3c8ad828d748dd75c060c0488468f1eb07eb8609bfcd40533b3b7324fcae4f5c9dbf7db1d4b359a780e3c5549b3660564de106f962f845fe73d7#npm:5.10.0"], + ["terser", "virtual:e9edcbfbc067b15b1aff9306cae4fe30821ff634eb9a5994950ed156e322f11e870ce62faf7473b5240e4beaa6b4b791200a836fb0c4a2cf419f6eb32c37bcdd#npm:5.10.0"], ["uglify-js", null], - ["webpack", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0"] + ["webpack", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0"] ], "packagePeers": [ "@swc/core", @@ -9867,10 +9867,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2", { - "packageLocation": "./.yarn/__virtual__/ts-node-virtual-60af956ff9/0/cache/ts-node-npm-8.10.2-b4fe5a56b0-480adb076f.zip/node_modules/ts-node/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2", { + "packageLocation": "./.yarn/__virtual__/ts-node-virtual-bfb0ea4956/0/cache/ts-node-npm-8.10.2-b4fe5a56b0-480adb076f.zip/node_modules/ts-node/", "packageDependencies": [ - ["ts-node", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:8.10.2"], + ["ts-node", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:8.10.2"], ["@types/typescript", null], ["arg", "npm:4.1.3"], ["diff", "npm:4.0.2"], @@ -9916,13 +9916,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:41025fe9c00ae4a5f15b3c6c2b659d93e0c158b8843d4f2d1951fa0695b862123db02b80e8d0dd19ff8be5d9c5424ad53dc4b89a59c9faa4e564cc398d3a6b13#npm:3.21.0", { - "packageLocation": "./.yarn/__virtual__/tsutils-virtual-8b4fdb1a39/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/", + ["virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0", { + "packageLocation": "./.yarn/__virtual__/tsutils-virtual-54e68ff8f6/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/", "packageDependencies": [ - ["tsutils", "virtual:41025fe9c00ae4a5f15b3c6c2b659d93e0c158b8843d4f2d1951fa0695b862123db02b80e8d0dd19ff8be5d9c5424ad53dc4b89a59c9faa4e564cc398d3a6b13#npm:3.21.0"], + ["tsutils", "virtual:617bb9366b898a69ad3a69394777625610735a37713f49a144d71061b5ae08f3c9b4b1e836781f69874e173f001c0dd6d0d3251163e55a400e3cef50fe891a6f#npm:3.21.0"], ["@types/typescript", null], ["tslib", "npm:1.14.1"], - ["typescript", null] + ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] ], "packagePeers": [ "@types/typescript", @@ -9930,13 +9930,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "HARD", }], - ["virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0", { - "packageLocation": "./.yarn/__virtual__/tsutils-virtual-a25c2305ad/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/", + ["virtual:98bd51b1752fb1a7d8d5927176d8f9c7b6f8a5a4414fafb7bc2d1be74b811671bf877fd54621f2eb6318c67dd9ca501d0268003ba28726bf3e6f049a820d4d78#npm:3.21.0", { + "packageLocation": "./.yarn/__virtual__/tsutils-virtual-af0afbb142/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/", "packageDependencies": [ - ["tsutils", "virtual:660abb215c1eda4e99c4da30382f71331bc8fb6aad8793433b6343fc7a19c20b5c8b338d141be07b605a693063c71542a466511b79cbe150755dc857530d603f#npm:3.21.0"], + ["tsutils", "virtual:98bd51b1752fb1a7d8d5927176d8f9c7b6f8a5a4414fafb7bc2d1be74b811671bf877fd54621f2eb6318c67dd9ca501d0268003ba28726bf3e6f049a820d4d78#npm:3.21.0"], ["@types/typescript", null], ["tslib", "npm:1.14.1"], - ["typescript", "patch:typescript@npm%3A4.4.4#~builtin::version=4.4.4&hash=ddd1e8"] + ["typescript", null] ], "packagePeers": [ "@types/typescript", @@ -10009,10 +10009,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.22.11", { - "packageLocation": "./.yarn/__virtual__/typedoc-virtual-f87260cfc1/0/cache/typedoc-npm-0.22.11-aa5ea7b88b-7d29f4b771.zip/node_modules/typedoc/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.22.11", { + "packageLocation": "./.yarn/__virtual__/typedoc-virtual-6fe478fc80/0/cache/typedoc-npm-0.22.11-aa5ea7b88b-7d29f4b771.zip/node_modules/typedoc/", "packageDependencies": [ - ["typedoc", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:0.22.11"], + ["typedoc", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:0.22.11"], ["@types/typescript", null], ["glob", "npm:7.2.0"], ["lunr", "npm:2.3.9"], @@ -10243,10 +10243,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0", { - "packageLocation": "./.yarn/__virtual__/webpack-virtual-71315d65b1/0/cache/webpack-npm-5.68.0-f34609ad11-ac6efd861a.zip/node_modules/webpack/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0", { + "packageLocation": "./.yarn/__virtual__/webpack-virtual-57c9142c20/0/cache/webpack-npm-5.68.0-f34609ad11-ac6efd861a.zip/node_modules/webpack/", "packageDependencies": [ - ["webpack", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0"], + ["webpack", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0"], ["@types/eslint-scope", "npm:3.7.3"], ["@types/estree", "npm:0.0.50"], ["@types/webpack-cli", null], @@ -10254,7 +10254,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@webassemblyjs/wasm-edit", "npm:1.11.1"], ["@webassemblyjs/wasm-parser", "npm:1.11.1"], ["acorn", "npm:8.7.0"], - ["acorn-import-assertions", "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:1.8.0"], + ["acorn-import-assertions", "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:1.8.0"], ["browserslist", "npm:4.19.1"], ["chrome-trace-event", "npm:1.0.3"], ["enhanced-resolve", "npm:5.9.0"], @@ -10269,9 +10269,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["neo-async", "npm:2.6.2"], ["schema-utils", "npm:3.1.1"], ["tapable", "npm:2.2.1"], - ["terser-webpack-plugin", "virtual:71315d65b1bb717c381f9295495352636af6cf963b063a7e83526da86d6f194d6341c9a1a5abe8ccb0cedc1c137500206d03f7b9d7960a7e796292f3438ce996#npm:5.3.1"], + ["terser-webpack-plugin", "virtual:57c9142c206f55b8d204382087550b0cfba47c2ddac8ddcbcf8006f3f481a6bd9df6311e00f00243f4456d715d37c744eb5e0ea2b559aba840aa5379d3c46fa0#npm:5.3.1"], ["watchpack", "npm:2.3.1"], - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"], + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"], ["webpack-sources", "npm:3.2.3"] ], "packagePeers": [ @@ -10289,21 +10289,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ], "linkType": "SOFT", }], - ["virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2", { - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-f6b229ce65/0/cache/webpack-cli-npm-4.9.2-5e7d77ef6f-ffb4c5d53a.zip/node_modules/webpack-cli/", + ["virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2", { + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-abc542cfc6/0/cache/webpack-cli-npm-4.9.2-5e7d77ef6f-ffb4c5d53a.zip/node_modules/webpack-cli/", "packageDependencies": [ - ["webpack-cli", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:4.9.2"], + ["webpack-cli", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:4.9.2"], ["@discoveryjs/json-ext", "npm:0.5.6"], ["@types/webpack", null], ["@types/webpack-bundle-analyzer", null], ["@types/webpack-cli__generators", null], ["@types/webpack-cli__migrate", null], ["@types/webpack-dev-server", null], - ["@webpack-cli/configtest", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.1.1"], + ["@webpack-cli/configtest", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.1.1"], ["@webpack-cli/generators", null], - ["@webpack-cli/info", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.4.1"], + ["@webpack-cli/info", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.4.1"], ["@webpack-cli/migrate", null], - ["@webpack-cli/serve", "virtual:f6b229ce6542e610f1ece32df3b38615370a33a65368c09e8ed35198859df7978d11316dec50072fe62c8622947824b1428d2ebb4cc3a6012673efefae243437#npm:1.6.1"], + ["@webpack-cli/serve", "virtual:abc542cfc63b82e943273c39b3924a21cdbd85ca19fa530e5cb01890306468357aacdb995159dcf9ff700abffc47f1aa697416114374d5b629ebacee5be97aff#npm:1.6.1"], ["colorette", "npm:2.0.16"], ["commander", "npm:7.2.0"], ["execa", "npm:5.1.1"], @@ -10311,7 +10311,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["import-local", "npm:3.1.0"], ["interpret", "npm:2.2.0"], ["rechoir", "npm:0.7.1"], - ["webpack", "virtual:7b7a30ab09c232808f75d8deefc2be1f787c4d994bf0447ebbc0120f713df9b186b49db25d8d4a325f09a8c21d3026240b3241d151187e257eff7792b66c65e7#npm:5.68.0"], + ["webpack", "virtual:3f938e8b6d008ac7c4f429c55612c9826a29a057123d1f7e033c115c7e4faef2fa6717142b4eb614c9c2ce68e622b8f21afa701c01f12808c4bc214016991f99#npm:5.68.0"], ["webpack-bundle-analyzer", null], ["webpack-dev-server", null], ["webpack-merge", "npm:5.8.0"] diff --git a/HACKING.md b/HACKING.md index 1fd27192..630ce520 100644 --- a/HACKING.md +++ b/HACKING.md @@ -48,12 +48,12 @@ yarn test To run the entire test suite, you need to run some local blockchain to test against. We use [finschia](https://github.com/line/finschia) for both CosmWasm -tests and as a generic lbm SDK 0.47 blockchain. +tests and as a generic finschia v1.0.0-rc0 blockchain. ```sh # Start finschia -./scripts/lbm/start.sh -./scripts/lbm/init.sh +./scripts/finschia/start.sh +./scripts/finschia/init.sh export SIMAPP_ENABLED=1 # now more tests are running that were marked as "pending" before @@ -61,7 +61,7 @@ yarn test # And at the end of the day unset SIMAPP_ENABLED -./scripts/lbm/stop.sh +./scripts/finschia/stop.sh ``` ## Sanity diff --git a/README.md b/README.md index 1d2f247c..730f77e2 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,8 @@ -finschia-js is the Swiss Army knife to power JavaScript based client solutions -ranging from Web apps/explorers over browser extensions to server-side clients -like faucets/scrapers in the Cosmos ecosystem. +finschia-js is useful tool to power JavaScript based client solutions ranging +from Web apps/explorers over browser extensions to server-side clients. ## Packages @@ -17,9 +16,9 @@ finschia-js is a library that consists of many smaller npm packages within the [@finschia namespace](https://www.npmjs.com/org/finschia), a so called monorepo. Here are some of them to get an idea: -| Package | Description | Latest | -| --------------------------------------- | ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | -| [@finschia/finschia](packages/finschia) | A client library for the Finschia SDK 0.43+ | [![npm version](https://img.shields.io/npm/v/@finschia/finschia.svg)](https://www.npmjs.com/package/@finschia/finschia) | +| Package | Description | Latest | +| --------------------------------------- | --------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- | +| [@finschia/finschia](packages/finschia) | A client library for the Finschia v1.0.0-rc0+ | [![npm version](https://img.shields.io/npm/v/@finschia/finschia.svg)](https://www.npmjs.com/package/@finschia/finschia) | ## Supported JS environments @@ -43,7 +42,7 @@ With WebPack 5, you have to be explicit about the usage of Node.js types and modules that were simply replaced with re-implementations for browsers in Webpack 4. -Configs for v0.4.0-rc0 and later: +Configs for v1.0.0 and later: ```js module.exports = [ @@ -70,38 +69,6 @@ module.exports = [ ]; ``` -Configs for finschia-js < v0.4.0-rc0 - -```js -module.exports = [ - { - // ... - plugins: [ - ..., - new webpack.ProvidePlugin({ - Buffer: ["buffer", "Buffer"], - }), - ], - // ... - resolve: { - fallback: { - buffer: false, - crypto: false, - events: false, - path: false, - stream: require.resolve("stream-browserify"), - string_decoder: false, - }, - }, - }, -]; -``` - -## Roadmap - -We use [release milestones](https://github.com/cosmos/cosmjs/milestones). For -higher level roadmap discussion please reach out to the team. - ## Get in touch The finschia-js development team is happy to get in touch with you for all diff --git a/package.json b/package.json index cf495126..68fda53c 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "@cosmjs/encoding": "^0.30.1", "@cosmjs/proto-signing": "^0.30.1", "@cosmjs/stargate": "^0.30.1", - "@lbmjs/finschia": "workspace:packages/finschia", + "@finschia/finschia": "workspace:packages/finschia", "eslint": "^7.5", "karma-chrome-launcher": "^3.1.0", "karma-jasmine": "^4.0.1", diff --git a/packages/finschia/package.json b/packages/finschia/package.json index 149074d4..289cc758 100644 --- a/packages/finschia/package.json +++ b/packages/finschia/package.json @@ -1,5 +1,5 @@ { - "name": "@lbmjs/finschia", + "name": "@finschia/finschia", "version": "0.8.0-rc1", "description": "Utilities for LBM SDK 0.47.0-rc2", "contributors": [ diff --git a/scripts/lbm/README.md b/scripts/finschia/README.md similarity index 51% rename from scripts/lbm/README.md rename to scripts/finschia/README.md index f5a07b97..e5cbb951 100644 --- a/scripts/lbm/README.md +++ b/scripts/finschia/README.md @@ -5,14 +5,15 @@ Run the following: ```shell -cd scripts/lbm +cd scripts/finschia ./start.sh ``` ## How to change and generate default genesis and configurations -1. change the docker image you want in the `./scripts/lbm/env` file. -2. cd `./scripts/lbm/template`. +1. change the docker image you want in the `./scripts/finschia/env` file. +2. cd `./scripts/finschia/template`. 3. execute `setup.sh docker`. -4. check the difference of `app.toml`, `client.toml`, `config.toml` and `genesis.json` in the `./script/lbm/template/.lbm/config` directory and select the code you want. - +4. check the difference of `app.toml`, `client.toml`, `config.toml` and + `genesis.json` in the `./script/finschia/template/.lbm/config` directory and + select the code you want. diff --git a/scripts/lbm/contracts/checksums.sha256 b/scripts/finschia/contracts/checksums.sha256 similarity index 100% rename from scripts/lbm/contracts/checksums.sha256 rename to scripts/finschia/contracts/checksums.sha256 diff --git a/scripts/lbm/contracts/download.sh b/scripts/finschia/contracts/download.sh similarity index 100% rename from scripts/lbm/contracts/download.sh rename to scripts/finschia/contracts/download.sh diff --git a/scripts/lbm/contracts/hackatom.wasm b/scripts/finschia/contracts/hackatom.wasm similarity index 100% rename from scripts/lbm/contracts/hackatom.wasm rename to scripts/finschia/contracts/hackatom.wasm diff --git a/scripts/lbm/contracts/ibc_reflect.wasm b/scripts/finschia/contracts/ibc_reflect.wasm similarity index 100% rename from scripts/lbm/contracts/ibc_reflect.wasm rename to scripts/finschia/contracts/ibc_reflect.wasm diff --git a/scripts/lbm/deploy_hackatom.js b/scripts/finschia/deploy_hackatom.js similarity index 100% rename from scripts/lbm/deploy_hackatom.js rename to scripts/finschia/deploy_hackatom.js diff --git a/scripts/lbm/deploy_ibc_reflect.js b/scripts/finschia/deploy_ibc_reflect.js similarity index 100% rename from scripts/lbm/deploy_ibc_reflect.js rename to scripts/finschia/deploy_ibc_reflect.js diff --git a/scripts/lbm/env b/scripts/finschia/env similarity index 100% rename from scripts/lbm/env rename to scripts/finschia/env diff --git a/scripts/lbm/init.sh b/scripts/finschia/init.sh similarity index 100% rename from scripts/lbm/init.sh rename to scripts/finschia/init.sh diff --git a/scripts/lbm/start.sh b/scripts/finschia/start.sh similarity index 97% rename from scripts/lbm/start.sh rename to scripts/finschia/start.sh index 877cca5f..5173ebff 100755 --- a/scripts/lbm/start.sh +++ b/scripts/finschia/start.sh @@ -31,7 +31,7 @@ docker run --rm \ --mount type=bind,source="$SCRIPT_DIR/template",target=/template \ --mount type=volume,source=lbmapp_data,target=/root \ "$REPOSITORY:$VERSION" \ - /template/run_lbm.sh \ + /template/run_finschia.sh \ >"$LBM_LOGFILE" 2>&1 & echo "lbm running on http://localhost:$TENDERMINT_PORT_HOST and logging into $LBM_LOGFILE" diff --git a/scripts/lbm/start_local.sh b/scripts/finschia/start_local.sh similarity index 100% rename from scripts/lbm/start_local.sh rename to scripts/finschia/start_local.sh diff --git a/scripts/lbm/stop.sh b/scripts/finschia/stop.sh similarity index 90% rename from scripts/lbm/stop.sh rename to scripts/finschia/stop.sh index fe1be7b8..a72f66f8 100755 --- a/scripts/lbm/stop.sh +++ b/scripts/finschia/stop.sh @@ -8,6 +8,6 @@ SCRIPT_DIR="$(realpath "$(dirname "$0")")" source "$SCRIPT_DIR"/env if [ "$( docker container inspect -f '{{.State.Running}}' $CONTAINER_NAME )" == "true" ]; then - echo "Killing lbm container..." + echo "Killing finschia container..." docker container kill "$CONTAINER_NAME" fi diff --git a/scripts/lbm/template/.lbm/config/app.toml b/scripts/finschia/template/.lbm/config/app.toml similarity index 100% rename from scripts/lbm/template/.lbm/config/app.toml rename to scripts/finschia/template/.lbm/config/app.toml diff --git a/scripts/lbm/template/.lbm/config/client.toml b/scripts/finschia/template/.lbm/config/client.toml similarity index 100% rename from scripts/lbm/template/.lbm/config/client.toml rename to scripts/finschia/template/.lbm/config/client.toml diff --git a/scripts/lbm/template/.lbm/config/config.toml b/scripts/finschia/template/.lbm/config/config.toml similarity index 100% rename from scripts/lbm/template/.lbm/config/config.toml rename to scripts/finschia/template/.lbm/config/config.toml diff --git a/scripts/lbm/template/.lbm/config/genesis.json b/scripts/finschia/template/.lbm/config/genesis.json similarity index 100% rename from scripts/lbm/template/.lbm/config/genesis.json rename to scripts/finschia/template/.lbm/config/genesis.json diff --git a/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json b/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json new file mode 100644 index 00000000..fece9740 --- /dev/null +++ b/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"simd-testing","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"link1twsfmuj28ndph54k4nw8crwu8h9c8mh3rtx705","validator_address":"linkvaloper1twsfmuj28ndph54k4nw8crwu8h9c8mh33lyrp8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nzBXFfcFp/CnF3Eb42/3SXoPT/EvEiLr2gwleHuS9I4="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"e1492cc468ada83add5486867ce12ae6ab25aa74@172.17.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AsVtdRaoc8AsTmzIvRAKWSYgHXf97/HI4ls2wENFk9C8"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["2eEHU3CC6voIiA2Ry1zzqQjD9gHGgfUbjSIwB6d25ClQlwhe8XcM3oDGnn7bodyGwaPRItnnDHq3V7faxu9bsw=="]} diff --git a/scripts/lbm/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json b/scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json similarity index 100% rename from scripts/lbm/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json rename to scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json diff --git a/scripts/lbm/template/.lbm/config/node_key.json b/scripts/finschia/template/.lbm/config/node_key.json similarity index 100% rename from scripts/lbm/template/.lbm/config/node_key.json rename to scripts/finschia/template/.lbm/config/node_key.json diff --git a/scripts/lbm/template/.lbm/config/priv_validator_key.json b/scripts/finschia/template/.lbm/config/priv_validator_key.json similarity index 100% rename from scripts/lbm/template/.lbm/config/priv_validator_key.json rename to scripts/finschia/template/.lbm/config/priv_validator_key.json diff --git a/scripts/lbm/template/.lbm/data/priv_validator_state.json b/scripts/finschia/template/.lbm/data/priv_validator_state.json similarity index 100% rename from scripts/lbm/template/.lbm/data/priv_validator_state.json rename to scripts/finschia/template/.lbm/data/priv_validator_state.json diff --git a/scripts/lbm/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address b/scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address rename to scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address diff --git a/scripts/lbm/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address b/scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address rename to scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address diff --git a/scripts/lbm/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address b/scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address rename to scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address diff --git a/scripts/lbm/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address b/scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address rename to scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address diff --git a/scripts/lbm/template/.lbm/keyring-test/account0.info b/scripts/finschia/template/.lbm/keyring-test/account0.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account0.info rename to scripts/finschia/template/.lbm/keyring-test/account0.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account1.info b/scripts/finschia/template/.lbm/keyring-test/account1.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account1.info rename to scripts/finschia/template/.lbm/keyring-test/account1.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account2.info b/scripts/finschia/template/.lbm/keyring-test/account2.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account2.info rename to scripts/finschia/template/.lbm/keyring-test/account2.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account3.info b/scripts/finschia/template/.lbm/keyring-test/account3.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account3.info rename to scripts/finschia/template/.lbm/keyring-test/account3.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account4.info b/scripts/finschia/template/.lbm/keyring-test/account4.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account4.info rename to scripts/finschia/template/.lbm/keyring-test/account4.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account5.info b/scripts/finschia/template/.lbm/keyring-test/account5.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account5.info rename to scripts/finschia/template/.lbm/keyring-test/account5.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account6.info b/scripts/finschia/template/.lbm/keyring-test/account6.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account6.info rename to scripts/finschia/template/.lbm/keyring-test/account6.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account7.info b/scripts/finschia/template/.lbm/keyring-test/account7.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account7.info rename to scripts/finschia/template/.lbm/keyring-test/account7.info diff --git a/scripts/lbm/template/.lbm/keyring-test/account8.info b/scripts/finschia/template/.lbm/keyring-test/account8.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/account8.info rename to scripts/finschia/template/.lbm/keyring-test/account8.info diff --git a/scripts/lbm/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address b/scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address rename to scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address diff --git a/scripts/lbm/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address b/scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address rename to scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address diff --git a/scripts/lbm/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address b/scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address rename to scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address diff --git a/scripts/lbm/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address b/scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address rename to scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address diff --git a/scripts/lbm/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address b/scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address rename to scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address diff --git a/scripts/lbm/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address b/scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address rename to scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address diff --git a/scripts/lbm/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address b/scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address rename to scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address diff --git a/scripts/lbm/template/.lbm/keyring-test/multisig0.info b/scripts/finschia/template/.lbm/keyring-test/multisig0.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/multisig0.info rename to scripts/finschia/template/.lbm/keyring-test/multisig0.info diff --git a/scripts/lbm/template/.lbm/keyring-test/validator0.info b/scripts/finschia/template/.lbm/keyring-test/validator0.info similarity index 100% rename from scripts/lbm/template/.lbm/keyring-test/validator0.info rename to scripts/finschia/template/.lbm/keyring-test/validator0.info diff --git a/scripts/lbm/template/run_lbm.sh b/scripts/finschia/template/run_finschia.sh similarity index 100% rename from scripts/lbm/template/run_lbm.sh rename to scripts/finschia/template/run_finschia.sh diff --git a/scripts/lbm/template/setup.sh b/scripts/finschia/template/setup.sh similarity index 100% rename from scripts/lbm/template/setup.sh rename to scripts/finschia/template/setup.sh diff --git a/yarn.lock b/yarn.lock index 5e3e455e..38cd366f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -471,6 +471,66 @@ __metadata: languageName: node linkType: hard +"@finschia/finschia@workspace:packages/finschia": + version: 0.0.0-use.local + resolution: "@finschia/finschia@workspace:packages/finschia" + dependencies: + "@cosmjs/amino": ^0.30.1 + "@cosmjs/cosmwasm-stargate": ^0.30.1 + "@cosmjs/crypto": ^0.30.1 + "@cosmjs/encoding": ^0.30.1 + "@cosmjs/math": ^0.30.1 + "@cosmjs/proto-signing": ^0.30.1 + "@cosmjs/stargate": ^0.30.1 + "@cosmjs/tendermint-rpc": ^0.30.1 + "@cosmjs/utils": ^0.30.1 + "@istanbuljs/nyc-config-typescript": ^1.0.1 + "@types/eslint-plugin-prettier": ^3 + "@types/jasmine": ^3.8 + "@types/karma-firefox-launcher": ^2 + "@types/karma-jasmine": ^4 + "@types/karma-jasmine-html-reporter": ^1 + "@types/long": ^4.0.1 + "@types/node": ^15.0.1 + "@types/pako": ^1.0.1 + "@typescript-eslint/eslint-plugin": ^5.13.0 + "@typescript-eslint/parser": ^5.13.0 + cosmjs-types: ^0.7.1 + eslint: ^7.5 + eslint-config-prettier: ^8.3.0 + eslint-import-resolver-node: ^0.3.4 + eslint-plugin-import: ^2.22.1 + eslint-plugin-prettier: ^3.4.0 + eslint-plugin-simple-import-sort: ^7.0.0 + esm: ^3.2.25 + glob: ^7.1.6 + jasmine: ^3.99 + jasmine-spec-reporter: ^6 + karma: ^6.3.17 + karma-chrome-launcher: ^3.1.0 + karma-firefox-launcher: ^2.1.0 + karma-jasmine: ^4.0.1 + karma-jasmine-html-reporter: ^1.5.4 + karma-spec-reporter: ^0.0.33 + karma-typescript: ^5.5.3 + lbmjs-types: ^1.0.0-rc2 + long: ^4.0.0 + nyc: ^15.1.0 + pako: ^2.0.2 + prettier: ^2.4.1 + protobufjs: ~6.10.2 + readonly-date: ^1.0.0 + ses: ^0.11.0 + source-map-support: ^0.5.19 + ts-node: ^8 + typedoc: ^0.22 + typescript: ~4.4 + webpack: ^5.32.0 + webpack-cli: ^4.6.0 + xstream: ^11.14.0 + languageName: unknown + linkType: soft + "@gar/promisify@npm:^1.0.1": version: 1.1.2 resolution: "@gar/promisify@npm:1.1.2" @@ -551,66 +611,6 @@ __metadata: languageName: node linkType: hard -"@lbmjs/finschia@workspace:packages/finschia": - version: 0.0.0-use.local - resolution: "@lbmjs/finschia@workspace:packages/finschia" - dependencies: - "@cosmjs/amino": ^0.30.1 - "@cosmjs/cosmwasm-stargate": ^0.30.1 - "@cosmjs/crypto": ^0.30.1 - "@cosmjs/encoding": ^0.30.1 - "@cosmjs/math": ^0.30.1 - "@cosmjs/proto-signing": ^0.30.1 - "@cosmjs/stargate": ^0.30.1 - "@cosmjs/tendermint-rpc": ^0.30.1 - "@cosmjs/utils": ^0.30.1 - "@istanbuljs/nyc-config-typescript": ^1.0.1 - "@types/eslint-plugin-prettier": ^3 - "@types/jasmine": ^3.8 - "@types/karma-firefox-launcher": ^2 - "@types/karma-jasmine": ^4 - "@types/karma-jasmine-html-reporter": ^1 - "@types/long": ^4.0.1 - "@types/node": ^15.0.1 - "@types/pako": ^1.0.1 - "@typescript-eslint/eslint-plugin": ^5.13.0 - "@typescript-eslint/parser": ^5.13.0 - cosmjs-types: ^0.7.1 - eslint: ^7.5 - eslint-config-prettier: ^8.3.0 - eslint-import-resolver-node: ^0.3.4 - eslint-plugin-import: ^2.22.1 - eslint-plugin-prettier: ^3.4.0 - eslint-plugin-simple-import-sort: ^7.0.0 - esm: ^3.2.25 - glob: ^7.1.6 - jasmine: ^3.99 - jasmine-spec-reporter: ^6 - karma: ^6.3.17 - karma-chrome-launcher: ^3.1.0 - karma-firefox-launcher: ^2.1.0 - karma-jasmine: ^4.0.1 - karma-jasmine-html-reporter: ^1.5.4 - karma-spec-reporter: ^0.0.33 - karma-typescript: ^5.5.3 - lbmjs-types: ^1.0.0-rc2 - long: ^4.0.0 - nyc: ^15.1.0 - pako: ^2.0.2 - prettier: ^2.4.1 - protobufjs: ~6.10.2 - readonly-date: ^1.0.0 - ses: ^0.11.0 - source-map-support: ^0.5.19 - ts-node: ^8 - typedoc: ^0.22 - typescript: ~4.4 - webpack: ^5.32.0 - webpack-cli: ^4.6.0 - xstream: ^11.14.0 - languageName: unknown - linkType: soft - "@noble/hashes@npm:^1, @noble/hashes@npm:^1.0.0": version: 1.0.0 resolution: "@noble/hashes@npm:1.0.0" @@ -3010,7 +3010,7 @@ __metadata: "@cosmjs/encoding": ^0.30.1 "@cosmjs/proto-signing": ^0.30.1 "@cosmjs/stargate": ^0.30.1 - "@lbmjs/finschia": "workspace:packages/finschia" + "@finschia/finschia": "workspace:packages/finschia" eslint: ^7.5 karma-chrome-launcher: ^3.1.0 karma-jasmine: ^4.0.1 From 1d2d81598ec4c04b4a755e5b049d285835f6f67d Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 15 Mar 2023 16:35:18 +0900 Subject: [PATCH 06/15] change version to 1.0.0 --- packages/finschia/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/finschia/package.json b/packages/finschia/package.json index 289cc758..ff461dab 100644 --- a/packages/finschia/package.json +++ b/packages/finschia/package.json @@ -1,7 +1,7 @@ { "name": "@finschia/finschia", - "version": "0.8.0-rc1", - "description": "Utilities for LBM SDK 0.47.0-rc2", + "version": "1.0.0", + "description": "Utilities for FINSCHIA v1.0.0-rc0", "contributors": [ "zemyblue ", "loin3 <55660267+loin3@users.noreply.github.com>", From 2b7b740291466d3978c2d03c35e23d15589ca7c6 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Mon, 20 Mar 2023 22:38:28 +0900 Subject: [PATCH 07/15] chore: delete old image in readme --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 730f77e2..7db96512 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,4 @@ -

CosmJS

- -
- Language grade: JavaScript - - License: Apache-2.0 - -
+# Finschia-js finschia-js is useful tool to power JavaScript based client solutions ranging from Web apps/explorers over browser extensions to server-side clients. From 71bfde3ace4c60aa8136e4be6b3ee39e4ee24282 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Mon, 3 Apr 2023 17:11:05 +0900 Subject: [PATCH 08/15] docs: add CoC, contributing.md, issue template --- .github/ISSUE_TEMPLATE/bug-report.md | 28 +++++ .github/ISSUE_TEMPLATE/feature-request.md | 32 +++++ CODE_OF_CONDUCT.md | 132 ++++++++++++++++++++ CONTRIBUTING.md | 129 ++++++++++++++++++++ LICENSE | 2 +- NOTICE | 141 +++++++++++++++------- 6 files changed, 419 insertions(+), 45 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..25f4eea8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,28 @@ +--- +name: Bug Report +about: Create a report to help us squash bugs! +--- + + + +## Summary of Bug + + +## Version + + +## Steps to Reproduce + + +____ + +## For Admin Use + +- [ ] Not duplicate issue +- [ ] Appropriate labels applied +- [ ] Appropriate contributors tagged +- [ ] Contributor assigned/self-assigned diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..0c05d846 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,32 @@ +--- +name: Feature Request +about: Create a proposal to request a feature +--- + + + +## Summary + + +## Problem Definition + + +## Proposal + + +____ + +#### For Admin Use + +- [ ] Not duplicate issue +- [ ] Appropriate labels applied +- [ ] Appropriate contributors tagged +- [ ] Contributor assigned/self-assigned diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..b4d939e0 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,132 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +- Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +- The use of sexualized language or imagery, and sexual attention or advances of + any kind +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email address, + without their explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at [dev@finschia.org] +(mailto:dev@finschia.org). All complaints will be reviewed and investigated promptly +and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder][mozilla coc]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][faq]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[mozilla coc]: https://github.com/mozilla/diversity +[faq]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..31cf93e8 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,129 @@ +# How to contribute to Finschia-js + +First of all, thank you so much for taking your time to contribute! +It will be amazing if you could help us by doing any of the following: + +- File an issue in [the issue tracker](https://github.com/line/finschia-js/issues) to report bugs and propose new features and + improvements. +- Ask a question by creating a new issue in [the issue tracker](https://github.com/line/finschia-js/issues). + - Browse [the list of previously answered questions](https://github.com/line/finschia-js/issues?q=label%3Aquestion). +- Contribute your work by sending [a pull request](https://github.com/line/finschia-js/pulls). + +## Contributor license agreement + +When you are sending a pull request and it's a non-trivial change beyond fixing typos, please sign +the ICLA (individual contributor license agreement). Please +[contact us](mailto:dev@finschia.org) if you need the CCLA (corporate contributor license agreement). + +## Code of conduct + +We expect contributors to follow [our code of conduct](https://github.com/line/finschia-js/blob/main/CODE_OF_CONDUCT.md). + +## Commit message and Pull Request message + +- Follow [Conventional Commit](https://www.conventionalcommits.org) to release note automation. +- Don't mention or link that can't accessible from public. +- Use English only. Because this project will be published to the world-wide open-source world. But no worries. We are fully aware of that most of us are not the English-native. + +## Pull Requests + +To accommodate review process we suggest that PRs are categorically broken up. +Ideally each PR addresses only a single issue. Additionally, as much as possible +code refactoring and cleanup should be submitted as a separate PRs from bugfixes/feature-additions. + +### Process for reviewing PRs + +All PRs require two Reviews before merge (except docs changes, or variable name-changes which only require one). When reviewing PRs please use the following review explanations: + +- `LGTM` without an explicit approval means that the changes look good, but you haven't pulled down the code, run tests locally and thoroughly reviewed it. +- `Approval` through the GH UI means that you understand the code, documentation/spec is updated in the right places, you have pulled down and tested the code locally. In addition: + - You must also think through anything which ought to be included but is not + - You must think through whether any added code could be partially combined (DRYed) with existing code + - You must think through any potential security issues or incentive-compatibility flaws introduced by the changes + - Naming must be consistent with conventions and the rest of the codebase + - Code must live in a reasonable location, considering dependency structures (e.g. not importing testing modules in production code, or including example code modules in production code). + - if you approve of the PR, you are responsible for fixing any of the issues mentioned here and more +- If you sat down with the PR submitter and did a pairing review please note that in the `Approval`, or your PR comments. +- If you are only making "surface level" reviews, submit any notes as `Comments` without adding a review. + +## Forking +To create a fork and work on a branch of it, I would: + +- Create the fork on github, using the fork button. +- Go to the original repo checked out locally +- `git remote rename origin upstream` +- `git remote add origin git@github.com:someone/finschia-js.git` + +Now `origin` refers to my fork and `upstream` refers to the finschia-js version. +So I can `git push -u origin main` to update my fork, and make pull requests to finschia-js from there. +Of course, replace `someone` with your git handle. + +To pull in updates from the origin repo, run + +- `git fetch upstream` +- `git rebase upstream/main` (or whatever branch you want) + +Please don't make Pull Requests from `main`. + +## Dependencies + +We use [yarn 3.1](https://classic.yarnpkg.com/lang/en/) to manage +dependency versions. + +The `main` branch of every finschia-js repository should just build with `yarn install`, `yarn build`, +which means they should be kept up-to-date with their dependencies, so we can +get away with telling people they can just go get our software. + +## Testing + +Tests can be ran by running `yarn test` at the top level of the finschia-js repository. + +To run tests that need to interact with the chain (e.g. contract instantiation), start the test chain with `./scripts/finschia/start.sh` and `./scripts/finschia/init.sh`. After start up a test chain, run tests with `SIMAPP_ENABLED=true yarn test`. + +## Branching Model and Release + +User-facing repos should adhere to the trunk based development branching model: https://trunkbaseddevelopment.com/. + +Libraries need not follow the model strictly, but would be wise to. + +This repo utilizes [semantic versioning](https://semver.org/). + +### PR Targeting + +Ensure that you base and target your PR on the `main` branch. + +All feature additions should be targeted against `main`. Bug fixes for an outstanding release candidate +should be targeted against the release candidate branch. + +### Development Procedure + +- the latest state of development is on `main` +- `main` must never fail `yarn build`, `yarn test` +- `main` should not fail `yarn lint` +- no `--force` onto `main` (except when reverting a broken commit, which should seldom happen) +- create a development branch either on github.com/line/finschia-js, or your fork (using `git remote add origin`) +- before submitting a pull request, begin `git rebase` on top of `main` + +### Pull Merge Procedure + +- ensure pull branch is rebased on `main` +- run `yarn test` to ensure that all tests pass +- run `yarn lint-fix` to ensure that linting is done +- merge pull request (We are using `squash and merge` for small features) + +### Release Procedure + +- Start on `main` +- Create the release candidate branch `rc/v*` (going forward known as **RC**) + and ensure it's protected against pushing from anyone except the release + manager/coordinator + - **no PRs targeting this branch should be merged unless exceptional circumstances arise** +- On the `RC` branch, prepare a new version section in the `CHANGELOG.md` + - All links must be link-ified + - Copy the entries into a `RELEASE_CHANGELOG.md`, this is needed so the bot knows which entries to add to the release page on github. +- After all test has successfully completed, create the release branch + (`release/vX.XX.X`) from the `RC` branch +- Create a PR to `main` to incorporate the `CHANGELOG.md` updates +- Tag the release (use `git tag -a`) and create a release in Github +- Delete the `RC` branches + diff --git a/LICENSE b/LICENSE index d6456956..ff7fa4fb 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2023 Finschia Foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NOTICE b/NOTICE index ac0c150d..b5d44166 100644 --- a/NOTICE +++ b/NOTICE @@ -1,44 +1,97 @@ -This repository was forked from the folders packages/iov-cosmos and scripts/cosmos -of https://github.com/iov-one/iov-core at tag v2.0.0-alpha.7. It was repurposed -and heavily modified from there on. - -The code in packages/faucet was forked from https://github.com/iov-one/iov-faucet on -2020-01-29 at commit 33e2d707e7. - -The code in packages/cli was forked from https://github.com/iov-one/iov-core/tree/v2.0.0-alpha.7/packages/iov-cli -on 2020-02-06. - -The code in packages/crypto was forked from https://github.com/iov-one/iov-core/tree/v2.3.2/packages/iov-crypto -on 2020-06-05. - -The code in packages/utils was forked from https://github.com/iov-one/iov-core/tree/v2.3.2/packages/iov-utils -on 2020-06-05. - -The code in packages/encoding and packages/math was forked from https://github.com/iov-one/iov-core/tree/v2.3.2/packages/iov-encoding -on 2020-06-05. - -The code in packages/tendermint-rpc and scripts/tendermint was forked from the folders packages/iov-tendermint-rpc and scripts/tendermint respectively of https://github.com/iov-one/iov-core at tag v2.5.0 on 2020-06-15. - -The code in packages/json-rpc was forked from https://github.com/iov-one/iov-core/tree/v2.5.0/packages/iov-jsonrpc, with additional code from https://github.com/iov-one/iov-core/tree/v2.5.0/packages/iov-encoding on 2020-06-24. - -The code in packages/socket and scripts/socketserver was forked from the folders packages/iov-socket and scripts/socketserver respectively of https://github.com/iov-one/iov-core at tag v2.5.0 on 2020-06-24. - -The code in packages/crypto/src/bip39.ts contains code forked from bitcoinjs/bip39 (https://github.com/bitcoinjs/bip39/blob/v3.0.4/LICENSE) -on 2021-12-16. Copyright (c) 2014, Wei Lu and Daniel Cousens. - -Copyright 2018-2020 IOV SAS -Copyright 2020-2021 Confio OÜ -Copyright 2020 Simon Warta -Copyright 2021 Confio GmbH - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +### Open Source Software Notice ### + +This product from LINE Corporation contains the open source software detailed below. Please refer to the indicated open source licenses (as are included following this notice) for the terms and conditions of their use. + + +Please be informed that LINE Corporation product may contain open source software listed in to tables below. + +cosmjs (Apache-2.0) +Copyright 2018-2020 IOV SAS +Copyright 2020-2021 Confio OÜ +Copyright 2020 Simon Warta +Copyright 2021 Confio GmbH + +finschia-js (Apache-2.0) +Copyright 2023 Finschia Foundation + + + +_________________________________________________________________________________________________________________________ + + +Apache-2.0 + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + + Copyright 2023 Finschia Foundation + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file From 3ba624dee062cc28904338c48cf6a4539be7952b Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Mon, 3 Apr 2023 17:37:38 +0900 Subject: [PATCH 09/15] docs: fix redundant in notice --- NOTICE | 3 --- 1 file changed, 3 deletions(-) diff --git a/NOTICE b/NOTICE index b5d44166..42ed430e 100644 --- a/NOTICE +++ b/NOTICE @@ -10,12 +10,9 @@ Copyright 2018-2020 IOV SAS Copyright 2020-2021 Confio OÜ Copyright 2020 Simon Warta Copyright 2021 Confio GmbH - -finschia-js (Apache-2.0) Copyright 2023 Finschia Foundation - _________________________________________________________________________________________________________________________ From cba51a6f47646b940dcc997d589ef651dda55e04 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Mon, 3 Apr 2023 18:02:53 +0900 Subject: [PATCH 10/15] chore: re generate template after chnage home dir to finschia --- scripts/finschia/README.md | 2 +- scripts/finschia/env | 2 +- scripts/finschia/start.sh | 2 +- scripts/finschia/start_local.sh | 4 +- .../{.lbm => .finschia}/config/app.toml | 0 .../{.lbm => .finschia}/config/client.toml | 2 +- .../{.lbm => .finschia}/config/config.toml | 0 .../{.lbm => .finschia}/config/genesis.json | 39 +++++++------------ ...49e19c78de3aaa905e40f71bce35185b110ab.json | 1 + .../template/.finschia/config/node_key.json | 1 + .../.finschia/config/priv_validator_key.json | 11 ++++++ .../data/priv_validator_state.json | 0 ...7814c74f863bea49b433e51676bfd99bc1.address | 1 + ...597f29240eafb883bee64e1420895e5259.address | 1 + ...f24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address | 1 + ...491fc242b9f95d31af087c243e43a703ce.address | 1 + .../.finschia/keyring-test/account0.info | 1 + .../.finschia/keyring-test/account1.info | 1 + .../.finschia/keyring-test/account2.info | 1 + .../.finschia/keyring-test/account3.info | 1 + .../.finschia/keyring-test/account4.info | 1 + .../.finschia/keyring-test/account5.info | 1 + .../.finschia/keyring-test/account6.info | 1 + .../.finschia/keyring-test/account7.info | 1 + .../.finschia/keyring-test/account8.info | 1 + ...daad146da2d167f55ec00a5360dd013b7a.address | 1 + ...931b591a0ad2c6c1f2c9ac094643d41119.address | 1 + ...c78e25fa1eda888ff207f5823d2cf06a58.address | 1 + ...9a45654ecb1d575eb77037f72b81631f33.address | 1 + ...33fc2858fbe68b38189596993b73fba5f4.address | 1 + ...7c0cd770b0696c101db34a7c88c9e60ea3.address | 1 + ...34556bb1390b9b96fd73949275314773e7.address | 1 + .../.finschia/keyring-test/multisig0.info | 1 + .../.finschia/keyring-test/validator0.info | 1 + ...92cc468ada83add5486867ce12ae6ab25aa74.json | 1 - ...98792d07e8266fc6d52a3641db32ba79765d0.json | 1 - .../template/.lbm/config/node_key.json | 1 - .../.lbm/config/priv_validator_key.json | 11 ------ ...7814c74f863bea49b433e51676bfd99bc1.address | 1 - ...597f29240eafb883bee64e1420895e5259.address | 1 - ...f24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address | 1 - ...491fc242b9f95d31af087c243e43a703ce.address | 1 - .../template/.lbm/keyring-test/account0.info | 1 - .../template/.lbm/keyring-test/account1.info | 1 - .../template/.lbm/keyring-test/account2.info | 1 - .../template/.lbm/keyring-test/account3.info | 1 - .../template/.lbm/keyring-test/account4.info | 1 - .../template/.lbm/keyring-test/account5.info | 1 - .../template/.lbm/keyring-test/account6.info | 1 - .../template/.lbm/keyring-test/account7.info | 1 - .../template/.lbm/keyring-test/account8.info | 1 - ...daad146da2d167f55ec00a5360dd013b7a.address | 1 - ...931b591a0ad2c6c1f2c9ac094643d41119.address | 1 - ...c78e25fa1eda888ff207f5823d2cf06a58.address | 1 - ...9a45654ecb1d575eb77037f72b81631f33.address | 1 - ...33fc2858fbe68b38189596993b73fba5f4.address | 1 - ...7c0cd770b0696c101db34a7c88c9e60ea3.address | 1 - ...34556bb1390b9b96fd73949275314773e7.address | 1 - .../template/.lbm/keyring-test/multisig0.info | 1 - .../.lbm/keyring-test/validator0.info | 1 - scripts/finschia/template/run_finschia.sh | 2 +- scripts/finschia/template/setup.sh | 34 ++++++++-------- 62 files changed, 72 insertions(+), 86 deletions(-) rename scripts/finschia/template/{.lbm => .finschia}/config/app.toml (100%) rename scripts/finschia/template/{.lbm => .finschia}/config/client.toml (95%) rename scripts/finschia/template/{.lbm => .finschia}/config/config.toml (100%) rename scripts/finschia/template/{.lbm => .finschia}/config/genesis.json (94%) create mode 100644 scripts/finschia/template/.finschia/config/gentx/gentx-b9c49e19c78de3aaa905e40f71bce35185b110ab.json create mode 100644 scripts/finschia/template/.finschia/config/node_key.json create mode 100644 scripts/finschia/template/.finschia/config/priv_validator_key.json rename scripts/finschia/template/{.lbm => .finschia}/data/priv_validator_state.json (100%) create mode 100644 scripts/finschia/template/.finschia/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/479104597f29240eafb883bee64e1420895e5259.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/account0.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account1.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account2.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account3.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account4.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account5.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account6.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account7.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/account8.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address create mode 100644 scripts/finschia/template/.finschia/keyring-test/multisig0.info create mode 100644 scripts/finschia/template/.finschia/keyring-test/validator0.info delete mode 100644 scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json delete mode 100644 scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json delete mode 100644 scripts/finschia/template/.lbm/config/node_key.json delete mode 100644 scripts/finschia/template/.lbm/config/priv_validator_key.json delete mode 100644 scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account0.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account1.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account2.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account3.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account4.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account5.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account6.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account7.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/account8.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address delete mode 100644 scripts/finschia/template/.lbm/keyring-test/multisig0.info delete mode 100644 scripts/finschia/template/.lbm/keyring-test/validator0.info diff --git a/scripts/finschia/README.md b/scripts/finschia/README.md index e5cbb951..7f35da66 100644 --- a/scripts/finschia/README.md +++ b/scripts/finschia/README.md @@ -15,5 +15,5 @@ cd scripts/finschia 2. cd `./scripts/finschia/template`. 3. execute `setup.sh docker`. 4. check the difference of `app.toml`, `client.toml`, `config.toml` and - `genesis.json` in the `./script/finschia/template/.lbm/config` directory and + `genesis.json` in the `./script/finschia/template/.finschia/config` directory and select the code you want. diff --git a/scripts/finschia/env b/scripts/finschia/env index 59531876..61474e02 100644 --- a/scripts/finschia/env +++ b/scripts/finschia/env @@ -1,4 +1,4 @@ # Choose from https://hub.docker.com/r/line/lbm-simapp/tags REPOSITORY="line/lbm" VERSION="1.0.0-rc2" -CONTAINER_NAME="lbm-app" +CONTAINER_NAME="finschia-app" diff --git a/scripts/finschia/start.sh b/scripts/finschia/start.sh index 5173ebff..b165e2a4 100755 --- a/scripts/finschia/start.sh +++ b/scripts/finschia/start.sh @@ -34,7 +34,7 @@ docker run --rm \ /template/run_finschia.sh \ >"$LBM_LOGFILE" 2>&1 & -echo "lbm running on http://localhost:$TENDERMINT_PORT_HOST and logging into $LBM_LOGFILE" +echo "fnsad running on http://localhost:$TENDERMINT_PORT_HOST and logging into $LBM_LOGFILE" if [ -n "${CI:-}" ]; then # Give process some time to come alive. No idea why this helps. Needed for CI. diff --git a/scripts/finschia/start_local.sh b/scripts/finschia/start_local.sh index c0236589..99cc53fd 100755 --- a/scripts/finschia/start_local.sh +++ b/scripts/finschia/start_local.sh @@ -3,7 +3,7 @@ set -o errexit -o nounset -o pipefail command -v shellcheck >/dev/null && shellcheck "$0" SCRIPT_DIR="$(realpath "$(dirname "$0")")" -LBMAPP_DIR=".lbm" +LBMAPP_DIR=".finschia" CONFIG_DIR="${SCRIPT_DIR}/template/${LBMAPP_DIR}" echo "SCRIPT_DIR: ${SCRIPT_DIR}" echo "CONFIG_DIR: ${CONFIG_DIR}" @@ -13,4 +13,4 @@ if [ ! -x "$SCRIPT_DIR/test_chain_data" ]; then cp -R "${CONFIG_DIR}" "${SCRIPT_DIR}/test_chain_data" fi -lbm start --trace --home "${SCRIPT_DIR}/test_chain_data/${LBMAPP_DIR}" +fnsad start --trace --home "${SCRIPT_DIR}/test_chain_data/${LBMAPP_DIR}" diff --git a/scripts/finschia/template/.lbm/config/app.toml b/scripts/finschia/template/.finschia/config/app.toml similarity index 100% rename from scripts/finschia/template/.lbm/config/app.toml rename to scripts/finschia/template/.finschia/config/app.toml diff --git a/scripts/finschia/template/.lbm/config/client.toml b/scripts/finschia/template/.finschia/config/client.toml similarity index 95% rename from scripts/finschia/template/.lbm/config/client.toml rename to scripts/finschia/template/.finschia/config/client.toml index c61fc867..7cac25b3 100644 --- a/scripts/finschia/template/.lbm/config/client.toml +++ b/scripts/finschia/template/.finschia/config/client.toml @@ -12,6 +12,6 @@ keyring-backend = "os" # CLI output format (text|json), it will override the default values of both query and tx output = "" # : to Tendermint RPC interface for this chain -node = "tcp://localhost:26658" +node = "tcp://localhost:26657" # Transaction broadcasting mode (sync|async|block) broadcast-mode = "sync" diff --git a/scripts/finschia/template/.lbm/config/config.toml b/scripts/finschia/template/.finschia/config/config.toml similarity index 100% rename from scripts/finschia/template/.lbm/config/config.toml rename to scripts/finschia/template/.finschia/config/config.toml diff --git a/scripts/finschia/template/.lbm/config/genesis.json b/scripts/finschia/template/.finschia/config/genesis.json similarity index 94% rename from scripts/finschia/template/.lbm/config/genesis.json rename to scripts/finschia/template/.finschia/config/genesis.json index fc82d0b1..8ab1579d 100644 --- a/scripts/finschia/template/.lbm/config/genesis.json +++ b/scripts/finschia/template/.finschia/config/genesis.json @@ -1,5 +1,5 @@ { - "genesis_time": "2023-03-30T12:58:43.759379Z", + "genesis_time": "2023-04-03T08:52:38.610633Z", "chain_id": "simd-testing", "initial_height": "1", "consensus_params": { @@ -14,7 +14,9 @@ "max_bytes": "1048576" }, "validator": { - "pub_key_types": ["ed25519"] + "pub_key_types": [ + "ed25519" + ] }, "version": {} }, @@ -271,25 +273,7 @@ "amount": "220000000000" } ], - "denom_metadata": [ - { - "description": "The fee token of this test chain", - "denom_units": [ - { - "denom": "cony", - "exponent": 0, - "aliases": [] - }, - { - "denom": "LN", - "exponent": 6, - "aliases": [] - } - ], - "base": "LINK", - "display": "LN" - } - ] + "denom_metadata": [] }, "capability": { "index": "1", @@ -406,7 +390,7 @@ "validator_address": "linkvaloper1twsfmuj28ndph54k4nw8crwu8h9c8mh33lyrp8", "pubkey": { "@type": "/cosmos.crypto.ed25519.PubKey", - "key": "BT4dbiZUg61sevecT4wVRM0hALGfqi1dcqNXG5OFOlQ=" + "key": "2HYy3EcJov1WrBRecIxbmg7wA0llZkgjNfJJO+gnj00=" }, "value": { "denom": "stake", @@ -414,7 +398,7 @@ } } ], - "memo": "e4d98792d07e8266fc6d52a3641db32ba79765d0@172.30.1.66:26656", + "memo": "b9c49e19c78de3aaa905e40f71bce35185b110ab@10.28.181.127:26656", "timeout_height": "0", "extension_options": [], "non_critical_extension_options": [] @@ -442,7 +426,7 @@ } }, "signatures": [ - "lQ3POV7nTGd/gyo0yQIaUxzmqRkc9mCOMvpKXUv1WSgzB8YfrMZRDKCz4Fv9M40P155MgrA513rk1O9DY5k+Qg==" + "j+vNdeZZfJz5WxaHAGyao3y/dO33MUG8+wny0nGObKZyJKRJVepqQqKaM4cdJgL65NzacwcjraBOun+go5UwFw==" ] } ] @@ -476,7 +460,10 @@ "clients_consensus": [], "clients_metadata": [], "params": { - "allowed_clients": ["06-solomachine", "99-ostracon"] + "allowed_clients": [ + "06-solomachine", + "99-ostracon" + ] }, "create_localhost": false, "next_client_sequence": "0" @@ -601,4 +588,4 @@ "inactive_contract_addresses": [] } } -} +} \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/config/gentx/gentx-b9c49e19c78de3aaa905e40f71bce35185b110ab.json b/scripts/finschia/template/.finschia/config/gentx/gentx-b9c49e19c78de3aaa905e40f71bce35185b110ab.json new file mode 100644 index 00000000..5056e2ff --- /dev/null +++ b/scripts/finschia/template/.finschia/config/gentx/gentx-b9c49e19c78de3aaa905e40f71bce35185b110ab.json @@ -0,0 +1 @@ +{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"simd-testing","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"link1twsfmuj28ndph54k4nw8crwu8h9c8mh3rtx705","validator_address":"linkvaloper1twsfmuj28ndph54k4nw8crwu8h9c8mh33lyrp8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"2HYy3EcJov1WrBRecIxbmg7wA0llZkgjNfJJO+gnj00="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"b9c49e19c78de3aaa905e40f71bce35185b110ab@10.28.181.127:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AsVtdRaoc8AsTmzIvRAKWSYgHXf97/HI4ls2wENFk9C8"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["j+vNdeZZfJz5WxaHAGyao3y/dO33MUG8+wny0nGObKZyJKRJVepqQqKaM4cdJgL65NzacwcjraBOun+go5UwFw=="]} diff --git a/scripts/finschia/template/.finschia/config/node_key.json b/scripts/finschia/template/.finschia/config/node_key.json new file mode 100644 index 00000000..8c9519bc --- /dev/null +++ b/scripts/finschia/template/.finschia/config/node_key.json @@ -0,0 +1 @@ +{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"WXdCMrRGWv0ewd3JVrRBQcXLbYz0SF1UOFEzWojCiEsv8fICtLyTSGuAuuAh94lZM3OBVsL2l/j4MwvnpjbcvQ=="}} \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/config/priv_validator_key.json b/scripts/finschia/template/.finschia/config/priv_validator_key.json new file mode 100644 index 00000000..1254fc79 --- /dev/null +++ b/scripts/finschia/template/.finschia/config/priv_validator_key.json @@ -0,0 +1,11 @@ +{ + "address": "CA5AFE9A1EE6CC6961C4A6CD13BB770E6B62A5D6", + "pub_key": { + "type": "tendermint/PubKeyEd25519", + "value": "2HYy3EcJov1WrBRecIxbmg7wA0llZkgjNfJJO+gnj00=" + }, + "priv_key": { + "type": "tendermint/PrivKeyEd25519", + "value": "H5bxa9F4moEO8u+KMqZDwDrZzEs3kG2fVfgQ3bUs5pfYdjLcRwmi/VasFF5wjFuaDvADSWVmSCM18kk76CePTQ==" + } +} \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/data/priv_validator_state.json b/scripts/finschia/template/.finschia/data/priv_validator_state.json similarity index 100% rename from scripts/finschia/template/.lbm/data/priv_validator_state.json rename to scripts/finschia/template/.finschia/data/priv_validator_state.json diff --git a/scripts/finschia/template/.finschia/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address b/scripts/finschia/template/.finschia/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address new file mode 100644 index 00000000..88474cc9 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4wMTU5NzggKzA5MDAgS1NUIG09KzAuMDM5NzUzNDU5IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoibDhQNHVOMjI2YVktOXUzTiJ9.t-TrUuYNQYaAbjiz96h-f9xGKxDtGWy0oBpsad0VjkzUG5NEILOljw.zpca6_j9XjeFMqfN.ctRAORDm9Le3LHre2CCaoAE-MnYvSFGbp6ZU4U3irboB6F_0y2ATIIIUOQ4jYBSaAuLTEpvl8WO09QDuP_HET2PsvnOjyGLubMJFk65WUNB6YqpQl9TZzMjd6eCFgrwaW28HjZRyRWJDLhcH4VdwrWT_hDddE1jRI3LCnGuXh7UXaQ2U5KwFpmyvmRVMK2CJwpBUhA7lrDPLLp3JGnEPKACkJv8diEyoQUWvkIchFLlWHYnFH-zSNEMw.dl-uuI397koqDZKytrnvVg \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/479104597f29240eafb883bee64e1420895e5259.address b/scripts/finschia/template/.finschia/keyring-test/479104597f29240eafb883bee64e1420895e5259.address new file mode 100644 index 00000000..c0515235 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/479104597f29240eafb883bee64e1420895e5259.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4wNjU1NzQgKzA5MDAgS1NUIG09KzAuMDQwMzEwNzkzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiRjduYjlRdkZ4Mi1mQ3JZbSJ9.0hoe83D82ji-W00Y7X2MiLs7h68lnTc4o7fH8pO--S-iD8y6B23Sew.SN7Yc5fEkdS9YXRL.HviDg1bx6q1N8KkHvNN0T9Ni7fC72V0OQHSngjqtgVbgfG7YJBZhJu5YDP9D2mthUUww10Dpp86GaP--xKPo9nYlmF8MkvTGHOz0lVr66QfhzUHFUhuD7qCko0QODCgGno7ubIh09aD_7UdTGUYDHdKcsTShG9jQDUAETDW51wNBs8A0YOh1VhzsQgAlPFC88llRJSZ9FVazSW_11CL-6rwlwVvwwfa8iRVTzxZfIA_nfWbilMBiaLuU.Kjuv6WDdQxAwMihRE4z8EA \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address b/scripts/finschia/template/.finschia/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address new file mode 100644 index 00000000..8ab7a56f --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4xODcwNDUgKzA5MDAgS1NUIG09KzAuMDQxMzc1ODM0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiU09YZU9Dd2xWV3MtblNwVyJ9.g_wH2rWYxBiqsmto12MdYBipElvKHax1nL1Rgc2789UH8KojJ-3yJw.TorgEZ30gMB31S13.KfuP6zIjEUpek0cQNo2QK494pQDbcKCR_cBZBBS1q5454nZSNpNHRgyXyQlo9dZJnE4DWNaGEd14Smb1dkWjGAWGTj6o_qzp65OmEJOrIeN3GB8Qt4T2KFS_p729-cwbEHMRJ0U1ASD-wNHXzYQ1ite6D0ytqYiezgr4jQFmdn7iqmqxkb6qSEPAaeYxDIZw72BXylUs7CY_cVtDEnRDobC3PnqaaoKmNghbXSUcBvJ0R4AGUSt_cJT0.ySZ8FrdTxuyxza-vSkxvKg \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address b/scripts/finschia/template/.finschia/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address new file mode 100644 index 00000000..efdbaff6 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC44MTc4NzcgKzA5MDAgS1NUIG09KzAuMDM5NzkxMjUxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiTkhNVEE2YXFHX21DR3ZWTSJ9.EStRHkzCol9_ig5dsEuphJQhsKD_64hUfMnaGGtBDky2rvahWiJiKQ.aNIUodOG7z9G48Gx.7cYFR17N3nYIhqEVuD2ICuCFYhJy6r6c2ZSiMhj66nK3MN5ojuiWKFrEGurTcK7oXSPmQQz2p9Zc42TAMZyXvu6fdmQ7HMlj79ALz5hILeyaN3nWOloSd-DWncCy3Mo0KFUwUVyI5vdmXcd2oOZnxeIr_kwAQcZdNCFNDCijheF2tjl7aC1BAyLzAheN1i3L1N8HbKMkK5dL31MFjciMGxZY1IUNnK1hDcOltlwPOY88v_5BR6g7wlej.30h8-yDXHmsAe3-X5k9xfg \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account0.info b/scripts/finschia/template/.finschia/keyring-test/account0.info new file mode 100644 index 00000000..af6a892e --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account0.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC42NjIxODEgKzA5MDAgS1NUIG09KzAuMDQyNTgzMTI2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoibVYwa3dKOWJBc3RLeENjaiJ9.wQ6qDoxwz0Y0Rk9SkxEt6VjhNUycz2aI1wyB76oCD7SI-Psun1E2Kg.j3_X4T8v3Ot27V91.lYEhI7wwh7oYNQner1-7B5Ztb1gmwzzHUZTgimkcV5chfnOR_Bmx9ejrGWmkZrwFperkmb1aTwVZKfxduy91sgyp464h72pXSHQt7qnMFc04l2CZQIx6XDuj6xr619YsQUUX1JwH1FAAdpP3DNSTRgcfirhkisoKzNU4gXQaDjt3ibcU7n17vcw_l5lkBg4vkBKdXUsU0-MRYztVeQWvF-RlQ88mNLLAOhiYHrHx_cG-HV-BULAofhDo0vAbfLhqxKrXa83pgwlycEMv8_cav12iYW0W0er7HX_-ZpK8QC-CxjkoF8fOcrOrKohf7wbtAz9zzye4pMeyuerlzf0BImCcO13sbZLeLSlTURHx9w.zngvOYyANUJt53wo0QXM1Q \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account1.info b/scripts/finschia/template/.finschia/keyring-test/account1.info new file mode 100644 index 00000000..b9f98efc --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account1.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC43MTM4NzkgKzA5MDAgS1NUIG09KzAuMDM5OTU5ODM0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiRGdHSXZudERDOTBYVnpFSyJ9.l1DSqeKtIG-9bq2GMdEoSQviJS7wgFr2DmISW1OFnsNoSbKkE4HiNQ.B8RRdeXhV2FAkqL2.z2nq4sMc8L5UEMbuhF0NpJwMSZBwQn0Zhfav_vItJqwQVhEX7hfERdlfYOOwAqcb_PI8wGAcgCPERM4DRLu-3X90-QkdD3IF-_xGslIOG_6BLkK18IL_EjG05kH--OStH72wmbSfV6_lP1rnthesIPeop8jZT-jkaHqSneJF6u63HElKxCQ940CeEUw5aUmO9Op-oqIn-yaGJ4hFONzYY1aS2AxGj6bz_CEDug7Tynp9ordwQGvugs607_65oAj07vSKINMdKn3KZUZouQ16ZRfdCxgrRet_6Y9cpzzMpR_xgEBHEa6_5PMRTEQxruICigyHZn-vkhHAFTmZcfaGL4RD1TdG4FX28a0g1A1Vug.UcfdjbGBCbD7yPFPDP1KdQ \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account2.info b/scripts/finschia/template/.finschia/keyring-test/account2.info new file mode 100644 index 00000000..c271bb43 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account2.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC43NjYyNzggKzA5MDAgS1NUIG09KzAuMDQwOTMzNzUxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiWXg1bkk4LTVldkxXYW50eSJ9.9SdtCbWI52f0HgCiYTGb83GOOT7cmUp4HrRZwJ0WIqzB_QvSBxK46Q.HB4vuqrmwQTs9qPo.Y-Ik-ONP3hXQjsRZV-KZVdBY1T34LZg-RVUX3qnZ0Ibl5UX07g9BXXxY1xRvWU6tvVeUlTeC3F2mQiMkivMHT5WSq5RwPp70Q-T5eu7umrKcLwQ98GzjpHnU5mhLE3MtB14fvkizY7bSEIUL2ggL7RZJjxEO1mjXxWbXDToAmJF6KAgh7iecp3THOkJPg3uuhBFOXhzq60y8s62NA2pV3Yzmd9-b_4YOVnakCtfGl5i16tcaGZ7jhr2RBF6HgB91wYC1UavmWZKdZmFktY_0k8b8Xv5nbXtGo01Ktssse3701Amy3kgMV7bVIOPuewMbCGVcYjBP9Hr5o8OfdPPLTSdqoY20dKuPRdvjqXxkUg.8bmVMQrDmhwigGUU6FIj2w \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account3.info b/scripts/finschia/template/.finschia/keyring-test/account3.info new file mode 100644 index 00000000..b995fa0f --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account3.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC44MTYyMjIgKzA5MDAgS1NUIG09KzAuMDM4MTM2NTg0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiX2FNQU05bUktNkNFckFZUiJ9.9PoYdVFmUgChHBy_l2LoGIOiLNistBPspgaioNXRLtkgEZO6Ts78ZA.WWiu9LxNf7NEXvN4.bfSWvIep_NCcyQ-MzcPZTe1rNLyXDTYqJ0myN2p_pljE8kPuPf-T1us5sHHQ2m0_LNLuWgVEaACzFFKP-T-zLyzl-SL35cMcn6dr5qerBBryIH8h3Gqlsv-RVFm8EKvvWzA_M4tLXztkU4Ou7XJ2tSh4FeNSlKlJCxHHkpBiATZWBMT2StBf0GEnux2_z0dB-zC-aeqg3tYsJJOe7Mq-yFs37ZP5qbQ3b59YVSYoWyvJ9UnWosfY5yXVPZpOSMeC9TJlGx1e3_-0WfxF4KIqCP5jeqObJjxxx4bBXbJef69uuF14_3Dt7va1h1cHuJtA7leSo-7fHdkR_E_hd9926cwhyBO--RFjecCfegy64A.5lxcqKaggxBLWv393is6VQ \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account4.info b/scripts/finschia/template/.finschia/keyring-test/account4.info new file mode 100644 index 00000000..5eded702 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account4.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC44NjYzMDUgKzA5MDAgS1NUIG09KzAuMDM4OTM2MDg1IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiR08wcVZJbmNVTHV0ZWVEXyJ9.ddiI7Viz9oapmrumu5TuMfxZDpygF7tItWTzs4XSYkuyChlLTtEUaQ.elkbkmNRCyk1JMcn.Wseg8Z4zB677GkWVBK7-oSLdcclhcr95L0X5hTKJHqX4g5bcPazz4p-piXWnyQBJw2vTieclu7ebEuXg3FWrT-gjoBQwia2JE5tkVU827L3w6raAdlSzpPdD7_3O-aNI3PfFVKiaJ4PHExlD6dhSYMA-YBTTvkvUs5wcadjVEdA_XcLq1XNZWhf34E8_qp5vq-71TYAY71BmuweDatKTlOB3ozIHf1erGuCkQOG9I6z2cfu1FArT2E7PTRoqjSVMqY9xIkECTaeZUCPCORLL2DCDvN8ZXuU-jGJv2LuIb9kpaAYBkkMDsx5rIWi5asDymP9IClNZI1xQK4Pqmw9fa8eeafYEy0DANZyjV_-AcA.lZwY6waWgS35wFTRiYjpnQ \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account5.info b/scripts/finschia/template/.finschia/keyring-test/account5.info new file mode 100644 index 00000000..1df6de96 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account5.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC45MTQ1OTkgKzA5MDAgS1NUIG09KzAuMDM3MTAzMzc2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiUmhCQ05WSWsxRkh3SjlfVyJ9.ZgzkaCGT3otHfTQmYVNqNJd6nfrQ8K1Q4EEpMNvRzsm7E1GdDArQfg.dkgNTNM3FTl_U0G8.pq2waadU_OeYrAK9hBEU_v0lo9uVWU3BDEuxmTUt1PuDy1tFz5aFy6aScJPJO_jiNl5uapaKsnnHSDXq819GvkTUpIMU-MRMlOVmo7p2J7nxIIzNVBYBy__qW2vP-VVv5QZgurjxnjtU2x4vcrmUbZbruN9WI6vYpN65q1SNrHrDV6At-S9iUCcbqeJ7iNKpPgJS6H9LGJlYcxRUdVh27lwdaLbxyO9nYkguiwRL1BK4sueEC91DVJ8GFdAWTmL2uzwzYjwzwHcEFtOlVy4DgEHah40mbc2i_FDTCAn6MOCruPuWPb4YcNSZx2_ByVtb3M5xisilrKQG0nFNcxDGEI3u1OX1YKRjCuc2ff3WSQ.tTjb-07CO70VZAF06N8vhw \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account6.info b/scripts/finschia/template/.finschia/keyring-test/account6.info new file mode 100644 index 00000000..f29a1125 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account6.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC45NjI2OTEgKzA5MDAgS1NUIG09KzAuMDM2OTk2NzkzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoieVg2Qm9UYlR4TjJlbDQzUSJ9.DJs0opkcOFkO_DnyptJcecmdJ0TaF6iuqDyGhTsk1q8m0xCCjyCEAg.Xzslgh2knAf57jJO.J8REBqQ22EdQVBo_QGIcSH8I1B3rjY7EiRuozk5u3GnMA7eOm6R78YxjK-xkBAM8Sh9YGMY7UijmG7pzYxzMhPpNoMZRTF73RaTXpVHnpG5yDE0ThW66JNmAeyWQv5lV4Yzs5bOXl252NoxrCWzpFuHNWGRNnL-N3JfKS2quTBXhzBs6uYuZHNRZ0Gkh8x-aYUyepPqYlC36wxLrz8UMS8L5L4MhcQ2fDSpCwqrxJnLVqtvr0CtJuh5j5Xfj7E6zO-wkE884lZ93KApASqTg_hKmaBgARVdpOD-TyVo_4eePXH7pX0GHEBPs4GHv_8mP9A1Bzpplfcxql_V1rHvQ5iKEMm0It2wCEF5wvEjWBw.ZsVIcf2aJjLCvvNO4-9rWA \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account7.info b/scripts/finschia/template/.finschia/keyring-test/account7.info new file mode 100644 index 00000000..cf944f42 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account7.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4wMTQzNTcgKzA5MDAgS1NUIG09KzAuMDM4MTMyMDAxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiaS1RV3V2TVpwRU8wZnhaYiJ9.v9tLNFbCoTmMNHHwLAi5a5pYUl_fbw8WKHCJgj6nJaYBedU6rsA2cA.m7Dhikjq_Yp-Oi2G.pUpYxdfVSjDW5FvRSHFFq9JpmZMusANma6qmiSlU33mrELhN5ilXp9FEXV-yaiC-mFNmMcEiCPj_33oLGCiBxc4ngqMSsV6XTc_C0QT9p-kWQIXmaKk832MXPf9BvUmn99r5z4677k-XrDFphGya86CXTAxo8QfKcmL8Uec9b1mJFO3EegkVF6h0J_gXlFe5Cny6FkyDUXB5IdBImM6inzooZkyg8e3qYzw2S6qzFhog5IhQ8i3EoDkOSilMiVOj8mjRSlYoWGJWlMQ62wPzYFMcyoxZXTp6OApf6b9qEsILebB8haTi-cee2sfW_x8GxfWHhka3s9NPj1oyBAeSJpg6paWiwJziFfIuvgWWJw.zxfjBA8XCvvPdtFbdYrxzg \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/account8.info b/scripts/finschia/template/.finschia/keyring-test/account8.info new file mode 100644 index 00000000..e8c895e1 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/account8.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4wNjM5NjUgKzA5MDAgS1NUIG09KzAuMDM4NzAxOTE4IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiQUtJcE8wd3FST1ZUZGJzbyJ9.EIc4_9CNBUUZ-fgV_hNcJKmgFsbPO3Cv-qMzAptZUYHt9fRwyAg9Xw.HyvLS-ZKrB1WLJVF.J8vLpGcE5srMRIur8yc3IVj1Ned0xmrwjMUOJ5WHh5C_v4K7QqobSLHGWEik7eQLnK48OKGV5Wgun02gv5S3_60F4wnbRqfu01qDZFq6jrYO4CjcmhpRAMuCREnl1_ZzfhpmWH1tlxDPBUnD1XzVWQ-JoHQUXz119xbqNi7L513n9Rj2hL7ZNU1Stt-_gQdPy-E-cm-u20PujMRz-lbHQaAns8Ac-odzkXtioZxOPfaYgqVfTwKhBj2eEH-RDWDqCjPLolQLvb_2X7OLKeipq_T3mo9eU0IExsPMeUF6Hg7Kx8ev4_r23O8UWrUyNNWt3wQlJUX9X2P3NHqj1KGpo3fhsfjWiWqO2CW9gs72lg.wCIKjOg0Tlj8rQS0Q2L42A \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address b/scripts/finschia/template/.finschia/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address new file mode 100644 index 00000000..d39218be --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC45MTYyNzIgKzA5MDAgS1NUIG09KzAuMDM4Nzc2NDU5IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiQVR1TzFxaDZyX0RkaWgzNSJ9.DR1PUa9uC_AKp1tI5jCsI5LaaPrT-OeOSjcEjqNHgcAox9Yz4n6kPQ.0Wo_zUWXSwG9w-Au.VI4wAp8ZcWjwfNkkz_bF4IIC0ZdvnRtirCnhiECrjc0-i_PshfR0FtXKZpa9LHoPPfCnXwTddiOuD9Ct0gdqaLH8HeAnUJMe8EI2U2P1DVfeaQ6CUHXcHKf0R8SDPsq3cC2GGuy8wHXKAvtvz88uBgIvJLJY53rq1CH7TOm9F9TeL8mHuEMWK5uJXnzCRgsSIaRZc_-tElPVu1rs8NIHBgEXUAt3ikAoGZgcemoKylcHzfdvxN85Bko6.a-EA3ybLh9dGhFV1Cno5Cw \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address b/scripts/finschia/template/.finschia/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address new file mode 100644 index 00000000..2f759079 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC42NjQwNDcgKzA5MDAgS1NUIG09KzAuMDQ0NDQ4ODc2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiNE9QYzJJWkQ0UGppUEN3WSJ9.Ucgjqz8u1I8oYaOq0e_KX_jw_vbVqPf20-cCOiA-H6DDEAgWY5QDYw.dGGrLzsA310LYsuD.6i556UwN3VRvLg0GunAP2Hx3-fYx98EaQqHu5wA6oMpJazSSWxWYvO_SPYl_B_FnigZb2WoNa5HAfnCGbeFUwthpttC5eJYlTlZrkFjpj-fibXBpNW9i-E61g0UfPbW58ed1h-wiFzac8FYmnt2DwkRK1UT4_FYWIvtxpjnTPgyYZielmUuMdxlTMAjtW-w2m5SswxdYoxyXzueziV-u5DIDT3UUc6101tHsYh5pQw5M59S8v5QUxhqt.923gHkJWH5PML-FMjhUwAw \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address b/scripts/finschia/template/.finschia/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address new file mode 100644 index 00000000..142ae65b --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC44Njc5NDkgKzA5MDAgS1NUIG09KzAuMDQwNTgwNTQzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiR2l4MkpLWWMyZE9BdE1zMCJ9.J5MCo8x2NrVNAFRsAsEqdg_I-KYLUjlNhJ2bnmxyKhgvoETbOE0mEA.ZGgssDGd5vk8fqyq.IqjqmVwejAjNrUvB7_hf1xg6tIUFPgaEI0Ur6Fj5gcEEAdGO5pGRqBIzLl0mHI2YalblJ6NDJcwPjevOnTkV_p9DF6Mepv7CED3NOaW0AHUWRh50RXAXRQ57IktWELN-bT8PViktZWJMx1ItB6uqehL88kajfR8Duqf6Im6fpeKGFoVi-168xvjf1IqpZcT9Wo09ljEcx3AdNj36zh-xPku1nSIFSzfX77BcPAbdTKWEddbVxana_Gmv.FrL2RIX-G4vmIwhOFCjq-w \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address b/scripts/finschia/template/.finschia/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address new file mode 100644 index 00000000..4a11be32 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC43NjgxMjcgKzA5MDAgS1NUIG09KzAuMDQyNzgyNTg0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoia1U2MW9HYmY2Q0ZERVdjQiJ9.lxBkC5x-ZYEeNCC3pxeoK07qyUShaUjrcDBZbV0caALPmwItLPxV-A.g7MADKshsykCMc58.XEX20t4lN_uGB7GZtAoFw6nJT-jyszkq0-Ww8Fo_ttDJoZdXaOqfscFqZBCwA8bncD_TVK3YPx8qeDu6vZ7M0poI6sqD-yeYHVfFrR_56Fg4iORHNM_L50Np1RPPXsRxv7Jg-d7WO5NBBu94wrSbzsQr6qqDHYg-xZUsi7HAc3ssYCFGUaEk96fPP6wjmIjFMfwr7KX0c2M0Jxkk3U2_yFsyHHwLUzoCH2SmgTcaKIiW0CmwHkH1lMVq.-36pHpm-9BpoXLtrYDRWbA \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address b/scripts/finschia/template/.finschia/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address new file mode 100644 index 00000000..14b8d931 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC45NjUwMzcgKzA5MDAgS1NUIG09KzAuMDM5MzQyODM0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiU0hQRlpkb3NwcDdCUkgtUCJ9.UCbSArweLNVQFUeAFarlGZwshvU8yp99J5f4qHm1dNpE6Hq-NRyZTA.khy8SWI6t2MQYjJT.5sTdq-JzqpS3AuLDL1CnXdtxAOSumTyHexnUUbx3X5WHIv3UEQvsRysJko7pmu-kDyex5CUM7p_rZ5O5vfrJwN2gxbpYqNOG7kwQ899ccnM5puoOe_jjWb-OxW_JR9pCJlgmrV-Nqwob_B8fD2iGrE7jkMhp-Ii-Q2FjiKEAMVZbdzte7h8RAV2u7PX1JmPPU1qbsABu9SIC_qxRBSSurY-JwdhWqOPxTBcO9maPoGpjhrnky5P8R5hC.y8f0XqWiiz1nKz7a7JopFA \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address b/scripts/finschia/template/.finschia/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address new file mode 100644 index 00000000..8f83fd36 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4xMzQ1NzQgKzA5MDAgS1NUIG09KzAuMDYwMDQ2NTQyIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiRGh6VHRubUNRVVM5M3F1ViJ9.jDG_DxLizMaS2oyOxxoORWfkFHm6GcuqDTy1pXaAtJVuhP3puNI7kA.D5r6rWSI7TtkmUHr.K2l0NuaQtsxpeCUVySxX8e8KAb_ZgPe7xnISlv1noDomEAfOcqgWLeUGxdxe-Blhwjm9vfRaeulBUxF-acpZnMzRYqyBpHxFVqGR-o0V9UcKAa4vYHkUP-pg33aniAt9rhhRaORDIIOM5jxgUlBck6cbmO5h1D65-hO_2DhuhDUNYiO06aOf1iNHQ-rwikSOIdMbHA0pvyc3xLisyxi5HzX8u1lh0FUooMzO2dJZgWhjdt9M_QWYAp5v.exUzU-7PJM-4xDzuQ-f2_w \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address b/scripts/finschia/template/.finschia/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address new file mode 100644 index 00000000..cc730107 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOC43MTU5MDQgKzA5MDAgS1NUIG09KzAuMDQxOTg1MjUxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiUlVuYzNKY2wwaW9jeXNMbSJ9.xdwPrE6cSBjRCrgAzw-jXpw52UUzHCYV2kTWSDzwv80O7EsxmfIhUA.o12f9xnvfN_LUYfQ.h84eHwsjP9HmV_oU2Zmu3fF4U-4TptiVz7bLTvnh0_T8tt9JfBcSEPYgRKSfVzb4BkdanOyXDQ_S74EGTURonBJRNo1akDHLl4ZPZSxT5Ls4IdehtezeZPsuSF5en0tc4fzvNHf4y27gw_IHTjTORTR1zuitDNeFxLDB5dF6eijAV2XtU8XU5iOMiQQPIUvrvjrU8VWagiPWW20fFqjpnoJzRJDCmNUupCvklRVm6p3oIXOjdE19J7Et.oz6cMEOc5jei1SaeTmhKpw \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/multisig0.info b/scripts/finschia/template/.finschia/keyring-test/multisig0.info new file mode 100644 index 00000000..b0337203 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/multisig0.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4xMzI2MDUgKzA5MDAgS1NUIG09KzAuMDU4MDc4MDQyIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiLTVaRzNKMEFhbDRNdzU4ciJ9.kvMFLgqhf0FkyZL9lo_pe1DVfiJiIF9_3Uq6JOfs1TwSvPffotvMZg.VVyv0ayY2cvLkJ-T.TagE3UZtoZpPYK5fPm3QIwFwmO7FI--Fx6_WhIyr0EAa5yDIOsy3n4DBxwfA2I6D0Rsf_OQ7EPqEKV4i2prI-OLWBRUMQ1O3n15MRTOD1XmI7dhM2AWoRAGEnuOZK7T4kBkqZ-DTgkhLW96RB7X07keJLKd3ZwFMk1O6G0rsCmejDF3wCZmQ-utkP6pQAIBF2w7tz0UURX3WAKqijCsOgqE1fItfUxw7MljJfgJK-qzmIUPFbPinBXHQ12wAj4mzvMu9Rrec3vMAvlNlgrIHyVhFExIwvlDj9rY2aW6HgLf_uviCgWWPkdTi7bDbF6B4y6Q90gthSvkotpGFjiYx6qBlRZcQryZY1yn3fE9j6cIU__A2lscwQD74WijDFb5UUvnScjRd-i718KkaKMAc7HrS8T49B0oe8qNdiVQ5Mw_bigG8EmTiTgfDN11dEwcjAPpHwS6lnRZxhK0BRmTPZlCoyztlMXp8Q7n8BTSg4trTvo1a_GH_JcK1RNqgkJsSRABS98nFQI5JAnZ1D1R9A0y03Mffhjz4I_ls9UF8LObEeM31Xh1I5ZWcktFkA_8CAofscQ.Yu_DGq5xCxzAhj3eeXWc7w \ No newline at end of file diff --git a/scripts/finschia/template/.finschia/keyring-test/validator0.info b/scripts/finschia/template/.finschia/keyring-test/validator0.info new file mode 100644 index 00000000..56f57603 --- /dev/null +++ b/scripts/finschia/template/.finschia/keyring-test/validator0.info @@ -0,0 +1 @@ +eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNC0wMyAxNzo1MjozOS4xODUyMSArMDkwMCBLU1QgbT0rMC4wMzk1NDA4MzQiLCJlbmMiOiJBMjU2R0NNIiwicDJjIjo4MTkyLCJwMnMiOiJCemN2SUZqYkhTSV9fbUc2In0.6-2pFmp19oby_uoKZZ9TRdt14QhZFU3JekZhirYEKjS1hEOg8ZTL3g.CxFynL3vT0oQrZ7g.qwU25ddwIRrwbu5mcjAKnm-s3Hcu1rRxRXBC6KLGZFNq_ChuSshRlB40Nkhk64t-BBNs2clVN7-uE54tSHistvmVpbSs0Q0bIgeaBbHi4w-tiiLEq9KyShd_ZooILQ8JbKvG4dk2N3KdSjgCiJtDq2m4hbJ8iW9KVgI2ZQ5WyJNJ4kRMU_pVMGhgExO6FEivm1FrHC86okmbLQulrmZMk0NfD19-sPwOGsBb9WoTt9Zu4AdWSIDzxIL1BKcRV_hBjv9V56sleuvcIDLMzZh001f9s3kFWOkZMMgccr1P1qHhZ1nObr-lGHCFBwGvLSTkJCDF-tgcoqMHs1_ypB8oqmqMNKJzMcutWe5CvwPE6ptGtbedUg.fdaN8IrnzBOiysG9u-_mwA \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json b/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json deleted file mode 100644 index fece9740..00000000 --- a/scripts/finschia/template/.lbm/config/gentx/gentx-e1492cc468ada83add5486867ce12ae6ab25aa74.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"simd-testing","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"link1twsfmuj28ndph54k4nw8crwu8h9c8mh3rtx705","validator_address":"linkvaloper1twsfmuj28ndph54k4nw8crwu8h9c8mh33lyrp8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"nzBXFfcFp/CnF3Eb42/3SXoPT/EvEiLr2gwleHuS9I4="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"e1492cc468ada83add5486867ce12ae6ab25aa74@172.17.0.2:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AsVtdRaoc8AsTmzIvRAKWSYgHXf97/HI4ls2wENFk9C8"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["2eEHU3CC6voIiA2Ry1zzqQjD9gHGgfUbjSIwB6d25ClQlwhe8XcM3oDGnn7bodyGwaPRItnnDHq3V7faxu9bsw=="]} diff --git a/scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json b/scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json deleted file mode 100644 index 6895bef4..00000000 --- a/scripts/finschia/template/.lbm/config/gentx/gentx-e4d98792d07e8266fc6d52a3641db32ba79765d0.json +++ /dev/null @@ -1 +0,0 @@ -{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"simd-testing","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"link1twsfmuj28ndph54k4nw8crwu8h9c8mh3rtx705","validator_address":"linkvaloper1twsfmuj28ndph54k4nw8crwu8h9c8mh33lyrp8","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"BT4dbiZUg61sevecT4wVRM0hALGfqi1dcqNXG5OFOlQ="},"value":{"denom":"stake","amount":"10000000000"}}],"memo":"e4d98792d07e8266fc6d52a3641db32ba79765d0@172.30.1.66:26656","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AsVtdRaoc8AsTmzIvRAKWSYgHXf97/HI4ls2wENFk9C8"},"mode_info":{"single":{"mode":"SIGN_MODE_DIRECT"}},"sequence":"0"}],"fee":{"amount":[],"gas_limit":"200000","payer":"","granter":""}},"signatures":["lQ3POV7nTGd/gyo0yQIaUxzmqRkc9mCOMvpKXUv1WSgzB8YfrMZRDKCz4Fv9M40P155MgrA513rk1O9DY5k+Qg=="]} diff --git a/scripts/finschia/template/.lbm/config/node_key.json b/scripts/finschia/template/.lbm/config/node_key.json deleted file mode 100644 index 5386c820..00000000 --- a/scripts/finschia/template/.lbm/config/node_key.json +++ /dev/null @@ -1 +0,0 @@ -{"priv_key":{"type":"tendermint/PrivKeyEd25519","value":"c4EeAGxcAZHWgYTO1C0LvxP1vsHDk13jmUMAY+bjcuRV4UH800zNS5TUFxEN52OztyCoPFVN26JKPwvesxPmbg=="}} \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/config/priv_validator_key.json b/scripts/finschia/template/.lbm/config/priv_validator_key.json deleted file mode 100644 index fbdd556d..00000000 --- a/scripts/finschia/template/.lbm/config/priv_validator_key.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "address": "FB44611283DFC76857B8D5E22C62576AB0180531", - "pub_key": { - "type": "tendermint/PubKeyEd25519", - "value": "BT4dbiZUg61sevecT4wVRM0hALGfqi1dcqNXG5OFOlQ=" - }, - "priv_key": { - "type": "tendermint/PrivKeyEd25519", - "value": "w/OQejRIQA8vAzJcdIpcaNZ6KodkZk0X0bCLH77RUtIFPh1uJlSDrWx695xPjBVEzSEAsZ+qLV1yo1cbk4U6VA==" - } -} \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address b/scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address deleted file mode 100644 index da8738e2..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/43fc557814c74f863bea49b433e51676bfd99bc1.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4xODE5OTggKzA5MDAgS1NUIG09KzAuMDQ4MDEzNTg0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiQnIzbTh2M1hOSmt2eGQwcCJ9._5OYArojGPis8EkJPdzr4TCnMmW-ZqSXPH1G1uP9gEFmgw0mDZlGHA.GnYmW8ciQXctIyDe.V7iod_fPzhy_Lfys1EvjyofptOwScJsCXcjenTSIaOw8L5C8aCAgm02ff7N4hV9BZSd8y6MBSSNAeZBI3WQu3h19l-QWUlxRzYrVrMxJH5-xu3DN3QJN_pbsCQuxZPCK56CO8EsP5Ncz4LNldgrOm4V9yYmfw35myRcKY-o2_8d3GpJFKzhe7ACGJ2fD7siUcWDILSqBBCtDVlk7xO-3kqgPzos858Wq3zbiYdAXrCRm6ksqhINhxtQk.cnxYm8wI_sXgbDaN4ndrTg \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address b/scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address deleted file mode 100644 index a7297e25..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/479104597f29240eafb883bee64e1420895e5259.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4yMzk4NTkgKzA5MDAgS1NUIG09KzAuMDQ3ODg0Mzc2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiTGdaWnNjWW1PclM5ZkNTeiJ9.XkndHGQV3EXiA-AjZkiEk0ILA15CE6vNJIlWVESJK0DDF8ieIepf7w.n_tswFB3NA7i6pJl.fqqGcrxdnBVPCcBSXYo04zDjyFKjazGUmcb6GMuw6_eVO2dWchpYxOqrlFsY0FepjspNNqmmFruXih_vZVNVHJPJXHFvGznePBrWSs-zIiam09iCtFboZFf1SpKhAjVA28Zh7-Dlasoo7bLnuTZciKDmcKk6qfADXGM8CToApym43aOm-tzxT732yGbgRoWerMICGyYADQ0ugiz_ckbxHeCoWTP3qyLh9FYinaWA7K3-N0uQ2PKb4nY-.2DXk1Kz1NRIxHMBJbnHQsg \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address b/scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address deleted file mode 100644 index e83cab66..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/5ba09df24a3cda1bd2b6acdc7c0ddc3dcb83eef1.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4zNjA5MTcgKzA5MDAgS1NUIG09KzAuMDQyNTI4NzkzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoicWtRbjl2cFBveW9fdHNsUSJ9.SVuTqKi6644z_WLFMePhPbya1GyWHqAq_MUMZdWoUKwCU5Bc9R4ZhA.UHfrFBnCcmLuGVr_.M8ffftiAFdwf8rHgNNrVpafdrbMW_T4SdThBGqwzF0PKdNDytsp055aXaY6zQiiEFv03BVVBZ1E8OFyIWYiT8lRSPJFzJ1Co3cYYilKmWHcBPq_uDcA_Xixihjed7AMBCMKSX_kQJg1AIqTAzgfN8iXHCBOChAhNye1Y7JJCJFf0boDr_vpgL-fy5f9Lgqq8fExHQX-auMo0q8GTFcTZiL7Q5PIubIWUhLPPD_hTFhJ1KbIN2wrved3-.QyCdj2wBdoDuC6UlHQ-rVw \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address b/scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address deleted file mode 100644 index a36e99d4..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/6a4847491fc242b9f95d31af087c243e43a703ce.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My45NjQyICswOTAwIEtTVCBtPSswLjA0MjAxNjE2NyIsImVuYyI6IkEyNTZHQ00iLCJwMmMiOjgxOTIsInAycyI6InRQNDJFNEhOVlQyUjJMM1QifQ.7GA51XhMrvx3k-2pORtRK_YKglE0D2DcMBSOvgN_5Z1emz7ihhUaMg.vKbYOxKFwaZZOeDA.so_VsCGHGamLoS8Pag8d4qDebEf7DxxEZyo9Q9kMz2b8ChD1xfZVFYBzVR7I9OcLUETpBDiHyjqXT-gWH7OCo39-Y6I2jq1tdbRk2x9rLmX_12M5lEY_MQKbyR_hCSpgeP_X7HTV5cGewVQ9eQuqEGvwz1YSTQvjLgKndIg06ycoVPMST9HioaP9_-GQqTUtF7qRUEqsFMP6BeCi4aVUr2e5p_HQl315_6BswMmhZBBEvOQWy-P34gTu.czdjTuOMh0hmjq0-Gr3JuQ \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account0.info b/scripts/finschia/template/.lbm/keyring-test/account0.info deleted file mode 100644 index 7fbe483a..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account0.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My44MDY2NzggKzA5MDAgS1NUIG09KzAuMDM3NDQxMDAxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiLXdYWmlKbUVCY3lza0xWeCJ9.RDvZwHo7Bog8COt6YHwltdI2HZeWJhyts7hcMfC06jpFv0f-1_CRLw.IwzGjEIo6J8Z2nmb.JU9IaRDS5qAhPB7RW2pyvv0TueT2FJgKDyju0sEezmEg5BtBTkrtewIaUnIuBKhSiAvJ66mPXTtTOCWxTJBCriDCOx2IA0t93As9eFesQW2-ZyzvYKwK18jPr1ipdkyOEF3NaseuoTntGZst2EJvszXu9baFidmsMlc4KaTcy2vD7nXCAqyz_HgLMthAAGLIBjHVP2MjOfxDVH-3EyVLWyCjyY3WrE4skdnoZcbbf-ZaLrqrTbgicEkRYBY7zDpMtAMa4Vch3bhk0lMvhe7mrAYDQu5xJe643zWo81heo4qJZiso56dyxUCXN8piOv_sxXMdgYULLy2NgUbNtl-PQUoE4wHutifAlxUOyz4L6w.klg3vGAj7--JypwqvH8AUg \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account1.info b/scripts/finschia/template/.lbm/keyring-test/account1.info deleted file mode 100644 index 3d15719e..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account1.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My44NTQ5NjcgKzA5MDAgS1NUIG09KzAuMDM3Mjc0NzUxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiamtzU19VVl81aXlGQTZMLSJ9.6bKx46c7yW0VJ3Q3RWMS7b7OznzDq0c1lZTx2cWvoyM_pOtreSr8EQ.XuBjEnq4g15L1ma_.p_dWHQrA94NZ7fIRy5irr5MXiPm3GKhvXvR3TMtXVa6wtasdCD0RgXbzClgACnb3F9JzJh8e3I6JLQL5bGzqaYHZpoVq0Z-kYS13I958JQjJHy5QyRezyWz4R3uzQ7xUXqMiUhyof837038atHOhNRWen1g7E9uX9iLmeq9gI6SlzABdIM2b-zhOfYrYvEMqj2EaB55zMNymDhU16V9q-2rAzobp6GTKhzoBL76cMu0v3D8LeiT-Kn6DoQqpBOYnnimkUwnqnHXdv3_INsUPqBc3AV7IQ30uIVUTLXnZW4RJST2u9L3S1V2twCOsNZKMeEMR7YSm9rjG0BenivRKlOaBfnhsDnmB6tHJVY_9rw.gzwk9BvNkClagBOHt-qPSA \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account2.info b/scripts/finschia/template/.lbm/keyring-test/account2.info deleted file mode 100644 index 4b9d1a86..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account2.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My45MDM2ODEgKzA5MDAgS1NUIG09KzAuMDM3NjkyMTY4IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoieEJhNGY4SE5XdEttbWFaeCJ9.Zj4kjSi3Lup_Dedet74qy5HnQpw2yferseRGo1xEPzJcVfJ7UkLTqw.BF1q3Bgth80VNyuv.R1ohLC7VoM3z0gW9Rtqg6xhv6UFJ55l25iPzok3uzd_AevPx1beXIWSlMWv53ig-5B1TpMm7RXExZzJPkVZJ5UzI7nctohl4dpCld82Y-3faW-GqhtCw5bSxs4qm1tfnq4oegdJmYKbp4TkobwHMBeSksS6aWXH3CRmNWfOQm5cjVHxeA7-tD8Iqbg4o3eo36JC3qaguImiJNaR0e1XY3blSBaEakStS_Suez6A0FbQtct61n80Q1LIhk3kSvouRljFf4gO3wF96Jj9m_7xRBx-ptbpA3jQRdy6HeO-KY4Jv8CeknAkLaGahHJwvJRZLsgY6DecYUs5qeVUv91Neb4EkO2IhU3J3Lw0Y7bYapg.0aoHK-JYJBt_miwWpTy01g \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account3.info b/scripts/finschia/template/.lbm/keyring-test/account3.info deleted file mode 100644 index 8e5226eb..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account3.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My45NjIwMDQgKzA5MDAgS1NUIG09KzAuMDM5ODIwOTE3IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiZnBGbmxIZ1NVWTdPVzdBYiJ9._QH9K6oI0Hjy_9rOchwdIEFQAaQ6Jk5YzdMhj_-2K4KwDNKkgELWrw.4HhuyDr-dksakbob.YQbO_jK9kGj4hKBcQoOWXz2dmra69qPtynxxXrgvLtvFEKjDRy3TE2CttQjdvjEan-mwD78rQPqx2O3LgedRnqMIp2l1rAHlH40ecN2lKzac2BedhW9J7pwIEWcqbepknbR6ZnPrfK814VB-94X-xTgqNcr8UaexkdzhEAxl1YRtEL4mQyB42-F7BFSQqmuf7naTGLPpPz620AsIR6AV9scHusqYpKd_ZnT7dy09XVjQbHqbSgWKiRXSPy1nS8F9_awg0PtFwFcFMUYovccMbkaQ6laqDkOTlofoW-ZZGCnhbdUftogCIx0er_2ccDMvTuIBv5D6wxoFiJayxtk1r7YWotPtH9CF7GcwV11P9A.PWnb8DCyF779VnIH3UK0_g \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account4.info b/scripts/finschia/template/.lbm/keyring-test/account4.info deleted file mode 100644 index 632b5a78..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account4.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4wMTE3MyArMDkwMCBLU1QgbT0rMC4wMzg1MjM0MTciLCJlbmMiOiJBMjU2R0NNIiwicDJjIjo4MTkyLCJwMnMiOiJ3M3N5UzF4ZnFZWm5nRGF6In0.HbA2SJPgOrn15IhjDpqsYR3s-IXcvXwa2xfqe2hF9X-YpAATSNeOgA.B2ZdzTGSd921f2EH.UnGkOvL7a6RxTPRwvPqIuGQhN7HQcDocX0-k04jVSPuwmpLRlf_KlhKByvWyC2eAT-0Isb7q0gEL1Vz9HdanZUFMmMrBy-kcKFrfT3iqrp9MobGn6rYufmqxTykVGgItp4gpuu8wmbaOY9vwxr4pyd_r4S6Y7K8ghVL4EYSVg0a7LQuh-zb-r-Fj-QAOYh4JiDIw92gsFops28_hn6aSzVprqAXAaPO4Ej50GMf1aWlCihxuAPxsNbzNKFk_IgrUEnPc0TxZayN_Ncvs84bZYnMh_9SeI0yhM6RR7Bi3BPk02nkiAG9dDQ1oTWWrH_RrloqJs622Go9TOjNXuab4kGE1mIJ4H7FADCSalUFLrA.IzQ0A2ggzKgoPT0MdJ5PkQ \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account5.info b/scripts/finschia/template/.lbm/keyring-test/account5.info deleted file mode 100644 index 5c6b1a68..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account5.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4wNjQxODQgKzA5MDAgS1NUIG09KzAuMDQxMjIzODM0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiTUd2cTdESU81WDBpQ0dvUiJ9.AKXAcBZAl-zMwmq96B0mYt0mZ2tn1ezzBBmu5lZhvlo7_Cmy9GyflQ.UDMI6I94N-F3Kq3e.NmZiLYa8ZfUSCVW_Diw_yKt2oTdijk03mzCwaq8ObsIeiFhkVrMLjnXsSLdTWYH5DOnjabXyuLQdxQXVvGUYtwE5LKk-8erpBUErvmtKfaoXg8sJzPMStXA9dQavLor2CPsTiSjEXnzHW9SlBBqr7KJT-sqTvnhZNYXWLVei4R9iehboMn00Rtn8IfrDYOpt36FCGg7olAwVAvMss2FGA88LQn501nxKu3xhJ-QxSC4b2YP5tAweO4DneRf4cabXXtCEL3Hfax-CGMnTi1G8b7i96xs-BTz486e7HWBrgQXU15TKkarJOMgFcoPy6GqBTbyb9vXNHbaXzvtRJbPikNQLt2S80MJC-if9yB7HJQ.DyWGbibEh0GM_1eF7UCK5g \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account6.info b/scripts/finschia/template/.lbm/keyring-test/account6.info deleted file mode 100644 index fd241281..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account6.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4xMTM0OTQgKzA5MDAgS1NUIG09KzAuMDM3Nzk0NTQzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiLURwbG05TGEwalRueGxXYSJ9.iXt-wm80vs4jaagf7RyvQizV-nxiboqSUcG9FyJ4a1qQTgaBTM0z8w.Nx5JWDDHNe2FakYe.yfsPGjWjjt7k_8X3f2lmz5FONR5Z4wbx_x83jqnFFr4nZehjnPVLRn7MAYW54gUb-Vx2TAe0jGJR_SJjQYW7HDkwcpbdHC3id25YPyIgnVwuimqZpd9_KcF-326AZYmAImQqtRVfMdSe07OZc4vPtqXhOl5QODLWBVYG3xycn_D6YdKzLTh1OEF5QQCmcCo8TZfD2iucveLjcDn0m48mVdcrTruvD1yJjAN5yC8RSWZBK6lxvFjqvYpkdxmNQCAv-17rwOXRG9FSZCqN56uRG_B9jdCktpN8XvGAFDkcuWn_tcpwhxXVMsVQ0Ov2liFTvSvPerd_Q30ASf0WyY_sSjoynqEpY_2R3e4NhKJ_Qw.0-9XubhzyRzM2nVmCuW8Lw \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account7.info b/scripts/finschia/template/.lbm/keyring-test/account7.info deleted file mode 100644 index 23618d6d..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account7.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4xODAyMjggKzA5MDAgS1NUIG09KzAuMDQ2MjQzMjkzIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiZ0I0dWhnNVo3MUhCVnJLcyJ9.7UKFG1zhtqgEii-yxAEOqHrH3RotYsKMSFe6sbFzujUFhiEUoucNbA.xR2B84PKhvSQmXRA.9tMwV2EX3nagGDHOQLkS2WxCV53lS613eppC_24P7NtKYZrnqcHUFOdTx_k_8FD2D7iQMx52dWtjAua8WPF8TzS0BCOp7V34_RbnOQUy7425fuDNJp3jKNMc4nyoXH7mOqwvfUsi0VzwqvW_5ckKDiJ2V5zCEQlg8M8a7CSFa0kTMDYyFQGPfoZOixpVGCZl4gi6rxJfFtbGK-99rAVHpf7clyFShVAt003O5GeJWePI4VIr5T46DAJPtCgWASXoK8KnWYq_rMpjfJYwNeUKbTDlZq0XNlZcwGsqQCtDMbKKx-KV1lD3WI17sfnZTCXvfnFrhM4QSnMnKxk4Li8Ehvq9ML_46-SmqRd838D14g.2me9Rn0cRm2so72Q6AGyZQ \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/account8.info b/scripts/finschia/template/.lbm/keyring-test/account8.info deleted file mode 100644 index 01f2c789..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/account8.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4yMzgxOTQgKzA5MDAgS1NUIG09KzAuMDQ2MjE5Mzc2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoieFlrMk5oQ2FjTVJSbEg4SSJ9.eFiWsoxISubF7AAxDqlo232nOWlqVnJcwI6QTPBeABGXE09RZLjIAA.aJQGs8u-p59kJQqV.3n-kPEhPYzsAgAt4hhEsuM2aLuP05vWsXIe9hGOggsATQKyiC6rmwBOTH9uZnSH0cbdgU_WeTqpOjRoQuZyx44Ve3Wo_fTyvb4RV5989ooNdq7rrgDbNOHfnAirXbiJWlfPoY9ybuXQESnIXGb61S5B_-N2aSZHIcnEcPJ561ufL5czMHcYvFBiyhvgv2FGAd0zbkBGFcviqxuNmCr3wYtHLEXrReShQws2k1Iz0zkNnkNJrrwEMnTqZFmnrPctAnwB-qCigW_l65HYW0nm4aVzVZglDEQJBiNW1sRBUA4LizJf1ucVlASolwQseromurDdVpcIKgZZzhKQGfg-sxP-vyW8heXHJq2ZCOf6cqg.fuF9D4xv4RvmzQo9mDtsBA \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address b/scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address deleted file mode 100644 index 551b8e0c..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/acd8c1daad146da2d167f55ec00a5360dd013b7a.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4wNjU5NDggKzA5MDAgS1NUIG09KzAuMDQyOTg3NzkyIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiOWNWOEN3aGZnNC1fZ05DXyJ9.wIWeHPnZe8zLeypWH3bBNQqMJW28Sj2HFaoGjHH87pfLPJ3j1xgTaQ.Ut-wAxB1mCvGUQBr.kdaocLR8hlNMfx5Kap3CdZNkOQObhD4YE-V_ZjsW4h_6YCpTHf3ZnBaVGLfEboJ4KaLhze5m3wuIOA6qFOTKyld6C3VODPqH5kXBwnbfhUQTG4bL05w9BsLFFzRZUFJS71KVIjlDtct9vnZM2nwxSW9ApvxZkcYb8_orVbhzJkkUadWBo5bd75gl1H6-L9molN2E8bGqi8XYWL444cs391jY4CHS5rDHM_WVjW1SuszxTF0Gn4g49m9H.63o4nKITdt0LNLpsyvcOUg \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address b/scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address deleted file mode 100644 index 09abd70a..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/aebb0e931b591a0ad2c6c1f2c9ac094643d41119.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My44MDgyNjUgKzA5MDAgS1NUIG09KzAuMDM5MDI3NzA5IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoibVlTb01tZTN2amJ0V2s1SCJ9.0TgyiYJ0wkRqHVnEe_HAvs55cNWppCIk_jtO9QhEyOen4mLyKNrqdw.bQCskOCR3bYQYbDo.XFGdrELV8ilcYnHw6rDYt3U8MGOJZOEDCdwQ96GNscz2zA5Q9xF_NKsVwjwn9BXBYcontR0lZ-rFjFibjtKtD3tZPnoFV1Vg6yEljkid3Sna57O-mQbuhBiDkWBTZ2UaPj7e-5m41LEKxVse2GC9uqtsftjZA-TtncqKq3iK7Cdc0xMopFAS0SZoBHZFGUaVDHmq3lkWxLHAYqgNo2YI7zqENU9-bSPCJjB5Odx9Qsh_zZYpTQqTOcFp.UgR_sRNNaN22xCPMKI8nag \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address b/scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address deleted file mode 100644 index 0b65284d..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/c83959c78e25fa1eda888ff207f5823d2cf06a58.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4wMTM0ODEgKzA5MDAgS1NUIG09KzAuMDQwMjc0MjkyIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiQkFwYmZBVW9MTG5HMG10UCJ9.dmq-CrXZKIY7zaBEiZB6pze9bwDoNSMXIR_phbWpjN-1Bnpg_57w2w.SU73PA0fxTVv7qy9.RTXbAm_QC464jppDRKP2jUHFpdmqS2UQPGfZntUQzRzCcZPxg_Kb9Sn1jBqf1NWJnmLbSh97PXLR6NAvxGBqvz5rLQ9RHPsn241xg4TcCZNsuvSR-nUSEgojnEFAIVca8V3CQBGgCp4XxXFZCU-l2sVRqnM1njjE1Q35gqEkWu9BJpkpYfEVjcV3_MmDeQnOP4yzouuDMG01kAGl5-e8n68DnnosdKXcsxzGQswaP9nlTT5293Dw5eJB.qNZGvzjmCSNPPr8n2LHcQw \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address b/scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address deleted file mode 100644 index bb92300e..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/c91ee79a45654ecb1d575eb77037f72b81631f33.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My45MTI2MjggKzA5MDAgS1NUIG09KzAuMDQ2NjM5MzM0IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiWHdVSVRqRUZjaXNsWEpLUSJ9.UAX0MtIrdmN2O0_Z-BC68OQNkMdPwPEq20ymPmshvOVmwIgXtrU9Tg.BzNrPbrHBIWJMrL2.Xh-s4bFsKvtbMgaoergaJraiQaEH-rAjKqOlH6y-lrGlYPPlc7u04i6D5wzRSofJ1wkFvozo8OVb4wsfXGJJeQ1VdZHtNRqBnbfX0ESsX44qiwr3sXO8ADUc7QjrCfIv6YWj-B95q4eal5L4knftMnUYBzzo4YGchcpGps6SgeJYMSjmcWUae0y1KzGOf4QLC4sg1wUn0xRINy9rGLmLi_xpktI6cNG6y3T9hEndXc39MO6rWPYcJHop.SrVwa-QgJNDGysh9gPnogQ \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address b/scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address deleted file mode 100644 index 54cce925..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/ca420033fc2858fbe68b38189596993b73fba5f4.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4xMjM3NTEgKzA5MDAgS1NUIG09KzAuMDQ4MDUxNzA5IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoidDBxTzl3dUlSOTRtNkY2cCJ9.Hyl_H8i0chcRbcB9zYlwe4WV86wmqminB_LTjnbSs0GGzmuu95eXew.KdumoiP-zUT3O-Uw.LXMi59bOy2Z1T70rZWtYat-RgL5u8alsqKrIp6Y5HoiooXC2lPpwZcWmY9lf_Pnb8f_QOXI63Cf3cp_QeTWAs7_2qqr5f1xoV6YNniFw18zjpjeHZLSA05sUmhq_1lTyWZffYNc2oW2BCqVVXvU8QBqDvt-SwMq4OO3PzAZ1Y1KRCVPGruwZp5x9N3UeRP1OuTZUeqWZYt__gJbvBFsrcvDLQ-21h2geX3vbX53pHUUj7krBgBhAffUQ.FlkLJ060ccCgpBe1Mxj7Xw \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address b/scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address deleted file mode 100644 index caeb3cb6..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/d552c77c0cd770b0696c101db34a7c88c9e60ea3.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4zMDYyNzIgKzA5MDAgS1NUIG09KzAuMDU3MTkyMDAxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiZ0l2NHZub1Z6djhpY0dZWSJ9.kctk5oFIZ9eYooUP4c_V10IZK7JTfe4l6x214nGL-F2kXihpRmSOig.tOdus7LrWeNnyGca.qO1Ojm69aK1ESxPQ8YYRVfh8PgJcCmqa6Z6muID0_sjgy_JtM3keen38738WURutZKTQdpg9WsM3RlrTM8jcC6X_YS3cMyXnrtxWQfk5ip0QueZk7MYCHFLx5MSOr2thBjVa5N_BVzgPYA-rWntJiLI1h4ICXtpvPpdm1mjPl8EjNhchiqBXj3xm_i9E9yVouB6SSaTmu0ITf7Et5iQfFAsh1fYtmSg7EWKRi7TObfISBU2D77gVYDLC.jVLj8Tmbs60qu6mn67ZXUA \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address b/scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address deleted file mode 100644 index 02098959..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/ef529334556bb1390b9b96fd73949275314773e7.address +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0My44NTY1NzUgKzA5MDAgS1NUIG09KzAuMDM4ODgxODc2IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiVTJpYlN4dXpTVVJHd09SZyJ9.xO55apInmZh938HzQOdqV0Gv_sTjtt3aYXKSB1unBGxEFpYZOzjFwQ.LGbHtlExLaKv8AK2.wYZulCWm7JYYjMd1OCMx0aLZMJ4adTvTL95l6Cl5a7-nddoAhN6UUWk3Ol7CwJ1kO8GzDwTpkfYHkAVKMPOhAUiuCzT2J70xrk8MyVABLbb-k-GSqXAzzFZKPEwf6Qllrn-P6SXJZnlOck6I9gPZQr0AO65YrQuKH9jpa86LQ24zob3kk7Q_G15NP5_SRcGWW4SQRiGZzoDsHtVZPkJc1q2pdmcALFdsafP2RDk8Xx5H2-2ppxlFIbHi.1uQdBlqRrcTP_7e6zMO3JA \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/multisig0.info b/scripts/finschia/template/.lbm/keyring-test/multisig0.info deleted file mode 100644 index 2f9b6546..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/multisig0.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4zMDM5NDkgKzA5MDAgS1NUIG09KzAuMDU0ODY5NTQyIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiU2hwWDZwMEsxelZXQUFZTyJ9.Q4b074mGqdNUUrdlriJvZ05ZO739Xa9aPcBsrc5wh3zGVA9lWiOISw.cUUuZ_wgA8yCW8dW.acuA_WWrj3E-mR1axLJbF238HmqTofSHHu8MNottA9EBDjy6KGVJuTD6nCX_jFZf-3eysgVKdSOJVxx35nQfgf01dGwtFa6BhYmiQUoG8EnSdnOtOsjLC23ZePsRYVx676D_Ekx5ddQr1pOqjNsIj2wqy1v0jnzwGbtJ-j3rUyh_dSFRxA0beWV-pplkRcmtjXy0ICl6_QHppFqc95TW2Sgq0VYrEW5I7StTooVj-tyIfQ-UO9M_gTcNEY2aObYns8cRJ2En3_gaKchy2Wdk9dF98VpycZVmn45z_p36JY4L79hXjn7KPOTlD_CutIp7odXb98hEoy24q-gxGb84vbYr3CaweKCmlg4blYaoqbALBANLDCmEE_756cHM7-z1NZ-I7wny0WFl0qhcMGTkwZWxD6_sl_4rq8jdMt3a_l6U3jFBFV6t4fgrikm8kav8jjxvmT2as43H3mOdhIRc1COaSojO2_8Vc5k98kfFEpuTk_YwQbtxmaOVEY_2suTM_LJF7IKWVOmMVEpQH45Rkowoo3dNj4m8XRIXR_ol4eXABOC0u6CtplJ2rGLc6CrmqZwO7Q.hhvKapg2GIYntD9L7K0AWQ \ No newline at end of file diff --git a/scripts/finschia/template/.lbm/keyring-test/validator0.info b/scripts/finschia/template/.lbm/keyring-test/validator0.info deleted file mode 100644 index d68321a7..00000000 --- a/scripts/finschia/template/.lbm/keyring-test/validator0.info +++ /dev/null @@ -1 +0,0 @@ -eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wMy0zMCAyMTo1ODo0NC4zNTkwMTQgKzA5MDAgS1NUIG09KzAuMDQwNjI2MjEwIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoibmhnZUpINFlCei1DbTZKMiJ9.scUqa9EzS59w07lGhh_Jr9Ey1lsouNPjIoCsCZTSgvL6SBPdUNpxuQ.qQzS5MaUJm2GJzQh.EKoU9F-0BpoMAE6O46JxhgHQGODfnRg1ZssRtGKqw-AbFvaAT1ueMD8d0LhdsuJbCnbbOgD50FJKEJLQLiDmnVBhDHFPB66cd311DbAOGf6GGFAEGjCqm0jYvuF_CWIwyM0j5OTVtM39AQahCEgpPDe8lWQi4KOjXWYPVgZ2xSdUA-1N_n8rdh66BOr0usY0BC9Wq1iLNhmoXNAw7Nu-aou9Pm5MfVytZxqOWFVCtdzaAL73m3R5TFPlvZiOJ6J4aN4Jtwq55TaydL-67iB0iuyD6cX3mOEx0Ae4hHEObXGoKbxV9SxjmFf5klCrLa0_kuhQcnJRE2RH_Z0TcHGkPjbvr-A7W9AdLPwidCYSvCjWzd4CdA.auSfF-awVhmIkWeseyfqIA \ No newline at end of file diff --git a/scripts/finschia/template/run_finschia.sh b/scripts/finschia/template/run_finschia.sh index 3adc8509..e2939a25 100755 --- a/scripts/finschia/template/run_finschia.sh +++ b/scripts/finschia/template/run_finschia.sh @@ -2,6 +2,6 @@ set -o errexit -o nounset -o pipefail command -v shellcheck >/dev/null && shellcheck "$0" -cp -R "/template/.lbm" /root/.finschia +cp -R "/template/.finschia" /root/.finschia mkdir -p /root/log fnsad start --rpc.laddr tcp://0.0.0.0:26658 --trace diff --git a/scripts/finschia/template/setup.sh b/scripts/finschia/template/setup.sh index b0dceabf..d51f420e 100755 --- a/scripts/finschia/template/setup.sh +++ b/scripts/finschia/template/setup.sh @@ -10,7 +10,7 @@ source "$SCRIPT_DIR"/../env CHAIN_ID="simd-testing" MONIKER="simd-testing" -CONFIG_DIR=${SCRIPT_DIR}/.lbm +CONFIG_DIR=${SCRIPT_DIR}/.finschia CHAIN_DIR=${CONFIG_DIR} if [[ $1 == "docker" ]] @@ -19,30 +19,30 @@ then then mode="testnet" fi - LBM="docker run -i --rm -p 26656:26656 -p 26657:26657 -v $CONFIG_DIR:/root/.lbm --platform=linux/amd64 $REPOSITORY:$VERSION fnsad" - CHAIN_DIR="/root/.lbm" + FNSAD="docker run -i --rm -p 26656:26656 -p 26657:26657 -v $CONFIG_DIR:/root/.finschia --platform=linux/amd64 $REPOSITORY:$VERSION fnsad" + CHAIN_DIR="/root/.finschia" elif [[ $1 == "testnet" ]] then mode="testnet" fi -LBM=${LBM:-fnsad} +FNSAD=${FNSAD:-fnsad} # initialize rm -rf $CONFIG_DIR # Initialize configuration files and genesis file # moniker is the name of your node -${LBM} init simd-testing --chain-id=$CHAIN_ID --home=${CHAIN_DIR} +${FNSAD} init simd-testing --chain-id=$CHAIN_ID --home=${CHAIN_DIR} # configure for testnet if [[ ${mode} == "testnet" ]] then if [[ $1 == "docker" ]] then - docker run -i -p 26656:26656 -p 26657:26657 -v ${HOME}/.lbm:/root/.lbm $REPOSITORY:$VERSION sh -c "export SIMD_TESTNET=true" + docker run -i -p 26656:26656 -p 26657:26657 -v ${HOME}/.finschia:/root/.finschia $REPOSITORY:$VERSION sh -c "export SIMD_TESTNET=true" else - export LBM_TESTNET=true + export FNSAD_TESTNET=true fi fi @@ -53,26 +53,26 @@ N=9 # generate normal account keys for ((i = 0; i < N; i++)) do - ${LBM} keys add account${i} --home=${CHAIN_DIR} --keyring-backend=test --recover --index=${i} <<< ${TEST_MNEMONIC} + ${FNSAD} keys add account${i} --home=${CHAIN_DIR} --keyring-backend=test --recover --index=${i} <<< ${TEST_MNEMONIC} done # generate multisig key -${LBM} keys add multisig0 --home=${CHAIN_DIR} --keyring-backend=test --multisig account0,account1,account2,account3,account4 --multisig-threshold 2 +${FNSAD} keys add multisig0 --home=${CHAIN_DIR} --keyring-backend=test --multisig account0,account1,account2,account3,account4 --multisig-threshold 2 # generate validator key -${LBM} keys add validator0 --home=${CHAIN_DIR} --keyring-backend=test --recover --account=1 <<< ${TEST_MNEMONIC} +${FNSAD} keys add validator0 --home=${CHAIN_DIR} --keyring-backend=test --recover --account=1 <<< ${TEST_MNEMONIC} # Add both accounts, with coins to the genesis file for ((i = 0; i < N; i++)) do - ${LBM} add-genesis-account $(${LBM} keys show account${i} -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} + ${FNSAD} add-genesis-account $(${FNSAD} keys show account${i} -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} done -${LBM} add-genesis-account $(${LBM} keys show multisig0 -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} -${LBM} add-genesis-account $(${LBM} keys show validator0 -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} +${FNSAD} add-genesis-account $(${FNSAD} keys show multisig0 -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} +${FNSAD} add-genesis-account $(${FNSAD} keys show validator0 -a --home=${CHAIN_DIR} --keyring-backend=test) 100000000000cony,20000000000stake --home=${CHAIN_DIR} -${LBM} gentx validator0 10000000000stake --home=${CHAIN_DIR} --keyring-backend=test --chain-id=$CHAIN_ID --moniker=$MONIKER +${FNSAD} gentx validator0 10000000000stake --home=${CHAIN_DIR} --keyring-backend=test --chain-id=$CHAIN_ID --moniker=$MONIKER -${LBM} collect-gentxs --home=${CHAIN_DIR} +${FNSAD} collect-gentxs --home=${CHAIN_DIR} -${LBM} validate-genesis --home=${CHAIN_DIR} +${FNSAD} validate-genesis --home=${CHAIN_DIR} -# ${LBM} start --log_level *:debug --rpc.laddr=tcp://0.0.0.0:26657 --p2p.laddr=tcp://0.0.0.0:26656 +# ${FNSAD} start --log_level *:debug --rpc.laddr=tcp://0.0.0.0:26657 --p2p.laddr=tcp://0.0.0.0:26656 From c8cc264b8952e41087bc38022f8680f31c61b8c9 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Tue, 4 Apr 2023 00:33:02 +0900 Subject: [PATCH 11/15] docs: change company name --- NOTICE | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index 42ed430e..2f9e43b1 100644 --- a/NOTICE +++ b/NOTICE @@ -1,18 +1,21 @@ ### Open Source Software Notice ### -This product from LINE Corporation contains the open source software detailed below. Please refer to the indicated open source licenses (as are included following this notice) for the terms and conditions of their use. +This product from Finschia Foundation contains the open source software detailed below. Please refer to the indicated open source licenses (as are included following this notice) for the terms and conditions of their use. -Please be informed that LINE Corporation product may contain open source software listed in to tables below. +Please be informed that Finschia Foundation product may contain open source software listed in to tables below. cosmjs (Apache-2.0) Copyright 2018-2020 IOV SAS Copyright 2020-2021 Confio OÜ Copyright 2020 Simon Warta Copyright 2021 Confio GmbH + +finschia-js (Apache-2.0) Copyright 2023 Finschia Foundation + _________________________________________________________________________________________________________________________ @@ -91,4 +94,4 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. From 9bc4a1ca6cff19232c4125741f0890ec6b7d82eb Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 12 Apr 2023 17:50:10 +0900 Subject: [PATCH 12/15] chore: delete blank --- CODE_OF_CONDUCT.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index b4d939e0..d8b45aee 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -59,9 +59,9 @@ representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at [dev@finschia.org] -(mailto:dev@finschia.org). All complaints will be reviewed and investigated promptly -and fairly. +reported to the community leaders responsible for enforcement at +[dev@finschia.org](mailto:dev@finschia.org). All complaints will be reviewed and +investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. From 2683f1220d3d2f0ad449e18d519ecf7b51e1905b Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 19 Apr 2023 18:22:50 +0900 Subject: [PATCH 13/15] change url to finschia --- CHANGELOG.md | 92 ++++++++++++-------- CONTRIBUTING.md | 115 ++++++++++++++++--------- HACKING.md | 4 +- README.md | 2 +- scripts/finschia/README.md | 5 +- scripts/finschia/contracts/download.sh | 4 +- 6 files changed, 140 insertions(+), 82 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec3fc43a..e713a4aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,50 +7,67 @@ and this project adheres to ## [Unreleased] ### Added -- [\#69](https://github.com/line/lbmjs/pull/69) apply the changes of `x/token` and `x/collection` protos -- [\#71](https://github.com/line/lbmjs/pull/71) @lbmjs/finschia: Add custom GetBlockWithTxs for lbm -- [\#77](https://github.com/line/lbmjs/pull/77) @lbmjs/finschia: Enable amino sign store msgs in `wasm` and `wasmplus` -- [\#80](https://github.com/line/lbmjs/pull/80) add MsgInstantiateContract2 -- [\#81](https://github.com/line/lbmjs/pull/81) add git PR template + +- [\#69](https://github.com/Finschia/finschia-js/pull/69) apply the changes of + `x/token` and `x/collection` protos +- [\#71](https://github.com/Finschia/finschia-js/pull/71) @lbmjs/finschia: Add + custom GetBlockWithTxs for lbm +- [\#77](https://github.com/Finschia/finschia-js/pull/77) @lbmjs/finschia: + Enable amino sign store msgs in `wasm` and `wasmplus` +- [\#80](https://github.com/Finschia/finschia-js/pull/80) add + MsgInstantiateContract2 +- [\#81](https://github.com/Finschia/finschia-js/pull/81) add git PR template ### Changed -- [\#84](https://github.com/line/finschia-js/pull/84) Bumpup cosmjs to 0.30.1 + +- [\#84](https://github.com/Finschia/finschia-js/pull/84) Bumpup cosmjs to + 0.30.1 ### Deprecated ### Removed ### Fixed -- [\#73](https://github.com/line/lbmjs/pull/73) fix the local unit test error -### Security +- [\#73](https://github.com/Finschia/finschia-js/pull/73) fix the local unit + test error +### Security ## [v0.7.2] ### Added -- [\#61](https://github.com/line/lbmjs/pull/61) @lbmjs/finschia: Add query minimum gas price -- [\#58](https://github.com/line/lbmjs/pull/58) @lbmjs/finschia: Add test foundation amino +- [\#61](https://github.com/Finschia/finschia-js/pull/61) @lbmjs/finschia: Add + query minimum gas price +- [\#58](https://github.com/Finschia/finschia-js/pull/58) @lbmjs/finschia: Add + test foundation amino ## [v0.7.1] - 2023-01-10 ### Fixed -- [\#54](https://github.com/line/lbmjs/pull/54) @lbmjs/finschia: Fix not to import wrong execute msg +- [\#54](https://github.com/Finschia/finschia-js/pull/54) @lbmjs/finschia: Fix + not to import wrong execute msg ## [v0.7.0] - 2022-12-08 ### Added -- [\#44](https://github.com/line/lbmjs/pull/44) @lbmjs/finshia: Add amino messages to lbm specific modules, support changed foundation module -- [\#47](https://github.com/line/lbmjs/pull/47) @lbmjs/finshia: Add message encode object interface to token, collection, foundation module + +- [\#44](https://github.com/Finschia/finschia-js/pull/44) @lbmjs/finshia: Add + amino messages to lbm specific modules, support changed foundation module +- [\#47](https://github.com/Finschia/finschia-js/pull/47) @lbmjs/finshia: Add + message encode object interface to token, collection, foundation module ### Removed -- [\#43](https://github.com/line/lbmjs/pull/43) chore: remove unused scripts and ci files + +- [\#43](https://github.com/Finschia/finschia-js/pull/43) chore: remove unused + scripts and ci files ### Fixed -- [\#49](https://github.com/line/lbmjs/pull/49) fix: change not to override rpc server address as 26657 +- [\#49](https://github.com/Finschia/finschia-js/pull/49) fix: change not to + override rpc server address as 26657 ## [v0.4.0] - 2022-10-07 @@ -59,31 +76,40 @@ and this project adheres to - support lbm-sdk v0.46.0-rc8 ### Added -- [\#18](https://github.com/line/lbmjs/pull/18) ci: add unittest CI -- [\#35](https://github.com/line/lbmjs/pull/35) ci: run simapp and enable simapp test in GitHub action + +- [\#18](https://github.com/Finschia/finschia-js/pull/18) ci: add unittest CI +- [\#35](https://github.com/Finschia/finschia-js/pull/35) ci: run simapp and + enable simapp test in GitHub action ### Changed -- [\#20](https://github.com/line/lbmjs/pull/20) cosmjs: bump up v0.28.1 -- [\#22](https://github.com/line/lbmjs/pull/22) cosmjs: bump up v0.28.4 -- [\#37](https://github.com/line/lbmjs/pull/37) merge stargate and cosmwasm-stargate into finschia -- [\#39](https://github.com/line/lbmjs/pull/39) delete stargate, cosmwasm-stargate -- [\#38](https://github.com/line/lbmjs/pull/38) support lbm-sdk-rc8 and bump up cosmjs 0.29 + +- [\#20](https://github.com/Finschia/finschia-js/pull/20) cosmjs: bump up + v0.28.1 +- [\#22](https://github.com/Finschia/finschia-js/pull/22) cosmjs: bump up + v0.28.4 +- [\#37](https://github.com/Finschia/finschia-js/pull/37) merge stargate and + cosmwasm-stargate into finschia +- [\#39](https://github.com/Finschia/finschia-js/pull/39) delete stargate, + cosmwasm-stargate +- [\#38](https://github.com/Finschia/finschia-js/pull/38) support lbm-sdk-rc8 + and bump up cosmjs 0.29 - add token/collection/foundation module APIs ### Fixed -- [\#19](https://github.com/line/lbmjs/pull/19) @lbmjs/stargate: fix multisignature spec file error +- [\#19](https://github.com/Finschia/finschia-js/pull/19) @lbmjs/stargate: fix + multisignature spec file error ## 0.1.0 - 2022-03-29 - porting @cosmjs v0.27.1 - support lbm v0.3.0 - ### Added - @lbmjs/stargate: Add `x/token` module apis ([#7]) -- @lbmjs/cosmwasm-stargate: Add `MsgStoreCodeAndInstantiateContract` function and `MsgUpdateContractStatus` tx encoding ([#7]) +- @lbmjs/cosmwasm-stargate: Add `MsgStoreCodeAndInstantiateContract` function + and `MsgUpdateContractStatus` tx encoding ([#7]) ### Changed @@ -96,12 +122,10 @@ and this project adheres to - @lbmjs/stargate: porting @cosmjs/stargate v0.27.1 ([#7]) - @lbmjs/faucet: support big number ([#14]) -[#7]: https://github.com/line/lbmjs/pull/7 -[#14]: https://github.com/line/lbmjs/pull/14 - - -[Unreleased]: https://github.com/line/lbmjs/compare/v0.7.2...HEAD -[v0.7.2]: https://github.com/line/lbmjs/compare/v0.7.1...v0.7.2 -[v0.7.1]: https://github.com/line/lbmjs/compare/v0.7.0...v0.7.1 -[v0.7.0]: https://github.com/line/lbmjs/compare/v0.4.0...v0.7.0 -[v0.4.0]: https://github.com/line/lbmjs/compare/v0.1.0...v0.4.0 +[#7]: https://github.com/Finschia/finschia-js/pull/7 +[#14]: https://github.com/Finschia/finschia-js/pull/14 +[unreleased]: https://github.com/Finschia/finschia-js/compare/v0.7.2...HEAD +[v0.7.2]: https://github.com/Finschia/finschia-js/compare/v0.7.1...v0.7.2 +[v0.7.1]: https://github.com/Finschia/finschia-js/compare/v0.7.0...v0.7.1 +[v0.7.0]: https://github.com/Finschia/finschia-js/compare/v0.4.0...v0.7.0 +[v0.4.0]: https://github.com/Finschia/finschia-js/compare/v0.1.0...v0.4.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 31cf93e8..f227ca8d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,52 +1,75 @@ # How to contribute to Finschia-js -First of all, thank you so much for taking your time to contribute! -It will be amazing if you could help us by doing any of the following: - -- File an issue in [the issue tracker](https://github.com/line/finschia-js/issues) to report bugs and propose new features and - improvements. -- Ask a question by creating a new issue in [the issue tracker](https://github.com/line/finschia-js/issues). - - Browse [the list of previously answered questions](https://github.com/line/finschia-js/issues?q=label%3Aquestion). -- Contribute your work by sending [a pull request](https://github.com/line/finschia-js/pulls). +First of all, thank you so much for taking your time to contribute! It will be +amazing if you could help us by doing any of the following: + +- File an issue in + [the issue tracker](https://github.com/Finschia/finschia-js/issues) to report + bugs and propose new features and improvements. +- Ask a question by creating a new issue in + [the issue tracker](https://github.com/Finschia/finschia-js/issues). + - Browse + [the list of previously answered questions](https://github.com/Finschia/finschia-js/issues?q=label%3Aquestion). +- Contribute your work by sending + [a pull request](https://github.com/Finschia/finschia-js/pulls). ## Contributor license agreement -When you are sending a pull request and it's a non-trivial change beyond fixing typos, please sign -the ICLA (individual contributor license agreement). Please -[contact us](mailto:dev@finschia.org) if you need the CCLA (corporate contributor license agreement). +When you are sending a pull request and it's a non-trivial change beyond fixing +typos, please sign the ICLA (individual contributor license agreement). Please +[contact us](mailto:dev@finschia.org) if you need the CCLA (corporate +contributor license agreement). ## Code of conduct -We expect contributors to follow [our code of conduct](https://github.com/line/finschia-js/blob/main/CODE_OF_CONDUCT.md). +We expect contributors to follow +[our code of conduct](https://github.com/Finschia/finschia-js/blob/main/CODE_OF_CONDUCT.md). ## Commit message and Pull Request message -- Follow [Conventional Commit](https://www.conventionalcommits.org) to release note automation. +- Follow [Conventional Commit](https://www.conventionalcommits.org) to release + note automation. - Don't mention or link that can't accessible from public. -- Use English only. Because this project will be published to the world-wide open-source world. But no worries. We are fully aware of that most of us are not the English-native. +- Use English only. Because this project will be published to the world-wide + open-source world. But no worries. We are fully aware of that most of us are + not the English-native. ## Pull Requests To accommodate review process we suggest that PRs are categorically broken up. Ideally each PR addresses only a single issue. Additionally, as much as possible -code refactoring and cleanup should be submitted as a separate PRs from bugfixes/feature-additions. +code refactoring and cleanup should be submitted as a separate PRs from +bugfixes/feature-additions. ### Process for reviewing PRs -All PRs require two Reviews before merge (except docs changes, or variable name-changes which only require one). When reviewing PRs please use the following review explanations: +All PRs require two Reviews before merge (except docs changes, or variable +name-changes which only require one). When reviewing PRs please use the +following review explanations: -- `LGTM` without an explicit approval means that the changes look good, but you haven't pulled down the code, run tests locally and thoroughly reviewed it. -- `Approval` through the GH UI means that you understand the code, documentation/spec is updated in the right places, you have pulled down and tested the code locally. In addition: +- `LGTM` without an explicit approval means that the changes look good, but you + haven't pulled down the code, run tests locally and thoroughly reviewed it. +- `Approval` through the GH UI means that you understand the code, + documentation/spec is updated in the right places, you have pulled down and + tested the code locally. In addition: - You must also think through anything which ought to be included but is not - - You must think through whether any added code could be partially combined (DRYed) with existing code - - You must think through any potential security issues or incentive-compatibility flaws introduced by the changes + - You must think through whether any added code could be partially combined + (DRYed) with existing code + - You must think through any potential security issues or + incentive-compatibility flaws introduced by the changes - Naming must be consistent with conventions and the rest of the codebase - - Code must live in a reasonable location, considering dependency structures (e.g. not importing testing modules in production code, or including example code modules in production code). - - if you approve of the PR, you are responsible for fixing any of the issues mentioned here and more -- If you sat down with the PR submitter and did a pairing review please note that in the `Approval`, or your PR comments. -- If you are only making "surface level" reviews, submit any notes as `Comments` without adding a review. + - Code must live in a reasonable location, considering dependency structures + (e.g. not importing testing modules in production code, or including example + code modules in production code). + - if you approve of the PR, you are responsible for fixing any of the issues + mentioned here and more +- If you sat down with the PR submitter and did a pairing review please note + that in the `Approval`, or your PR comments. +- If you are only making "surface level" reviews, submit any notes as `Comments` + without adding a review. ## Forking + To create a fork and work on a branch of it, I would: - Create the fork on github, using the fork button. @@ -55,8 +78,8 @@ To create a fork and work on a branch of it, I would: - `git remote add origin git@github.com:someone/finschia-js.git` Now `origin` refers to my fork and `upstream` refers to the finschia-js version. -So I can `git push -u origin main` to update my fork, and make pull requests to finschia-js from there. -Of course, replace `someone` with your git handle. +So I can `git push -u origin main` to update my fork, and make pull requests to +finschia-js from there. Of course, replace `someone` with your git handle. To pull in updates from the origin repo, run @@ -67,22 +90,28 @@ Please don't make Pull Requests from `main`. ## Dependencies -We use [yarn 3.1](https://classic.yarnpkg.com/lang/en/) to manage -dependency versions. +We use [yarn 3.1](https://classic.yarnpkg.com/lang/en/) to manage dependency +versions. -The `main` branch of every finschia-js repository should just build with `yarn install`, `yarn build`, -which means they should be kept up-to-date with their dependencies, so we can -get away with telling people they can just go get our software. +The `main` branch of every finschia-js repository should just build with +`yarn install`, `yarn build`, which means they should be kept up-to-date with +their dependencies, so we can get away with telling people they can just go get +our software. ## Testing -Tests can be ran by running `yarn test` at the top level of the finschia-js repository. +Tests can be ran by running `yarn test` at the top level of the finschia-js +repository. -To run tests that need to interact with the chain (e.g. contract instantiation), start the test chain with `./scripts/finschia/start.sh` and `./scripts/finschia/init.sh`. After start up a test chain, run tests with `SIMAPP_ENABLED=true yarn test`. +To run tests that need to interact with the chain (e.g. contract instantiation), +start the test chain with `./scripts/finschia/start.sh` and +`./scripts/finschia/init.sh`. After start up a test chain, run tests with +`SIMAPP_ENABLED=true yarn test`. ## Branching Model and Release -User-facing repos should adhere to the trunk based development branching model: https://trunkbaseddevelopment.com/. +User-facing repos should adhere to the trunk based development branching model: +https://trunkbaseddevelopment.com/. Libraries need not follow the model strictly, but would be wise to. @@ -92,16 +121,19 @@ This repo utilizes [semantic versioning](https://semver.org/). Ensure that you base and target your PR on the `main` branch. -All feature additions should be targeted against `main`. Bug fixes for an outstanding release candidate -should be targeted against the release candidate branch. +All feature additions should be targeted against `main`. Bug fixes for an +outstanding release candidate should be targeted against the release candidate +branch. ### Development Procedure - the latest state of development is on `main` - `main` must never fail `yarn build`, `yarn test` - `main` should not fail `yarn lint` -- no `--force` onto `main` (except when reverting a broken commit, which should seldom happen) -- create a development branch either on github.com/line/finschia-js, or your fork (using `git remote add origin`) +- no `--force` onto `main` (except when reverting a broken commit, which should + seldom happen) +- create a development branch either on github.com/Finschia/finschia-js, or your + fork (using `git remote add origin`) - before submitting a pull request, begin `git rebase` on top of `main` ### Pull Merge Procedure @@ -117,13 +149,14 @@ should be targeted against the release candidate branch. - Create the release candidate branch `rc/v*` (going forward known as **RC**) and ensure it's protected against pushing from anyone except the release manager/coordinator - - **no PRs targeting this branch should be merged unless exceptional circumstances arise** + - **no PRs targeting this branch should be merged unless exceptional + circumstances arise** - On the `RC` branch, prepare a new version section in the `CHANGELOG.md` - All links must be link-ified - - Copy the entries into a `RELEASE_CHANGELOG.md`, this is needed so the bot knows which entries to add to the release page on github. + - Copy the entries into a `RELEASE_CHANGELOG.md`, this is needed so the bot + knows which entries to add to the release page on github. - After all test has successfully completed, create the release branch (`release/vX.XX.X`) from the `RC` branch - Create a PR to `main` to incorporate the `CHANGELOG.md` updates - Tag the release (use `git tag -a`) and create a release in Github - Delete the `RC` branches - diff --git a/HACKING.md b/HACKING.md index 630ce520..37a5c17e 100644 --- a/HACKING.md +++ b/HACKING.md @@ -47,8 +47,8 @@ yarn test ``` To run the entire test suite, you need to run some local blockchain to test -against. We use [finschia](https://github.com/line/finschia) for both CosmWasm -tests and as a generic finschia v1.0.0-rc0 blockchain. +against. We use [finschia](https://github.com/Finschia/finschia) for both +CosmWasm tests and as a generic finschia v1.0.0-rc0 blockchain. ```sh # Start finschia diff --git a/README.md b/README.md index 7db96512..d76e7565 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ module.exports = [ The finschia-js development team is happy to get in touch with you for all questions and suggestions. -- [GitHub issues](https://github.com/line/finschia-js/issues) for bugs and +- [GitHub issues](https://github.com/Finschia/finschia-js/issues) for bugs and feature requests ## Development diff --git a/scripts/finschia/README.md b/scripts/finschia/README.md index 7f35da66..4689a207 100644 --- a/scripts/finschia/README.md +++ b/scripts/finschia/README.md @@ -7,6 +7,7 @@ Run the following: ```shell cd scripts/finschia ./start.sh +./init.sh ``` ## How to change and generate default genesis and configurations @@ -15,5 +16,5 @@ cd scripts/finschia 2. cd `./scripts/finschia/template`. 3. execute `setup.sh docker`. 4. check the difference of `app.toml`, `client.toml`, `config.toml` and - `genesis.json` in the `./script/finschia/template/.finschia/config` directory and - select the code you want. + `genesis.json` in the `./script/finschia/template/.finschia/config` directory + and select the code you want. diff --git a/scripts/finschia/contracts/download.sh b/scripts/finschia/contracts/download.sh index 356a74e9..848cadbb 100644 --- a/scripts/finschia/contracts/download.sh +++ b/scripts/finschia/contracts/download.sh @@ -4,7 +4,7 @@ COSMWASM_VERSION="v1.0.0-0.6.0" -curl -sS -L -O "https://github.com/line/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm" -curl -sS -L -O "https://github.com/line/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm" +curl -sS -L -O "https://github.com/Finschia/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm" +curl -sS -L -O "https://github.com/Finschia/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm" sha256sum *.wasm > checksums.sha256 From d00e6f2af67a5d7534179c8d509444f572f130fb Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 19 Apr 2023 18:32:38 +0900 Subject: [PATCH 14/15] add changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e713a4aa..de32ebc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ and this project adheres to - [\#84](https://github.com/Finschia/finschia-js/pull/84) Bumpup cosmjs to 0.30.1 +- [\#82](https://github.com/line/finschia-js/pull/82) prepare open (change lbm + to finschia) ### Deprecated From 9a488a5b23bdcc40b25dd7ae651296af275bf762 Mon Sep 17 00:00:00 2001 From: "jinseong.cho" Date: Wed, 19 Apr 2023 21:45:44 +0900 Subject: [PATCH 15/15] change org to finschia --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de32ebc8..82f7e0fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,8 +22,8 @@ and this project adheres to - [\#84](https://github.com/Finschia/finschia-js/pull/84) Bumpup cosmjs to 0.30.1 -- [\#82](https://github.com/line/finschia-js/pull/82) prepare open (change lbm - to finschia) +- [\#82](https://github.com/Finschia/finschia-js/pull/82) prepare open (change + lbm to finschia) ### Deprecated