You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's best if we're on the NPM release so let's get back.
Description of the Design
in codegen.cjs,
customTypes: {// Use @endo/base64 instead of globalsbase64Lib: '@endo/base64',// Use inbuilt Decimal type that uses BigInt instead of @cosmjs/math that uses bn.jsusePatchedDecimal: true,},
Then yarn codegen && yarn build && yarn test. Unfortunately with just those changes there is this problem,
helpers › toRequestQueryJson
test/helpers.test.js:83
82: t.like(
83: toRequestQueryJson(
84: cosmos.bank.v1beta1.QueryBalanceRequest.toProtoMsg({
Error thrown in test:
Error {
message: 'Invalid base64 character 10 in string <unknown>',
}
So there is some additional work to figure out whether we're using it wrong or need other changes upstream.
Security Considerations
Scaling Considerations
Test Plan
Upgrade Considerations
The text was updated successfully, but these errors were encountered:
What is the Problem Being Solved?
We've had to fork the project to https://github.com/agoric-labs/telescope/tree/agoric-safe . Since then the Cosmology folks have released 1.10.0 to incorporate the changes.
It's best if we're on the NPM release so let's get back.
Description of the Design
in
codegen.cjs
,Then
yarn codegen && yarn build && yarn test
. Unfortunately with just those changes there is this problem,So there is some additional work to figure out whether we're using it wrong or need other changes upstream.
Security Considerations
Scaling Considerations
Test Plan
Upgrade Considerations
The text was updated successfully, but these errors were encountered: