-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
F/0.47 compat [DO NOT MERGE UNTIL CHAIN 0.47 READY] (#120)
* chore: align explorer types * chore: upgrade sdk with timestamps on portfolio stream api * feat: move pkg usage from tendermint to cometbft * feat: add missing files from core repo * feat: make copy-chain-types * feat: impl cometbft websocket client * feat: refactor clientCtx, keyring.Info to keyring.Record * feat: refactor keyring.Record * feat: update chain examples * chore: revert local test example * chore: gofmt * chore: register extension opt i to decode * chore: bump go version to 1.19 (#130) * fix: add gov V1 types, remove evm, erc20bridge, cleanup deps * fix: nil keyring, empty tm client, minor cert issue (#131) * fix: nil keyring and empty tm client * chore: update example with tmclients * chore: add back tmClient * chore: remove tcp:// prefix to fix cert issue * chore: re-gen * build: align deps to chain --------- Co-authored-by: Michele Meloni <[email protected]> Co-authored-by: vinhphuctadang <[email protected]> Co-authored-by: Tofel <[email protected]> Co-authored-by: Albert Chon <[email protected]> Co-authored-by: Phuc Ta <[email protected]>
- Loading branch information
1 parent
a1240bb
commit 53c5616
Showing
277 changed files
with
18,914 additions
and
23,806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package types | ||
|
||
import sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" | ||
import "cosmossdk.io/errors" | ||
|
||
var ( | ||
ErrBidInvalid = sdkerrors.Register(ModuleName, 1, "invalid bid denom") | ||
ErrBidRound = sdkerrors.Register(ModuleName, 2, "invalid bid round") | ||
ErrBidInvalid = errors.Register(ModuleName, 1, "invalid bid denom") | ||
ErrBidRound = errors.Register(ModuleName, 2, "invalid bid round") | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.