mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
12 lines
641 B
TypeScript
12 lines
641 B
TypeScript
import { QueryClient, setupAuthExtension } from "@cosmjs/stargate";
|
|
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");
|
|
const client = QueryClient.withExtensions(tmClient, setupAuthExtension);
|
|
|
|
// Arbitrary entry from https://raw.githubusercontent.com/ovrclk/net/24ddbb427/mainnet/genesis.json
|
|
const account = await client.auth.account("akash1qy0vur3fl2ucztpzcrfea7mc8jwz8xjmvq7qvy");
|
|
console.log(Any.toJSON(account));
|