-
Notifications
You must be signed in to change notification settings - Fork 208
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
A3P commands without synthetic-chain #10396
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
9ea8b04
build: bump yarn to 4.5.1
turadg 8db6628
test: rm unused wallet utils
turadg 59c3516
build: bump deps and add typescript
turadg 1932530
test: OpenVault without synthetic-chain
turadg 6af6ed4
refactor: listVault wo/shell
turadg a2427ed
test: shared walletUtils
turadg fc58ec9
build: portal to current SDK
turadg dbef98e
refactor: import client-utils
turadg bc10509
feat: makeWalletUtils wo/spawn
turadg c3daac9
test: endo/init always
turadg f82d978
lint: cast string
turadg 90e35c7
chore(types): noImplicitAny
turadg 186d268
feat: export makeStargateClient
turadg a4704e0
refactor: sync-tools to client-utils
turadg 77c5ed0
chore(types): correct setTimeout
turadg 7aca28a
refactor: consolidate io param
turadg 72e43b5
test: speed up sync-tools
turadg 266a381
feat: makeAgdWalletUtils
turadg 5896d07
feat: utils wo/spawn
turadg 71486d7
feat: VstorageKit
turadg 6afc30f
refactor: simplify agoricNames query
turadg 2740748
feat: getCurrentWalletRecord
turadg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,11 @@ | |
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@agoric/synthetic-chain": "^0.3.0", | ||
"@endo/init": "^1.1.5", | ||
"@endo/marshal": "^1.5.4", | ||
"@endo/init": "^1.1.6", | ||
"@endo/marshal": "^1.6.1", | ||
"ava": "^5.3.1", | ||
"better-sqlite3": "^9.6.0", | ||
"execa": "^9.3.1" | ||
"execa": "^9.5.1" | ||
}, | ||
"ava": { | ||
"concurrency": 1, | ||
|
@@ -28,5 +28,8 @@ | |
"scripts": { | ||
"agops": "yarn --cwd /usr/src/agoric-sdk/ --silent agops" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"typescript": "^5.6.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "esnext", | ||
"module": "esnext", | ||
"target": "ESNext", | ||
"module": "NodeNext", | ||
"allowJs": true, | ||
"checkJs": true, | ||
"strict": false, | ||
"strictNullChecks": true, | ||
"noEmit": true, | ||
"noImplicitThis": true | ||
"noImplicitThis": true, | ||
// XXX synthetic-chain has some errors | ||
"skipLibCheck": true | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
So is this run only one time in your machine to create the resolutions in the
n:upgrade-next/package.json
?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.
Correct