tendermint-rpc: Move legacy -> tendermint33

This commit is contained in:
willclarktech 2021-06-08 16:03:53 +02:00
parent b889ab3b27
commit 9a1abe46fc
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
16 changed files with 17 additions and 17 deletions

View File

@ -4,6 +4,22 @@ export {
rawEd25519PubkeyToRawAddress,
rawSecp256k1PubkeyToRawAddress,
} from "./addresses";
export {
DateTime,
ReadonlyDateWithNanoseconds,
fromRfc3339WithNanoseconds,
fromSeconds,
toRfc3339WithNanoseconds,
toSeconds,
} from "./dates";
export { HttpClient, WebsocketClient } from "./rpcclients"; // TODO: Why do we export those outside of this package?
export {
BlockIdFlag,
CommitSignature,
ValidatorEd25519Pubkey,
ValidatorSecp256k1Pubkey,
ValidatorPubkey,
} from "./types";
export {
adaptor33,
adaptor34,
@ -75,22 +91,6 @@ export {
TxSearchRequest,
ValidatorsRequest,
ValidatorsParams,
} from "./legacy";
export {
DateTime,
ReadonlyDateWithNanoseconds,
fromRfc3339WithNanoseconds,
fromSeconds,
toRfc3339WithNanoseconds,
toSeconds,
} from "./dates";
export { HttpClient, WebsocketClient } from "./rpcclients"; // TODO: Why do we export those outside of this package?
export {
BlockIdFlag,
CommitSignature,
ValidatorEd25519Pubkey,
ValidatorSecp256k1Pubkey,
ValidatorPubkey,
} from "./types";
} from "./tendermint33";
export * as tendermint34 from "./tendermint34";
export { Tendermint34Client } from "./tendermint34";