cosmo-sdk
v0.1.13
Published
Typescript SDK to interact with Cosmo contracts on Terra blockchain
Downloads
3
Readme
cosmo-sdk
Official Typescript SDK to interact with Cosmo blockchain contracts on Terra.
Getting Started
Installing Cosmo SDK
$ yarn add cosmo-sdk @terra-money/terra.js
Using Cosmo SDK
You need to provide a LCDClient instance on Cosmo
constructor.
import { LCDClient } from '@terra-money/terra.js';
import { Cosmo } from 'cosmo-sdk';
const lcd = new LCDClient({
URL: 'https://lcd.terra.dev/',
chainID: 'columbus-5',
});
const cosmo = new Cosmo(lcd);
Interacting with Cosmo
TBD
See Also
- Documentation (TBD)
- API References