-
Notifications
You must be signed in to change notification settings - Fork 149
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
Use Node 20, Update Yarn and some dependencies. #3468
Conversation
83309ad
to
3426d62
Compare
........It should work now. I guess. maybe. |
@planetarium/account/src/Account.ts
Outdated
@@ -7,7 +7,7 @@ import Signature from "./Signature.js"; | |||
export interface Account { | |||
getAddress(): Promise<Address>; | |||
getPublicKey(): Promise<PublicKey>; | |||
sign(message: Message): Promise<Signature>; | |||
sign(message: Message, isDigest?: boolean): Promise<Signature>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't okay to update Account too? I'm not sure it can be added to the interface level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's optional flag, so probably....
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some discussions, we decided to just handle this inside AWS-KMS
Please press button read-for-review when the CI passed 🙏🏻 |
fab5fde
to
7965998
Compare
10957ae
to
a3e4579
Compare
fd5b100
to
4df9f60
Compare
4df9f60
to
75dd1ed
Compare
e216152
to
e0d5c13
Compare
|
4638937
to
7545f05
Compare
7545f05
to
2271404
Compare
This PR has Quantification details
Why proper sizing of changes matters
Optimal pull request sizes drive a better predictable PR flow as they strike a
What can I do to optimize my changes
How to interpret the change counts in git diff output
Was this comment helpful? 👍 :ok_hand: :thumbsdown: (Email) |
@@ -1,15 +1,17 @@ | |||
{ | |||
"include": ["./src", "*.d.ts", "*.ts"], | |||
"include": ["./src", "*.d.ts", "src/*.ts"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it included by ./src
? 👀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just src also works since it's "at" rootDir.
|
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3468 +/- ##
==========================================
+ Coverage 79.11% 79.14% +0.02%
==========================================
Files 343 343
Lines 11834 11834
==========================================
+ Hits 9363 9366 +3
+ Misses 2471 2468 -3 |
* use ES2022 * add isDigest * WebCrypto Export * yarn upgrade (4.0.1) * Fix typo * Use Typescript ^4.5.0 (due to nanobundle dependancy) * Update Nanobundle 1.6.0 * Use NodeNext (implies EsNext) * Add * use 20 in CI * use lts/* * WebCrypto Shim * Webcrypto Shim 2.0 Electric Boogaloo * Update .github/workflows/yarn.yaml Co-authored-by: Lee Dogeon <[email protected]> * Add rootdir * isDigest Removal * Add engines * Rome ignore. * add * Remove Digest Completely * Add Bencodex * Test * Remove bencodex --------- Co-authored-by: Lee Dogeon <[email protected]>
Add WebCrypto export adapter for it's environment (CJS,MJS,Browser)Add 'IsDigest" in tx sign.tsUpdate