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

Upgrade CosmJS to 0.31 and cosmjs-types to 0.8.0 #270

Merged
merged 2 commits into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
"node": ">=12"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.30.0",
"@cosmjs/crypto": "^0.30.0",
"@cosmjs/encoding": "^0.30.0",
"@cosmjs/faucet-client": "^0.30.0",
"@cosmjs/math": "^0.30.0",
"@cosmjs/proto-signing": "^0.30.0",
"@cosmjs/stargate": "^0.30.0",
"@cosmjs/stream": "^0.30.0",
"@cosmjs/tendermint-rpc": "^0.30.0",
"@cosmjs/utils": "^0.30.0",
"@cosmjs/cosmwasm-stargate": "^0.31.0",
"@cosmjs/crypto": "^0.31.0",
"@cosmjs/encoding": "^0.31.0",
"@cosmjs/faucet-client": "^0.31.0",
"@cosmjs/math": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/stream": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.31.0",
"@cosmjs/utils": "^0.31.0",
"ajv": "7.1.1",
"axios": "0.21.4",
"commander": "7.1.0",
"cosmjs-types": "^0.7.1",
"cosmjs-types": "^0.8.0",
"fast-safe-stringify": "2.0.4",
"js-yaml": "4.0.0",
"lodash": "4.17.21",
Expand Down
8 changes: 4 additions & 4 deletions src/lib/ibcclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ export class IbcClient {
value: MsgUpdateClient.fromPartial({
signer: senderAddress,
clientId,
header: {
clientMessage: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This only works with newer versions of the SDK then?
It would be good to document compatibility

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The field was renamed in cosmos/ibc-go#1871. But since it is the same field number in the protobuf serialization as before I assume nothing bad happens with the change 🤞

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only difference is amino signing, then? Which likely isn't relevant here

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, Amino JSON as well as other JSON exports if they exist. But I doubt this matters here.

typeUrl: '/ibc.lightclients.tendermint.v1.Header',
value: TendermintHeader.encode(header).finish(),
},
Expand All @@ -715,9 +715,9 @@ export class IbcClient {
this.logger.debug(
`MsgUpdateClient`,
deepCloneAndMutate(updateMsg, (mutableMsg) => {
if (mutableMsg.value.header?.value) {
mutableMsg.value.header.value = toBase64AsAny(
mutableMsg.value.header.value
if (mutableMsg.value.clientMessage?.value) {
mutableMsg.value.clientMessage.value = toBase64AsAny(
mutableMsg.value.clientMessage.value
);
}
})
Expand Down
2 changes: 1 addition & 1 deletion src/lib/queries/ibc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
createProtobufRpcClient,
QueryClient,
} from '@cosmjs/stargate';
import { CommitmentProof } from 'cosmjs-types/confio/proofs';
import { CommitmentProof } from 'cosmjs-types/cosmos/ics23/v1/proofs';
import { Any } from 'cosmjs-types/google/protobuf/any';
import { Channel } from 'cosmjs-types/ibc/core/channel/v1/channel';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
tendermint34,
tendermint37,
} from '@cosmjs/tendermint-rpc';
import { HashOp, LengthOp } from 'cosmjs-types/confio/proofs';
import { HashOp, LengthOp } from 'cosmjs-types/cosmos/ics23/v1/proofs';
import { Timestamp } from 'cosmjs-types/google/protobuf/timestamp';
import { Packet } from 'cosmjs-types/ibc/core/channel/v1/channel';
import { Height } from 'cosmjs-types/ibc/core/client/v1/client';
Expand Down
222 changes: 111 additions & 111 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -417,145 +417,145 @@
"@noble/hashes" "^1.0.0"
protobufjs "^6.8.8"

"@cosmjs/amino@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.30.0.tgz#159b6b2f131e02292802f4c082efb726ca23890d"
integrity sha512-DFPu0dALghQj7A9b8SHnrpNiMsGi4lEs2ZM7XvO/baYgktn8iS5P9LQXmDch5UhKkjJy+uz5aAMD9iFlK6opCQ==
dependencies:
"@cosmjs/crypto" "^0.30.0"
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/utils" "^0.30.0"

"@cosmjs/cosmwasm-stargate@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/cosmwasm-stargate/-/cosmwasm-stargate-0.30.0.tgz#b03c6c1383ef658695fcb02e6e1f4df2ddbd4710"
integrity sha512-nPJWpwSGpc15K88/9uxZmolEbixkeGzmxpTv6IbMAH23LXeJs7P+tXtgPe41ZjUw8Lt9Zc7ZOaOAqVveqqRktQ==
dependencies:
"@cosmjs/amino" "^0.30.0"
"@cosmjs/crypto" "^0.30.0"
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/proto-signing" "^0.30.0"
"@cosmjs/stargate" "^0.30.0"
"@cosmjs/tendermint-rpc" "^0.30.0"
"@cosmjs/utils" "^0.30.0"
cosmjs-types "^0.7.1"
"@cosmjs/amino@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.31.0.tgz#49b33047295002804ad51bdf7ec0c2c97f1b553d"
integrity sha512-xJ5CCEK7H79FTpOuEmlpSzVI+ZeYESTVvO3wHDgbnceIyAne3C68SvyaKqLUR4uJB0Z4q4+DZHbqW6itUiv4lA==
dependencies:
"@cosmjs/crypto" "^0.31.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/utils" "^0.31.0"

"@cosmjs/cosmwasm-stargate@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/cosmwasm-stargate/-/cosmwasm-stargate-0.31.0.tgz#a9ea82471ca035b8d7f6ae640ad44b5f497be8c6"
integrity sha512-l6aX++3LhaAGZO46qIgrrNF40lYhOrdPfl35Z32ks6Wf3mwgbQEZwaxnoGzwUePY7/yaIiEFJ1JO6MlVPZVuag==
dependencies:
"@cosmjs/amino" "^0.31.0"
"@cosmjs/crypto" "^0.31.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/proto-signing" "^0.31.0"
"@cosmjs/stargate" "^0.31.0"
"@cosmjs/tendermint-rpc" "^0.31.0"
"@cosmjs/utils" "^0.31.0"
cosmjs-types "^0.8.0"
long "^4.0.0"
pako "^2.0.2"

"@cosmjs/crypto@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.30.0.tgz#eadcc98792ce2b3417e8dbc4e84bd250b842459f"
integrity sha512-qjR5vG7G2Hyc1oE5W1vm73Mf7723ooQXWvUBj5QTsNHI4EFJ52jCHhHb7Ynuh6WmBDpfisCios7AWTpA2PSmAQ==
"@cosmjs/crypto@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.31.0.tgz#0be3867ada0155da19c45a51f5fde08e84f9ec4b"
integrity sha512-UaqCe6Tgh0pe1QlZ66E13t6FlIF86QrnBXXq+EN7Xe1Rouza3fJ1ojGlPleJZkBoq3tAyYVIOOqdZIxtVj/sIQ==
dependencies:
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/utils" "^0.30.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/utils" "^0.31.0"
"@noble/hashes" "^1"
bn.js "^5.2.0"
elliptic "^6.5.4"
libsodium-wrappers "^0.7.6"
libsodium-wrappers-sumo "^0.7.11"

"@cosmjs/encoding@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.30.0.tgz#a3ab019538f3550d2ee12964148cddfc11e1eeb2"
integrity sha512-b/ZAyAEaUstk6ctcF44ufEWKVMv6S732jUxTz3eGmGCKbZhlVPmk5P2Pc4IHl+IJPtCBoeCLG8KcskVtkNoPvQ==
"@cosmjs/encoding@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.31.0.tgz#9a6fd80b59c35fc20638a6436128ad0be681eafc"
integrity sha512-NYGQDRxT7MIRSlcbAezwxK0FqnaSPKCH7O32cmfpHNWorFxhy9lwmBoCvoe59Kd0HmArI4h+NGzLEfX3OLnA4Q==
dependencies:
base64-js "^1.3.0"
bech32 "^1.1.4"
readonly-date "^1.0.0"

"@cosmjs/faucet-client@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/faucet-client/-/faucet-client-0.30.0.tgz#93c0738f94a5c918ae1acceae16a3556e2db49c4"
integrity sha512-ddcucAVauyvVMMiJENpq8wi6YXAqvdZ1zCOjr7OEnMClhujDg0wmX/5hbdYBf4bI1FDA0qtO2ffRPL3BPtXAow==
"@cosmjs/faucet-client@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/faucet-client/-/faucet-client-0.31.0.tgz#d8e429d5f70f200ee8fd206267d6218e10a847c1"
integrity sha512-asuxkqIo+/lQwoyRmIaydWsYeNCxpewAPZ0ICW7HUB1TQ/K5cOCdUATsIZt9srOthMLVogMHeBKA9xW0US503A==
dependencies:
axios "^0.21.2"

"@cosmjs/json-rpc@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/json-rpc/-/json-rpc-0.30.0.tgz#a9bec5368bed5e9000b06aa489d121971b1894c3"
integrity sha512-zTPM+mPzq67wI/cphe8I3/4gsIe017c4l/BSiFD7jqjsOKyjhuKzNLuABPGNNRnPo6k9I1Lgb/Z/QPWp9rXuMA==
"@cosmjs/json-rpc@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/json-rpc/-/json-rpc-0.31.0.tgz#38fda21188f2046db4a111fb5463ccde3c3751d7"
integrity sha512-Ix2Cil2qysiLNrX+E0w3vtwCrqxGVq8jklpLA7B2vtMrw7tru/rS65fdFSy8ep0wUNLL6Ud32VXa5K0YObDOMA==
dependencies:
"@cosmjs/stream" "^0.30.0"
"@cosmjs/stream" "^0.31.0"
xstream "^11.14.0"

"@cosmjs/math@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.30.0.tgz#26058f971e89f45ae68598312527584735d3e41e"
integrity sha512-RfrRJe/p7Eu2/ulFQT9IUXA6CL43klcTJu+DRu/iI91LFf64L8Ycid5EQKkEUk4mpI+D2WGx5N0FT99h7pYuCw==
"@cosmjs/math@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.31.0.tgz#c9fc5f8191df7c2375945d2eacce327dfbf26414"
integrity sha512-Sb/8Ry/+gKJaYiV6X8q45kxXC9FoV98XCY1WXtu0JQwOi61VCG2VXsURQnVvZ/EhR/CuT/swOlNKrqEs3da0fw==
dependencies:
bn.js "^5.2.0"

"@cosmjs/proto-signing@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.30.0.tgz#de7dddec7fa8dc231c4b82142c4aefffe00673e5"
integrity sha512-+AKJa8xomn/qt73mu98yRQdiqb8wfrmwZGOCsUNRMSs5GIj8ltGNwTwElKY2VjK+O9buG7NSyVQBEGycC5Nj0A==
dependencies:
"@cosmjs/amino" "^0.30.0"
"@cosmjs/crypto" "^0.30.0"
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/utils" "^0.30.0"
cosmjs-types "^0.7.1"
"@cosmjs/proto-signing@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.31.0.tgz#7056963457cd967f53f56c2ab4491638e5ade2c0"
integrity sha512-JNlyOJRkn8EKB9mCthkjr6lVX6eyVQ09PFdmB4/DR874E62dFTvQ+YvyKMAgN7K7Dcjj26dVlAD3f6Xs7YOGDg==
dependencies:
"@cosmjs/amino" "^0.31.0"
"@cosmjs/crypto" "^0.31.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/utils" "^0.31.0"
cosmjs-types "^0.8.0"
long "^4.0.0"

"@cosmjs/socket@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/socket/-/socket-0.30.0.tgz#bb45bc5c5a6a47009c7acd20c9b8320e8e733848"
integrity sha512-zEheZY292C0ec5jx1egOTVmDjBqHMciXpNNDAyo8QpZkVNq9Q4XGKvPOH67jSRQUTiy9NxKXW1Tqr84kqZ3C3A==
"@cosmjs/socket@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/socket/-/socket-0.31.0.tgz#ffcae48251a68b4a1c37a1c996d8b123cd8ad5ac"
integrity sha512-WDh9gTyiP3OCXvSAJJn33+Ef3XqMWag+bpR1TdMBxTmlTxuvU+kPy4cf6P2OF+jkkUBEA5Se2EAju0eFbJMT+w==
dependencies:
"@cosmjs/stream" "^0.30.0"
"@cosmjs/stream" "^0.31.0"
isomorphic-ws "^4.0.1"
ws "^7"
xstream "^11.14.0"

"@cosmjs/stargate@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/stargate/-/stargate-0.30.0.tgz#8a6192abc52376d428c124de7902659fd7a89281"
integrity sha512-BrE1iV7M0/oBSTM5doDS+qX4Na1sVtSYMQsGUV3wde49gVttVsoHTNufk4KESQ7lfGemSwgOMsgoKBs/M8TnlA==
"@cosmjs/stargate@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/stargate/-/stargate-0.31.0.tgz#a7df1eaf1363513529607abaa52a5045aaaee0fd"
integrity sha512-GYhk9lzZPj/QmYHC0VV/4AMoRzVcOP+EnB1YZCoWlBdLuVmpBYKRagJqWIrIwdk1E0gF2ZoESd2TYfdh1fqIpg==
dependencies:
"@confio/ics23" "^0.6.8"
"@cosmjs/amino" "^0.30.0"
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/proto-signing" "^0.30.0"
"@cosmjs/stream" "^0.30.0"
"@cosmjs/tendermint-rpc" "^0.30.0"
"@cosmjs/utils" "^0.30.0"
cosmjs-types "^0.7.1"
"@cosmjs/amino" "^0.31.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/proto-signing" "^0.31.0"
"@cosmjs/stream" "^0.31.0"
"@cosmjs/tendermint-rpc" "^0.31.0"
"@cosmjs/utils" "^0.31.0"
cosmjs-types "^0.8.0"
long "^4.0.0"
protobufjs "~6.11.3"
xstream "^11.14.0"

"@cosmjs/stream@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/stream/-/stream-0.30.0.tgz#c6849e895b6a08ef3abcc97d309f467ef63ca05b"
integrity sha512-MkspvIDkZGZQcT8AOkCbG3vXzYED5jLJlki+FuNDWGOVCZVv89IF/v59f+Hg5pJUShRmGZ1cWfmpzYkGHxdEog==
"@cosmjs/stream@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/stream/-/stream-0.31.0.tgz#7faf0f5ccd5ceffdd3b5d9fb81e292bb7a930b2c"
integrity sha512-Y+aSHwhHkLGIaQOdqRob+yga2zr9ifl9gZDKD+B7+R5pdWN5f2TTDhYWxA6YZcZ6xRmfr7u8a7tDh7iYLC/zKA==
dependencies:
xstream "^11.14.0"

"@cosmjs/tendermint-rpc@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.30.0.tgz#5279434387a78cac17bc40f2541eaaf7b1081f03"
integrity sha512-QpNXwxfCPTHXrfq/LzXvwRxDjTV0R16kPISJ00zu3zSTtANCnBMZiNNFszrCdZKw81fNKo8/Rf2T0gCNvWfGog==
dependencies:
"@cosmjs/crypto" "^0.30.0"
"@cosmjs/encoding" "^0.30.0"
"@cosmjs/json-rpc" "^0.30.0"
"@cosmjs/math" "^0.30.0"
"@cosmjs/socket" "^0.30.0"
"@cosmjs/stream" "^0.30.0"
"@cosmjs/utils" "^0.30.0"
"@cosmjs/tendermint-rpc@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.31.0.tgz#df82f634ff08fc377dfdccea43a31d92b5b0eaf1"
integrity sha512-yo9xbeuI6UoEKIhFZ9g0dvUKLqnBzwdpEc/uldQygQc51j38gQVwFko+6sjmhieJqRYYvrYumcbJMiV6GFM9aA==
dependencies:
"@cosmjs/crypto" "^0.31.0"
"@cosmjs/encoding" "^0.31.0"
"@cosmjs/json-rpc" "^0.31.0"
"@cosmjs/math" "^0.31.0"
"@cosmjs/socket" "^0.31.0"
"@cosmjs/stream" "^0.31.0"
"@cosmjs/utils" "^0.31.0"
axios "^0.21.2"
readonly-date "^1.0.0"
xstream "^11.14.0"

"@cosmjs/utils@^0.30.0":
version "0.30.0"
resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.30.0.tgz#d493abd906ee72702d61a6bb8a45cef5203bec12"
integrity sha512-A0YaBUlAojyuygqXOjDZa6YT/NOeScq08CqMD5VfU0COlzJS2DKN0z0jfYDt3t3VEXT5ZV8OaLbN3jHah1cSlA==
"@cosmjs/utils@^0.31.0":
version "0.31.0"
resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.31.0.tgz#3a7ac16856dcff63bbf1bb11e31f975f71ef4f21"
integrity sha512-nNcycZWUYLNJlrIXgpcgVRqdl6BXjF4YlXdxobQWpW9Tikk61bEGeAFhDYtC0PwHlokCNw0KxWiHGJL4nL7Q5A==

"@dabh/diagnostics@^2.0.2":
version "2.0.3"
Expand Down Expand Up @@ -1636,10 +1636,10 @@ convert-to-spaces@^2.0.1:
resolved "https://registry.yarnpkg.com/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz#61a6c98f8aa626c16b296b862a91412a33bceb6b"
integrity sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==

cosmjs-types@^0.7.1:
version "0.7.1"
resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.7.1.tgz#7ad355f63206fb829b565ed3463791d33b10c3d7"
integrity sha512-qP89SGwi6YpvMTrM9CPzTfZ0JPNlXzgimqMLsa/ZjzW+L6MC8TCr6XmoWtFOT6GSfefvJLwFWq7YCtL456Bdzg==
cosmjs-types@^0.8.0:
version "0.8.0"
resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.8.0.tgz#2ed78f3e990f770229726f95f3ef5bf9e2b6859b"
integrity sha512-Q2Mj95Fl0PYMWEhA2LuGEIhipF7mQwd9gTQ85DdP9jjjopeoGaDxvmPa5nakNzsq7FnO1DMTatXTAx6bxMH7Lg==
dependencies:
long "^4.0.0"
protobufjs "~6.11.2"
Expand Down Expand Up @@ -3068,17 +3068,17 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"

libsodium-wrappers@^0.7.6:
version "0.7.10"
resolved "https://registry.yarnpkg.com/libsodium-wrappers/-/libsodium-wrappers-0.7.10.tgz#13ced44cacb0fc44d6ac9ce67d725956089ce733"
integrity sha512-pO3F1Q9NPLB/MWIhehim42b/Fwb30JNScCNh8TcQ/kIc+qGLQch8ag8wb0keK3EP5kbGakk1H8Wwo7v+36rNQg==
dependencies:
libsodium "^0.7.0"
libsodium-sumo@^0.7.11:
version "0.7.11"
resolved "https://registry.yarnpkg.com/libsodium-sumo/-/libsodium-sumo-0.7.11.tgz#ab0389e2424fca5c1dc8c4fd394906190da88a11"
integrity sha512-bY+7ph7xpk51Ez2GbE10lXAQ5sJma6NghcIDaSPbM/G9elfrjLa0COHl/7P6Wb/JizQzl5UQontOOP1z0VwbLA==

libsodium@^0.7.0:
version "0.7.10"
resolved "https://registry.yarnpkg.com/libsodium/-/libsodium-0.7.10.tgz#c2429a7e4c0836f879d701fec2c8a208af024159"
integrity sha512-eY+z7hDrDKxkAK+QKZVNv92A5KYkxfvIshtBJkmg5TSiCnYqZP3i9OO9whE79Pwgm4jGaoHgkM4ao/b9Cyu4zQ==
libsodium-wrappers-sumo@^0.7.11:
version "0.7.11"
resolved "https://registry.yarnpkg.com/libsodium-wrappers-sumo/-/libsodium-wrappers-sumo-0.7.11.tgz#d96329ee3c0e7ec7f5fcf4cdde16cc3a1ae91d82"
integrity sha512-DGypHOmJbB1nZn89KIfGOAkDgfv5N6SBGC3Qvmy/On0P0WD1JQvNRS/e3UL3aFF+xC0m+MYz5M+MnRnK2HMrKQ==
dependencies:
libsodium-sumo "^0.7.11"

lines-and-columns@^1.1.6:
version "1.2.4"
Expand Down