cosmwasm-stargate: Add codec

This commit is contained in:
willclarktech 2020-12-03 12:30:56 +00:00
parent 4207e8e373
commit 91405d2834
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
5 changed files with 12495 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
import Long from "long";
import protobuf from "protobufjs/minimal";
// Ensure the protobuf module has a Long implementation, which otherwise only works
// in Node.js (see https://github.com/protobufjs/protobuf.js/issues/921#issuecomment-334925145)
protobuf.util.Long = Long;
protobuf.configure();
export { cosmwasm } from "./generated/codecimpl";

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
export { cosmwasm } from "./generated/codecimpl";