Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
225 changes: 108 additions & 117 deletions README.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Generate TypeScript SDKs for your CosmWasm smart contracts
>
<a
style={{ paddingRight: "4px" }}
href="https://github.com/CosmWasm/ts-codegen/actions/workflows/run-tests.yaml"
href="https://github.com/hyperweb-io/ts-codegen/actions/workflows/run-tests.yaml"
>
<img
height="20"
src="https://github.com/CosmWasm/ts-codegen/actions/workflows/run-tests.yaml/badge.svg"
src="https://github.com/hyperweb-io/ts-codegen/actions/workflows/run-tests.yaml/badge.svg"
/>
</a>
<a
Expand All @@ -38,13 +38,13 @@ Generate TypeScript SDKs for your CosmWasm smart contracts
</a>
<a
style={{ paddingRight: "4px" }}
href="https://github.com/CosmWasm/ts-codegen/blob/main/LICENSE-MIT"
href="https://github.com/hyperweb-io/ts-codegen/blob/main/LICENSE-MIT"
>
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg" />
</a>
<a
style={{ paddingRight: "4px" }}
href="https://github.com/CosmWasm/ts-codegen/blob/main/LICENSE-Apache"
href="https://github.com/hyperweb-io/ts-codegen/blob/main/LICENSE-Apache"
>
<img
height="20"
Expand Down Expand Up @@ -675,7 +675,7 @@ yarn test:watch

### Working with ASTs

See the [docs](https://github.com/CosmWasm/ts-codegen/blob/main/packages/ast/README.md) in the `ast` package.
See the [docs](https://github.com/hyperweb-io/ts-codegen/blob/main/packages/ast/README.md) in the `ast` package.

## Related

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"registry": "https://registry.npmjs.org",
"command": {
"create": {
"homepage": "https://github.com/cosmwasm/ts-codegen",
"homepage": "https://github.com/hyperweb-io/ts-codegen",
"license": "SEE LICENSE IN LICENSE",
"access": "restricted"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
],
"repository": {
"type": "git",
"url": "https://github.com/cosmwasm/ts-codegen"
"url": "https://github.com/hyperweb-io/ts-codegen"
}
}
46 changes: 23 additions & 23 deletions packages/ast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,37 +113,37 @@ You will see a `File` and `Program`... only concern yourself with the `body[]`:
NOTE: 4 continued ideally you should be writing a test with your generator!

```js
import * as t from '@babel/types';
import * as t from "@babel/types";

export const createNewGenerator = () => {
return t.exportNamedDeclaration(
t.tsInterfaceDeclaration(
t.identifier('InstantiateMsg'),
null,
[],
t.tsInterfaceBody([
// ... more code ...
])
)
);
return t.exportNamedDeclaration(
t.tsInterfaceDeclaration(
t.identifier("InstantiateMsg"),
null,
[],
t.tsInterfaceBody([
// ... more code ...
])
)
);
};
```

## Interchain JavaScript Stack
## Interchain JavaScript Stack

A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️

| Category | Tools | Description |
|----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
| **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
| **Wallet Connectors**| [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)<sup>beta</sup>, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
| **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)<sup>beta</sup>, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
| **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)<sup>beta</sup>, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
| **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
| Category | Tools | Description |
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
| **Wallet Connectors** | [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)<sup>beta</sup>, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
| **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)<sup>beta</sup>, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
| **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)<sup>beta</sup>, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
| **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/hyperweb-io/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |

## Credits

Expand Down
6 changes: 3 additions & 3 deletions packages/ast/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.8.1",
"description": "CosmWasm TypeScript AST generation",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/cosmwasm/ts-codegen/tree/master/packages/ast#readme",
"homepage": "https://github.com/hyperweb-io/ts-codegen/tree/master/packages/ast#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"module": "esm/index.js",
Expand All @@ -27,11 +27,11 @@
},
"repository": {
"type": "git",
"url": "https://github.com/cosmwasm/ts-codegen"
"url": "https://github.com/hyperweb-io/ts-codegen"
},
"keywords": [],
"bugs": {
"url": "https://github.com/cosmwasm/ts-codegen/issues"
"url": "https://github.com/hyperweb-io/ts-codegen/issues"
},
"dependencies": {
"@babel/types": "7.24.0",
Expand Down
Loading