Fix titles and links
This commit is contained in:
parent
0efac03a31
commit
9be3dda938
@ -1,8 +1,6 @@
|
||||
# @iov/cosmos
|
||||
# CosmWasm JS
|
||||
|
||||
[](https://www.npmjs.com/package/cosm-js)
|
||||
|
||||
This is a Typescript client-side binding to [wasmd](https://github.com/cosmwasm/wasmd), a sample blockchain for the [cosmwasm](https://github.com/confio/cosmwasm) smart contracting platform.
|
||||
This is a JavaScript/TypeScript client-side binding to [wasmd](https://github.com/cosmwasm/wasmd), a sample blockchain for the [cosmwasm](https://github.com/confio/cosmwasm) smart contracting platform.
|
||||
|
||||
## Development
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "cosm-js-monorepo-root",
|
||||
"name": "cosmwasm-js-monorepo-root",
|
||||
"description": "Transaction codec and client to communicate with any wasmd blockchain",
|
||||
"private": true,
|
||||
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
|
||||
@ -15,7 +15,7 @@
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/confio/cosm-js"
|
||||
"url": "https://github.com/confio/cosmwasm-js"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
5
packages/bcp/README.md
Normal file
5
packages/bcp/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# @cosmwasm/bcp
|
||||
|
||||
[](https://www.npmjs.com/package/@cosmwasm/bcp)
|
||||
|
||||
A [BCP](https://github.com/iov-one/iov-core/tree/master/packages/iov-bcp) implementation for CosmWasm.
|
||||
@ -15,7 +15,7 @@
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/confio/cosm-js/tree/master/packages/bcp"
|
||||
"url": "https://github.com/confio/cosmwasm-js/tree/master/packages/bcp"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
# @cosmwasm/faucet
|
||||
# @cosmwasm/sdk
|
||||
|
||||
[](https://www.npmjs.com/package/@cosmwasm/faucet)
|
||||
|
||||
The faucet is built as part of the monorepo. In the repo root do:
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/confio/cosm-js/tree/master/packages/faucet"
|
||||
"url": "https://github.com/confio/cosmwasm-js/tree/master/packages/faucet"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
5
packages/sdk/README.md
Normal file
5
packages/sdk/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# @cosmwasm/sdk
|
||||
|
||||
[](https://www.npmjs.com/package/@cosmwasm/sdk)
|
||||
|
||||
An SDK to build CosmWasm clients.
|
||||
@ -15,7 +15,7 @@
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/confio/cosm-js/tree/master/packages/sdk"
|
||||
"url": "https://github.com/confio/cosmwasm-js/tree/master/packages/sdk"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@ -130,7 +130,7 @@ export interface StdSignature {
|
||||
export interface PubKey {
|
||||
// type is one of the strings defined in pubkeyTypes
|
||||
// I don't use a string literal union here as that makes trouble with json test data:
|
||||
// https://github.com/confio/cosm-js/pull/44#pullrequestreview-353280504
|
||||
// https://github.com/confio/cosmwasm-js/pull/44#pullrequestreview-353280504
|
||||
readonly type: string;
|
||||
// Value field is base64-encoded in all cases
|
||||
// Note: if type is Secp256k1, this must contain a COMPRESSED pubkey - to encode from bcp/keycontrol land, you must compress it first
|
||||
|
||||
Loading…
Reference in New Issue
Block a user