cosmos-explorer/tests/client.test.ts
2023-04-05 10:39:21 +08:00

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()
});
});