forked from cerc-io/cosmos-explorer
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
|
import { CosmosRestClient } from '../src/libs/client'
|
||
|
|
||
|
const client = new CosmosRestClient("https://osmosis-rpc.polkachu.com")
|
||
|
|
||
|
describe('cosmos rest client test', () => {
|
||
|
it('node-info', () => {
|
||
|
client.getBaseNodeInfo()
|
||
|
});
|
||
|
});
|