Fix titles and links

This commit is contained in:
Simon Warta 2020-02-06 10:03:34 +01:00
parent 0efac03a31
commit 9be3dda938
9 changed files with 21 additions and 11 deletions

View File

@ -1,8 +1,6 @@
# @iov/cosmos
# CosmWasm JS
[![npm version](https://img.shields.io/npm/v/cosm-js.svg)](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

View File

@ -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
View File

@ -0,0 +1,5 @@
# @cosmwasm/bcp
[![npm version](https://img.shields.io/npm/v/@cosmwasm/bcp.svg)](https://www.npmjs.com/package/@cosmwasm/bcp)
A [BCP](https://github.com/iov-one/iov-core/tree/master/packages/iov-bcp) implementation for CosmWasm.

View File

@ -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"

View File

@ -1,4 +1,6 @@
# @cosmwasm/faucet
# @cosmwasm/sdk
[![npm version](https://img.shields.io/npm/v/@cosmwasm/faucet.svg)](https://www.npmjs.com/package/@cosmwasm/faucet)
The faucet is built as part of the monorepo. In the repo root do:

View File

@ -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
View File

@ -0,0 +1,5 @@
# @cosmwasm/sdk
[![npm version](https://img.shields.io/npm/v/@cosmwasm/sdk.svg)](https://www.npmjs.com/package/@cosmwasm/sdk)
An SDK to build CosmWasm clients.

View File

@ -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"

View File

@ -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