Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update proto messages #65

Merged
merged 3 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions libs/dev-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@seda-protocol/dev-tools",
"type": "module",
"version": "0.0.6",
"version": "0.0.7",
"scripts": {
"build:cli": "bun build src/cli/index.ts --target node --outdir bin",
"build": "bun run build:cli && bun run build:lib",
Expand All @@ -18,7 +18,7 @@
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"@seda-protocol/proto-messages": "^0.2.0",
"@seda-protocol/proto-messages": "0.3.0-dev.0",
"@seda-protocol/vm": "^0.0.3",
"big.js": "^6.2.1",
"dotenv": "^16.3.1",
Expand Down
2 changes: 1 addition & 1 deletion libs/dev-tools/src/lib/services/wasm/get-wasm-binary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { tryAsync } from "@dev-tools/utils/try-async";
import { ISigner } from "../signer";
import { createWasmQueryClient } from "./query-client";

export async function getWasmBinary(signer: ISigner, id: string): Promise<Result<Maybe<sedachain.wasm_storage.v1.Wasm>, string>> {
export async function getWasmBinary(signer: ISigner, id: string): Promise<Result<Maybe<sedachain.wasm_storage.v1.DataRequestWasm>, string>> {
const queryClient = await tryAsync(async () => await createWasmQueryClient({
rpc: signer.getEndpoint(),
}));
Expand Down
2 changes: 1 addition & 1 deletion libs/proto-messages/gen/index.cosmos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

/* eslint-disable */

export * as msg from "./index.cosmos.msg";
export * as base from "./index.cosmos.base";
export * as msg from "./index.cosmos.msg";
export * as staking from "./index.cosmos.staking";
export * as auth from "./index.cosmos.auth";
export * as vesting from "./index.cosmos.vesting";
2 changes: 1 addition & 1 deletion libs/proto-messages/gen/index.google.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

/* eslint-disable */

export * as api from "./index.google.api";
export * as protobuf from "./index.google.protobuf";
export * as api from "./index.google.api";
8 changes: 8 additions & 0 deletions libs/proto-messages/gen/index.sedachain.data_proxy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v1.178.0
// protoc unknown

/* eslint-disable */

export * as v1 from "./index.sedachain.data_proxy.v1";
11 changes: 11 additions & 0 deletions libs/proto-messages/gen/index.sedachain.data_proxy.v1.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v1.178.0
// protoc unknown

/* eslint-disable */

export * from "./sedachain/data_proxy/v1/data_proxy";
export * from "./sedachain/data_proxy/v1/genesis";
export * from "./sedachain/data_proxy/v1/query";
export * from "./sedachain/data_proxy/v1/tx";
1 change: 1 addition & 0 deletions libs/proto-messages/gen/index.sedachain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

/* eslint-disable */

export * as data_proxy from "./index.sedachain.data_proxy";
export * as randomness from "./index.sedachain.randomness";
export * as staking from "./index.sedachain.staking";
export * as vesting from "./index.sedachain.vesting";
Expand Down
1 change: 0 additions & 1 deletion libs/proto-messages/gen/index.sedachain.wasm_storage.v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
/* eslint-disable */

export * from "./sedachain/wasm_storage/v1/wasm_storage";
export * from "./sedachain/wasm_storage/v1/events";
export * from "./sedachain/wasm_storage/v1/genesis";
export * from "./sedachain/wasm_storage/v1/query";
export * from "./sedachain/wasm_storage/v1/tx";
6 changes: 3 additions & 3 deletions libs/proto-messages/gen/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

/* eslint-disable */

export * as sedachain from "./index.sedachain";
export * as google from "./index.google";
export * as cosmos_proto from "./index.cosmos_proto";
export * as cosmos from "./index.cosmos";
export * as gogoproto from "./index.gogoproto";
export * as cosmos_proto from "./index.cosmos_proto";
export * as amino from "./index.amino";
export * as cosmos from "./index.cosmos";
export * as sedachain from "./index.sedachain";
export * as tendermint from "./index.tendermint";
Loading
Loading