From 09773d29557cb3dfb20e33252b602466228b2942 Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Wed, 15 Jan 2025 11:50:12 +0800
Subject: [PATCH 1/8] make base functions of helpers to accept array
---
packages/telescope/src/helpers/helper-func-types-interface.ts | 4 ++--
packages/telescope/src/helpers/helper-func-types.ts | 4 ++--
packages/telescope/src/helpers/react-query-hooks-icjs.ts | 2 +-
packages/telescope/src/helpers/react-query-hooks.ts | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/packages/telescope/src/helpers/helper-func-types-interface.ts b/packages/telescope/src/helpers/helper-func-types-interface.ts
index b6c782b3de..f971b83e9c 100644
--- a/packages/telescope/src/helpers/helper-func-types-interface.ts
+++ b/packages/telescope/src/helpers/helper-func-types-interface.ts
@@ -40,7 +40,7 @@ export function buildQuery(opts: QueryBuilderOptions) {
export interface ITxArgs {
signerAddress: string;
- message: TMsg;
+ message: TMsg | TMsg[];
fee: StdFee | 'auto';
memo: string;
}
@@ -83,7 +83,7 @@ export function buildTx(opts: TxBuilderOptions) {
return async (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
): Promise => {
diff --git a/packages/telescope/src/helpers/helper-func-types.ts b/packages/telescope/src/helpers/helper-func-types.ts
index 3171005cb4..ef56e4320c 100644
--- a/packages/telescope/src/helpers/helper-func-types.ts
+++ b/packages/telescope/src/helpers/helper-func-types.ts
@@ -35,7 +35,7 @@ export function buildQuery(opts: QueryBuilderOptions) {
export interface ITxArgs {
signerAddress: string;
- message: TMsg;
+ message: TMsg | TMsg[];
fee: StdFee | 'auto';
memo: string;
}
@@ -75,7 +75,7 @@ export interface TxBuilderOptions {
export function buildTx(opts: TxBuilderOptions) {
return async (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
): Promise => {
diff --git a/packages/telescope/src/helpers/react-query-hooks-icjs.ts b/packages/telescope/src/helpers/react-query-hooks-icjs.ts
index 3629e50d78..af909a1039 100644
--- a/packages/telescope/src/helpers/react-query-hooks-icjs.ts
+++ b/packages/telescope/src/helpers/react-query-hooks-icjs.ts
@@ -164,7 +164,7 @@ export interface ReactMutationParams {
builderMutationFn: (clientResolver?: SigningClientResolver) => (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
) => Promise,
diff --git a/packages/telescope/src/helpers/react-query-hooks.ts b/packages/telescope/src/helpers/react-query-hooks.ts
index 025f3fdbd2..ab6574f93c 100644
--- a/packages/telescope/src/helpers/react-query-hooks.ts
+++ b/packages/telescope/src/helpers/react-query-hooks.ts
@@ -206,7 +206,7 @@ export interface ReactMutationParams {
builderMutationFn: (clientResolver?: SigningClientResolver) => (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
) => Promise,
From 9d5a31ec8cf7c6984de138c543f5cdd3a027db25 Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Wed, 15 Jan 2025 12:09:02 +0800
Subject: [PATCH 2/8] chore(release): publish
- @cosmology/starship-test@1.9.8
- @cosmology/telescope@1.11.8
---
packages/starship/CHANGELOG.md | 4 ++++
packages/starship/package.json | 4 ++--
packages/telescope/CHANGELOG.md | 4 ++++
packages/telescope/package.json | 2 +-
4 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/packages/starship/CHANGELOG.md b/packages/starship/CHANGELOG.md
index 5f09c89115..a88f21d2bc 100644
--- a/packages/starship/CHANGELOG.md
+++ b/packages/starship/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.9.8](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.7...@cosmology/starship-test@1.9.8) (2025-01-15)
+
+**Note:** Version bump only for package @cosmology/starship-test
+
## [1.9.7](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.6...@cosmology/starship-test@1.9.7) (2025-01-02)
**Note:** Version bump only for package @cosmology/starship-test
diff --git a/packages/starship/package.json b/packages/starship/package.json
index ec19f18189..cb041bb6ea 100644
--- a/packages/starship/package.json
+++ b/packages/starship/package.json
@@ -1,7 +1,7 @@
{
"name": "@cosmology/starship-test",
"private": true,
- "version": "1.9.7",
+ "version": "1.9.8",
"description": "E2E tests for telescope with Starship",
"author": "Anmol1696 ",
"homepage": "https://github.com/osmosis-labs/telescope#readme",
@@ -59,7 +59,7 @@
"@confio/relayer": "0.7.0",
"@cosmjs/cosmwasm-stargate": "0.29.4",
"@cosmjs/crypto": "0.29.4",
- "@cosmology/telescope": "^1.11.7",
+ "@cosmology/telescope": "^1.11.8",
"@protobufs/confio": "^0.0.6",
"@protobufs/cosmos": "^0.0.11",
"@protobufs/cosmos_proto": "^0.0.10",
diff --git a/packages/telescope/CHANGELOG.md b/packages/telescope/CHANGELOG.md
index a4b0255673..ee7fa740c3 100644
--- a/packages/telescope/CHANGELOG.md
+++ b/packages/telescope/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.11.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.7...@cosmology/telescope@1.11.8) (2025-01-15)
+
+**Note:** Version bump only for package @cosmology/telescope
+
## [1.11.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.6...@cosmology/telescope@1.11.7) (2025-01-02)
**Note:** Version bump only for package @cosmology/telescope
diff --git a/packages/telescope/package.json b/packages/telescope/package.json
index dada4b5cdd..c5e5463be6 100644
--- a/packages/telescope/package.json
+++ b/packages/telescope/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/telescope",
- "version": "1.11.7",
+ "version": "1.11.8",
"description": "A TypeScript Transpiler for Cosmos Protobufs",
"author": "Dan Lynch ",
"homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/telescope#readme",
From cd1ab64978046f76bfeff24354e9c40da6dd70c4 Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Thu, 16 Jan 2025 19:11:06 +0800
Subject: [PATCH 3/8] add useQueryClientResolver to rpc client
---
README.md | 10 +-
.../outputhelperfunc/helper-func-types.ts | 4 +-
.../v-next/outputhelperfunc/react-query.ts | 2 +-
.../v-next/outputicjs/helper-func-types.ts | 4 +-
__fixtures__/v-next/outputicjs/react-query.ts | 2 +-
.../v-next/outputinstantrpc/extern.ts | 14 ++-
.../v-next/outputv4/akash/rpc.query.ts | 8 +-
.../cosmos/cosmos-rpc-client.query.ts | 8 +-
.../v-next/outputv4/cosmos/rpc.query.ts | 8 +-
.../v-next/outputv4/cosmwasm/rpc.query.ts | 8 +-
.../outputv4/evmos/evmos-rpc-client.query.ts | 8 +-
.../v-next/outputv4/evmos/rpc.query.ts | 8 +-
__fixtures__/v-next/outputv4/extern.ts | 14 ++-
__fixtures__/v-next/outputv4/ibc/rpc.query.ts | 8 +-
.../v-next/outputv4/osmosis/rpc.query.ts | 8 +-
.../v-next/outputv4/tendermint/rpc.query.ts | 8 +-
packages/ast/src/clients/rpc/scoped/rpc.ts | 100 ++++++++++++++----
packages/telescope/README.md | 10 +-
.../telescope/__tests__/telescope-v4.test.ts | 3 +-
.../src/generators/create-helpers.ts | 2 +-
.../telescope/src/helpers/external-comet.ts | 14 ++-
packages/telescope/src/utils/index.ts | 2 +
.../types/helpers/external-comet.d.ts | 2 +-
packages/types/src/telescope.ts | 1 +
packages/types/types/telescope.d.ts | 1 +
25 files changed, 190 insertions(+), 67 deletions(-)
diff --git a/README.md b/README.md
index e863fbaeb5..face8f69a7 100644
--- a/README.md
+++ b/README.md
@@ -153,7 +153,7 @@ Examples:
```sh
# Telescope will do the download according to .json file of --config
-# Telescope will put proto into location specified by --out
+# Telescope will put proto into location specified by --out
telescope download --config ./protod.config.json --out ./git-modules
```
@@ -161,7 +161,7 @@ telescope download --config ./protod.config.json --out ./git-modules
# Telescope download from target repo according to --git-repo
# in format of (i.e. / or //)
# can be empty, it will use main as default
-# Also --targets is required to specify the targets to download
+# Also --targets is required to specify the targets to download
# in format like cosmos/auth/v1beta1/auth.proto
telescope download --git-repo target-repo --targets target-proto
```
@@ -185,7 +185,7 @@ telescope download --config ./protod.config.json --out ./git-modules --ssh true
//
// `outDir` is where the output proto will be put
//
-// `targets` are the target proto to download
+// `targets` are the target proto to download
// `targets` can be patterns like:
// "cosmos/bank/v1beta1/tx.proto",
// "cosmos/gov/**/*.proto",
@@ -443,6 +443,8 @@ See [LCD Clients](#lcd-clients) for more info.
| `rpcClients.scopedIsExclusive` | will allow both scoped bundles and all RPC Clients | `true` |
| `rpcClients.enabledServices` | which services to enable | [`Msg`,`Query`,`Service`] |
| `rpcClients.instantOps` | will generate instant rpc operations in the file `service-ops.ts` under root folder, which contains customized classes having selected rpc methods | `undefined` |
+| `rpcClients.useConnectComet` | will use connectComet function to get a tendermint client | `undefined` |
+| `rpcClients.useQueryClientResolver` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
| `rpcClients.serviceImplement` | assign implement type of rpc methods, `Query` or `Tx`, by setting patterns under service types. | `undefined` |
`rpcClients.clientStyle.useUpdatedClientStyle` | The default value is `false`, which sets the generated client to use the legacy style. Setting it to `true` applies the updated style and activates the remaining options in clientStyle. | `false`
| `rpcClients.clientStyle.type` | A string array containing possible values: `all-client`, `sdk-module-client`, and `custom-client`. The value `all-client` generates an all-module-client file. The value `sdk-module-client` generates a client for the module specified by the `sdkModuleClientOption`. The value `custom-client` generates a customized client as specified by `customClientOption` | `undefined`
@@ -1107,7 +1109,7 @@ There'll be client files (`all-module-client.ts`, `akash-sdk-module-client.ts`,
The `all-module-client.ts` file consolidates all proto imports into one file and exports them as a single client.
All sdk module client files will be identical to the legacy `client.ts` files generated in each module directory, except they will be located in the root directory.
The custom client imports proto files based on `include.patterns`, allowing protos to originate from different modules.
-For example the custom-client.ts will be like:
+For example the custom-client.ts will be like:
```ts
export const cosmosIbcAminoConverters = {
...cosmosGovV1TxAmino.AminoConverter,
diff --git a/__fixtures__/v-next/outputhelperfunc/helper-func-types.ts b/__fixtures__/v-next/outputhelperfunc/helper-func-types.ts
index 2297a710d2..3973a7c879 100644
--- a/__fixtures__/v-next/outputhelperfunc/helper-func-types.ts
+++ b/__fixtures__/v-next/outputhelperfunc/helper-func-types.ts
@@ -43,7 +43,7 @@ export function buildQuery(opts: QueryBuilderOptions) {
export interface ITxArgs {
signerAddress: string;
- message: TMsg;
+ message: TMsg | TMsg[];
fee: StdFee | 'auto';
memo: string;
}
@@ -86,7 +86,7 @@ export function buildTx(opts: TxBuilderOptions) {
return async (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
): Promise => {
diff --git a/__fixtures__/v-next/outputhelperfunc/react-query.ts b/__fixtures__/v-next/outputhelperfunc/react-query.ts
index a59e281413..88d309a91c 100644
--- a/__fixtures__/v-next/outputhelperfunc/react-query.ts
+++ b/__fixtures__/v-next/outputhelperfunc/react-query.ts
@@ -175,7 +175,7 @@ export interface ReactMutationParams {
builderMutationFn: (clientResolver?: SigningClientResolver) => (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
) => Promise,
diff --git a/__fixtures__/v-next/outputicjs/helper-func-types.ts b/__fixtures__/v-next/outputicjs/helper-func-types.ts
index 5ab176a163..61fcb2a635 100644
--- a/__fixtures__/v-next/outputicjs/helper-func-types.ts
+++ b/__fixtures__/v-next/outputicjs/helper-func-types.ts
@@ -38,7 +38,7 @@ export function buildQuery(opts: QueryBuilderOptions) {
export interface ITxArgs {
signerAddress: string;
- message: TMsg;
+ message: TMsg | TMsg[];
fee: StdFee | 'auto';
memo: string;
}
@@ -78,7 +78,7 @@ export interface TxBuilderOptions {
export function buildTx(opts: TxBuilderOptions) {
return async (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
): Promise => {
diff --git a/__fixtures__/v-next/outputicjs/react-query.ts b/__fixtures__/v-next/outputicjs/react-query.ts
index 44a38c1c1d..3c74b5a228 100644
--- a/__fixtures__/v-next/outputicjs/react-query.ts
+++ b/__fixtures__/v-next/outputicjs/react-query.ts
@@ -147,7 +147,7 @@ export interface ReactMutationParams {
builderMutationFn: (clientResolver?: SigningClientResolver) => (
signerAddress: string,
- message: TMsg,
+ message: TMsg | TMsg[],
fee: StdFee | 'auto',
memo: string
) => Promise,
diff --git a/__fixtures__/v-next/outputinstantrpc/extern.ts b/__fixtures__/v-next/outputinstantrpc/extern.ts
index b56caf20e4..90aec54c2b 100644
--- a/__fixtures__/v-next/outputinstantrpc/extern.ts
+++ b/__fixtures__/v-next/outputinstantrpc/extern.ts
@@ -5,7 +5,7 @@
*/
import { QueryClient, createProtobufRpcClient, ProtobufRpcClient } from '@cosmjs/stargate'
-import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
+import { connectComet, Tendermint34Client, HttpEndpoint } from "@cosmjs/tendermint-rpc";
const _rpcClients: Record = {};
@@ -40,3 +40,15 @@ export const createRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {
return rpc;
}
+
+export const createTm34QueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const tmClient = await Tendermint34Client.connect(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(tmClient);
+}
+
+export const createConnectCometQueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const cometClient = await connectComet(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(cometClient);
+}
diff --git a/__fixtures__/v-next/outputv4/akash/rpc.query.ts b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
index a55e40d7f3..24ff47211c 100644
--- a/__fixtures__/v-next/outputv4/akash/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
akash: {
audit: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
index bc37ce0db3..b2621c090b 100644
--- a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createCosmicRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
index 7a583ff3e2..cadf3249f4 100644
--- a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
index f1213e3fa7..29e93b11d8 100644
--- a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
index 84977f0638..689b343b5f 100644
--- a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createEvmosRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
index 9169126902..112a5bfca6 100644
--- a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/extern.ts b/__fixtures__/v-next/outputv4/extern.ts
index b56caf20e4..90aec54c2b 100644
--- a/__fixtures__/v-next/outputv4/extern.ts
+++ b/__fixtures__/v-next/outputv4/extern.ts
@@ -5,7 +5,7 @@
*/
import { QueryClient, createProtobufRpcClient, ProtobufRpcClient } from '@cosmjs/stargate'
-import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
+import { connectComet, Tendermint34Client, HttpEndpoint } from "@cosmjs/tendermint-rpc";
const _rpcClients: Record = {};
@@ -40,3 +40,15 @@ export const createRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {
return rpc;
}
+
+export const createTm34QueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const tmClient = await Tendermint34Client.connect(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(tmClient);
+}
+
+export const createConnectCometQueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const cometClient = await connectComet(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(cometClient);
+}
diff --git a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
index 6a632ee738..9e894499a7 100644
--- a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
index 890b421414..8dbccbf742 100644
--- a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
index 6785cd44f0..35da3f7e4d 100644
--- a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
@@ -1,13 +1,15 @@
import { Rpc } from "../helpers.js";
import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { QueryClient } from "@cosmjs/stargate";
+import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
- rpcEndpoint
+ rpcEndpoint,
+ queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
}) => {
- const tmClient = await connectComet(rpcEndpoint);
- const client = new QueryClient(tmClient);
+ let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/packages/ast/src/clients/rpc/scoped/rpc.ts b/packages/ast/src/clients/rpc/scoped/rpc.ts
index 5f4cb97738..ddb9fe72c8 100644
--- a/packages/ast/src/clients/rpc/scoped/rpc.ts
+++ b/packages/ast/src/clients/rpc/scoped/rpc.ts
@@ -150,7 +150,7 @@ export const createScopedRpcFactory = (
identifier: string,
className: string,
options?: {
- restoreImportExtension?: string;
+ restoreImportExtension?: string;
}
) => {
return t.exportNamedDeclaration(
@@ -174,6 +174,10 @@ export const createScopedRpcTmFactory = (
identifier: string
) => {
const newClientType = context.pluginValue("rpcClients.useConnectComet");
+ const useQueryClientResolver = context.pluginValue(
+ "rpcClients.useQueryClientResolver"
+ );
+
const extensions = context.pluginValue("rpcClients.extensions");
let functionParams;
const returnStatement = t.returnStatement(
@@ -213,6 +217,13 @@ export const createScopedRpcTmFactory = (
context.addUtil("HttpEndpoint");
context.addUtil("QueryClient");
+ const rpcEndpointParam = t.identifier("rpcEndpoint");
+ rpcEndpointParam.typeAnnotation = t.tsTypeAnnotation(
+ t.tsUnionType([
+ t.tsStringKeyword(),
+ t.tsTypeReference(t.identifier("HttpEndpoint")),
+ ])
+ );
functionParams = [
objectPattern(
@@ -223,7 +234,14 @@ export const createScopedRpcTmFactory = (
false,
true
),
- ],
+ useQueryClientResolver &&
+ t.objectProperty(
+ t.identifier("queryClientResolver"),
+ t.identifier("queryClientResolver"),
+ false,
+ true
+ ),
+ ].filter(Boolean),
t.tsTypeAnnotation(
t.tsTypeLiteral([
t.tsPropertySignature(
@@ -237,30 +255,72 @@ export const createScopedRpcTmFactory = (
])
)
),
- ])
+ useQueryClientResolver &&
+ t.tsPropertySignature(
+ t.identifier("queryClientResolver"),
+ t.tsTypeAnnotation(
+ t.tsFunctionType(
+ null,
+ [rpcEndpointParam],
+ t.tsTypeAnnotation(
+ t.tsTypeReference(
+ t.identifier("QueryClient")
+ )
+ )
+ )
+ )
+ ),
+ ].filter(Boolean))
)
),
];
- functionStatements = [
- t.variableDeclaration("const", [
- t.variableDeclarator(
- t.identifier("tmClient"),
- t.awaitExpression(awaitClientCreation)
- ),
- ]),
- /////
- t.variableDeclaration("const", [
- t.variableDeclarator(
- t.identifier("client"),
- t.newExpression(t.identifier("QueryClient"), [
+ if (useQueryClientResolver) {
+ let createQueryClientName = newClientType ? "createConnectCometQueryClient" : "createTm34QueryClient";
+ context.addUtil(createQueryClientName);
+
+ functionStatements = [
+ t.variableDeclaration("let", [
+ t.variableDeclarator(
+ t.identifier("client"),
+ t.conditionalExpression(
+ t.identifier("queryClientResolver"),
+ t.callExpression(
+ t.identifier("queryClientResolver"),
+ [t.identifier("rpcEndpoint")]
+ ),
+ t.awaitExpression(
+ t.callExpression(
+ t.identifier(createQueryClientName),
+ [t.identifier("rpcEndpoint")]
+ )
+ )
+ )
+ ),
+ ]),
+ returnStatement,
+ ];
+ } else {
+ functionStatements = [
+ t.variableDeclaration("const", [
+ t.variableDeclarator(
t.identifier("tmClient"),
- ])
- ),
- ]),
+ t.awaitExpression(awaitClientCreation)
+ ),
+ ]),
+ /////
+ t.variableDeclaration("const", [
+ t.variableDeclarator(
+ t.identifier("client"),
+ t.newExpression(t.identifier("QueryClient"), [
+ t.identifier("tmClient"),
+ ])
+ ),
+ ]),
- returnStatement,
- ];
+ returnStatement,
+ ];
+ }
} else {
functionParams = rpcFuncArguments();
functionStatements = [returnStatement];
diff --git a/packages/telescope/README.md b/packages/telescope/README.md
index e863fbaeb5..face8f69a7 100644
--- a/packages/telescope/README.md
+++ b/packages/telescope/README.md
@@ -153,7 +153,7 @@ Examples:
```sh
# Telescope will do the download according to .json file of --config
-# Telescope will put proto into location specified by --out
+# Telescope will put proto into location specified by --out
telescope download --config ./protod.config.json --out ./git-modules
```
@@ -161,7 +161,7 @@ telescope download --config ./protod.config.json --out ./git-modules
# Telescope download from target repo according to --git-repo
# in format of (i.e. / or //)
# can be empty, it will use main as default
-# Also --targets is required to specify the targets to download
+# Also --targets is required to specify the targets to download
# in format like cosmos/auth/v1beta1/auth.proto
telescope download --git-repo target-repo --targets target-proto
```
@@ -185,7 +185,7 @@ telescope download --config ./protod.config.json --out ./git-modules --ssh true
//
// `outDir` is where the output proto will be put
//
-// `targets` are the target proto to download
+// `targets` are the target proto to download
// `targets` can be patterns like:
// "cosmos/bank/v1beta1/tx.proto",
// "cosmos/gov/**/*.proto",
@@ -443,6 +443,8 @@ See [LCD Clients](#lcd-clients) for more info.
| `rpcClients.scopedIsExclusive` | will allow both scoped bundles and all RPC Clients | `true` |
| `rpcClients.enabledServices` | which services to enable | [`Msg`,`Query`,`Service`] |
| `rpcClients.instantOps` | will generate instant rpc operations in the file `service-ops.ts` under root folder, which contains customized classes having selected rpc methods | `undefined` |
+| `rpcClients.useConnectComet` | will use connectComet function to get a tendermint client | `undefined` |
+| `rpcClients.useQueryClientResolver` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
| `rpcClients.serviceImplement` | assign implement type of rpc methods, `Query` or `Tx`, by setting patterns under service types. | `undefined` |
`rpcClients.clientStyle.useUpdatedClientStyle` | The default value is `false`, which sets the generated client to use the legacy style. Setting it to `true` applies the updated style and activates the remaining options in clientStyle. | `false`
| `rpcClients.clientStyle.type` | A string array containing possible values: `all-client`, `sdk-module-client`, and `custom-client`. The value `all-client` generates an all-module-client file. The value `sdk-module-client` generates a client for the module specified by the `sdkModuleClientOption`. The value `custom-client` generates a customized client as specified by `customClientOption` | `undefined`
@@ -1107,7 +1109,7 @@ There'll be client files (`all-module-client.ts`, `akash-sdk-module-client.ts`,
The `all-module-client.ts` file consolidates all proto imports into one file and exports them as a single client.
All sdk module client files will be identical to the legacy `client.ts` files generated in each module directory, except they will be located in the root directory.
The custom client imports proto files based on `include.patterns`, allowing protos to originate from different modules.
-For example the custom-client.ts will be like:
+For example the custom-client.ts will be like:
```ts
export const cosmosIbcAminoConverters = {
...cosmosGovV1TxAmino.AminoConverter,
diff --git a/packages/telescope/__tests__/telescope-v4.test.ts b/packages/telescope/__tests__/telescope-v4.test.ts
index 6edb5a52ec..515cbd5266 100644
--- a/packages/telescope/__tests__/telescope-v4.test.ts
+++ b/packages/telescope/__tests__/telescope-v4.test.ts
@@ -160,7 +160,8 @@ const options: TelescopeOptions = {
'ReflectionService',
'ABCIApplication'
],
- useConnectComet: true
+ useConnectComet: true,
+ useQueryClientResolver: true
},
reactQuery: {
diff --git a/packages/telescope/src/generators/create-helpers.ts b/packages/telescope/src/generators/create-helpers.ts
index 9fa6e54615..047454fe25 100644
--- a/packages/telescope/src/generators/create-helpers.ts
+++ b/packages/telescope/src/generators/create-helpers.ts
@@ -77,7 +77,7 @@ export const plugin = (builder: TelescopeBuilder) => {
write(
builder,
"extern.ts",
- builder.options.rpcClients?.useConnectComet ? externalComet : external
+ builder.options.rpcClients?.useConnectComet || builder.options.rpcClients?.useQueryClientResolver ? externalComet : external
);
}
}
diff --git a/packages/telescope/src/helpers/external-comet.ts b/packages/telescope/src/helpers/external-comet.ts
index 6b74077845..d53e5c31c4 100644
--- a/packages/telescope/src/helpers/external-comet.ts
+++ b/packages/telescope/src/helpers/external-comet.ts
@@ -1,5 +1,5 @@
export const externalComet = `import { QueryClient, createProtobufRpcClient, ProtobufRpcClient } from '@cosmjs/stargate'
-import { connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
+import { connectComet, Tendermint34Client, HttpEndpoint } from "@cosmjs/tendermint-rpc";
const _rpcClients: Record = {};
@@ -34,4 +34,16 @@ export const createRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {
return rpc;
}
+
+export const createTm34QueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const tmClient = await Tendermint34Client.connect(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(tmClient);
+}
+
+export const createConnectCometQueryClient = async (rpcEndpoint: string | HttpEndpoint) => {
+ const cometClient = await connectComet(rpcEndpoint);
+ //@ts-ignore
+ return new QueryClient(cometClient);
+}
`;
\ No newline at end of file
diff --git a/packages/telescope/src/utils/index.ts b/packages/telescope/src/utils/index.ts
index 4881b873bc..d0857a1418 100644
--- a/packages/telescope/src/utils/index.ts
+++ b/packages/telescope/src/utils/index.ts
@@ -41,6 +41,8 @@ export const UTILS: { [key: string]: UtilValue } = {
fromTimestamp: '__helpers__',
fromUtf8: '@cosmjs/encoding',
GeneratedType: '@cosmjs/proto-signing',
+ createTm34QueryClient: '__extern__',
+ createConnectCometQueryClient: '__extern__',
getRpcClient: '__extern__',
createRpcClient: '__extern__',
getRpcEndpointKey: '__extern__',
diff --git a/packages/telescope/types/helpers/external-comet.d.ts b/packages/telescope/types/helpers/external-comet.d.ts
index c905734852..2c2c0017e2 100644
--- a/packages/telescope/types/helpers/external-comet.d.ts
+++ b/packages/telescope/types/helpers/external-comet.d.ts
@@ -1 +1 @@
-export declare const externalComet = "import { QueryClient, createProtobufRpcClient, ProtobufRpcClient } from '@cosmjs/stargate'\nimport { connectComet, HttpEndpoint } from \"@cosmjs/tendermint-rpc\";\n\nconst _rpcClients: Record = {};\n\nexport const getRpcEndpointKey = (rpcEndpoint: string | HttpEndpoint) => {\n if (typeof rpcEndpoint === 'string') {\n return rpcEndpoint;\n } else if (!!rpcEndpoint) {\n //@ts-ignore\n return rpcEndpoint.url;\n }\n}\n\nexport const getRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const key = getRpcEndpointKey(rpcEndpoint);\n if (!key) return;\n if (_rpcClients.hasOwnProperty(key)) {\n return _rpcClients[key];\n }\n const cometClient = await connectComet(rpcEndpoint);\n //@ts-ignore\n const client = new QueryClient(cometClient);\n const rpc = createProtobufRpcClient(client);\n _rpcClients[key] = rpc;\n return rpc;\n}\n\nexport const createRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const cometClient = await connectComet(rpcEndpoint);\n //@ts-ignore\n const client = new QueryClient(cometClient);\n const rpc = createProtobufRpcClient(client);\n\n return rpc;\n}\n";
+export declare const externalComet = "import { QueryClient, createProtobufRpcClient, ProtobufRpcClient } from '@cosmjs/stargate'\nimport { connectComet, Tendermint34Client, HttpEndpoint } from \"@cosmjs/tendermint-rpc\";\n\nconst _rpcClients: Record = {};\n\nexport const getRpcEndpointKey = (rpcEndpoint: string | HttpEndpoint) => {\n if (typeof rpcEndpoint === 'string') {\n return rpcEndpoint;\n } else if (!!rpcEndpoint) {\n //@ts-ignore\n return rpcEndpoint.url;\n }\n}\n\nexport const getRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const key = getRpcEndpointKey(rpcEndpoint);\n if (!key) return;\n if (_rpcClients.hasOwnProperty(key)) {\n return _rpcClients[key];\n }\n const cometClient = await connectComet(rpcEndpoint);\n //@ts-ignore\n const client = new QueryClient(cometClient);\n const rpc = createProtobufRpcClient(client);\n _rpcClients[key] = rpc;\n return rpc;\n}\n\nexport const createRpcClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const cometClient = await connectComet(rpcEndpoint);\n //@ts-ignore\n const client = new QueryClient(cometClient);\n const rpc = createProtobufRpcClient(client);\n\n return rpc;\n}\n\nexport const createTm34QueryClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const tmClient = await Tendermint34Client.connect(rpcEndpoint);\n //@ts-ignore\n return new QueryClient(tmClient);\n}\n\nexport const createConnectCometQueryClient = async (rpcEndpoint: string | HttpEndpoint) => {\n const cometClient = await connectComet(rpcEndpoint);\n //@ts-ignore\n return new QueryClient(cometClient);\n}\n";
diff --git a/packages/types/src/telescope.ts b/packages/types/src/telescope.ts
index 39ac2b0888..e3a6a43c02 100644
--- a/packages/types/src/telescope.ts
+++ b/packages/types/src/telescope.ts
@@ -291,6 +291,7 @@ export interface TelescopeOpts {
};
}[];
useConnectComet?: boolean;
+ useQueryClientResolver?: boolean;
};
helperFuncCreators?: {
enabled: boolean;
diff --git a/packages/types/types/telescope.d.ts b/packages/types/types/telescope.d.ts
index 84b9b73d94..2d2c85f2d2 100644
--- a/packages/types/types/telescope.d.ts
+++ b/packages/types/types/telescope.d.ts
@@ -238,6 +238,7 @@ export interface TelescopeOpts {
};
}[];
useConnectComet?: boolean;
+ useQueryClientResolver?: boolean;
};
helperFuncCreators?: {
enabled: boolean;
From cad016e9922e046d93919102a89f4ba2db45d918 Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Thu, 16 Jan 2025 19:28:16 +0800
Subject: [PATCH 4/8] fix promise and await
---
.../v-next/outputv4/akash/rpc.query.ts | 4 +-
.../cosmos/cosmos-rpc-client.query.ts | 4 +-
.../v-next/outputv4/cosmos/rpc.query.ts | 4 +-
.../v-next/outputv4/cosmwasm/rpc.query.ts | 4 +-
.../outputv4/evmos/evmos-rpc-client.query.ts | 4 +-
.../v-next/outputv4/evmos/rpc.query.ts | 4 +-
__fixtures__/v-next/outputv4/ibc/rpc.query.ts | 4 +-
.../v-next/outputv4/osmosis/rpc.query.ts | 4 +-
.../v-next/outputv4/tendermint/rpc.query.ts | 4 +-
packages/ast/src/clients/rpc/scoped/rpc.ts | 69 +++++++++++--------
10 files changed, 60 insertions(+), 45 deletions(-)
diff --git a/__fixtures__/v-next/outputv4/akash/rpc.query.ts b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
index 24ff47211c..7e90629101 100644
--- a/__fixtures__/v-next/outputv4/akash/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
akash: {
audit: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
index b2621c090b..cabcb76ba9 100644
--- a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
@@ -7,9 +7,9 @@ export const createCosmicRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
index cadf3249f4..71f3bbd4aa 100644
--- a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
index 29e93b11d8..1396ba3385 100644
--- a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
index 689b343b5f..aad6b909b6 100644
--- a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
@@ -7,9 +7,9 @@ export const createEvmosRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
index 112a5bfca6..926159c775 100644
--- a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
index 9e894499a7..883d5f6beb 100644
--- a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
index 8dbccbf742..edc8dafd5e 100644
--- a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
index 35da3f7e4d..aabde7ecfa 100644
--- a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
@@ -7,9 +7,9 @@ export const createRPCQueryClient = async ({
queryClientResolver
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => QueryClient;
+ queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/packages/ast/src/clients/rpc/scoped/rpc.ts b/packages/ast/src/clients/rpc/scoped/rpc.ts
index ddb9fe72c8..f0edefc5e8 100644
--- a/packages/ast/src/clients/rpc/scoped/rpc.ts
+++ b/packages/ast/src/clients/rpc/scoped/rpc.ts
@@ -243,40 +243,53 @@ export const createScopedRpcTmFactory = (
),
].filter(Boolean),
t.tsTypeAnnotation(
- t.tsTypeLiteral([
- t.tsPropertySignature(
- t.identifier("rpcEndpoint"),
- t.tsTypeAnnotation(
- t.tsUnionType([
- t.tsStringKeyword(),
- t.tsTypeReference(
- t.identifier("HttpEndpoint")
- ),
- ])
- )
- ),
- useQueryClientResolver &&
+ t.tsTypeLiteral(
+ [
t.tsPropertySignature(
- t.identifier("queryClientResolver"),
+ t.identifier("rpcEndpoint"),
t.tsTypeAnnotation(
- t.tsFunctionType(
- null,
- [rpcEndpointParam],
- t.tsTypeAnnotation(
- t.tsTypeReference(
- t.identifier("QueryClient")
+ t.tsUnionType([
+ t.tsStringKeyword(),
+ t.tsTypeReference(
+ t.identifier("HttpEndpoint")
+ ),
+ ])
+ )
+ ),
+ useQueryClientResolver &&
+ t.tsPropertySignature(
+ t.identifier("queryClientResolver"),
+ t.tsTypeAnnotation(
+ t.tsFunctionType(
+ null,
+ [rpcEndpointParam],
+ t.tsTypeAnnotation(
+ t.tsTypeReference(
+ t.identifier("Promise"),
+ t.tsTypeParameterInstantiation(
+ [
+ t.tsTypeReference(
+ t.identifier(
+ "QueryClient"
+ )
+ ),
+ ]
+ )
+ )
)
)
)
- )
- ),
- ].filter(Boolean))
+ ),
+ ].filter(Boolean)
+ )
)
),
];
if (useQueryClientResolver) {
- let createQueryClientName = newClientType ? "createConnectCometQueryClient" : "createTm34QueryClient";
+ let createQueryClientName = newClientType
+ ? "createConnectCometQueryClient"
+ : "createTm34QueryClient";
context.addUtil(createQueryClientName);
functionStatements = [
@@ -285,9 +298,11 @@ export const createScopedRpcTmFactory = (
t.identifier("client"),
t.conditionalExpression(
t.identifier("queryClientResolver"),
- t.callExpression(
- t.identifier("queryClientResolver"),
- [t.identifier("rpcEndpoint")]
+ t.awaitExpression(
+ t.callExpression(
+ t.identifier("queryClientResolver"),
+ [t.identifier("rpcEndpoint")]
+ )
),
t.awaitExpression(
t.callExpression(
From afec397e051bcbf9ea55ed24344d936e9c14c12b Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 17 Jan 2025 19:11:04 -0800
Subject: [PATCH 5/8] hyperweb
---
LICENSE-Apache | 2 +-
LICENSE-MIT | 2 +-
README.md | 36 +--
docs/README.md | 16 +-
docs/creating-new-generators.md | 12 +-
docs/helpers.md | 4 +-
docs/migration.md | 2 +-
docs/packages.md | 4 +-
docs/setup.md | 4 +-
docs/tests.md | 4 +-
docs/working-with-asts.md | 6 +-
lerna.json | 2 +-
package.json | 4 +-
packages/ast/CHANGELOG.md | 202 +++++++-------
packages/ast/LICENSE-Apache | 2 +-
packages/ast/LICENSE-MIT | 2 +-
packages/ast/package.json | 8 +-
packages/ast/scripts/test-ast.js | 2 +-
.../src/docs/__snapshots__/docs.test.ts.snap | 10 +-
packages/ast/src/docs/base-readme.ts | 10 +-
packages/lcd/CHANGELOG.md | 20 +-
packages/lcd/LICENSE-Apache | 2 +-
packages/lcd/LICENSE-MIT | 2 +-
packages/lcd/package.json | 8 +-
packages/parser/CHANGELOG.md | 102 ++++----
packages/parser/LICENSE-Apache | 2 +-
packages/parser/LICENSE-MIT | 2 +-
.../traverse.implements.any.test.ts | 6 +-
packages/parser/package.json | 8 +-
packages/starship/LICENSE-MIT | 2 +-
packages/starship/scripts/install.sh | 2 +-
packages/starship/scripts/port-forward.sh | 4 +-
packages/telescope/CHANGELOG.md | 246 +++++++++---------
packages/telescope/LICENSE-Apache | 2 +-
packages/telescope/LICENSE-MIT | 2 +-
packages/telescope/README.md | 36 +--
packages/telescope/package.json | 8 +-
packages/telescope/src/commands/generate.ts | 2 +-
packages/types/CHANGELOG.md | 108 ++++----
packages/types/LICENSE-Apache | 2 +-
packages/types/LICENSE-MIT | 2 +-
packages/types/package.json | 8 +-
packages/utils/CHANGELOG.md | 96 +++----
packages/utils/LICENSE-Apache | 2 +-
packages/utils/LICENSE-MIT | 2 +-
packages/utils/package.json | 8 +-
46 files changed, 509 insertions(+), 509 deletions(-)
diff --git a/LICENSE-Apache b/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/LICENSE-Apache
+++ b/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/LICENSE-MIT b/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/LICENSE-MIT
+++ b/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index e863fbaeb5..e7e9eaa248 100644
--- a/README.md
+++ b/README.md
@@ -5,19 +5,19 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
@@ -119,7 +119,7 @@ npm install -g @cosmology/telescope create-cosmos-app
### Generate
-Use the [`create-cosmos-app`](https://github.com/cosmology-tech/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
+Use the [`create-cosmos-app`](https://github.com/hyperweb-io/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
```sh
cca --boilerplate telescope
@@ -1347,7 +1347,7 @@ This should not be an issue, but if you experience problems with syntax or are n
## Developing
-See our [documentation](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
+See our [documentation](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
## Sponsors
@@ -1359,17 +1359,17 @@ Kudos to our sponsors:
Checkout these related projects:
-* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
+* [telescope](https://github.com/hyperweb-io/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
-* [chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
-* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
-* [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
-* [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
+* [chain-registry](https://github.com/hyperweb-io/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
+* [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.
+* [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app) Set up a modern Cosmos app by running one command.
+* [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
+* [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
## Credits
-🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.zone/validator)
+🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
Thanks to these engineers, teams and projects for inspiring Telescope:
diff --git a/docs/README.md b/docs/README.md
index 0c77d8cf72..7a23f2a66b 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -3,11 +3,11 @@
We're excited you made it here! Please read about how to build and contribute to Telescope!
-- [Setup](https://github.com/cosmology-tech/telescope/blob/main/docs/setup.md)
-- [Tests](https://github.com/cosmology-tech/telescope/blob/main/docs/tests.md)
-- [Packages](https://github.com/cosmology-tech/telescope/blob/main/docs/packages.md)
-- [Working with ASTs](https://github.com/cosmology-tech/telescope/blob/main/docs/working-with-asts.md)
-- [Common helpers or utils](https://github.com/cosmology-tech/telescope/blob/main/docs/helpers.md)
-- [Creating generators](https://github.com/cosmology-tech/telescope/blob/main/docs/creating-new-generators.md)
-- [Migration to v1.0](https://github.com/cosmology-tech/telescope/blob/main/docs/migration.md)
-- [Plugin generators](https://github.com/cosmology-tech/telescope/blob/main/packages/telescope/src/generators)
\ No newline at end of file
+- [Setup](https://github.com/hyperweb-io/telescope/blob/main/docs/setup.md)
+- [Tests](https://github.com/hyperweb-io/telescope/blob/main/docs/tests.md)
+- [Packages](https://github.com/hyperweb-io/telescope/blob/main/docs/packages.md)
+- [Working with ASTs](https://github.com/hyperweb-io/telescope/blob/main/docs/working-with-asts.md)
+- [Common helpers or utils](https://github.com/hyperweb-io/telescope/blob/main/docs/helpers.md)
+- [Creating generators](https://github.com/hyperweb-io/telescope/blob/main/docs/creating-new-generators.md)
+- [Migration to v1.0](https://github.com/hyperweb-io/telescope/blob/main/docs/migration.md)
+- [Plugin generators](https://github.com/hyperweb-io/telescope/blob/main/packages/telescope/src/generators)
\ No newline at end of file
diff --git a/docs/creating-new-generators.md b/docs/creating-new-generators.md
index b746a2fea5..64582f21b6 100644
--- a/docs/creating-new-generators.md
+++ b/docs/creating-new-generators.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
# creating new generators
@@ -32,7 +32,7 @@ Find a folder that makes sense for the new generator. Only if you really need to
for example, in `packages/ast/src/clients/rpc/class/some-new-rpc-client.ts`. Make sure to include `context: GenericParseContext` as the first property of all AST functions. The `ProtoService` is only here in this example because we intend to use it as we create the AST generator.
-If you are not sure how to write ASTs with `@babel/types`, please see our docs on [working with ASTs](https://github.com/cosmology-tech/telescope/blob/main/docs/working-with-asts.md). You can also checkout [astexplorer.net](https://astexplorer.net) to visually browse and learn ASTs, but they are quite verbose compared to our script when you run `yarn test:ast`.
+If you are not sure how to write ASTs with `@babel/types`, please see our docs on [working with ASTs](https://github.com/hyperweb-io/telescope/blob/main/docs/working-with-asts.md). You can also checkout [astexplorer.net](https://astexplorer.net) to visually browse and learn ASTs, but they are quite verbose compared to our script when you run `yarn test:ast`.
```js
import { ProtoService } from "@cosmology/types";
@@ -58,7 +58,7 @@ export const createSomeNewRpcClient = (
};
```
-If we need to import from other packages, context.addUtil is recommended. For detail about this, please see: [Common helpers or utils](https://github.com/cosmology-tech/telescope/blob/main/docs/helpers.md)
+If we need to import from other packages, context.addUtil is recommended. For detail about this, please see: [Common helpers or utils](https://github.com/hyperweb-io/telescope/blob/main/docs/helpers.md)
## 2 add it to the index
@@ -99,7 +99,7 @@ it('GRPC web Msg Client', () => {
});
```
-Note: Run "yarn buidl" in ast package folder to keep it updated to other packages, by doing this, code in telescope package can invoke newly built ast functions. More detail on this, please see our docs on [Packages and workspace](https://github.com/cosmology-tech/telescope/blob/main/docs/packages.md).
+Note: Run "yarn buidl" in ast package folder to keep it updated to other packages, by doing this, code in telescope package can invoke newly built ast functions. More detail on this, please see our docs on [Packages and workspace](https://github.com/hyperweb-io/telescope/blob/main/docs/packages.md).
```
cd packages/ast
yarn buidl
@@ -124,7 +124,7 @@ interface TelescopeOpts {
};
```
-Note: After editing the option in types package, don't forget to run "yarn buidl" inside the types package keeping other packages up-to-date with the newest changes of the option. More detail on this, please see our docs on [Packages and workspace](https://github.com/cosmology-tech/telescope/blob/main/docs/packages.md).
+Note: After editing the option in types package, don't forget to run "yarn buidl" inside the types package keeping other packages up-to-date with the newest changes of the option. More detail on this, please see our docs on [Packages and workspace](https://github.com/hyperweb-io/telescope/blob/main/docs/packages.md).
```
cd packages/types
yarn buidl
@@ -259,4 +259,4 @@ describe('bundle package registries and root file names', () => {
})
```
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
\ No newline at end of file
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
\ No newline at end of file
diff --git a/docs/helpers.md b/docs/helpers.md
index b126d2bee0..62610f0454 100644
--- a/docs/helpers.md
+++ b/docs/helpers.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
# Common helpers or utils
@@ -93,4 +93,4 @@ export const UTIL_HELPERS = [
];
```
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
diff --git a/docs/migration.md b/docs/migration.md
index 1435d01d26..295c2ed090 100644
--- a/docs/migration.md
+++ b/docs/migration.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
## Migration to v1.0
diff --git a/docs/packages.md b/docs/packages.md
index c20a0dc687..3629ad817a 100644
--- a/docs/packages.md
+++ b/docs/packages.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
# Packages and workspace
@@ -39,4 +39,4 @@ yarn build:ts # now the types will also show up
```
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
\ No newline at end of file
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
\ No newline at end of file
diff --git a/docs/setup.md b/docs/setup.md
index 6cd44c8c04..a265548e93 100644
--- a/docs/setup.md
+++ b/docs/setup.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
## Setup
@@ -11,4 +11,4 @@ yarn bootstrap ## this installs dependencies and links the local packages inste
yarn build ## this recursively builds all packages (this command also exists inside each package)
```
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
\ No newline at end of file
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
\ No newline at end of file
diff --git a/docs/tests.md b/docs/tests.md
index 8cc68bebea..4a12a7ae47 100644
--- a/docs/tests.md
+++ b/docs/tests.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
# Tests
@@ -32,4 +32,4 @@ cd ./packages/telescope
yarn test:watch
```
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
diff --git a/docs/working-with-asts.md b/docs/working-with-asts.md
index 2191302f5b..753e049a59 100644
--- a/docs/working-with-asts.md
+++ b/docs/working-with-asts.md
@@ -1,4 +1,4 @@
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
# working with ASTs
@@ -135,7 +135,7 @@ export const createNewGenerator = () => {
};
```
-NOTE, see our docs on [creating new generators](https://github.com/cosmology-tech/telescope/blob/main/docs/creating-new-generators.md) which shows how to create and run a test.
+NOTE, see our docs on [creating new generators](https://github.com/hyperweb-io/telescope/blob/main/docs/creating-new-generators.md) which shows how to create and run a test.
-[< back](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md)
+[< back](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md)
diff --git a/lerna.json b/lerna.json
index cdf56ff95b..5245c6eb20 100644
--- a/lerna.json
+++ b/lerna.json
@@ -12,7 +12,7 @@
"registry": "https://registry.npmjs.org",
"command": {
"create": {
- "homepage": "https://github.com/cosmology-tech/telescope",
+ "homepage": "https://github.com/hyperweb-io/telescope",
"license": "SEE LICENSE IN LICENSE",
"access": "restricted"
},
diff --git a/package.json b/package.json
index cee6d2b299..78d9ab1272 100644
--- a/package.json
+++ b/package.json
@@ -45,10 +45,10 @@
],
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope"
+ "url": "https://github.com/hyperweb-io/telescope"
},
"dependencies": {
"@jest/transform": "29.5.0"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
-}
+}
\ No newline at end of file
diff --git a/packages/ast/CHANGELOG.md b/packages/ast/CHANGELOG.md
index c9ba34382d..ff05c2edb2 100644
--- a/packages/ast/CHANGELOG.md
+++ b/packages/ast/CHANGELOG.md
@@ -3,332 +3,332 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.9.2...@cosmology/ast@1.9.3) (2025-01-02)
+## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.2...@cosmology/ast@1.9.3) (2025-01-02)
**Note:** Version bump only for package @cosmology/ast
-## [1.9.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.9.1...@cosmology/ast@1.9.2) (2024-12-31)
+## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.1...@cosmology/ast@1.9.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/ast
-## [1.9.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.9.0...@cosmology/ast@1.9.1) (2024-12-25)
+## [1.9.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.0...@cosmology/ast@1.9.1) (2024-12-25)
**Note:** Version bump only for package @cosmology/ast
-# [1.9.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.11...@cosmology/ast@1.9.0) (2024-12-17)
+# [1.9.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.11...@cosmology/ast@1.9.0) (2024-12-17)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.10...@cosmology/ast@1.8.11) (2024-12-09)
+## [1.8.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.10...@cosmology/ast@1.8.11) (2024-12-09)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.9...@cosmology/ast@1.8.10) (2024-11-05)
+## [1.8.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.9...@cosmology/ast@1.8.10) (2024-11-05)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.8...@cosmology/ast@1.8.9) (2024-11-04)
+## [1.8.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.8...@cosmology/ast@1.8.9) (2024-11-04)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.7...@cosmology/ast@1.8.8) (2024-10-25)
+## [1.8.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.7...@cosmology/ast@1.8.8) (2024-10-25)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.6...@cosmology/ast@1.8.7) (2024-10-23)
+## [1.8.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.6...@cosmology/ast@1.8.7) (2024-10-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.5...@cosmology/ast@1.8.6) (2024-10-21)
+## [1.8.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.5...@cosmology/ast@1.8.6) (2024-10-21)
### Bug Fixes
-- fix ast export issue, add imports utils. ([a224606](https://github.com/cosmology-tech/telescope/commit/a2246062dda6a5f1ec3c2953263a5c7aff2bb71d))
-- minor ast adjustments ([e38bbb6](https://github.com/cosmology-tech/telescope/commit/e38bbb610aeaf234602838d0f83368e6735a3eb2))
-- pass in ProtoServiceMethod type, use SigningClientResolver type, remove type aliases. ([620568c](https://github.com/cosmology-tech/telescope/commit/620568c0e5d44b96d39c88a6293b16507a42ab9f))
-- remove type parameter angled brackets ([ede54cc](https://github.com/cosmology-tech/telescope/commit/ede54ccd86a1e7d4aa5b7181255103a2930112f1))
-- type fix on typeUrl ([0b65248](https://github.com/cosmology-tech/telescope/commit/0b65248ce87e6b61ddc222172610870d0a438e0a))
-- type reference for the customhook argument ([6d5c760](https://github.com/cosmology-tech/telescope/commit/6d5c7604bf983304772320d0e57ca6e4dd66a678))
-- update encoder decoder identifiers. ([573b2e2](https://github.com/cosmology-tech/telescope/commit/573b2e2e174487af5241e3f6eb0fd4d5aaa0c9b4))
-- use lower caps ([3d2a83e](https://github.com/cosmology-tech/telescope/commit/3d2a83e593d8316bfdca4cce6482c2224b0523fa))
+- fix ast export issue, add imports utils. ([a224606](https://github.com/hyperweb-io/telescope/commit/a2246062dda6a5f1ec3c2953263a5c7aff2bb71d))
+- minor ast adjustments ([e38bbb6](https://github.com/hyperweb-io/telescope/commit/e38bbb610aeaf234602838d0f83368e6735a3eb2))
+- pass in ProtoServiceMethod type, use SigningClientResolver type, remove type aliases. ([620568c](https://github.com/hyperweb-io/telescope/commit/620568c0e5d44b96d39c88a6293b16507a42ab9f))
+- remove type parameter angled brackets ([ede54cc](https://github.com/hyperweb-io/telescope/commit/ede54ccd86a1e7d4aa5b7181255103a2930112f1))
+- type fix on typeUrl ([0b65248](https://github.com/hyperweb-io/telescope/commit/0b65248ce87e6b61ddc222172610870d0a438e0a))
+- type reference for the customhook argument ([6d5c760](https://github.com/hyperweb-io/telescope/commit/6d5c7604bf983304772320d0e57ca6e4dd66a678))
+- update encoder decoder identifiers. ([573b2e2](https://github.com/hyperweb-io/telescope/commit/573b2e2e174487af5241e3f6eb0fd4d5aaa0c9b4))
+- use lower caps ([3d2a83e](https://github.com/hyperweb-io/telescope/commit/3d2a83e593d8316bfdca4cce6482c2224b0523fa))
### Features
-- ast generation code for msg funcs and helper funcs. ([2cad946](https://github.com/cosmology-tech/telescope/commit/2cad946b890e2478370abddc6fce92165d5a360a))
-- use ast call expression for toEncoders&toConverters. ([471d866](https://github.com/cosmology-tech/telescope/commit/471d86645cde92a3dcb71ee00c1c8f529926c72a))
+- ast generation code for msg funcs and helper funcs. ([2cad946](https://github.com/hyperweb-io/telescope/commit/2cad946b890e2478370abddc6fce92165d5a360a))
+- use ast call expression for toEncoders&toConverters. ([471d866](https://github.com/hyperweb-io/telescope/commit/471d86645cde92a3dcb71ee00c1c8f529926c72a))
-## [1.8.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.4...@cosmology/ast@1.8.5) (2024-10-05)
+## [1.8.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.4...@cosmology/ast@1.8.5) (2024-10-05)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.3...@cosmology/ast@1.8.4) (2024-09-18)
+## [1.8.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.3...@cosmology/ast@1.8.4) (2024-09-18)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.2...@cosmology/ast@1.8.3) (2024-09-16)
+## [1.8.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.2...@cosmology/ast@1.8.3) (2024-09-16)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.1...@cosmology/ast@1.8.2) (2024-09-12)
+## [1.8.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.1...@cosmology/ast@1.8.2) (2024-09-12)
**Note:** Version bump only for package @cosmology/ast
-## [1.8.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.8.0...@cosmology/ast@1.8.1) (2024-06-28)
+## [1.8.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.8.0...@cosmology/ast@1.8.1) (2024-06-28)
**Note:** Version bump only for package @cosmology/ast
-# [1.8.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.7.1...@cosmology/ast@1.8.0) (2024-06-25)
+# [1.8.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.7.1...@cosmology/ast@1.8.0) (2024-06-25)
**Note:** Version bump only for package @cosmology/ast
-## [1.7.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.7.0...@cosmology/ast@1.7.1) (2024-06-03)
+## [1.7.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.7.0...@cosmology/ast@1.7.1) (2024-06-03)
**Note:** Version bump only for package @cosmology/ast
-# [1.7.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.6.0...@cosmology/ast@1.7.0) (2024-05-25)
+# [1.7.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.6.0...@cosmology/ast@1.7.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/ast
-# [1.6.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.5.4...@cosmology/ast@1.6.0) (2024-05-25)
+# [1.6.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.5.4...@cosmology/ast@1.6.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/ast
-## [1.5.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.5.3...@cosmology/ast@1.5.4) (2024-05-13)
+## [1.5.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.5.3...@cosmology/ast@1.5.4) (2024-05-13)
**Note:** Version bump only for package @cosmology/ast
-## [1.5.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.5.2...@cosmology/ast@1.5.3) (2024-04-03)
+## [1.5.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.5.2...@cosmology/ast@1.5.3) (2024-04-03)
**Note:** Version bump only for package @cosmology/ast
-## [1.5.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.5.1...@cosmology/ast@1.5.2) (2024-04-02)
+## [1.5.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.5.1...@cosmology/ast@1.5.2) (2024-04-02)
**Note:** Version bump only for package @cosmology/ast
-## [1.5.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.5.0...@cosmology/ast@1.5.1) (2024-03-21)
+## [1.5.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.5.0...@cosmology/ast@1.5.1) (2024-03-21)
**Note:** Version bump only for package @cosmology/ast
-# [1.5.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.9...@cosmology/ast@1.5.0) (2024-03-20)
+# [1.5.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.9...@cosmology/ast@1.5.0) (2024-03-20)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.8...@cosmology/ast@1.4.9) (2024-03-18)
+## [1.4.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.8...@cosmology/ast@1.4.9) (2024-03-18)
### Bug Fixes
-- amino enum handling ([0afc37b](https://github.com/cosmology-tech/telescope/commit/0afc37b63a75cbb626602db2089de16325a300b1))
-- amino from-amino null handling ([9595e4b](https://github.com/cosmology-tech/telescope/commit/9595e4bc75f58076584a86dcc299205aa4fae3b8))
-- amino omit empty ([d38a5c8](https://github.com/cosmology-tech/telescope/commit/d38a5c81e014238461847bb95ca90477f4727170))
-- array fields ([45a6160](https://github.com/cosmology-tech/telescope/commit/45a61606446381215666e5bb19a290a5d793c7c3))
-- decimal handling in amino ([36f37c3](https://github.com/cosmology-tech/telescope/commit/36f37c3fe9f2e5d1428d48d6ffc08f2487ad837c))
-- object empty check ([f7206f0](https://github.com/cosmology-tech/telescope/commit/f7206f07d87a6da646435cf3244dfd8e731fa8d8))
-- optional field default value ([1590b18](https://github.com/cosmology-tech/telescope/commit/1590b18a6d81fc2e767869ed366f6d0deaabad02))
-- optional field default value ([efc0dc7](https://github.com/cosmology-tech/telescope/commit/efc0dc738e4df5fed65e8317acdaecef3906b746))
-- pubkey from amino functions ([fdcae94](https://github.com/cosmology-tech/telescope/commit/fdcae94742e2a82a76fb0206b2357efc7a24a8c7))
+- amino enum handling ([0afc37b](https://github.com/hyperweb-io/telescope/commit/0afc37b63a75cbb626602db2089de16325a300b1))
+- amino from-amino null handling ([9595e4b](https://github.com/hyperweb-io/telescope/commit/9595e4bc75f58076584a86dcc299205aa4fae3b8))
+- amino omit empty ([d38a5c8](https://github.com/hyperweb-io/telescope/commit/d38a5c81e014238461847bb95ca90477f4727170))
+- array fields ([45a6160](https://github.com/hyperweb-io/telescope/commit/45a61606446381215666e5bb19a290a5d793c7c3))
+- decimal handling in amino ([36f37c3](https://github.com/hyperweb-io/telescope/commit/36f37c3fe9f2e5d1428d48d6ffc08f2487ad837c))
+- object empty check ([f7206f0](https://github.com/hyperweb-io/telescope/commit/f7206f07d87a6da646435cf3244dfd8e731fa8d8))
+- optional field default value ([1590b18](https://github.com/hyperweb-io/telescope/commit/1590b18a6d81fc2e767869ed366f6d0deaabad02))
+- optional field default value ([efc0dc7](https://github.com/hyperweb-io/telescope/commit/efc0dc738e4df5fed65e8317acdaecef3906b746))
+- pubkey from amino functions ([fdcae94](https://github.com/hyperweb-io/telescope/commit/fdcae94742e2a82a76fb0206b2357efc7a24a8c7))
### Features
-- add emit default and fix timestamp ([1c4296c](https://github.com/cosmology-tech/telescope/commit/1c4296c5eb5cb48b42b6c9ba7523f8faa8a8bcbe))
-- add return type to arrow-functions ([94608ed](https://github.com/cosmology-tech/telescope/commit/94608ed3024776b1e9d3a44839218572f32887a7))
-- fix omit empty handling ([3a8e76b](https://github.com/cosmology-tech/telescope/commit/3a8e76ba6a402cec7a64e4ec98e58133acf19f09))
-- handle decimal paddings ([331f35d](https://github.com/cosmology-tech/telescope/commit/331f35d8fea0fcdb2c0fea243c923ec60faf3d27))
-- partially add support for amino ([f9ae22c](https://github.com/cosmology-tech/telescope/commit/f9ae22c86665590b8caa6b3918738a903592c29b))
-- re-run tests and update snapshots ([ced5e43](https://github.com/cosmology-tech/telescope/commit/ced5e4313ff29a7e268dd0aee7aa2f492ac176a3))
+- add emit default and fix timestamp ([1c4296c](https://github.com/hyperweb-io/telescope/commit/1c4296c5eb5cb48b42b6c9ba7523f8faa8a8bcbe))
+- add return type to arrow-functions ([94608ed](https://github.com/hyperweb-io/telescope/commit/94608ed3024776b1e9d3a44839218572f32887a7))
+- fix omit empty handling ([3a8e76b](https://github.com/hyperweb-io/telescope/commit/3a8e76ba6a402cec7a64e4ec98e58133acf19f09))
+- handle decimal paddings ([331f35d](https://github.com/hyperweb-io/telescope/commit/331f35d8fea0fcdb2c0fea243c923ec60faf3d27))
+- partially add support for amino ([f9ae22c](https://github.com/hyperweb-io/telescope/commit/f9ae22c86665590b8caa6b3918738a903592c29b))
+- re-run tests and update snapshots ([ced5e43](https://github.com/hyperweb-io/telescope/commit/ced5e4313ff29a7e268dd0aee7aa2f492ac176a3))
-## [1.4.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.7...@cosmology/ast@1.4.8) (2024-01-23)
+## [1.4.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.7...@cosmology/ast@1.4.8) (2024-01-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.6...@cosmology/ast@1.4.7) (2024-01-23)
+## [1.4.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.6...@cosmology/ast@1.4.7) (2024-01-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.5...@cosmology/ast@1.4.6) (2024-01-23)
+## [1.4.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.5...@cosmology/ast@1.4.6) (2024-01-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.4...@cosmology/ast@1.4.5) (2024-01-19)
+## [1.4.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.4...@cosmology/ast@1.4.5) (2024-01-19)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.3...@cosmology/ast@1.4.4) (2024-01-16)
+## [1.4.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.3...@cosmology/ast@1.4.4) (2024-01-16)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.2...@cosmology/ast@1.4.3) (2024-01-16)
+## [1.4.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.2...@cosmology/ast@1.4.3) (2024-01-16)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.1...@cosmology/ast@1.4.2) (2024-01-08)
+## [1.4.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.1...@cosmology/ast@1.4.2) (2024-01-08)
**Note:** Version bump only for package @cosmology/ast
-## [1.4.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.4.0...@cosmology/ast@1.4.1) (2024-01-02)
+## [1.4.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.4.0...@cosmology/ast@1.4.1) (2024-01-02)
**Note:** Version bump only for package @cosmology/ast
-# [1.4.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.3.3...@cosmology/ast@1.4.0) (2023-12-26)
+# [1.4.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.3.3...@cosmology/ast@1.4.0) (2023-12-26)
**Note:** Version bump only for package @cosmology/ast
-## [1.3.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.3.2...@cosmology/ast@1.3.3) (2023-12-18)
+## [1.3.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.3.2...@cosmology/ast@1.3.3) (2023-12-18)
**Note:** Version bump only for package @cosmology/ast
-## [1.3.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.3.1...@cosmology/ast@1.3.2) (2023-12-14)
+## [1.3.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.3.1...@cosmology/ast@1.3.2) (2023-12-14)
**Note:** Version bump only for package @cosmology/ast
-## [1.3.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.3.0...@cosmology/ast@1.3.1) (2023-12-13)
+## [1.3.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.3.0...@cosmology/ast@1.3.1) (2023-12-13)
**Note:** Version bump only for package @cosmology/ast
-# [1.3.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.7...@cosmology/ast@1.3.0) (2023-12-13)
+# [1.3.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.7...@cosmology/ast@1.3.0) (2023-12-13)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.6...@cosmology/ast@1.2.7) (2023-12-11)
+## [1.2.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.6...@cosmology/ast@1.2.7) (2023-12-11)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.5...@cosmology/ast@1.2.6) (2023-12-11)
+## [1.2.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.5...@cosmology/ast@1.2.6) (2023-12-11)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.4...@cosmology/ast@1.2.5) (2023-12-11)
+## [1.2.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.4...@cosmology/ast@1.2.5) (2023-12-11)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.3...@cosmology/ast@1.2.4) (2023-12-07)
+## [1.2.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.3...@cosmology/ast@1.2.4) (2023-12-07)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.2...@cosmology/ast@1.2.3) (2023-12-05)
+## [1.2.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.2...@cosmology/ast@1.2.3) (2023-12-05)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.1...@cosmology/ast@1.2.2) (2023-12-05)
+## [1.2.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.1...@cosmology/ast@1.2.2) (2023-12-05)
**Note:** Version bump only for package @cosmology/ast
-## [1.2.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.2.0...@cosmology/ast@1.2.1) (2023-12-04)
+## [1.2.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.2.0...@cosmology/ast@1.2.1) (2023-12-04)
**Note:** Version bump only for package @cosmology/ast
-# [1.2.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.1.1...@cosmology/ast@1.2.0) (2023-12-03)
+# [1.2.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.1.1...@cosmology/ast@1.2.0) (2023-12-03)
**Note:** Version bump only for package @cosmology/ast
-## [1.1.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.1.0...@cosmology/ast@1.1.1) (2023-11-19)
+## [1.1.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.1.0...@cosmology/ast@1.1.1) (2023-11-19)
**Note:** Version bump only for package @cosmology/ast
-# [1.1.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.15...@cosmology/ast@1.1.0) (2023-11-19)
+# [1.1.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.15...@cosmology/ast@1.1.0) (2023-11-19)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.15](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.14...@cosmology/ast@1.0.15) (2023-11-15)
+## [1.0.15](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.14...@cosmology/ast@1.0.15) (2023-11-15)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.14](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.13...@cosmology/ast@1.0.14) (2023-11-13)
+## [1.0.14](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.13...@cosmology/ast@1.0.14) (2023-11-13)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.13](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.12...@cosmology/ast@1.0.13) (2023-11-12)
+## [1.0.13](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.12...@cosmology/ast@1.0.13) (2023-11-12)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.12](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.11...@cosmology/ast@1.0.12) (2023-11-12)
+## [1.0.12](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.11...@cosmology/ast@1.0.12) (2023-11-12)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.10...@cosmology/ast@1.0.11) (2023-11-10)
+## [1.0.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.10...@cosmology/ast@1.0.11) (2023-11-10)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.9...@cosmology/ast@1.0.10) (2023-10-30)
+## [1.0.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.9...@cosmology/ast@1.0.10) (2023-10-30)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.8...@cosmology/ast@1.0.9) (2023-10-29)
+## [1.0.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.8...@cosmology/ast@1.0.9) (2023-10-29)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.7...@cosmology/ast@1.0.8) (2023-10-29)
+## [1.0.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.7...@cosmology/ast@1.0.8) (2023-10-29)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.6...@cosmology/ast@1.0.7) (2023-10-28)
+## [1.0.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.6...@cosmology/ast@1.0.7) (2023-10-28)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.5...@cosmology/ast@1.0.6) (2023-10-23)
+## [1.0.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.5...@cosmology/ast@1.0.6) (2023-10-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.4...@cosmology/ast@1.0.5) (2023-10-23)
+## [1.0.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.4...@cosmology/ast@1.0.5) (2023-10-23)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.3...@cosmology/ast@1.0.4) (2023-10-17)
+## [1.0.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.3...@cosmology/ast@1.0.4) (2023-10-17)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.2...@cosmology/ast@1.0.3) (2023-10-02)
+## [1.0.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.2...@cosmology/ast@1.0.3) (2023-10-02)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.1...@cosmology/ast@1.0.2) (2023-09-20)
+## [1.0.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.1...@cosmology/ast@1.0.2) (2023-09-20)
**Note:** Version bump only for package @cosmology/ast
-## [1.0.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@1.0.0...@cosmology/ast@1.0.1) (2023-09-13)
+## [1.0.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.0.0...@cosmology/ast@1.0.1) (2023-09-13)
**Note:** Version bump only for package @cosmology/ast
-# [1.0.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.95.4...@cosmology/ast@1.0.0) (2023-09-13)
+# [1.0.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.95.4...@cosmology/ast@1.0.0) (2023-09-13)
**Note:** Version bump only for package @cosmology/ast
-## [0.95.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.95.3...@cosmology/ast@0.95.4) (2023-09-07)
+## [0.95.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.95.3...@cosmology/ast@0.95.4) (2023-09-07)
**Note:** Version bump only for package @cosmology/ast
-## [0.95.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.95.2...@cosmology/ast@0.95.3) (2023-09-07)
+## [0.95.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.95.2...@cosmology/ast@0.95.3) (2023-09-07)
**Note:** Version bump only for package @cosmology/ast
-## [0.95.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.95.1...@cosmology/ast@0.95.2) (2023-09-07)
+## [0.95.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.95.1...@cosmology/ast@0.95.2) (2023-09-07)
**Note:** Version bump only for package @cosmology/ast
-## [0.95.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.95.0...@cosmology/ast@0.95.1) (2023-09-06)
+## [0.95.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.95.0...@cosmology/ast@0.95.1) (2023-09-06)
**Note:** Version bump only for package @cosmology/ast
-# [0.95.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.94.0...@cosmology/ast@0.95.0) (2023-09-06)
+# [0.95.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.94.0...@cosmology/ast@0.95.0) (2023-09-06)
**Note:** Version bump only for package @cosmology/ast
-# [0.94.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.93.0...@cosmology/ast@0.94.0) (2023-09-05)
+# [0.94.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.93.0...@cosmology/ast@0.94.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/ast
-# [0.93.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.92.0...@cosmology/ast@0.93.0) (2023-09-05)
+# [0.93.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.92.0...@cosmology/ast@0.93.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/ast
-# [0.92.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.91.0...@cosmology/ast@0.92.0) (2023-08-21)
+# [0.92.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.91.0...@cosmology/ast@0.92.0) (2023-08-21)
**Note:** Version bump only for package @cosmology/ast
-# [0.91.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.90.0...@cosmology/ast@0.91.0) (2023-08-16)
+# [0.91.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.90.0...@cosmology/ast@0.91.0) (2023-08-16)
**Note:** Version bump only for package @cosmology/ast
-# [0.90.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/ast@0.89.0...@cosmology/ast@0.90.0) (2023-08-11)
+# [0.90.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@0.89.0...@cosmology/ast@0.90.0) (2023-08-11)
**Note:** Version bump only for package @cosmology/ast
@@ -336,8 +336,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.88.1](https://github.com/osmosis-labs/telescope/compare/@cosmology/ast@0.88.0...@cosmology/ast@0.88.1) (2023-07-29)
diff --git a/packages/ast/LICENSE-Apache b/packages/ast/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/ast/LICENSE-Apache
+++ b/packages/ast/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/ast/LICENSE-MIT b/packages/ast/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/ast/LICENSE-MIT
+++ b/packages/ast/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/ast/package.json b/packages/ast/package.json
index 043e31e7d9..12de82dac9 100644
--- a/packages/ast/package.json
+++ b/packages/ast/package.json
@@ -3,7 +3,7 @@
"version": "1.9.3",
"description": "Cosmos TypeScript AST generation",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/ast#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/ast#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
@@ -55,11 +55,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope"
+ "url": "https://github.com/hyperweb-io/telescope"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/issues"
+ "url": "https://github.com/hyperweb-io/telescope/issues"
},
"devDependencies": {
"@babel/parser": "^7.23.6",
@@ -89,4 +89,4 @@
"case": "1.6.3",
"dotty": "0.1.2"
}
-}
+}
\ No newline at end of file
diff --git a/packages/ast/scripts/test-ast.js b/packages/ast/scripts/test-ast.js
index 2ea52b3f8a..2d35ecc8cd 100644
--- a/packages/ast/scripts/test-ast.js
+++ b/packages/ast/scripts/test-ast.js
@@ -3,7 +3,7 @@
// 2. cd into `packages/ast`.
// 3. Run `yarn test:ast`.
// `test-output.json` will be created containing an abstract syntax tree of the `fixture.ts` file.
-// A broader documentation you may find here: https://github.com/cosmology-tech/telescope/blob/main/docs/working-with-asts.md
+// A broader documentation you may find here: https://github.com/hyperweb-io/telescope/blob/main/docs/working-with-asts.md
import { stringify } from 'ast-stringify';
import { parse } from '@babel/parser';
diff --git a/packages/ast/src/docs/__snapshots__/docs.test.ts.snap b/packages/ast/src/docs/__snapshots__/docs.test.ts.snap
index 2b25846887..16f3fdffa9 100644
--- a/packages/ast/src/docs/__snapshots__/docs.test.ts.snap
+++ b/packages/ast/src/docs/__snapshots__/docs.test.ts.snap
@@ -154,9 +154,9 @@ const {
## Connecting with Wallets and Signing Messages
-⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit). Continue below to see how to manually construct signers and clients.
+⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit). Continue below to see how to manually construct signers and clients.
-Here are the docs on [creating signers](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) in cosmos-kit that can be used with Keplr and other wallets.
+Here are the docs on [creating signers](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/react#signing-clients) in cosmos-kit that can be used with Keplr and other wallets.
### Initializing the Stargate Client
@@ -174,7 +174,7 @@ const stargateClient = await getOsmosisSigningClient({
To broadcast messages, you can create signers with a variety of options:
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) (recommended)
+* [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/react#signing-clients) (recommended)
* [keplr](https://docs.keplr.app/api/cosmjs.html)
* [cosmjs](https://gist.github.com/webmaster128/8444d42a7eceeda2544c8a59fbd7e1d9)
### Amino Signer
@@ -332,8 +332,8 @@ yarn publish
Code built with the help of these related projects:
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) for generated CosmWasm contract Typescript classes
-* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) A wallet connector for the Cosmos ⚛️
+* [telescope](https://github.com/hyperweb-io/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
+* [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) A wallet connector for the Cosmos ⚛️
"
`;
diff --git a/packages/ast/src/docs/base-readme.ts b/packages/ast/src/docs/base-readme.ts
index 13f43c6787..dfc2f03250 100644
--- a/packages/ast/src/docs/base-readme.ts
+++ b/packages/ast/src/docs/base-readme.ts
@@ -170,9 +170,9 @@ const {
## Connecting with Wallets and Signing Messages
-⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit). Continue below to see how to manually construct signers and clients.
+⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit). Continue below to see how to manually construct signers and clients.
-Here are the docs on [creating signers](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) in cosmos-kit that can be used with Keplr and other wallets.
+Here are the docs on [creating signers](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/react#signing-clients) in cosmos-kit that can be used with Keplr and other wallets.
### Initializing the Stargate Client
@@ -190,7 +190,7 @@ const stargateClient = await ${signingBaseClient}({
To broadcast messages, you can create signers with a variety of options:
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) (recommended)
+* [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/react#signing-clients) (recommended)
* [keplr](https://docs.keplr.app/api/cosmjs.html)
* [cosmjs](https://gist.github.com/webmaster128/8444d42a7eceeda2544c8a59fbd7e1d9)
### Amino Signer
@@ -348,8 +348,8 @@ yarn publish
Code built with the help of these related projects:
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) for generated CosmWasm contract Typescript classes
-* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) A wallet connector for the Cosmos ⚛️
+* [telescope](https://github.com/hyperweb-io/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
+* [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) A wallet connector for the Cosmos ⚛️
`;
}
\ No newline at end of file
diff --git a/packages/lcd/CHANGELOG.md b/packages/lcd/CHANGELOG.md
index a3b6c9e4c0..7f83f1af7f 100644
--- a/packages/lcd/CHANGELOG.md
+++ b/packages/lcd/CHANGELOG.md
@@ -3,18 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-# [0.14.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.5...@cosmology/lcd@0.14.0) (2024-09-16)
+# [0.14.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.5...@cosmology/lcd@0.14.0) (2024-09-16)
### Features
-* add timeout to the argument of LcdClient constructor ([8e7c4e9](https://github.com/cosmology-tech/telescope/commit/8e7c4e92206b4931f8397c9810d582d85784ef4e))
+* add timeout to the argument of LcdClient constructor ([8e7c4e9](https://github.com/hyperweb-io/telescope/commit/8e7c4e92206b4931f8397c9810d582d85784ef4e))
-## [0.13.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.4...@cosmology/lcd@0.13.5) (2024-09-12)
+## [0.13.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.4...@cosmology/lcd@0.13.5) (2024-09-12)
**Note:** Version bump only for package @cosmology/lcd
@@ -22,7 +22,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-## [0.13.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.3...@cosmology/lcd@0.13.4) (2024-06-28)
+## [0.13.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.3...@cosmology/lcd@0.13.4) (2024-06-28)
**Note:** Version bump only for package @cosmology/lcd
@@ -30,19 +30,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
-## [0.13.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.2...@cosmology/lcd@0.13.3) (2023-11-13)
+## [0.13.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.2...@cosmology/lcd@0.13.3) (2023-11-13)
**Note:** Version bump only for package @cosmology/lcd
-## [0.13.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.1...@cosmology/lcd@0.13.2) (2023-11-12)
+## [0.13.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.1...@cosmology/lcd@0.13.2) (2023-11-12)
**Note:** Version bump only for package @cosmology/lcd
-## [0.13.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.13.0...@cosmology/lcd@0.13.1) (2023-11-12)
+## [0.13.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.0...@cosmology/lcd@0.13.1) (2023-11-12)
**Note:** Version bump only for package @cosmology/lcd
-# [0.13.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/lcd@0.12.0...@cosmology/lcd@0.13.0) (2023-09-05)
+# [0.13.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.12.0...@cosmology/lcd@0.13.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/lcd
@@ -50,8 +50,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.11.1](https://github.com/osmosis-labs/telescope/compare/@cosmology/lcd@0.11.0...@cosmology/lcd@0.11.1) (2023-04-11)
diff --git a/packages/lcd/LICENSE-Apache b/packages/lcd/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/lcd/LICENSE-Apache
+++ b/packages/lcd/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/lcd/LICENSE-MIT b/packages/lcd/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/lcd/LICENSE-MIT
+++ b/packages/lcd/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/lcd/package.json b/packages/lcd/package.json
index aebd8ad16d..9da235fcb9 100644
--- a/packages/lcd/package.json
+++ b/packages/lcd/package.json
@@ -3,7 +3,7 @@
"version": "0.14.0",
"description": "Telescope LCDClient helpers",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/helpers#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/helpers#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
@@ -49,11 +49,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope/tree/master/packages/helpers"
+ "url": "https://github.com/hyperweb-io/telescope/tree/master/packages/helpers"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/tree/master/packages/helpers/issues"
+ "url": "https://github.com/hyperweb-io/telescope/tree/master/packages/helpers/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
@@ -73,4 +73,4 @@
"dependencies": {
"axios": "1.7.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md
index 6a30853f36..30b390a0e0 100644
--- a/packages/parser/CHANGELOG.md
+++ b/packages/parser/CHANGELOG.md
@@ -3,199 +3,199 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.9.1...@cosmology/proto-parser@1.9.2) (2024-12-31)
+## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.1...@cosmology/proto-parser@1.9.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.9.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.9.0...@cosmology/proto-parser@1.9.1) (2024-12-25)
+## [1.9.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.0...@cosmology/proto-parser@1.9.1) (2024-12-25)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.9.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.8...@cosmology/proto-parser@1.9.0) (2024-12-17)
+# [1.9.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.8...@cosmology/proto-parser@1.9.0) (2024-12-17)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.7...@cosmology/proto-parser@1.8.8) (2024-12-09)
+## [1.8.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.7...@cosmology/proto-parser@1.8.8) (2024-12-09)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.6...@cosmology/proto-parser@1.8.7) (2024-11-04)
+## [1.8.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.6...@cosmology/proto-parser@1.8.7) (2024-11-04)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.5...@cosmology/proto-parser@1.8.6) (2024-10-21)
+## [1.8.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.5...@cosmology/proto-parser@1.8.6) (2024-10-21)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.4...@cosmology/proto-parser@1.8.5) (2024-10-05)
+## [1.8.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.4...@cosmology/proto-parser@1.8.5) (2024-10-05)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.3...@cosmology/proto-parser@1.8.4) (2024-09-18)
+## [1.8.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.3...@cosmology/proto-parser@1.8.4) (2024-09-18)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.2...@cosmology/proto-parser@1.8.3) (2024-09-16)
+## [1.8.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.2...@cosmology/proto-parser@1.8.3) (2024-09-16)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.1...@cosmology/proto-parser@1.8.2) (2024-09-12)
+## [1.8.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.1...@cosmology/proto-parser@1.8.2) (2024-09-12)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.8.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.8.0...@cosmology/proto-parser@1.8.1) (2024-06-28)
+## [1.8.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.8.0...@cosmology/proto-parser@1.8.1) (2024-06-28)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.8.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.7.0...@cosmology/proto-parser@1.8.0) (2024-06-25)
+# [1.8.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.7.0...@cosmology/proto-parser@1.8.0) (2024-06-25)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.7.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.6.0...@cosmology/proto-parser@1.7.0) (2024-05-25)
+# [1.7.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.6.0...@cosmology/proto-parser@1.7.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.6.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.5.3...@cosmology/proto-parser@1.6.0) (2024-05-25)
+# [1.6.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.5.3...@cosmology/proto-parser@1.6.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.5.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.5.2...@cosmology/proto-parser@1.5.3) (2024-05-13)
+## [1.5.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.5.2...@cosmology/proto-parser@1.5.3) (2024-05-13)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.5.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.5.1...@cosmology/proto-parser@1.5.2) (2024-04-03)
+## [1.5.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.5.1...@cosmology/proto-parser@1.5.2) (2024-04-03)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.5.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.5.0...@cosmology/proto-parser@1.5.1) (2024-04-02)
+## [1.5.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.5.0...@cosmology/proto-parser@1.5.1) (2024-04-02)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.5.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.5...@cosmology/proto-parser@1.5.0) (2024-03-20)
+# [1.5.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.5...@cosmology/proto-parser@1.5.0) (2024-03-20)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.4.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.4...@cosmology/proto-parser@1.4.5) (2024-03-18)
+## [1.4.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.4...@cosmology/proto-parser@1.4.5) (2024-03-18)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.4.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.3...@cosmology/proto-parser@1.4.4) (2024-01-19)
+## [1.4.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.3...@cosmology/proto-parser@1.4.4) (2024-01-19)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.4.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.2...@cosmology/proto-parser@1.4.3) (2024-01-16)
+## [1.4.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.2...@cosmology/proto-parser@1.4.3) (2024-01-16)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.4.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.1...@cosmology/proto-parser@1.4.2) (2024-01-16)
+## [1.4.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.1...@cosmology/proto-parser@1.4.2) (2024-01-16)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.4.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.4.0...@cosmology/proto-parser@1.4.1) (2024-01-08)
+## [1.4.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.4.0...@cosmology/proto-parser@1.4.1) (2024-01-08)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.4.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.3.2...@cosmology/proto-parser@1.4.0) (2023-12-26)
+# [1.4.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.3.2...@cosmology/proto-parser@1.4.0) (2023-12-26)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.3.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.3.1...@cosmology/proto-parser@1.3.2) (2023-12-14)
+## [1.3.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.3.1...@cosmology/proto-parser@1.3.2) (2023-12-14)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.3.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.3.0...@cosmology/proto-parser@1.3.1) (2023-12-13)
+## [1.3.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.3.0...@cosmology/proto-parser@1.3.1) (2023-12-13)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.3.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.2.1...@cosmology/proto-parser@1.3.0) (2023-12-13)
+# [1.3.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.2.1...@cosmology/proto-parser@1.3.0) (2023-12-13)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.2.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.2.0...@cosmology/proto-parser@1.2.1) (2023-12-05)
+## [1.2.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.2.0...@cosmology/proto-parser@1.2.1) (2023-12-05)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.2.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.1.0...@cosmology/proto-parser@1.2.0) (2023-12-03)
+# [1.2.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.1.0...@cosmology/proto-parser@1.2.0) (2023-12-03)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.1.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.11...@cosmology/proto-parser@1.1.0) (2023-11-19)
+# [1.1.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.11...@cosmology/proto-parser@1.1.0) (2023-11-19)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.10...@cosmology/proto-parser@1.0.11) (2023-11-13)
+## [1.0.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.10...@cosmology/proto-parser@1.0.11) (2023-11-13)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.9...@cosmology/proto-parser@1.0.10) (2023-11-12)
+## [1.0.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.9...@cosmology/proto-parser@1.0.10) (2023-11-12)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.8...@cosmology/proto-parser@1.0.9) (2023-11-12)
+## [1.0.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.8...@cosmology/proto-parser@1.0.9) (2023-11-12)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.7...@cosmology/proto-parser@1.0.8) (2023-11-10)
+## [1.0.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.7...@cosmology/proto-parser@1.0.8) (2023-11-10)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.6...@cosmology/proto-parser@1.0.7) (2023-10-30)
+## [1.0.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.6...@cosmology/proto-parser@1.0.7) (2023-10-30)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.5...@cosmology/proto-parser@1.0.6) (2023-10-29)
+## [1.0.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.5...@cosmology/proto-parser@1.0.6) (2023-10-29)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.4...@cosmology/proto-parser@1.0.5) (2023-10-29)
+## [1.0.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.4...@cosmology/proto-parser@1.0.5) (2023-10-29)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.3...@cosmology/proto-parser@1.0.4) (2023-10-28)
+## [1.0.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.3...@cosmology/proto-parser@1.0.4) (2023-10-28)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.2...@cosmology/proto-parser@1.0.3) (2023-10-23)
+## [1.0.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.2...@cosmology/proto-parser@1.0.3) (2023-10-23)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.1...@cosmology/proto-parser@1.0.2) (2023-10-17)
+## [1.0.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.1...@cosmology/proto-parser@1.0.2) (2023-10-17)
**Note:** Version bump only for package @cosmology/proto-parser
-## [1.0.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@1.0.0...@cosmology/proto-parser@1.0.1) (2023-09-20)
+## [1.0.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.0.0...@cosmology/proto-parser@1.0.1) (2023-09-20)
**Note:** Version bump only for package @cosmology/proto-parser
-# [1.0.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.51.2...@cosmology/proto-parser@1.0.0) (2023-09-13)
+# [1.0.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.51.2...@cosmology/proto-parser@1.0.0) (2023-09-13)
**Note:** Version bump only for package @cosmology/proto-parser
-## [0.51.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.51.1...@cosmology/proto-parser@0.51.2) (2023-09-07)
+## [0.51.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.51.1...@cosmology/proto-parser@0.51.2) (2023-09-07)
**Note:** Version bump only for package @cosmology/proto-parser
-## [0.51.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.51.0...@cosmology/proto-parser@0.51.1) (2023-09-07)
+## [0.51.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.51.0...@cosmology/proto-parser@0.51.1) (2023-09-07)
**Note:** Version bump only for package @cosmology/proto-parser
-# [0.51.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.50.0...@cosmology/proto-parser@0.51.0) (2023-09-06)
+# [0.51.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.50.0...@cosmology/proto-parser@0.51.0) (2023-09-06)
**Note:** Version bump only for package @cosmology/proto-parser
-# [0.50.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.49.0...@cosmology/proto-parser@0.50.0) (2023-09-05)
+# [0.50.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.49.0...@cosmology/proto-parser@0.50.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/proto-parser
-# [0.49.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.48.0...@cosmology/proto-parser@0.49.0) (2023-09-05)
+# [0.49.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.48.0...@cosmology/proto-parser@0.49.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/proto-parser
-# [0.48.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.47.0...@cosmology/proto-parser@0.48.0) (2023-08-16)
+# [0.48.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.47.0...@cosmology/proto-parser@0.48.0) (2023-08-16)
**Note:** Version bump only for package @cosmology/proto-parser
-# [0.47.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/proto-parser@0.46.0...@cosmology/proto-parser@0.47.0) (2023-08-11)
+# [0.47.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@0.46.0...@cosmology/proto-parser@0.47.0) (2023-08-11)
**Note:** Version bump only for package @cosmology/proto-parser
@@ -203,8 +203,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.45.1](https://github.com/osmosis-labs/telescope/compare/@cosmology/proto-parser@0.45.0...@cosmology/proto-parser@0.45.1) (2023-07-06)
diff --git a/packages/parser/LICENSE-Apache b/packages/parser/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/parser/LICENSE-Apache
+++ b/packages/parser/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/parser/LICENSE-MIT b/packages/parser/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/parser/LICENSE-MIT
+++ b/packages/parser/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/parser/__tests__/implements/traverse.implements.any.test.ts b/packages/parser/__tests__/implements/traverse.implements.any.test.ts
index 0458b2a1ec..5377861a8e 100644
--- a/packages/parser/__tests__/implements/traverse.implements.any.test.ts
+++ b/packages/parser/__tests__/implements/traverse.implements.any.test.ts
@@ -17,7 +17,7 @@ const getStore = () => {
syntax = "proto3";
package ${pkg};
-option go_package = "github.com/cosmology-tech/go";
+option go_package = "github.com/hyperweb-io/go";
message Dog {
option (cosmos_proto.implements_interface) = "AnimalI";
@@ -48,7 +48,7 @@ message Dog {
content: `
syntax = "proto3";
package cosmology.zone;
-option go_package = "github.com/cosmology-tech/go";
+option go_package = "github.com/hyperweb-io/go";
message Cat {
option (cosmos_proto.implements_interface) = "AnimalI";
@@ -68,7 +68,7 @@ import "google/protobuf/any.proto";
import "cosmology/example/dog1.proto";
import "cosmology/example/dog2.proto";
-option go_package = "github.com/cosmology-tech/go";
+option go_package = "github.com/hyperweb-io/go";
message QueryAnimalsRequest {
google.protobuf.Any animal = 1 [ (cosmos_proto.accepts_interface) = "AnimalI" ];
diff --git a/packages/parser/package.json b/packages/parser/package.json
index db400b0aec..ddb0649130 100644
--- a/packages/parser/package.json
+++ b/packages/parser/package.json
@@ -3,7 +3,7 @@
"version": "1.9.2",
"description": "A Parser for Cosmos Protobufs",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/parser#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/parser#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"typings": "types/index.d.ts",
@@ -49,11 +49,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope"
+ "url": "https://github.com/hyperweb-io/telescope"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/issues"
+ "url": "https://github.com/hyperweb-io/telescope/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
@@ -82,4 +82,4 @@
"minimatch": "5.1.0",
"mkdirp": "3.0.0"
}
-}
+}
\ No newline at end of file
diff --git a/packages/starship/LICENSE-MIT b/packages/starship/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/starship/LICENSE-MIT
+++ b/packages/starship/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/starship/scripts/install.sh b/packages/starship/scripts/install.sh
index 101a14dc78..42d3722a79 100644
--- a/packages/starship/scripts/install.sh
+++ b/packages/starship/scripts/install.sh
@@ -21,7 +21,7 @@ TIMEOUT=""
NAMESPACE=""
HELM_REPO="starship"
HELM_CHART="starship/devnet"
-HELM_REPO_URL="https://cosmology-tech.github.io/starship/"
+HELM_REPO_URL="https://hyperweb-io.github.io/starship/"
HELM_CHART_VERSION="0.1.43"
# check_helm function verifies the helm binary is installed
diff --git a/packages/starship/scripts/port-forward.sh b/packages/starship/scripts/port-forward.sh
index 96db67a1a4..dc3df57124 100644
--- a/packages/starship/scripts/port-forward.sh
+++ b/packages/starship/scripts/port-forward.sh
@@ -57,7 +57,7 @@ num_chains=$(yq -r ".chains | length - 1" ${CONFIGFILE})
if [[ $num_chains -gt -1 ]]; then
for i in $(seq 0 $num_chains); do
# derive chain pod name from chain id
- # https://github.com/cosmology-tech/starship/blob/main/charts/devnet/templates/_helpers.tpl#L56
+ # https://github.com/hyperweb-io/starship/blob/main/charts/devnet/templates/_helpers.tpl#L56
chain=$(yq -r ".chains[$i].name" ${CONFIGFILE} )
chain=${chain/_/"-"}
localrpc=$(yq -r ".chains[$i].ports.rpc" ${CONFIGFILE} )
@@ -88,7 +88,7 @@ num_relayers=$(yq -r ".relayers | length - 1" ${CONFIGFILE})
if [[ $num_relayers -gt -1 ]]; then
for i in $(seq 0 $num_relayers); do
# derive chain pod name from chain id
- # https://github.com/cosmology-tech/starship/blob/main/charts/devnet/templates/_helpers.tpl#L56
+ # https://github.com/hyperweb-io/starship/blob/main/charts/devnet/templates/_helpers.tpl#L56
relayer=$(yq -r ".relayers[$i].name" ${CONFIGFILE} )
relayer=$(yq -r ".relayers[$i].type" ${CONFIGFILE} )-${relayer/_/"-"}
localrest=$(yq -r ".relayers[$i].ports.rest" ${CONFIGFILE} )
diff --git a/packages/telescope/CHANGELOG.md b/packages/telescope/CHANGELOG.md
index ee7fa740c3..44aac7bc3e 100644
--- a/packages/telescope/CHANGELOG.md
+++ b/packages/telescope/CHANGELOG.md
@@ -3,446 +3,446 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.11.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.7...@cosmology/telescope@1.11.8) (2025-01-15)
+## [1.11.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.7...@cosmology/telescope@1.11.8) (2025-01-15)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.6...@cosmology/telescope@1.11.7) (2025-01-02)
+## [1.11.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.6...@cosmology/telescope@1.11.7) (2025-01-02)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.5...@cosmology/telescope@1.11.6) (2025-01-02)
+## [1.11.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.5...@cosmology/telescope@1.11.6) (2025-01-02)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.4...@cosmology/telescope@1.11.5) (2025-01-02)
+## [1.11.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.4...@cosmology/telescope@1.11.5) (2025-01-02)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.3...@cosmology/telescope@1.11.4) (2024-12-31)
+## [1.11.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.3...@cosmology/telescope@1.11.4) (2024-12-31)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.2...@cosmology/telescope@1.11.3) (2024-12-25)
+## [1.11.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.2...@cosmology/telescope@1.11.3) (2024-12-25)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.1...@cosmology/telescope@1.11.2) (2024-12-25)
+## [1.11.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.1...@cosmology/telescope@1.11.2) (2024-12-25)
**Note:** Version bump only for package @cosmology/telescope
-## [1.11.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.11.0...@cosmology/telescope@1.11.1) (2024-12-25)
+## [1.11.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.0...@cosmology/telescope@1.11.1) (2024-12-25)
**Note:** Version bump only for package @cosmology/telescope
-# [1.11.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.11...@cosmology/telescope@1.11.0) (2024-12-17)
+# [1.11.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.11...@cosmology/telescope@1.11.0) (2024-12-17)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.10...@cosmology/telescope@1.10.11) (2024-12-09)
+## [1.10.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.10...@cosmology/telescope@1.10.11) (2024-12-09)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.9...@cosmology/telescope@1.10.10) (2024-12-09)
+## [1.10.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.9...@cosmology/telescope@1.10.10) (2024-12-09)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.8...@cosmology/telescope@1.10.9) (2024-11-14)
+## [1.10.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.8...@cosmology/telescope@1.10.9) (2024-11-14)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.7...@cosmology/telescope@1.10.8) (2024-11-05)
+## [1.10.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.7...@cosmology/telescope@1.10.8) (2024-11-05)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.6...@cosmology/telescope@1.10.7) (2024-11-04)
+## [1.10.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.6...@cosmology/telescope@1.10.7) (2024-11-04)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.5...@cosmology/telescope@1.10.6) (2024-10-25)
+## [1.10.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.5...@cosmology/telescope@1.10.6) (2024-10-25)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.4...@cosmology/telescope@1.10.5) (2024-10-23)
+## [1.10.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.4...@cosmology/telescope@1.10.5) (2024-10-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.3...@cosmology/telescope@1.10.4) (2024-10-22)
+## [1.10.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.3...@cosmology/telescope@1.10.4) (2024-10-22)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.2...@cosmology/telescope@1.10.3) (2024-10-21)
+## [1.10.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.2...@cosmology/telescope@1.10.3) (2024-10-21)
**Note:** Version bump only for package @cosmology/telescope
-## [1.10.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.1...@cosmology/telescope@1.10.2) (2024-10-21)
+## [1.10.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.1...@cosmology/telescope@1.10.2) (2024-10-21)
### Bug Fixes
-- fix ast export issue, add imports utils. ([a224606](https://github.com/cosmology-tech/telescope/commit/a2246062dda6a5f1ec3c2953263a5c7aff2bb71d))
-- flag names ([eed7fb3](https://github.com/cosmology-tech/telescope/commit/eed7fb3b6f726ff3590b7919f6445298f98f07da))
-- minor ast adjustments ([e38bbb6](https://github.com/cosmology-tech/telescope/commit/e38bbb610aeaf234602838d0f83368e6735a3eb2))
-- pass in ProtoServiceMethod type, use SigningClientResolver type, remove type aliases. ([620568c](https://github.com/cosmology-tech/telescope/commit/620568c0e5d44b96d39c88a6293b16507a42ab9f))
+- fix ast export issue, add imports utils. ([a224606](https://github.com/hyperweb-io/telescope/commit/a2246062dda6a5f1ec3c2953263a5c7aff2bb71d))
+- flag names ([eed7fb3](https://github.com/hyperweb-io/telescope/commit/eed7fb3b6f726ff3590b7919f6445298f98f07da))
+- minor ast adjustments ([e38bbb6](https://github.com/hyperweb-io/telescope/commit/e38bbb610aeaf234602838d0f83368e6735a3eb2))
+- pass in ProtoServiceMethod type, use SigningClientResolver type, remove type aliases. ([620568c](https://github.com/hyperweb-io/telescope/commit/620568c0e5d44b96d39c88a6293b16507a42ab9f))
### Features
-- use ast call expression for toEncoders&toConverters. ([471d866](https://github.com/cosmology-tech/telescope/commit/471d86645cde92a3dcb71ee00c1c8f529926c72a))
+- use ast call expression for toEncoders&toConverters. ([471d866](https://github.com/hyperweb-io/telescope/commit/471d86645cde92a3dcb71ee00c1c8f529926c72a))
-## [1.10.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.10.0...@cosmology/telescope@1.10.1) (2024-10-05)
+## [1.10.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.10.0...@cosmology/telescope@1.10.1) (2024-10-05)
**Note:** Version bump only for package @cosmology/telescope
-# [1.10.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.9.0...@cosmology/telescope@1.10.0) (2024-09-18)
+# [1.10.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.9.0...@cosmology/telescope@1.10.0) (2024-09-18)
### Features
-- add endo base64 lib support ([197da9e](https://github.com/cosmology-tech/telescope/commit/197da9e3ea10c7dde76dcf31da4484be70498c6e))
-- add endo/base64 support ([a920d39](https://github.com/cosmology-tech/telescope/commit/a920d39802b3c9fc45c12710c719f82adbdee04e))
+- add endo base64 lib support ([197da9e](https://github.com/hyperweb-io/telescope/commit/197da9e3ea10c7dde76dcf31da4484be70498c6e))
+- add endo/base64 support ([a920d39](https://github.com/hyperweb-io/telescope/commit/a920d39802b3c9fc45c12710c719f82adbdee04e))
-# [1.9.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.8.4...@cosmology/telescope@1.9.0) (2024-09-16)
+# [1.9.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.8.4...@cosmology/telescope@1.9.0) (2024-09-16)
### Bug Fixes
-- remove unused code. ([40b4130](https://github.com/cosmology-tech/telescope/commit/40b4130db43f14c8ea938171de0be53b9a19fe3f))
-- use correct var name for options ([f294fb9](https://github.com/cosmology-tech/telescope/commit/f294fb936e1688e30a8b884db756693a80f52407))
+- remove unused code. ([40b4130](https://github.com/hyperweb-io/telescope/commit/40b4130db43f14c8ea938171de0be53b9a19fe3f))
+- use correct var name for options ([f294fb9](https://github.com/hyperweb-io/telescope/commit/f294fb936e1688e30a8b884db756693a80f52407))
### Features
-- add conditional logic to change UTILS.decimals value ([cf5279b](https://github.com/cosmology-tech/telescope/commit/cf5279bbc9afa52bae57cccb2961c945d64c9ad4))
-- decimal supporting bigInt and options to use from cosmjs or agoric-sdk ([cc8dbb7](https://github.com/cosmology-tech/telescope/commit/cc8dbb7e7d96c1b53cd630fe9e987981389cf585))
+- add conditional logic to change UTILS.decimals value ([cf5279b](https://github.com/hyperweb-io/telescope/commit/cf5279bbc9afa52bae57cccb2961c945d64c9ad4))
+- decimal supporting bigInt and options to use from cosmjs or agoric-sdk ([cc8dbb7](https://github.com/hyperweb-io/telescope/commit/cc8dbb7e7d96c1b53cd630fe9e987981389cf585))
-## [1.8.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.8.3...@cosmology/telescope@1.8.4) (2024-09-12)
+## [1.8.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.8.3...@cosmology/telescope@1.8.4) (2024-09-12)
### Bug Fixes
-- **JsonSafe:** handle nested structures and arrays ([5812e73](https://github.com/cosmology-tech/telescope/commit/5812e734a15bdc6e9659930069e945586218a1e0))
+- **JsonSafe:** handle nested structures and arrays ([5812e73](https://github.com/hyperweb-io/telescope/commit/5812e734a15bdc6e9659930069e945586218a1e0))
-## [1.8.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.8.2...@cosmology/telescope@1.8.3) (2024-06-28)
+## [1.8.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.8.2...@cosmology/telescope@1.8.3) (2024-06-28)
**Note:** Version bump only for package @cosmology/telescope
-## [1.8.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.8.1...@cosmology/telescope@1.8.2) (2024-06-28)
+## [1.8.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.8.1...@cosmology/telescope@1.8.2) (2024-06-28)
**Note:** Version bump only for package @cosmology/telescope
-## [1.8.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.8.0...@cosmology/telescope@1.8.1) (2024-06-26)
+## [1.8.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.8.0...@cosmology/telescope@1.8.1) (2024-06-26)
**Note:** Version bump only for package @cosmology/telescope
-# [1.8.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.7.1...@cosmology/telescope@1.8.0) (2024-06-25)
+# [1.8.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.7.1...@cosmology/telescope@1.8.0) (2024-06-25)
**Note:** Version bump only for package @cosmology/telescope
-## [1.7.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.7.0...@cosmology/telescope@1.7.1) (2024-06-03)
+## [1.7.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.7.0...@cosmology/telescope@1.7.1) (2024-06-03)
### Bug Fixes
-- **types:** handle Date in JsonSafe ([ae60a32](https://github.com/cosmology-tech/telescope/commit/ae60a32cc3dcd46bf84c3acfe49ba89ff328539c))
+- **types:** handle Date in JsonSafe ([ae60a32](https://github.com/hyperweb-io/telescope/commit/ae60a32cc3dcd46bf84c3acfe49ba89ff328539c))
-# [1.7.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.6.0...@cosmology/telescope@1.7.0) (2024-05-25)
+# [1.7.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.6.0...@cosmology/telescope@1.7.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/telescope
-# [1.6.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.10...@cosmology/telescope@1.6.0) (2024-05-25)
+# [1.6.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.10...@cosmology/telescope@1.6.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.9...@cosmology/telescope@1.5.10) (2024-05-13)
+## [1.5.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.9...@cosmology/telescope@1.5.10) (2024-05-13)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.8...@cosmology/telescope@1.5.9) (2024-05-09)
+## [1.5.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.8...@cosmology/telescope@1.5.9) (2024-05-09)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.7...@cosmology/telescope@1.5.8) (2024-05-08)
+## [1.5.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.7...@cosmology/telescope@1.5.8) (2024-05-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.6...@cosmology/telescope@1.5.7) (2024-05-08)
+## [1.5.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.6...@cosmology/telescope@1.5.7) (2024-05-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.5...@cosmology/telescope@1.5.6) (2024-05-08)
+## [1.5.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.5...@cosmology/telescope@1.5.6) (2024-05-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.4...@cosmology/telescope@1.5.5) (2024-05-08)
+## [1.5.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.4...@cosmology/telescope@1.5.5) (2024-05-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.3...@cosmology/telescope@1.5.4) (2024-04-07)
+## [1.5.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.3...@cosmology/telescope@1.5.4) (2024-04-07)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.2...@cosmology/telescope@1.5.3) (2024-04-03)
+## [1.5.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.2...@cosmology/telescope@1.5.3) (2024-04-03)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.1...@cosmology/telescope@1.5.2) (2024-04-02)
+## [1.5.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.1...@cosmology/telescope@1.5.2) (2024-04-02)
**Note:** Version bump only for package @cosmology/telescope
-## [1.5.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.5.0...@cosmology/telescope@1.5.1) (2024-03-21)
+## [1.5.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.5.0...@cosmology/telescope@1.5.1) (2024-03-21)
**Note:** Version bump only for package @cosmology/telescope
-# [1.5.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.13...@cosmology/telescope@1.5.0) (2024-03-20)
+# [1.5.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.13...@cosmology/telescope@1.5.0) (2024-03-20)
### Features
-- ESM compatibility ([7901482](https://github.com/cosmology-tech/telescope/commit/79014823e2424594d4d4544b27000905e696a3f0))
+- ESM compatibility ([7901482](https://github.com/hyperweb-io/telescope/commit/79014823e2424594d4d4544b27000905e696a3f0))
-## [1.4.13](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.12...@cosmology/telescope@1.4.13) (2024-03-18)
+## [1.4.13](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.12...@cosmology/telescope@1.4.13) (2024-03-18)
### Bug Fixes
-- optional field default value ([1590b18](https://github.com/cosmology-tech/telescope/commit/1590b18a6d81fc2e767869ed366f6d0deaabad02))
+- optional field default value ([1590b18](https://github.com/hyperweb-io/telescope/commit/1590b18a6d81fc2e767869ed366f6d0deaabad02))
### Features
-- add emit default and fix timestamp ([1c4296c](https://github.com/cosmology-tech/telescope/commit/1c4296c5eb5cb48b42b6c9ba7523f8faa8a8bcbe))
-- fix omit empty handling ([3a8e76b](https://github.com/cosmology-tech/telescope/commit/3a8e76ba6a402cec7a64e4ec98e58133acf19f09))
-- partially add support for amino ([f9ae22c](https://github.com/cosmology-tech/telescope/commit/f9ae22c86665590b8caa6b3918738a903592c29b))
-- re-run tests and update snapshots ([ced5e43](https://github.com/cosmology-tech/telescope/commit/ced5e4313ff29a7e268dd0aee7aa2f492ac176a3))
+- add emit default and fix timestamp ([1c4296c](https://github.com/hyperweb-io/telescope/commit/1c4296c5eb5cb48b42b6c9ba7523f8faa8a8bcbe))
+- fix omit empty handling ([3a8e76b](https://github.com/hyperweb-io/telescope/commit/3a8e76ba6a402cec7a64e4ec98e58133acf19f09))
+- partially add support for amino ([f9ae22c](https://github.com/hyperweb-io/telescope/commit/f9ae22c86665590b8caa6b3918738a903592c29b))
+- re-run tests and update snapshots ([ced5e43](https://github.com/hyperweb-io/telescope/commit/ced5e4313ff29a7e268dd0aee7aa2f492ac176a3))
-## [1.4.12](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.11...@cosmology/telescope@1.4.12) (2024-01-23)
+## [1.4.12](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.11...@cosmology/telescope@1.4.12) (2024-01-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.10...@cosmology/telescope@1.4.11) (2024-01-23)
+## [1.4.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.10...@cosmology/telescope@1.4.11) (2024-01-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.9...@cosmology/telescope@1.4.10) (2024-01-23)
+## [1.4.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.9...@cosmology/telescope@1.4.10) (2024-01-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.8...@cosmology/telescope@1.4.9) (2024-01-19)
+## [1.4.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.8...@cosmology/telescope@1.4.9) (2024-01-19)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.7...@cosmology/telescope@1.4.8) (2024-01-19)
+## [1.4.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.7...@cosmology/telescope@1.4.8) (2024-01-19)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.6...@cosmology/telescope@1.4.7) (2024-01-19)
+## [1.4.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.6...@cosmology/telescope@1.4.7) (2024-01-19)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.5...@cosmology/telescope@1.4.6) (2024-01-16)
+## [1.4.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.5...@cosmology/telescope@1.4.6) (2024-01-16)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.4...@cosmology/telescope@1.4.5) (2024-01-16)
+## [1.4.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.4...@cosmology/telescope@1.4.5) (2024-01-16)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.3...@cosmology/telescope@1.4.4) (2024-01-16)
+## [1.4.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.3...@cosmology/telescope@1.4.4) (2024-01-16)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.2...@cosmology/telescope@1.4.3) (2024-01-08)
+## [1.4.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.2...@cosmology/telescope@1.4.3) (2024-01-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.1...@cosmology/telescope@1.4.2) (2024-01-08)
+## [1.4.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.1...@cosmology/telescope@1.4.2) (2024-01-08)
**Note:** Version bump only for package @cosmology/telescope
-## [1.4.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.4.0...@cosmology/telescope@1.4.1) (2024-01-02)
+## [1.4.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.4.0...@cosmology/telescope@1.4.1) (2024-01-02)
**Note:** Version bump only for package @cosmology/telescope
-# [1.4.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.3.3...@cosmology/telescope@1.4.0) (2023-12-26)
+# [1.4.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.3.3...@cosmology/telescope@1.4.0) (2023-12-26)
**Note:** Version bump only for package @cosmology/telescope
-## [1.3.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.3.2...@cosmology/telescope@1.3.3) (2023-12-18)
+## [1.3.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.3.2...@cosmology/telescope@1.3.3) (2023-12-18)
**Note:** Version bump only for package @cosmology/telescope
-## [1.3.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.3.1...@cosmology/telescope@1.3.2) (2023-12-14)
+## [1.3.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.3.1...@cosmology/telescope@1.3.2) (2023-12-14)
**Note:** Version bump only for package @cosmology/telescope
-## [1.3.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.3.0...@cosmology/telescope@1.3.1) (2023-12-13)
+## [1.3.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.3.0...@cosmology/telescope@1.3.1) (2023-12-13)
**Note:** Version bump only for package @cosmology/telescope
-# [1.3.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.8...@cosmology/telescope@1.3.0) (2023-12-13)
+# [1.3.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.8...@cosmology/telescope@1.3.0) (2023-12-13)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.7...@cosmology/telescope@1.2.8) (2023-12-11)
+## [1.2.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.7...@cosmology/telescope@1.2.8) (2023-12-11)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.6...@cosmology/telescope@1.2.7) (2023-12-11)
+## [1.2.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.6...@cosmology/telescope@1.2.7) (2023-12-11)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.5...@cosmology/telescope@1.2.6) (2023-12-11)
+## [1.2.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.5...@cosmology/telescope@1.2.6) (2023-12-11)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.4...@cosmology/telescope@1.2.5) (2023-12-07)
+## [1.2.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.4...@cosmology/telescope@1.2.5) (2023-12-07)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.3...@cosmology/telescope@1.2.4) (2023-12-05)
+## [1.2.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.3...@cosmology/telescope@1.2.4) (2023-12-05)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.2...@cosmology/telescope@1.2.3) (2023-12-05)
+## [1.2.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.2...@cosmology/telescope@1.2.3) (2023-12-05)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.1...@cosmology/telescope@1.2.2) (2023-12-04)
+## [1.2.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.1...@cosmology/telescope@1.2.2) (2023-12-04)
**Note:** Version bump only for package @cosmology/telescope
-## [1.2.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.2.0...@cosmology/telescope@1.2.1) (2023-12-04)
+## [1.2.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.2.0...@cosmology/telescope@1.2.1) (2023-12-04)
**Note:** Version bump only for package @cosmology/telescope
-# [1.2.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.1.1...@cosmology/telescope@1.2.0) (2023-12-03)
+# [1.2.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.1.1...@cosmology/telescope@1.2.0) (2023-12-03)
**Note:** Version bump only for package @cosmology/telescope
-## [1.1.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.1.0...@cosmology/telescope@1.1.1) (2023-11-19)
+## [1.1.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.1.0...@cosmology/telescope@1.1.1) (2023-11-19)
**Note:** Version bump only for package @cosmology/telescope
-# [1.1.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.17...@cosmology/telescope@1.1.0) (2023-11-19)
+# [1.1.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.17...@cosmology/telescope@1.1.0) (2023-11-19)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.17](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.16...@cosmology/telescope@1.0.17) (2023-11-15)
+## [1.0.17](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.16...@cosmology/telescope@1.0.17) (2023-11-15)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.16](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.15...@cosmology/telescope@1.0.16) (2023-11-13)
+## [1.0.16](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.15...@cosmology/telescope@1.0.16) (2023-11-13)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.15](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.14...@cosmology/telescope@1.0.15) (2023-11-12)
+## [1.0.15](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.14...@cosmology/telescope@1.0.15) (2023-11-12)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.14](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.13...@cosmology/telescope@1.0.14) (2023-11-12)
+## [1.0.14](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.13...@cosmology/telescope@1.0.14) (2023-11-12)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.13](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.12...@cosmology/telescope@1.0.13) (2023-11-10)
+## [1.0.13](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.12...@cosmology/telescope@1.0.13) (2023-11-10)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.12](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.11...@cosmology/telescope@1.0.12) (2023-11-03)
+## [1.0.12](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.11...@cosmology/telescope@1.0.12) (2023-11-03)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.11](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.10...@cosmology/telescope@1.0.11) (2023-10-30)
+## [1.0.11](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.10...@cosmology/telescope@1.0.11) (2023-10-30)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.9...@cosmology/telescope@1.0.10) (2023-10-29)
+## [1.0.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.9...@cosmology/telescope@1.0.10) (2023-10-29)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.8...@cosmology/telescope@1.0.9) (2023-10-29)
+## [1.0.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.8...@cosmology/telescope@1.0.9) (2023-10-29)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.7...@cosmology/telescope@1.0.8) (2023-10-28)
+## [1.0.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.7...@cosmology/telescope@1.0.8) (2023-10-28)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.6...@cosmology/telescope@1.0.7) (2023-10-23)
+## [1.0.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.6...@cosmology/telescope@1.0.7) (2023-10-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.5...@cosmology/telescope@1.0.6) (2023-10-23)
+## [1.0.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.5...@cosmology/telescope@1.0.6) (2023-10-23)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.4...@cosmology/telescope@1.0.5) (2023-10-20)
+## [1.0.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.4...@cosmology/telescope@1.0.5) (2023-10-20)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.3...@cosmology/telescope@1.0.4) (2023-10-17)
+## [1.0.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.3...@cosmology/telescope@1.0.4) (2023-10-17)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.2...@cosmology/telescope@1.0.3) (2023-10-02)
+## [1.0.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.2...@cosmology/telescope@1.0.3) (2023-10-02)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.1...@cosmology/telescope@1.0.2) (2023-09-20)
+## [1.0.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.1...@cosmology/telescope@1.0.2) (2023-09-20)
**Note:** Version bump only for package @cosmology/telescope
-## [1.0.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@1.0.0...@cosmology/telescope@1.0.1) (2023-09-13)
+## [1.0.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.0.0...@cosmology/telescope@1.0.1) (2023-09-13)
**Note:** Version bump only for package @cosmology/telescope
-# [1.0.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.109.4...@cosmology/telescope@1.0.0) (2023-09-13)
+# [1.0.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.109.4...@cosmology/telescope@1.0.0) (2023-09-13)
**Note:** Version bump only for package @cosmology/telescope
-## [0.109.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.109.3...@cosmology/telescope@0.109.4) (2023-09-07)
+## [0.109.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.109.3...@cosmology/telescope@0.109.4) (2023-09-07)
**Note:** Version bump only for package @cosmology/telescope
-## [0.109.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.109.2...@cosmology/telescope@0.109.3) (2023-09-07)
+## [0.109.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.109.2...@cosmology/telescope@0.109.3) (2023-09-07)
**Note:** Version bump only for package @cosmology/telescope
-## [0.109.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.109.1...@cosmology/telescope@0.109.2) (2023-09-07)
+## [0.109.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.109.1...@cosmology/telescope@0.109.2) (2023-09-07)
**Note:** Version bump only for package @cosmology/telescope
-## [0.109.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.109.0...@cosmology/telescope@0.109.1) (2023-09-06)
+## [0.109.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.109.0...@cosmology/telescope@0.109.1) (2023-09-06)
**Note:** Version bump only for package @cosmology/telescope
-# [0.109.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.108.0...@cosmology/telescope@0.109.0) (2023-09-06)
+# [0.109.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.108.0...@cosmology/telescope@0.109.0) (2023-09-06)
**Note:** Version bump only for package @cosmology/telescope
-# [0.108.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.107.0...@cosmology/telescope@0.108.0) (2023-09-05)
+# [0.108.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.107.0...@cosmology/telescope@0.108.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/telescope
-# [0.107.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.106.0...@cosmology/telescope@0.107.0) (2023-09-05)
+# [0.107.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.106.0...@cosmology/telescope@0.107.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/telescope
-# [0.106.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.105.0...@cosmology/telescope@0.106.0) (2023-08-24)
+# [0.106.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.105.0...@cosmology/telescope@0.106.0) (2023-08-24)
**Note:** Version bump only for package @cosmology/telescope
-# [0.105.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.104.0...@cosmology/telescope@0.105.0) (2023-08-21)
+# [0.105.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.104.0...@cosmology/telescope@0.105.0) (2023-08-21)
**Note:** Version bump only for package @cosmology/telescope
-# [0.104.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.103.2...@cosmology/telescope@0.104.0) (2023-08-16)
+# [0.104.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.103.2...@cosmology/telescope@0.104.0) (2023-08-16)
**Note:** Version bump only for package @cosmology/telescope
-## [0.103.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.103.0...@cosmology/telescope@0.103.2) (2023-08-11)
+## [0.103.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.103.0...@cosmology/telescope@0.103.2) (2023-08-11)
**Note:** Version bump only for package @cosmology/telescope
-## [0.103.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.103.0...@cosmology/telescope@0.103.1) (2023-08-11)
+## [0.103.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.103.0...@cosmology/telescope@0.103.1) (2023-08-11)
**Note:** Version bump only for package @cosmology/telescope
-# [0.103.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.102.1...@cosmology/telescope@0.103.0) (2023-08-11)
+# [0.103.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.102.1...@cosmology/telescope@0.103.0) (2023-08-11)
**Note:** Version bump only for package @cosmology/telescope
-## [0.102.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/telescope@0.102.0...@cosmology/telescope@0.102.1) (2023-07-30)
+## [0.102.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@0.102.0...@cosmology/telescope@0.102.1) (2023-07-30)
**Note:** Version bump only for package @cosmology/telescope
@@ -450,8 +450,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.101.3](https://github.com/osmosis-labs/telescope/compare/@cosmology/telescope@0.101.2...@cosmology/telescope@0.101.3) (2023-07-29)
diff --git a/packages/telescope/LICENSE-Apache b/packages/telescope/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/telescope/LICENSE-Apache
+++ b/packages/telescope/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/telescope/LICENSE-MIT b/packages/telescope/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/telescope/LICENSE-MIT
+++ b/packages/telescope/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/telescope/README.md b/packages/telescope/README.md
index e863fbaeb5..e7e9eaa248 100644
--- a/packages/telescope/README.md
+++ b/packages/telescope/README.md
@@ -5,19 +5,19 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
@@ -119,7 +119,7 @@ npm install -g @cosmology/telescope create-cosmos-app
### Generate
-Use the [`create-cosmos-app`](https://github.com/cosmology-tech/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
+Use the [`create-cosmos-app`](https://github.com/hyperweb-io/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
```sh
cca --boilerplate telescope
@@ -1347,7 +1347,7 @@ This should not be an issue, but if you experience problems with syntax or are n
## Developing
-See our [documentation](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
+See our [documentation](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
## Sponsors
@@ -1359,17 +1359,17 @@ Kudos to our sponsors:
Checkout these related projects:
-* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
+* [telescope](https://github.com/hyperweb-io/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
-* [chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
-* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
-* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
-* [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
-* [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
+* [chain-registry](https://github.com/hyperweb-io/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
+* [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.
+* [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app) Set up a modern Cosmos app by running one command.
+* [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
+* [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
## Credits
-🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.zone/validator)
+🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
Thanks to these engineers, teams and projects for inspiring Telescope:
diff --git a/packages/telescope/package.json b/packages/telescope/package.json
index c5e5463be6..c863ebe727 100644
--- a/packages/telescope/package.json
+++ b/packages/telescope/package.json
@@ -3,7 +3,7 @@
"version": "1.11.8",
"description": "A TypeScript Transpiler for Cosmos Protobufs",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/telescope#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/telescope#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
@@ -62,11 +62,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope"
+ "url": "https://github.com/hyperweb-io/telescope"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/issues"
+ "url": "https://github.com/hyperweb-io/telescope/issues"
},
"devDependencies": {
"@keplr-wallet/unit": "^0.12.53",
@@ -111,4 +111,4 @@
"rimraf": "5.0.0",
"yaml": "^2.3.4"
}
-}
+}
\ No newline at end of file
diff --git a/packages/telescope/src/commands/generate.ts b/packages/telescope/src/commands/generate.ts
index 33985bf85a..6403a5d075 100644
--- a/packages/telescope/src/commands/generate.ts
+++ b/packages/telescope/src/commands/generate.ts
@@ -5,7 +5,7 @@ import { crossGlob as glob } from '@cosmology/utils';
const fs = require('fs');
const path = require('path');
-const repo = 'https://github.com/cosmology-tech/telescope-module-boilerplate.git';
+const repo = 'https://github.com/hyperweb-io/telescope-module-boilerplate.git';
export default async argv => {
if (!shell.which('git')) {
diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md
index 4770e380c0..73b0733f78 100644
--- a/packages/types/CHANGELOG.md
+++ b/packages/types/CHANGELOG.md
@@ -3,199 +3,199 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.11.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.11.1...@cosmology/types@1.11.2) (2024-12-31)
+## [1.11.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.1...@cosmology/types@1.11.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/types
-## [1.11.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.11.0...@cosmology/types@1.11.1) (2024-12-25)
+## [1.11.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.0...@cosmology/types@1.11.1) (2024-12-25)
**Note:** Version bump only for package @cosmology/types
-# [1.11.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.10.4...@cosmology/types@1.11.0) (2024-12-17)
+# [1.11.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.10.4...@cosmology/types@1.11.0) (2024-12-17)
**Note:** Version bump only for package @cosmology/types
-## [1.10.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.10.3...@cosmology/types@1.10.4) (2024-12-09)
+## [1.10.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.10.3...@cosmology/types@1.10.4) (2024-12-09)
**Note:** Version bump only for package @cosmology/types
-## [1.10.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.10.2...@cosmology/types@1.10.3) (2024-11-04)
+## [1.10.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.10.2...@cosmology/types@1.10.3) (2024-11-04)
**Note:** Version bump only for package @cosmology/types
-## [1.10.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.10.1...@cosmology/types@1.10.2) (2024-10-21)
+## [1.10.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.10.1...@cosmology/types@1.10.2) (2024-10-21)
### Bug Fixes
-- flag names ([eed7fb3](https://github.com/cosmology-tech/telescope/commit/eed7fb3b6f726ff3590b7919f6445298f98f07da))
+- flag names ([eed7fb3](https://github.com/hyperweb-io/telescope/commit/eed7fb3b6f726ff3590b7919f6445298f98f07da))
-## [1.10.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.10.0...@cosmology/types@1.10.1) (2024-10-05)
+## [1.10.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.10.0...@cosmology/types@1.10.1) (2024-10-05)
**Note:** Version bump only for package @cosmology/types
-# [1.10.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.9.0...@cosmology/types@1.10.0) (2024-09-18)
+# [1.10.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.9.0...@cosmology/types@1.10.0) (2024-09-18)
### Features
-- add endo base64 lib support ([197da9e](https://github.com/cosmology-tech/telescope/commit/197da9e3ea10c7dde76dcf31da4484be70498c6e))
-- add endo/base64 support ([a920d39](https://github.com/cosmology-tech/telescope/commit/a920d39802b3c9fc45c12710c719f82adbdee04e))
+- add endo base64 lib support ([197da9e](https://github.com/hyperweb-io/telescope/commit/197da9e3ea10c7dde76dcf31da4484be70498c6e))
+- add endo/base64 support ([a920d39](https://github.com/hyperweb-io/telescope/commit/a920d39802b3c9fc45c12710c719f82adbdee04e))
-# [1.9.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.8.2...@cosmology/types@1.9.0) (2024-09-16)
+# [1.9.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.8.2...@cosmology/types@1.9.0) (2024-09-16)
### Bug Fixes
-- use correct var name for options ([f294fb9](https://github.com/cosmology-tech/telescope/commit/f294fb936e1688e30a8b884db756693a80f52407))
+- use correct var name for options ([f294fb9](https://github.com/hyperweb-io/telescope/commit/f294fb936e1688e30a8b884db756693a80f52407))
### Features
-- add conditional logic to change UTILS.decimals value ([cf5279b](https://github.com/cosmology-tech/telescope/commit/cf5279bbc9afa52bae57cccb2961c945d64c9ad4))
-- add options to choose beteen cosmjs or agoric-sdk ([f4a4a6b](https://github.com/cosmology-tech/telescope/commit/f4a4a6bc28ab413823dbf2c59caf5d8a28a14666))
+- add conditional logic to change UTILS.decimals value ([cf5279b](https://github.com/hyperweb-io/telescope/commit/cf5279bbc9afa52bae57cccb2961c945d64c9ad4))
+- add options to choose beteen cosmjs or agoric-sdk ([f4a4a6b](https://github.com/hyperweb-io/telescope/commit/f4a4a6bc28ab413823dbf2c59caf5d8a28a14666))
-## [1.8.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.8.1...@cosmology/types@1.8.2) (2024-09-12)
+## [1.8.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.8.1...@cosmology/types@1.8.2) (2024-09-12)
**Note:** Version bump only for package @cosmology/types
-## [1.8.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.8.0...@cosmology/types@1.8.1) (2024-06-28)
+## [1.8.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.8.0...@cosmology/types@1.8.1) (2024-06-28)
**Note:** Version bump only for package @cosmology/types
-# [1.8.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.7.0...@cosmology/types@1.8.0) (2024-06-25)
+# [1.8.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.7.0...@cosmology/types@1.8.0) (2024-06-25)
**Note:** Version bump only for package @cosmology/types
-# [1.7.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.6.0...@cosmology/types@1.7.0) (2024-05-25)
+# [1.7.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.6.0...@cosmology/types@1.7.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/types
-# [1.6.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.5.3...@cosmology/types@1.6.0) (2024-05-25)
+# [1.6.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.5.3...@cosmology/types@1.6.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/types
-## [1.5.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.5.2...@cosmology/types@1.5.3) (2024-05-13)
+## [1.5.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.5.2...@cosmology/types@1.5.3) (2024-05-13)
**Note:** Version bump only for package @cosmology/types
-## [1.5.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.5.1...@cosmology/types@1.5.2) (2024-04-03)
+## [1.5.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.5.1...@cosmology/types@1.5.2) (2024-04-03)
**Note:** Version bump only for package @cosmology/types
-## [1.5.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.5.0...@cosmology/types@1.5.1) (2024-04-02)
+## [1.5.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.5.0...@cosmology/types@1.5.1) (2024-04-02)
**Note:** Version bump only for package @cosmology/types
-# [1.5.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.4.3...@cosmology/types@1.5.0) (2024-03-20)
+# [1.5.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.4.3...@cosmology/types@1.5.0) (2024-03-20)
**Note:** Version bump only for package @cosmology/types
-## [1.4.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.4.2...@cosmology/types@1.4.3) (2024-03-18)
+## [1.4.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.4.2...@cosmology/types@1.4.3) (2024-03-18)
**Note:** Version bump only for package @cosmology/types
-## [1.4.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.4.1...@cosmology/types@1.4.2) (2024-01-16)
+## [1.4.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.4.1...@cosmology/types@1.4.2) (2024-01-16)
**Note:** Version bump only for package @cosmology/types
-## [1.4.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.4.0...@cosmology/types@1.4.1) (2024-01-16)
+## [1.4.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.4.0...@cosmology/types@1.4.1) (2024-01-16)
**Note:** Version bump only for package @cosmology/types
-# [1.4.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.3.2...@cosmology/types@1.4.0) (2023-12-26)
+# [1.4.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.3.2...@cosmology/types@1.4.0) (2023-12-26)
**Note:** Version bump only for package @cosmology/types
-## [1.3.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.3.1...@cosmology/types@1.3.2) (2023-12-14)
+## [1.3.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.3.1...@cosmology/types@1.3.2) (2023-12-14)
**Note:** Version bump only for package @cosmology/types
-## [1.3.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.3.0...@cosmology/types@1.3.1) (2023-12-13)
+## [1.3.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.3.0...@cosmology/types@1.3.1) (2023-12-13)
**Note:** Version bump only for package @cosmology/types
-# [1.3.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.2.1...@cosmology/types@1.3.0) (2023-12-13)
+# [1.3.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.2.1...@cosmology/types@1.3.0) (2023-12-13)
**Note:** Version bump only for package @cosmology/types
-## [1.2.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.2.0...@cosmology/types@1.2.1) (2023-12-05)
+## [1.2.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.2.0...@cosmology/types@1.2.1) (2023-12-05)
**Note:** Version bump only for package @cosmology/types
-# [1.2.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.1.0...@cosmology/types@1.2.0) (2023-12-03)
+# [1.2.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.1.0...@cosmology/types@1.2.0) (2023-12-03)
**Note:** Version bump only for package @cosmology/types
-# [1.1.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.10...@cosmology/types@1.1.0) (2023-11-19)
+# [1.1.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.10...@cosmology/types@1.1.0) (2023-11-19)
**Note:** Version bump only for package @cosmology/types
-## [1.0.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.9...@cosmology/types@1.0.10) (2023-11-13)
+## [1.0.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.9...@cosmology/types@1.0.10) (2023-11-13)
**Note:** Version bump only for package @cosmology/types
-## [1.0.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.8...@cosmology/types@1.0.9) (2023-11-12)
+## [1.0.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.8...@cosmology/types@1.0.9) (2023-11-12)
**Note:** Version bump only for package @cosmology/types
-## [1.0.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.7...@cosmology/types@1.0.8) (2023-11-12)
+## [1.0.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.7...@cosmology/types@1.0.8) (2023-11-12)
**Note:** Version bump only for package @cosmology/types
-## [1.0.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.6...@cosmology/types@1.0.7) (2023-11-10)
+## [1.0.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.6...@cosmology/types@1.0.7) (2023-11-10)
**Note:** Version bump only for package @cosmology/types
-## [1.0.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.5...@cosmology/types@1.0.6) (2023-10-29)
+## [1.0.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.5...@cosmology/types@1.0.6) (2023-10-29)
**Note:** Version bump only for package @cosmology/types
-## [1.0.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.4...@cosmology/types@1.0.5) (2023-10-29)
+## [1.0.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.4...@cosmology/types@1.0.5) (2023-10-29)
**Note:** Version bump only for package @cosmology/types
-## [1.0.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.3...@cosmology/types@1.0.4) (2023-10-28)
+## [1.0.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.3...@cosmology/types@1.0.4) (2023-10-28)
**Note:** Version bump only for package @cosmology/types
-## [1.0.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.2...@cosmology/types@1.0.3) (2023-10-23)
+## [1.0.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.2...@cosmology/types@1.0.3) (2023-10-23)
**Note:** Version bump only for package @cosmology/types
-## [1.0.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.1...@cosmology/types@1.0.2) (2023-10-17)
+## [1.0.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.1...@cosmology/types@1.0.2) (2023-10-17)
**Note:** Version bump only for package @cosmology/types
-## [1.0.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@1.0.0...@cosmology/types@1.0.1) (2023-09-20)
+## [1.0.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.0.0...@cosmology/types@1.0.1) (2023-09-20)
**Note:** Version bump only for package @cosmology/types
-# [1.0.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.42.2...@cosmology/types@1.0.0) (2023-09-13)
+# [1.0.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.42.2...@cosmology/types@1.0.0) (2023-09-13)
**Note:** Version bump only for package @cosmology/types
-## [0.42.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.42.1...@cosmology/types@0.42.2) (2023-09-07)
+## [0.42.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.42.1...@cosmology/types@0.42.2) (2023-09-07)
**Note:** Version bump only for package @cosmology/types
-## [0.42.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.42.0...@cosmology/types@0.42.1) (2023-09-07)
+## [0.42.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.42.0...@cosmology/types@0.42.1) (2023-09-07)
**Note:** Version bump only for package @cosmology/types
-# [0.42.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.41.0...@cosmology/types@0.42.0) (2023-09-06)
+# [0.42.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.41.0...@cosmology/types@0.42.0) (2023-09-06)
**Note:** Version bump only for package @cosmology/types
-# [0.41.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.40.0...@cosmology/types@0.41.0) (2023-09-05)
+# [0.41.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.40.0...@cosmology/types@0.41.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/types
-# [0.40.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.39.0...@cosmology/types@0.40.0) (2023-09-05)
+# [0.40.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.39.0...@cosmology/types@0.40.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/types
-# [0.39.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.38.0...@cosmology/types@0.39.0) (2023-08-16)
+# [0.39.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.38.0...@cosmology/types@0.39.0) (2023-08-16)
**Note:** Version bump only for package @cosmology/types
-# [0.38.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/types@0.37.0...@cosmology/types@0.38.0) (2023-08-11)
+# [0.38.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@0.37.0...@cosmology/types@0.38.0) (2023-08-11)
**Note:** Version bump only for package @cosmology/types
@@ -203,8 +203,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.36.1](https://github.com/osmosis-labs/telescope/compare/@cosmology/types@0.36.0...@cosmology/types@0.36.1) (2023-07-06)
diff --git a/packages/types/LICENSE-Apache b/packages/types/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/types/LICENSE-Apache
+++ b/packages/types/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/types/LICENSE-MIT b/packages/types/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/types/LICENSE-MIT
+++ b/packages/types/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/types/package.json b/packages/types/package.json
index 70482eddae..4b1c5115b3 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -3,7 +3,7 @@
"version": "1.11.2",
"description": "Telescope types",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/types#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/types#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"typings": "types/index.d.ts",
@@ -36,11 +36,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope"
+ "url": "https://github.com/hyperweb-io/telescope"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/issues"
+ "url": "https://github.com/hyperweb-io/telescope/issues"
},
"devDependencies": {
"cross-env": "^7.0.2",
@@ -60,4 +60,4 @@
"case": "1.6.3",
"fast-json-patch": "3.1.1"
}
-}
+}
\ No newline at end of file
diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md
index 3647b33f17..1a6dbe821c 100644
--- a/packages/utils/CHANGELOG.md
+++ b/packages/utils/CHANGELOG.md
@@ -3,187 +3,187 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.9.1...@cosmology/utils@1.9.2) (2024-12-31)
+## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.1...@cosmology/utils@1.9.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/utils
-## [1.9.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.9.0...@cosmology/utils@1.9.1) (2024-12-25)
+## [1.9.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.0...@cosmology/utils@1.9.1) (2024-12-25)
**Note:** Version bump only for package @cosmology/utils
-# [1.9.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.8...@cosmology/utils@1.9.0) (2024-12-17)
+# [1.9.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.8...@cosmology/utils@1.9.0) (2024-12-17)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.7...@cosmology/utils@1.8.8) (2024-12-09)
+## [1.8.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.7...@cosmology/utils@1.8.8) (2024-12-09)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.6...@cosmology/utils@1.8.7) (2024-11-04)
+## [1.8.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.6...@cosmology/utils@1.8.7) (2024-11-04)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.5...@cosmology/utils@1.8.6) (2024-10-21)
+## [1.8.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.5...@cosmology/utils@1.8.6) (2024-10-21)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.4...@cosmology/utils@1.8.5) (2024-10-05)
+## [1.8.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.4...@cosmology/utils@1.8.5) (2024-10-05)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.3...@cosmology/utils@1.8.4) (2024-09-18)
+## [1.8.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.3...@cosmology/utils@1.8.4) (2024-09-18)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.2...@cosmology/utils@1.8.3) (2024-09-16)
+## [1.8.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.2...@cosmology/utils@1.8.3) (2024-09-16)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.1...@cosmology/utils@1.8.2) (2024-09-12)
+## [1.8.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.1...@cosmology/utils@1.8.2) (2024-09-12)
**Note:** Version bump only for package @cosmology/utils
-## [1.8.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.8.0...@cosmology/utils@1.8.1) (2024-06-28)
+## [1.8.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.8.0...@cosmology/utils@1.8.1) (2024-06-28)
**Note:** Version bump only for package @cosmology/utils
-# [1.8.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.7.0...@cosmology/utils@1.8.0) (2024-06-25)
+# [1.8.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.7.0...@cosmology/utils@1.8.0) (2024-06-25)
**Note:** Version bump only for package @cosmology/utils
-# [1.7.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.6.0...@cosmology/utils@1.7.0) (2024-05-25)
+# [1.7.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.6.0...@cosmology/utils@1.7.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/utils
-# [1.6.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.5.3...@cosmology/utils@1.6.0) (2024-05-25)
+# [1.6.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.5.3...@cosmology/utils@1.6.0) (2024-05-25)
**Note:** Version bump only for package @cosmology/utils
-## [1.5.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.5.2...@cosmology/utils@1.5.3) (2024-05-13)
+## [1.5.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.5.2...@cosmology/utils@1.5.3) (2024-05-13)
**Note:** Version bump only for package @cosmology/utils
-## [1.5.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.5.1...@cosmology/utils@1.5.2) (2024-04-03)
+## [1.5.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.5.1...@cosmology/utils@1.5.2) (2024-04-03)
**Note:** Version bump only for package @cosmology/utils
-## [1.5.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.5.0...@cosmology/utils@1.5.1) (2024-04-02)
+## [1.5.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.5.0...@cosmology/utils@1.5.1) (2024-04-02)
**Note:** Version bump only for package @cosmology/utils
-# [1.5.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.4.3...@cosmology/utils@1.5.0) (2024-03-20)
+# [1.5.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.4.3...@cosmology/utils@1.5.0) (2024-03-20)
**Note:** Version bump only for package @cosmology/utils
-## [1.4.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.4.2...@cosmology/utils@1.4.3) (2024-03-18)
+## [1.4.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.4.2...@cosmology/utils@1.4.3) (2024-03-18)
**Note:** Version bump only for package @cosmology/utils
-## [1.4.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.4.1...@cosmology/utils@1.4.2) (2024-01-16)
+## [1.4.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.4.1...@cosmology/utils@1.4.2) (2024-01-16)
**Note:** Version bump only for package @cosmology/utils
-## [1.4.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.4.0...@cosmology/utils@1.4.1) (2024-01-16)
+## [1.4.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.4.0...@cosmology/utils@1.4.1) (2024-01-16)
**Note:** Version bump only for package @cosmology/utils
-# [1.4.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.3.2...@cosmology/utils@1.4.0) (2023-12-26)
+# [1.4.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.3.2...@cosmology/utils@1.4.0) (2023-12-26)
**Note:** Version bump only for package @cosmology/utils
-## [1.3.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.3.1...@cosmology/utils@1.3.2) (2023-12-14)
+## [1.3.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.3.1...@cosmology/utils@1.3.2) (2023-12-14)
**Note:** Version bump only for package @cosmology/utils
-## [1.3.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.3.0...@cosmology/utils@1.3.1) (2023-12-13)
+## [1.3.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.3.0...@cosmology/utils@1.3.1) (2023-12-13)
**Note:** Version bump only for package @cosmology/utils
-# [1.3.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.2.1...@cosmology/utils@1.3.0) (2023-12-13)
+# [1.3.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.2.1...@cosmology/utils@1.3.0) (2023-12-13)
**Note:** Version bump only for package @cosmology/utils
-## [1.2.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.2.0...@cosmology/utils@1.2.1) (2023-12-05)
+## [1.2.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.2.0...@cosmology/utils@1.2.1) (2023-12-05)
**Note:** Version bump only for package @cosmology/utils
-# [1.2.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.1.0...@cosmology/utils@1.2.0) (2023-12-03)
+# [1.2.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.1.0...@cosmology/utils@1.2.0) (2023-12-03)
**Note:** Version bump only for package @cosmology/utils
-# [1.1.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.10...@cosmology/utils@1.1.0) (2023-11-19)
+# [1.1.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.10...@cosmology/utils@1.1.0) (2023-11-19)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.10](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.9...@cosmology/utils@1.0.10) (2023-11-13)
+## [1.0.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.9...@cosmology/utils@1.0.10) (2023-11-13)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.9](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.8...@cosmology/utils@1.0.9) (2023-11-12)
+## [1.0.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.8...@cosmology/utils@1.0.9) (2023-11-12)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.8](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.7...@cosmology/utils@1.0.8) (2023-11-12)
+## [1.0.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.7...@cosmology/utils@1.0.8) (2023-11-12)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.7](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.6...@cosmology/utils@1.0.7) (2023-11-10)
+## [1.0.7](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.6...@cosmology/utils@1.0.7) (2023-11-10)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.6](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.5...@cosmology/utils@1.0.6) (2023-10-29)
+## [1.0.6](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.5...@cosmology/utils@1.0.6) (2023-10-29)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.5](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.4...@cosmology/utils@1.0.5) (2023-10-29)
+## [1.0.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.4...@cosmology/utils@1.0.5) (2023-10-29)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.4](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.3...@cosmology/utils@1.0.4) (2023-10-28)
+## [1.0.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.3...@cosmology/utils@1.0.4) (2023-10-28)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.3](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.2...@cosmology/utils@1.0.3) (2023-10-23)
+## [1.0.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.2...@cosmology/utils@1.0.3) (2023-10-23)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.1...@cosmology/utils@1.0.2) (2023-10-17)
+## [1.0.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.1...@cosmology/utils@1.0.2) (2023-10-17)
**Note:** Version bump only for package @cosmology/utils
-## [1.0.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@1.0.0...@cosmology/utils@1.0.1) (2023-09-20)
+## [1.0.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.0.0...@cosmology/utils@1.0.1) (2023-09-20)
**Note:** Version bump only for package @cosmology/utils
-# [1.0.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.17.2...@cosmology/utils@1.0.0) (2023-09-13)
+# [1.0.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.17.2...@cosmology/utils@1.0.0) (2023-09-13)
**Note:** Version bump only for package @cosmology/utils
-## [0.17.2](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.17.1...@cosmology/utils@0.17.2) (2023-09-07)
+## [0.17.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.17.1...@cosmology/utils@0.17.2) (2023-09-07)
**Note:** Version bump only for package @cosmology/utils
-## [0.17.1](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.17.0...@cosmology/utils@0.17.1) (2023-09-07)
+## [0.17.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.17.0...@cosmology/utils@0.17.1) (2023-09-07)
**Note:** Version bump only for package @cosmology/utils
-# [0.17.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.16.0...@cosmology/utils@0.17.0) (2023-09-06)
+# [0.17.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.16.0...@cosmology/utils@0.17.0) (2023-09-06)
**Note:** Version bump only for package @cosmology/utils
-# [0.16.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.15.0...@cosmology/utils@0.16.0) (2023-09-05)
+# [0.16.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.15.0...@cosmology/utils@0.16.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/utils
-# [0.15.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.14.0...@cosmology/utils@0.15.0) (2023-09-05)
+# [0.15.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.14.0...@cosmology/utils@0.15.0) (2023-09-05)
**Note:** Version bump only for package @cosmology/utils
-# [0.14.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.13.0...@cosmology/utils@0.14.0) (2023-08-16)
+# [0.14.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.13.0...@cosmology/utils@0.14.0) (2023-08-16)
**Note:** Version bump only for package @cosmology/utils
-# [0.13.0](https://github.com/cosmology-tech/telescope/compare/@cosmology/utils@0.12.0...@cosmology/utils@0.13.0) (2023-08-11)
+# [0.13.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@0.12.0...@cosmology/utils@0.13.0) (2023-08-11)
**Note:** Version bump only for package @cosmology/utils
@@ -191,8 +191,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Reverts
-- Revert "RC versions ready" ([04081a9](https://github.com/cosmology-tech/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
-- Revert "chore(release): publish" ([086a55f](https://github.com/cosmology-tech/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
+- Revert "RC versions ready" ([04081a9](https://github.com/hyperweb-io/telescope/commit/04081a9d1f80feb3ae664bce2d1364850b3daaca))
+- Revert "chore(release): publish" ([086a55f](https://github.com/hyperweb-io/telescope/commit/086a55f14c5ca33ee70a0e2121406dd37eb643f1))
## [0.11.1](https://github.com/osmosis-labs/telescope/compare/@cosmology/utils@0.11.0...@cosmology/utils@0.11.1) (2023-04-11)
diff --git a/packages/utils/LICENSE-Apache b/packages/utils/LICENSE-Apache
index 04ac99b589..bd1fd31256 100644
--- a/packages/utils/LICENSE-Apache
+++ b/packages/utils/LICENSE-Apache
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
identification within third-party archives.
Copyright 2024 The Telescope AUTHORS
-Copyright 2024 Interweb, Inc.
+Copyright 2024 Interweb, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/packages/utils/LICENSE-MIT b/packages/utils/LICENSE-MIT
index 2d71190b8e..95047ba770 100644
--- a/packages/utils/LICENSE-MIT
+++ b/packages/utils/LICENSE-MIT
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2024 The Telescope AUTHORS
-Copyright (c) 2024 Interweb, Inc.
+Copyright (c) 2024 Interweb, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 8cfdec1f4d..0c0949d736 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -3,7 +3,7 @@
"version": "1.9.2",
"description": "Telescope utils",
"author": "Dan Lynch ",
- "homepage": "https://github.com/cosmology-tech/telescope/tree/master/packages/utils#readme",
+ "homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/utils#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
@@ -52,11 +52,11 @@
},
"repository": {
"type": "git",
- "url": "https://github.com/cosmology-tech/telescope/tree/master/packages/utils"
+ "url": "https://github.com/hyperweb-io/telescope/tree/master/packages/utils"
},
"keywords": [],
"bugs": {
- "url": "https://github.com/cosmology-tech/telescope/tree/master/packages/utils/issues"
+ "url": "https://github.com/hyperweb-io/telescope/tree/master/packages/utils/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
@@ -77,4 +77,4 @@
"@cosmology/types": "^1.11.2",
"dotty": "0.1.2"
}
-}
+}
\ No newline at end of file
From f2746ee9a2fae655a7dfbb65cc6695067cb6db39 Mon Sep 17 00:00:00 2001
From: Dan Lynch
Date: Fri, 17 Jan 2025 19:11:20 -0800
Subject: [PATCH 6/8] chore(release): publish
- @cosmology/ast@1.9.4
- @cosmology/lcd@0.14.1
- @cosmology/proto-parser@1.9.3
- @cosmology/starship-test@1.9.9
- @cosmology/telescope@1.11.9
- @cosmology/types@1.11.3
- @cosmology/utils@1.9.3
---
packages/ast/CHANGELOG.md | 8 ++++++++
packages/ast/package.json | 10 +++++-----
packages/lcd/CHANGELOG.md | 8 ++++++++
packages/lcd/package.json | 4 ++--
packages/parser/CHANGELOG.md | 8 ++++++++
packages/parser/package.json | 8 ++++----
packages/starship/CHANGELOG.md | 8 ++++++++
packages/starship/package.json | 6 +++---
packages/telescope/CHANGELOG.md | 8 ++++++++
packages/telescope/package.json | 12 ++++++------
packages/types/CHANGELOG.md | 8 ++++++++
packages/types/package.json | 4 ++--
packages/utils/CHANGELOG.md | 8 ++++++++
packages/utils/package.json | 6 +++---
14 files changed, 81 insertions(+), 25 deletions(-)
diff --git a/packages/ast/CHANGELOG.md b/packages/ast/CHANGELOG.md
index ff05c2edb2..705ed6fead 100644
--- a/packages/ast/CHANGELOG.md
+++ b/packages/ast/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.9.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.3...@cosmology/ast@1.9.4) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/ast
+
+
+
+
+
## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.2...@cosmology/ast@1.9.3) (2025-01-02)
**Note:** Version bump only for package @cosmology/ast
diff --git a/packages/ast/package.json b/packages/ast/package.json
index 12de82dac9..b1a56cb274 100644
--- a/packages/ast/package.json
+++ b/packages/ast/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/ast",
- "version": "1.9.3",
+ "version": "1.9.4",
"description": "Cosmos TypeScript AST generation",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/ast#readme",
@@ -63,7 +63,7 @@
},
"devDependencies": {
"@babel/parser": "^7.23.6",
- "@cosmology/proto-parser": "^1.9.2",
+ "@cosmology/proto-parser": "^1.9.3",
"@types/jest": "^29.5.0",
"ast-stringify": "0.1.0",
"cross-env": "^7.0.2",
@@ -84,9 +84,9 @@
},
"dependencies": {
"@babel/types": "7.23.6",
- "@cosmology/types": "^1.11.2",
- "@cosmology/utils": "^1.9.2",
+ "@cosmology/types": "^1.11.3",
+ "@cosmology/utils": "^1.9.3",
"case": "1.6.3",
"dotty": "0.1.2"
}
-}
\ No newline at end of file
+}
diff --git a/packages/lcd/CHANGELOG.md b/packages/lcd/CHANGELOG.md
index 7f83f1af7f..573d394336 100644
--- a/packages/lcd/CHANGELOG.md
+++ b/packages/lcd/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.14.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.14.0...@cosmology/lcd@0.14.1) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/lcd
+
+
+
+
+
# [0.14.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.5...@cosmology/lcd@0.14.0) (2024-09-16)
diff --git a/packages/lcd/package.json b/packages/lcd/package.json
index 9da235fcb9..4df714d459 100644
--- a/packages/lcd/package.json
+++ b/packages/lcd/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/lcd",
- "version": "0.14.0",
+ "version": "0.14.1",
"description": "Telescope LCDClient helpers",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/helpers#readme",
@@ -73,4 +73,4 @@
"dependencies": {
"axios": "1.7.4"
}
-}
\ No newline at end of file
+}
diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md
index 30b390a0e0..19b8c08dea 100644
--- a/packages/parser/CHANGELOG.md
+++ b/packages/parser/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.2...@cosmology/proto-parser@1.9.3) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/proto-parser
+
+
+
+
+
## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.1...@cosmology/proto-parser@1.9.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/proto-parser
diff --git a/packages/parser/package.json b/packages/parser/package.json
index ddb0649130..f515bf60fb 100644
--- a/packages/parser/package.json
+++ b/packages/parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/proto-parser",
- "version": "1.9.2",
+ "version": "1.9.3",
"description": "A Parser for Cosmos Protobufs",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/parser#readme",
@@ -74,12 +74,12 @@
},
"dependencies": {
"@cosmology/protobufjs": "7.3.2",
- "@cosmology/types": "^1.11.2",
- "@cosmology/utils": "^1.9.2",
+ "@cosmology/types": "^1.11.3",
+ "@cosmology/utils": "^1.9.3",
"dotty": "0.1.2",
"fast-json-patch": "3.1.1",
"glob": "8.0.3",
"minimatch": "5.1.0",
"mkdirp": "3.0.0"
}
-}
\ No newline at end of file
+}
diff --git a/packages/starship/CHANGELOG.md b/packages/starship/CHANGELOG.md
index a88f21d2bc..77624eafcb 100644
--- a/packages/starship/CHANGELOG.md
+++ b/packages/starship/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.9.9](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.8...@cosmology/starship-test@1.9.9) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/starship-test
+
+
+
+
+
## [1.9.8](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.7...@cosmology/starship-test@1.9.8) (2025-01-15)
**Note:** Version bump only for package @cosmology/starship-test
diff --git a/packages/starship/package.json b/packages/starship/package.json
index cb041bb6ea..149c42d581 100644
--- a/packages/starship/package.json
+++ b/packages/starship/package.json
@@ -1,7 +1,7 @@
{
"name": "@cosmology/starship-test",
"private": true,
- "version": "1.9.8",
+ "version": "1.9.9",
"description": "E2E tests for telescope with Starship",
"author": "Anmol1696 ",
"homepage": "https://github.com/osmosis-labs/telescope#readme",
@@ -59,7 +59,7 @@
"@confio/relayer": "0.7.0",
"@cosmjs/cosmwasm-stargate": "0.29.4",
"@cosmjs/crypto": "0.29.4",
- "@cosmology/telescope": "^1.11.8",
+ "@cosmology/telescope": "^1.11.9",
"@protobufs/confio": "^0.0.6",
"@protobufs/cosmos": "^0.0.11",
"@protobufs/cosmos_proto": "^0.0.10",
@@ -102,7 +102,7 @@
"@cosmjs/stargate": "^0.32.0",
"@cosmjs/tendermint-rpc": "^0.32.0",
"@cosmology/core": "1.23.0",
- "@cosmology/lcd": "^0.14.0",
+ "@cosmology/lcd": "^0.14.1",
"@keplr-wallet/unit": "0.11.56",
"@tanstack/react-query": "4.29.1",
"cosmjs-utils": "0.1.0",
diff --git a/packages/telescope/CHANGELOG.md b/packages/telescope/CHANGELOG.md
index 44aac7bc3e..6fafec84f8 100644
--- a/packages/telescope/CHANGELOG.md
+++ b/packages/telescope/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.11.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.8...@cosmology/telescope@1.11.9) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/telescope
+
+
+
+
+
## [1.11.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.7...@cosmology/telescope@1.11.8) (2025-01-15)
**Note:** Version bump only for package @cosmology/telescope
diff --git a/packages/telescope/package.json b/packages/telescope/package.json
index c863ebe727..10f5d83503 100644
--- a/packages/telescope/package.json
+++ b/packages/telescope/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/telescope",
- "version": "1.11.8",
+ "version": "1.11.9",
"description": "A TypeScript Transpiler for Cosmos Protobufs",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/telescope#readme",
@@ -90,10 +90,10 @@
"@babel/parser": "^7.23.6",
"@babel/traverse": "7.23.6",
"@babel/types": "7.23.6",
- "@cosmology/ast": "^1.9.3",
- "@cosmology/proto-parser": "^1.9.2",
- "@cosmology/types": "^1.11.2",
- "@cosmology/utils": "^1.9.2",
+ "@cosmology/ast": "^1.9.4",
+ "@cosmology/proto-parser": "^1.9.3",
+ "@cosmology/types": "^1.11.3",
+ "@cosmology/utils": "^1.9.3",
"@cosmwasm/ts-codegen": "0.35.7",
"@types/parse-package-name": "0.1.0",
"case": "1.6.3",
@@ -111,4 +111,4 @@
"rimraf": "5.0.0",
"yaml": "^2.3.4"
}
-}
\ No newline at end of file
+}
diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md
index 73b0733f78..82660f71ba 100644
--- a/packages/types/CHANGELOG.md
+++ b/packages/types/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.11.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.2...@cosmology/types@1.11.3) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/types
+
+
+
+
+
## [1.11.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.1...@cosmology/types@1.11.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/types
diff --git a/packages/types/package.json b/packages/types/package.json
index 4b1c5115b3..b8e50ec18c 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/types",
- "version": "1.11.2",
+ "version": "1.11.3",
"description": "Telescope types",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/types#readme",
@@ -60,4 +60,4 @@
"case": "1.6.3",
"fast-json-patch": "3.1.1"
}
-}
\ No newline at end of file
+}
diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md
index 1a6dbe821c..bfe91ce31f 100644
--- a/packages/utils/CHANGELOG.md
+++ b/packages/utils/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.2...@cosmology/utils@1.9.3) (2025-01-18)
+
+**Note:** Version bump only for package @cosmology/utils
+
+
+
+
+
## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.1...@cosmology/utils@1.9.2) (2024-12-31)
**Note:** Version bump only for package @cosmology/utils
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 0c0949d736..e8be2d07be 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/utils",
- "version": "1.9.2",
+ "version": "1.9.3",
"description": "Telescope utils",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/utils#readme",
@@ -74,7 +74,7 @@
"typescript": "^5.0.4"
},
"dependencies": {
- "@cosmology/types": "^1.11.2",
+ "@cosmology/types": "^1.11.3",
"dotty": "0.1.2"
}
-}
\ No newline at end of file
+}
From 7cad806e96065225235f62d84283a72292c2f08e Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Sat, 25 Jan 2025 13:30:58 +0800
Subject: [PATCH 7/8] fix as review comments
---
README.md | 2 +-
.../v-next/outputv4/akash/rpc.query.ts | 7 ++-
.../cosmos/cosmos-rpc-client.query.ts | 7 ++-
.../v-next/outputv4/cosmos/rpc.query.ts | 7 ++-
.../v-next/outputv4/cosmwasm/rpc.query.ts | 7 ++-
.../outputv4/evmos/evmos-rpc-client.query.ts | 7 ++-
.../v-next/outputv4/evmos/rpc.query.ts | 7 ++-
__fixtures__/v-next/outputv4/ibc/rpc.query.ts | 7 ++-
.../v-next/outputv4/osmosis/rpc.query.ts | 7 ++-
.../v-next/outputv4/tendermint/rpc.query.ts | 7 ++-
packages/ast/src/clients/rpc/scoped/rpc.ts | 57 ++++++++++---------
packages/telescope/README.md | 2 +-
.../telescope/__tests__/telescope-v4.test.ts | 2 +-
.../src/generators/create-helpers.ts | 2 +-
packages/types/src/telescope.ts | 2 +-
packages/types/types/telescope.d.ts | 2 +-
16 files changed, 72 insertions(+), 60 deletions(-)
diff --git a/README.md b/README.md
index face8f69a7..6a91e235f3 100644
--- a/README.md
+++ b/README.md
@@ -444,7 +444,7 @@ See [LCD Clients](#lcd-clients) for more info.
| `rpcClients.enabledServices` | which services to enable | [`Msg`,`Query`,`Service`] |
| `rpcClients.instantOps` | will generate instant rpc operations in the file `service-ops.ts` under root folder, which contains customized classes having selected rpc methods | `undefined` |
| `rpcClients.useConnectComet` | will use connectComet function to get a tendermint client | `undefined` |
-| `rpcClients.useQueryClientResolver` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
+| `rpcClients.useMakeClient` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
| `rpcClients.serviceImplement` | assign implement type of rpc methods, `Query` or `Tx`, by setting patterns under service types. | `undefined` |
`rpcClients.clientStyle.useUpdatedClientStyle` | The default value is `false`, which sets the generated client to use the legacy style. Setting it to `true` applies the updated style and activates the remaining options in clientStyle. | `false`
| `rpcClients.clientStyle.type` | A string array containing possible values: `all-client`, `sdk-module-client`, and `custom-client`. The value `all-client` generates an all-module-client file. The value `sdk-module-client` generates a client for the module specified by the `sdkModuleClientOption`. The value `custom-client` generates a customized client as specified by `customClientOption` | `undefined`
diff --git a/__fixtures__/v-next/outputv4/akash/rpc.query.ts b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
index 7e90629101..d5c2031978 100644
--- a/__fixtures__/v-next/outputv4/akash/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/akash/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
akash: {
audit: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
index cabcb76ba9..09ce38a6b7 100644
--- a/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/cosmos-rpc-client.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createCosmicRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
index 71f3bbd4aa..807819bad4 100644
--- a/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmos/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
index 1396ba3385..ccca1c354d 100644
--- a/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/cosmwasm/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
index aad6b909b6..d8dda3506c 100644
--- a/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/evmos-rpc-client.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createEvmosRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
bank: {
diff --git a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
index 926159c775..64afe57b2e 100644
--- a/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/evmos/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
index 883d5f6beb..a16a48891e 100644
--- a/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/ibc/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
index edc8dafd5e..d90657d920 100644
--- a/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/osmosis/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
index aabde7ecfa..505685bacc 100644
--- a/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
+++ b/__fixtures__/v-next/outputv4/tendermint/rpc.query.ts
@@ -4,12 +4,13 @@ import { QueryClient } from "@cosmjs/stargate";
import { createConnectCometQueryClient } from "../extern.js";
export const createRPCQueryClient = async ({
rpcEndpoint,
- queryClientResolver
+ makeClient
}: {
rpcEndpoint: string | HttpEndpoint;
- queryClientResolver: (rpcEndpoint: string | HttpEndpoint) => Promise;
+ makeClient?: (rpcEndpoint: string | HttpEndpoint) => Promise;
}) => {
- let client = queryClientResolver ? await queryClientResolver(rpcEndpoint) : await createConnectCometQueryClient(rpcEndpoint);
+ const make = makeClient || createConnectCometQueryClient;
+ const client = await make(rpcEndpoint);
return {
cosmos: {
app: {
diff --git a/packages/ast/src/clients/rpc/scoped/rpc.ts b/packages/ast/src/clients/rpc/scoped/rpc.ts
index f0edefc5e8..2eb1bc83fb 100644
--- a/packages/ast/src/clients/rpc/scoped/rpc.ts
+++ b/packages/ast/src/clients/rpc/scoped/rpc.ts
@@ -1,6 +1,10 @@
import * as t from "@babel/types";
import { GenericParseContext } from "../../../encoding";
-import { objectPattern } from "../../../utils";
+import {
+ objectPattern,
+ objectProperty,
+ tsPropertySignature,
+} from "../../../utils";
import { restoreExtension } from "@cosmology/utils";
export const rpcFuncArguments = (): t.ObjectPattern[] => {
@@ -174,9 +178,7 @@ export const createScopedRpcTmFactory = (
identifier: string
) => {
const newClientType = context.pluginValue("rpcClients.useConnectComet");
- const useQueryClientResolver = context.pluginValue(
- "rpcClients.useQueryClientResolver"
- );
+ const useMakeClient = context.pluginValue("rpcClients.useMakeClient");
const extensions = context.pluginValue("rpcClients.extensions");
let functionParams;
@@ -234,10 +236,10 @@ export const createScopedRpcTmFactory = (
false,
true
),
- useQueryClientResolver &&
+ useMakeClient &&
t.objectProperty(
- t.identifier("queryClientResolver"),
- t.identifier("queryClientResolver"),
+ t.identifier("makeClient"),
+ t.identifier("makeClient"),
false,
true
),
@@ -256,9 +258,9 @@ export const createScopedRpcTmFactory = (
])
)
),
- useQueryClientResolver &&
- t.tsPropertySignature(
- t.identifier("queryClientResolver"),
+ useMakeClient &&
+ tsPropertySignature(
+ t.identifier("makeClient"),
t.tsTypeAnnotation(
t.tsFunctionType(
null,
@@ -278,7 +280,8 @@ export const createScopedRpcTmFactory = (
)
)
)
- )
+ ),
+ true
),
].filter(Boolean)
)
@@ -286,30 +289,30 @@ export const createScopedRpcTmFactory = (
),
];
- if (useQueryClientResolver) {
+ if (useMakeClient) {
let createQueryClientName = newClientType
? "createConnectCometQueryClient"
: "createTm34QueryClient";
context.addUtil(createQueryClientName);
functionStatements = [
- t.variableDeclaration("let", [
+ t.variableDeclaration("const", [
+ t.variableDeclarator(
+ t.identifier("make"),
+ t.logicalExpression(
+ "||",
+ t.identifier("makeClient"),
+ t.identifier(createQueryClientName)
+ )
+ ),
+ ]),
+ t.variableDeclaration("const", [
t.variableDeclarator(
t.identifier("client"),
- t.conditionalExpression(
- t.identifier("queryClientResolver"),
- t.awaitExpression(
- t.callExpression(
- t.identifier("queryClientResolver"),
- [t.identifier("rpcEndpoint")]
- )
- ),
- t.awaitExpression(
- t.callExpression(
- t.identifier(createQueryClientName),
- [t.identifier("rpcEndpoint")]
- )
- )
+ t.awaitExpression(
+ t.callExpression(t.identifier("make"), [
+ t.identifier("rpcEndpoint"),
+ ])
)
),
]),
diff --git a/packages/telescope/README.md b/packages/telescope/README.md
index face8f69a7..6a91e235f3 100644
--- a/packages/telescope/README.md
+++ b/packages/telescope/README.md
@@ -444,7 +444,7 @@ See [LCD Clients](#lcd-clients) for more info.
| `rpcClients.enabledServices` | which services to enable | [`Msg`,`Query`,`Service`] |
| `rpcClients.instantOps` | will generate instant rpc operations in the file `service-ops.ts` under root folder, which contains customized classes having selected rpc methods | `undefined` |
| `rpcClients.useConnectComet` | will use connectComet function to get a tendermint client | `undefined` |
-| `rpcClients.useQueryClientResolver` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
+| `rpcClients.useMakeClient` | allow user to pass a query client resolver to create query client in createRPCQueryClient function | `undefined` |
| `rpcClients.serviceImplement` | assign implement type of rpc methods, `Query` or `Tx`, by setting patterns under service types. | `undefined` |
`rpcClients.clientStyle.useUpdatedClientStyle` | The default value is `false`, which sets the generated client to use the legacy style. Setting it to `true` applies the updated style and activates the remaining options in clientStyle. | `false`
| `rpcClients.clientStyle.type` | A string array containing possible values: `all-client`, `sdk-module-client`, and `custom-client`. The value `all-client` generates an all-module-client file. The value `sdk-module-client` generates a client for the module specified by the `sdkModuleClientOption`. The value `custom-client` generates a customized client as specified by `customClientOption` | `undefined`
diff --git a/packages/telescope/__tests__/telescope-v4.test.ts b/packages/telescope/__tests__/telescope-v4.test.ts
index 515cbd5266..8def6c5640 100644
--- a/packages/telescope/__tests__/telescope-v4.test.ts
+++ b/packages/telescope/__tests__/telescope-v4.test.ts
@@ -161,7 +161,7 @@ const options: TelescopeOptions = {
'ABCIApplication'
],
useConnectComet: true,
- useQueryClientResolver: true
+ useMakeClient: true
},
reactQuery: {
diff --git a/packages/telescope/src/generators/create-helpers.ts b/packages/telescope/src/generators/create-helpers.ts
index 047454fe25..0c0e90120f 100644
--- a/packages/telescope/src/generators/create-helpers.ts
+++ b/packages/telescope/src/generators/create-helpers.ts
@@ -77,7 +77,7 @@ export const plugin = (builder: TelescopeBuilder) => {
write(
builder,
"extern.ts",
- builder.options.rpcClients?.useConnectComet || builder.options.rpcClients?.useQueryClientResolver ? externalComet : external
+ builder.options.rpcClients?.useConnectComet || builder.options.rpcClients?.useMakeClient ? externalComet : external
);
}
}
diff --git a/packages/types/src/telescope.ts b/packages/types/src/telescope.ts
index e3a6a43c02..ce3b97dd7e 100644
--- a/packages/types/src/telescope.ts
+++ b/packages/types/src/telescope.ts
@@ -291,7 +291,7 @@ export interface TelescopeOpts {
};
}[];
useConnectComet?: boolean;
- useQueryClientResolver?: boolean;
+ useMakeClient?: boolean;
};
helperFuncCreators?: {
enabled: boolean;
diff --git a/packages/types/types/telescope.d.ts b/packages/types/types/telescope.d.ts
index 2d2c85f2d2..a429688b74 100644
--- a/packages/types/types/telescope.d.ts
+++ b/packages/types/types/telescope.d.ts
@@ -238,7 +238,7 @@ export interface TelescopeOpts {
};
}[];
useConnectComet?: boolean;
- useQueryClientResolver?: boolean;
+ useMakeClient?: boolean;
};
helperFuncCreators?: {
enabled: boolean;
From 4f61eb6fa736684c60c08ff070e4937a19a8411f Mon Sep 17 00:00:00 2001
From: Zetazzz
Date: Sun, 26 Jan 2025 10:38:45 +0800
Subject: [PATCH 8/8] chore(release): publish
- @cosmology/ast@1.9.5
- @cosmology/lcd@0.14.2
- @cosmology/proto-parser@1.9.4
- @cosmology/starship-test@1.9.10
- @cosmology/telescope@1.11.10
- @cosmology/types@1.11.4
- @cosmology/utils@1.9.4
---
packages/ast/CHANGELOG.md | 6 +++---
packages/ast/package.json | 8 ++++----
packages/lcd/CHANGELOG.md | 21 ++++-----------------
packages/lcd/package.json | 2 +-
packages/parser/CHANGELOG.md | 6 +++---
packages/parser/package.json | 6 +++---
packages/starship/CHANGELOG.md | 6 +++---
packages/starship/package.json | 6 +++---
packages/telescope/CHANGELOG.md | 6 +++---
packages/telescope/package.json | 10 +++++-----
packages/types/CHANGELOG.md | 6 +++---
packages/types/package.json | 2 +-
packages/utils/CHANGELOG.md | 6 +++---
packages/utils/package.json | 4 ++--
14 files changed, 41 insertions(+), 54 deletions(-)
diff --git a/packages/ast/CHANGELOG.md b/packages/ast/CHANGELOG.md
index 705ed6fead..4f5da524fe 100644
--- a/packages/ast/CHANGELOG.md
+++ b/packages/ast/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.3...@cosmology/ast@1.9.4) (2025-01-18)
+## [1.9.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.4...@cosmology/ast@1.9.5) (2025-01-26)
**Note:** Version bump only for package @cosmology/ast
+## [1.9.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.3...@cosmology/ast@1.9.4) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/ast
## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/ast@1.9.2...@cosmology/ast@1.9.3) (2025-01-02)
diff --git a/packages/ast/package.json b/packages/ast/package.json
index b1a56cb274..7f0a709fa4 100644
--- a/packages/ast/package.json
+++ b/packages/ast/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/ast",
- "version": "1.9.4",
+ "version": "1.9.5",
"description": "Cosmos TypeScript AST generation",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/ast#readme",
@@ -63,7 +63,7 @@
},
"devDependencies": {
"@babel/parser": "^7.23.6",
- "@cosmology/proto-parser": "^1.9.3",
+ "@cosmology/proto-parser": "^1.9.4",
"@types/jest": "^29.5.0",
"ast-stringify": "0.1.0",
"cross-env": "^7.0.2",
@@ -84,8 +84,8 @@
},
"dependencies": {
"@babel/types": "7.23.6",
- "@cosmology/types": "^1.11.3",
- "@cosmology/utils": "^1.9.3",
+ "@cosmology/types": "^1.11.4",
+ "@cosmology/utils": "^1.9.4",
"case": "1.6.3",
"dotty": "0.1.2"
}
diff --git a/packages/lcd/CHANGELOG.md b/packages/lcd/CHANGELOG.md
index 573d394336..ff4782f41f 100644
--- a/packages/lcd/CHANGELOG.md
+++ b/packages/lcd/CHANGELOG.md
@@ -3,41 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [0.14.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.14.0...@cosmology/lcd@0.14.1) (2025-01-18)
+## [0.14.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.14.1...@cosmology/lcd@0.14.2) (2025-01-26)
**Note:** Version bump only for package @cosmology/lcd
+## [0.14.1](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.14.0...@cosmology/lcd@0.14.1) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/lcd
# [0.14.0](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.5...@cosmology/lcd@0.14.0) (2024-09-16)
-
### Features
-* add timeout to the argument of LcdClient constructor ([8e7c4e9](https://github.com/hyperweb-io/telescope/commit/8e7c4e92206b4931f8397c9810d582d85784ef4e))
-
-
-
-
+- add timeout to the argument of LcdClient constructor ([8e7c4e9](https://github.com/hyperweb-io/telescope/commit/8e7c4e92206b4931f8397c9810d582d85784ef4e))
## [0.13.5](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.4...@cosmology/lcd@0.13.5) (2024-09-12)
**Note:** Version bump only for package @cosmology/lcd
-
-
-
-
## [0.13.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.3...@cosmology/lcd@0.13.4) (2024-06-28)
**Note:** Version bump only for package @cosmology/lcd
-
-
-
-
## [0.13.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/lcd@0.13.2...@cosmology/lcd@0.13.3) (2023-11-13)
**Note:** Version bump only for package @cosmology/lcd
diff --git a/packages/lcd/package.json b/packages/lcd/package.json
index 4df714d459..596cd64aee 100644
--- a/packages/lcd/package.json
+++ b/packages/lcd/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/lcd",
- "version": "0.14.1",
+ "version": "0.14.2",
"description": "Telescope LCDClient helpers",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/helpers#readme",
diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md
index 19b8c08dea..6b6e45ef78 100644
--- a/packages/parser/CHANGELOG.md
+++ b/packages/parser/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.2...@cosmology/proto-parser@1.9.3) (2025-01-18)
+## [1.9.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.3...@cosmology/proto-parser@1.9.4) (2025-01-26)
**Note:** Version bump only for package @cosmology/proto-parser
+## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.2...@cosmology/proto-parser@1.9.3) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/proto-parser
## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/proto-parser@1.9.1...@cosmology/proto-parser@1.9.2) (2024-12-31)
diff --git a/packages/parser/package.json b/packages/parser/package.json
index f515bf60fb..187bbf56ea 100644
--- a/packages/parser/package.json
+++ b/packages/parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/proto-parser",
- "version": "1.9.3",
+ "version": "1.9.4",
"description": "A Parser for Cosmos Protobufs",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/parser#readme",
@@ -74,8 +74,8 @@
},
"dependencies": {
"@cosmology/protobufjs": "7.3.2",
- "@cosmology/types": "^1.11.3",
- "@cosmology/utils": "^1.9.3",
+ "@cosmology/types": "^1.11.4",
+ "@cosmology/utils": "^1.9.4",
"dotty": "0.1.2",
"fast-json-patch": "3.1.1",
"glob": "8.0.3",
diff --git a/packages/starship/CHANGELOG.md b/packages/starship/CHANGELOG.md
index 77624eafcb..9ca4d21c74 100644
--- a/packages/starship/CHANGELOG.md
+++ b/packages/starship/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.9](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.8...@cosmology/starship-test@1.9.9) (2025-01-18)
+## [1.9.10](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.9...@cosmology/starship-test@1.9.10) (2025-01-26)
**Note:** Version bump only for package @cosmology/starship-test
+## [1.9.9](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.8...@cosmology/starship-test@1.9.9) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/starship-test
## [1.9.8](https://github.com/osmosis-labs/telescope/compare/@cosmology/starship-test@1.9.7...@cosmology/starship-test@1.9.8) (2025-01-15)
diff --git a/packages/starship/package.json b/packages/starship/package.json
index 149c42d581..2ef047220f 100644
--- a/packages/starship/package.json
+++ b/packages/starship/package.json
@@ -1,7 +1,7 @@
{
"name": "@cosmology/starship-test",
"private": true,
- "version": "1.9.9",
+ "version": "1.9.10",
"description": "E2E tests for telescope with Starship",
"author": "Anmol1696 ",
"homepage": "https://github.com/osmosis-labs/telescope#readme",
@@ -59,7 +59,7 @@
"@confio/relayer": "0.7.0",
"@cosmjs/cosmwasm-stargate": "0.29.4",
"@cosmjs/crypto": "0.29.4",
- "@cosmology/telescope": "^1.11.9",
+ "@cosmology/telescope": "^1.11.10",
"@protobufs/confio": "^0.0.6",
"@protobufs/cosmos": "^0.0.11",
"@protobufs/cosmos_proto": "^0.0.10",
@@ -102,7 +102,7 @@
"@cosmjs/stargate": "^0.32.0",
"@cosmjs/tendermint-rpc": "^0.32.0",
"@cosmology/core": "1.23.0",
- "@cosmology/lcd": "^0.14.1",
+ "@cosmology/lcd": "^0.14.2",
"@keplr-wallet/unit": "0.11.56",
"@tanstack/react-query": "4.29.1",
"cosmjs-utils": "0.1.0",
diff --git a/packages/telescope/CHANGELOG.md b/packages/telescope/CHANGELOG.md
index 6fafec84f8..c2fade0d8b 100644
--- a/packages/telescope/CHANGELOG.md
+++ b/packages/telescope/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.11.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.8...@cosmology/telescope@1.11.9) (2025-01-18)
+## [1.11.10](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.9...@cosmology/telescope@1.11.10) (2025-01-26)
**Note:** Version bump only for package @cosmology/telescope
+## [1.11.9](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.8...@cosmology/telescope@1.11.9) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/telescope
## [1.11.8](https://github.com/hyperweb-io/telescope/compare/@cosmology/telescope@1.11.7...@cosmology/telescope@1.11.8) (2025-01-15)
diff --git a/packages/telescope/package.json b/packages/telescope/package.json
index 10f5d83503..b27eafa608 100644
--- a/packages/telescope/package.json
+++ b/packages/telescope/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/telescope",
- "version": "1.11.9",
+ "version": "1.11.10",
"description": "A TypeScript Transpiler for Cosmos Protobufs",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/telescope#readme",
@@ -90,10 +90,10 @@
"@babel/parser": "^7.23.6",
"@babel/traverse": "7.23.6",
"@babel/types": "7.23.6",
- "@cosmology/ast": "^1.9.4",
- "@cosmology/proto-parser": "^1.9.3",
- "@cosmology/types": "^1.11.3",
- "@cosmology/utils": "^1.9.3",
+ "@cosmology/ast": "^1.9.5",
+ "@cosmology/proto-parser": "^1.9.4",
+ "@cosmology/types": "^1.11.4",
+ "@cosmology/utils": "^1.9.4",
"@cosmwasm/ts-codegen": "0.35.7",
"@types/parse-package-name": "0.1.0",
"case": "1.6.3",
diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md
index 82660f71ba..6d40732f87 100644
--- a/packages/types/CHANGELOG.md
+++ b/packages/types/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.11.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.2...@cosmology/types@1.11.3) (2025-01-18)
+## [1.11.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.3...@cosmology/types@1.11.4) (2025-01-26)
**Note:** Version bump only for package @cosmology/types
+## [1.11.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.2...@cosmology/types@1.11.3) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/types
## [1.11.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/types@1.11.1...@cosmology/types@1.11.2) (2024-12-31)
diff --git a/packages/types/package.json b/packages/types/package.json
index b8e50ec18c..e2359b3c28 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/types",
- "version": "1.11.3",
+ "version": "1.11.4",
"description": "Telescope types",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/types#readme",
diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md
index bfe91ce31f..50eef3a6ee 100644
--- a/packages/utils/CHANGELOG.md
+++ b/packages/utils/CHANGELOG.md
@@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.2...@cosmology/utils@1.9.3) (2025-01-18)
+## [1.9.4](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.3...@cosmology/utils@1.9.4) (2025-01-26)
**Note:** Version bump only for package @cosmology/utils
+## [1.9.3](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.2...@cosmology/utils@1.9.3) (2025-01-18)
-
-
+**Note:** Version bump only for package @cosmology/utils
## [1.9.2](https://github.com/hyperweb-io/telescope/compare/@cosmology/utils@1.9.1...@cosmology/utils@1.9.2) (2024-12-31)
diff --git a/packages/utils/package.json b/packages/utils/package.json
index e8be2d07be..8c575b3167 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@cosmology/utils",
- "version": "1.9.3",
+ "version": "1.9.4",
"description": "Telescope utils",
"author": "Dan Lynch ",
"homepage": "https://github.com/hyperweb-io/telescope/tree/master/packages/utils#readme",
@@ -74,7 +74,7 @@
"typescript": "^5.0.4"
},
"dependencies": {
- "@cosmology/types": "^1.11.3",
+ "@cosmology/types": "^1.11.4",
"dotty": "0.1.2"
}
}