-
Notifications
You must be signed in to change notification settings - Fork 215
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
synchronous makeVstorageKit #10670
synchronous makeVstorageKit #10670
Changes from all commits
a3872d0
e115474
10302ad
1c69d39
15976b5
b7180b0
fdcf70c
97e431f
36a986b
501be3a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@types/node": "^22.0.0" | ||
"@types/node": "^22.0.0", | ||
"typescript": "^5.7.2" | ||
}, | ||
"resolutions": { | ||
"@agoric/cosmos": "portal:../../agoric-sdk/golang/cosmos", | ||
|
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// @ts-nocheck FIXME | ||
// XXX uses agoric.follow to read data through spawned processes; replace with VstorageKit | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Question: is agoric.follow deprecated? Just not preferred? Is there a larger pattern of work to replace it with vstorage kit that we should file? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Deprecated, yeah. The larger pattern is in the comment, "replace with VstorageKit". That gets the vstorage data without shelling out, making it more portable and less dependent on the process env (e.g. PATH) |
||
import assert from 'node:assert'; | ||
|
||
import { | ||
|
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.
Question: this root0 seems a little out of place, yet familiar... is this codegen or something?
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 what the eslint autofixer for missing jsdoc params does