-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8be7bc2
commit 83829f9
Showing
142 changed files
with
328 additions
and
44,948 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
diff --git a/node_modules/@cosmjs/proto-signing/build/registry.d.ts b/node_modules/@cosmjs/proto-signing/build/registry.d.ts | ||
index c6efeeb..21c0e86 100644 | ||
--- a/node_modules/@cosmjs/proto-signing/build/registry.d.ts | ||
+++ b/node_modules/@cosmjs/proto-signing/build/registry.d.ts | ||
@@ -2,6 +2,7 @@ import { BinaryWriter } from "cosmjs-types/binary"; | ||
import { TxBody } from "cosmjs-types/cosmos/tx/v1beta1/tx"; | ||
import { Any } from "cosmjs-types/google/protobuf/any"; | ||
import type protobuf from "protobufjs"; | ||
+import * as buf from "@bufbuild/protobuf"; | ||
/** | ||
* A type generated by Telescope 1.0. | ||
*/ | ||
@@ -39,7 +40,15 @@ export interface PbjsGeneratedType { | ||
}, writer?: protobuf.Writer) => protobuf.Writer; | ||
readonly decode: (reader: protobuf.Reader | Uint8Array, length?: number) => any; | ||
} | ||
-export type GeneratedType = TelescopeGeneratedType | TsProtoGeneratedType | PbjsGeneratedType; | ||
+ | ||
+export interface BufGeneratedType { | ||
+ readonly encode: (message: any | { | ||
+ [k: string]: any; | ||
+ }, writer?: buf.BinaryWriter) => buf.BinaryWriter; | ||
+ readonly decode: (input: Uint8Array | buf.BinaryReader, length?: number) => any; | ||
+ readonly fromPartial: (object: any) => any; | ||
+} | ||
+export type GeneratedType = TelescopeGeneratedType | TsProtoGeneratedType | PbjsGeneratedType | BufGeneratedType; | ||
export declare function isTelescopeGeneratedType(type: GeneratedType): type is TelescopeGeneratedType; | ||
export declare function isTsProtoGeneratedType(type: GeneratedType): type is TsProtoGeneratedType; | ||
export declare function isPbjsGeneratedType(type: GeneratedType): type is PbjsGeneratedType; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.