Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Commit 7846733

Browse files
author
Booyoun
authored
Merge pull request #81 from cosmostation/develop
added Certik
2 parents 9e2c4b1 + 74a5fbb commit 7846733

File tree

4 files changed

+461
-5
lines changed

4 files changed

+461
-5
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
*:star: Developed / Developing by [Cosmostation](https://www.cosmostation.io/)*
1313

14-
A JavasSript Open Source Library for [Cosmos Network](https://cosmos.network/), [IRISnet](https://www.irisnet.org/), [Kava](https://www.kava.io/), [Band Protocol](https://bandprotocol.com/), [Starname](https://iov.one/), [Secret Network](https://scrt.network/), and [Akash Network](https://akash.network/).
14+
A JavasSript Open Source Library for [Cosmos Network](https://cosmos.network/), [IRISnet](https://www.irisnet.org/), [Kava](https://www.kava.io/), [Band Protocol](https://bandprotocol.com/), [Starname](https://iov.one/), [Secret Network](https://scrt.network/), [Akash Network](https://akash.network/), and [Certik](https://certik.foundation/).
1515

1616
This library supports cosmos address generation and verification. It enables you to create an offline signature functions of different types of transaction messages. It will eventually support all the other blockchains that are based on Tendermint in the future.
1717

@@ -58,7 +58,7 @@ import cosmosjs from "@cosmostation/cosmosjs";
5858
- You can see example file at [/example/browser-example.html](https://github.com/cosmostation/cosmosjs/tree/master/example/browser-example.html)
5959

6060
```js
61-
<script src="https://cdn.jsdelivr.net/npm/@cosmostation/cosmosjs@0.7.0/dist/cosmos.min.js"></script>
61+
<script src="https://cdn.jsdelivr.net/npm/@cosmostation/cosmosjs@0.8.0/dist/cosmos.min.js"></script>
6262
```
6363

6464
## Usage
@@ -122,6 +122,14 @@ const chainId = "akashnet-1";
122122
const akash = cosmosjs.network(lcdUrl, chainId);
123123
akash.setBech32MainPrefix("akash");
124124
```
125+
- Certik
126+
```js
127+
const cosmosjs = require("@cosmostation/cosmosjs");
128+
129+
const chainId = "shentu-1";
130+
const certik = cosmosjs.network(lcdUrl, chainId);
131+
certik.setBech32MainPrefix("certik");
132+
```
125133

126134
Generate ECPairPriv value that is needed for signing signatures
127135
```js

0 commit comments

Comments
 (0)