Skip to content

Commit 81e7db0

Browse files
committed
Export compute msgs responses from protobuf
1 parent bda3e46 commit 81e7db0

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"bip32": "2.0.6",
4242
"bip39": "3.0.4",
4343
"curve25519-js": "0.0.4",
44+
"google-protobuf": "^3.14.0",
4445
"is-gzip": "2.0.0",
4546
"miscreant": "0.3.2",
4647
"pako": "2.0.4",
@@ -51,6 +52,7 @@
5152
"@osmonauts/telescope": "0.4.44",
5253
"@types/is-gzip": "2.0.0",
5354
"@types/jest": "27.4.0",
55+
"@types/node": "18.11.2",
5456
"@types/pako": "1.0.3",
5557
"@types/protobufjs": "6.0.0",
5658
"@types/secure-random": "1.1.0",

src/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ export * from "./extensions/snip20";
1717
export * from "./extensions/snip721";
1818
export * from "./extensions/access_control";
1919
export { grpc } from "@improbable-eng/grpc-web";
20+
export {
21+
MsgStoreCodeResponse,
22+
MsgInstantiateContractResponse,
23+
MsgExecuteContractResponse,
24+
} from "./protobuf_stuff/secret/compute/v1beta1/msg";

yarn.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2214,6 +2214,11 @@
22142214
resolved "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz"
22152215
integrity sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==
22162216

2217+
2218+
version "18.11.2"
2219+
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.2.tgz#c59b7641832531264fda3f1ba610362dc9a7dfc8"
2220+
integrity sha512-BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw==
2221+
22172222
"@types/node@^13.7.0":
22182223
version "13.13.52"
22192224
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.52.tgz#03c13be70b9031baaed79481c0c0cfb0045e53f7"
@@ -3907,6 +3912,11 @@ globalthis@^1.0.1:
39073912
dependencies:
39083913
define-properties "^1.1.3"
39093914

3915+
google-protobuf@^3.14.0:
3916+
version "3.21.2"
3917+
resolved "https://registry.yarnpkg.com/google-protobuf/-/google-protobuf-3.21.2.tgz#4580a2bea8bbb291ee579d1fefb14d6fa3070ea4"
3918+
integrity sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==
3919+
39103920
graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
39113921
version "4.2.9"
39123922
resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"

0 commit comments

Comments
 (0)