cli: Use cosmjs-types

This commit is contained in:
willclarktech 2021-06-03 13:37:51 +02:00
parent e7c3043e4b
commit de7453bc6f
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -1,6 +1,6 @@
import { QueryClient, setupAuthExtension } from "@cosmjs/stargate";
import { Any } from "@cosmjs/stargate/build/codec/google/protobuf/any";
import { Tendermint34Client } from "@cosmjs/tendermint-rpc";
import { Any } from "cosmjs-types/google/protobuf/any";
// https://github.com/ovrclk/net/blob/24ddbb427/mainnet/rpc-nodes.txt
const tmClient = await Tendermint34Client.connect("http://rpc.akash.forbole.com:80");
@ -8,4 +8,4 @@ const client = QueryClient.withExtensions(tmClient, setupAuthExtension);
// Arbitrary entry from https://raw.githubusercontent.com/ovrclk/net/24ddbb427/mainnet/genesis.json
const account = await client.auth.unverified.account("akash1qy0vur3fl2ucztpzcrfea7mc8jwz8xjmvq7qvy");
console.log(Any.toJSON(account))
console.log(Any.toJSON(account));