Skip to content

Commit d915fd0

Browse files
authored
Merge pull request #161 from hyperweb-io/repo-hyperweb-io/ts-codegen
Change repo links to hyperweb-io/ts-codegen
2 parents ec6d02f + e1f36ed commit d915fd0

File tree

10 files changed

+268
-286
lines changed

10 files changed

+268
-286
lines changed

README.md

Lines changed: 108 additions & 117 deletions
Large diffs are not rendered by default.

docs/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Generate TypeScript SDKs for your CosmWasm smart contracts
2323
>
2424
<a
2525
style={{ paddingRight: "4px" }}
26-
href="https://github.com/CosmWasm/ts-codegen/actions/workflows/run-tests.yaml"
26+
href="https://github.com/hyperweb-io/ts-codegen/actions/workflows/run-tests.yaml"
2727
>
2828
<img
2929
height="20"
30-
src="https://github.com/CosmWasm/ts-codegen/actions/workflows/run-tests.yaml/badge.svg"
30+
src="https://github.com/hyperweb-io/ts-codegen/actions/workflows/run-tests.yaml/badge.svg"
3131
/>
3232
</a>
3333
<a
@@ -38,13 +38,13 @@ Generate TypeScript SDKs for your CosmWasm smart contracts
3838
</a>
3939
<a
4040
style={{ paddingRight: "4px" }}
41-
href="https://github.com/CosmWasm/ts-codegen/blob/main/LICENSE-MIT"
41+
href="https://github.com/hyperweb-io/ts-codegen/blob/main/LICENSE-MIT"
4242
>
4343
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg" />
4444
</a>
4545
<a
4646
style={{ paddingRight: "4px" }}
47-
href="https://github.com/CosmWasm/ts-codegen/blob/main/LICENSE-Apache"
47+
href="https://github.com/hyperweb-io/ts-codegen/blob/main/LICENSE-Apache"
4848
>
4949
<img
5050
height="20"
@@ -675,7 +675,7 @@ yarn test:watch
675675

676676
### Working with ASTs
677677

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

680680
## Related
681681

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"registry": "https://registry.npmjs.org",
1313
"command": {
1414
"create": {
15-
"homepage": "https://github.com/cosmwasm/ts-codegen",
15+
"homepage": "https://github.com/hyperweb-io/ts-codegen",
1616
"license": "SEE LICENSE IN LICENSE",
1717
"access": "restricted"
1818
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
],
4545
"repository": {
4646
"type": "git",
47-
"url": "https://github.com/cosmwasm/ts-codegen"
47+
"url": "https://github.com/hyperweb-io/ts-codegen"
4848
}
4949
}

packages/ast/README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -113,37 +113,37 @@ You will see a `File` and `Program`... only concern yourself with the `body[]`:
113113
NOTE: 4 continued ideally you should be writing a test with your generator!
114114

115115
```js
116-
import * as t from '@babel/types';
116+
import * as t from "@babel/types";
117117

118118
export const createNewGenerator = () => {
119-
return t.exportNamedDeclaration(
120-
t.tsInterfaceDeclaration(
121-
t.identifier('InstantiateMsg'),
122-
null,
123-
[],
124-
t.tsInterfaceBody([
125-
// ... more code ...
126-
])
127-
)
128-
);
119+
return t.exportNamedDeclaration(
120+
t.tsInterfaceDeclaration(
121+
t.identifier("InstantiateMsg"),
122+
null,
123+
[],
124+
t.tsInterfaceBody([
125+
// ... more code ...
126+
])
127+
)
128+
);
129129
};
130130
```
131131

132-
## Interchain JavaScript Stack
132+
## Interchain JavaScript Stack
133133

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

136-
| Category | Tools | Description |
137-
|----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
138-
| **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. |
139-
| **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. |
140-
| **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 |
141-
| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
142-
| **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. |
143-
| **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. |
144-
| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
145-
| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
146-
| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
136+
| Category | Tools | Description |
137+
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
138+
| **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. |
139+
| **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. |
140+
| **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 |
141+
| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
142+
| **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. |
143+
| **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. |
144+
| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
145+
| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
146+
| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/hyperweb-io/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
147147

148148
## Credits
149149

packages/ast/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.8.1",
44
"description": "CosmWasm TypeScript AST generation",
55
"author": "Dan Lynch <[email protected]>",
6-
"homepage": "https://github.com/cosmwasm/ts-codegen/tree/master/packages/ast#readme",
6+
"homepage": "https://github.com/hyperweb-io/ts-codegen/tree/master/packages/ast#readme",
77
"license": "SEE LICENSE IN LICENSE",
88
"main": "index.js",
99
"module": "esm/index.js",
@@ -28,11 +28,11 @@
2828
},
2929
"repository": {
3030
"type": "git",
31-
"url": "https://github.com/cosmwasm/ts-codegen"
31+
"url": "https://github.com/hyperweb-io/ts-codegen"
3232
},
3333
"keywords": [],
3434
"bugs": {
35-
"url": "https://github.com/cosmwasm/ts-codegen/issues"
35+
"url": "https://github.com/hyperweb-io/ts-codegen/issues"
3636
},
3737
"dependencies": {
3838
"@babel/types": "7.24.0",

0 commit comments

Comments
 (0)