-
Notifications
You must be signed in to change notification settings - Fork 214
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
transaction vstorage #10633
Merged
Merged
transaction vstorage #10633
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
293ac50
lint: tsc checkJs
turadg 3c63de2
chore(deps): link agoric-sdk
turadg b5698ce
feat: getValues for sequence nodes
turadg fd09c05
refactor: distinguish NFA address
turadg 71b1859
test: trace logger
turadg fd05a7e
feat: simplify seenTxs key
turadg 6df7f1f
feat: pureDataMarshaller
turadg 01315f1
test: getPureData helper
turadg ebdb5e9
test: provide smartWalletKit
turadg f99e7b8
feat: include 'sender' in CctpTxEvidence
turadg aebb4d7
feat: vstorage status --> txns
turadg fc8bb1e
refactor: txnsNode
turadg 1637c1d
test: shorten node path
turadg 2916c8f
feat: publish CctpTxEvidence
turadg d82f7e7
test: observe node sequence
turadg f0078ee
feat: deleteCompletedTxs
turadg dbf3934
feat: consistent publishTxnRecord (record)
turadg 00e7a8d
chore(types): import CctpTxEvidence
turadg 19d5e03
feat: defaultSerializer util
turadg c20866d
test: use defaultSerializer
turadg 7e62d8f
feat: publish OBSERVED with first evidence
turadg ccb9e28
feat(types): TransactionRecord
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@agoric/cosmic-proto": "dev", | ||
"@agoric/fast-usdc": "dev", | ||
"@cosmjs/crypto": "^0.32.4", | ||
"@cosmjs/proto-signing": "^0.32.4", | ||
"@cosmjs/stargate": "^0.32.4", | ||
|
@@ -41,7 +42,54 @@ | |
"typescript": "~5.7.2" | ||
}, | ||
"resolutions": { | ||
"axios": "1.6.7" | ||
"axios": "1.6.7", | ||
"@agoric/cosmos": "portal:../golang/cosmos", | ||
"@agoric/ertp": "portal:../packages/ERTP", | ||
"@agoric/swingset-vat": "portal:../packages/SwingSet", | ||
"@agoric/access-token": "portal:../packages/access-token", | ||
"agoric": "portal:../packages/agoric-cli", | ||
"@agoric/async-flow": "portal:../packages/async-flow", | ||
"@agoric/base-zone": "portal:../packages/base-zone", | ||
"@agoric/builders": "portal:../packages/builders", | ||
"@agoric/cache": "portal:../packages/cache", | ||
"@agoric/casting": "portal:../packages/casting", | ||
"@agoric/client-utils": "portal:../packages/client-utils", | ||
"@agoric/cosmic-proto": "portal:../packages/cosmic-proto", | ||
"@agoric/cosmic-swingset": "portal:../packages/cosmic-swingset", | ||
"@agoric/create-dapp": "portal:../packages/create-dapp", | ||
"@agoric/deploy-script-support": "portal:../packages/deploy-script-support", | ||
"@agoric/eslint-config": "portal:../packages/eslint-config", | ||
"@agoric/fast-usdc": "portal:../packages/fast-usdc", | ||
"@agoric/governance": "portal:../packages/governance", | ||
"@agoric/import-manager": "portal:../packages/import-manager", | ||
"@agoric/inter-protocol": "portal:../packages/inter-protocol", | ||
"@agoric/internal": "portal:../packages/internal", | ||
"@agoric/kmarshal": "portal:../packages/kmarshal", | ||
"@agoric/network": "portal:../packages/network", | ||
"@agoric/notifier": "portal:../packages/notifier", | ||
"@agoric/orchestration": "portal:../packages/orchestration", | ||
"@agoric/pegasus": "portal:../packages/pegasus", | ||
"@agoric/smart-wallet": "portal:../packages/smart-wallet", | ||
"@agoric/solo": "portal:../packages/solo", | ||
"@agoric/sparse-ints": "portal:../packages/sparse-ints", | ||
"@agoric/spawner": "portal:../packages/spawner", | ||
"@agoric/stat-logger": "portal:../packages/stat-logger", | ||
"@agoric/store": "portal:../packages/store", | ||
"@agoric/swing-store": "portal:../packages/swing-store", | ||
"@agoric/swingset-liveslots": "portal:../packages/swingset-liveslots", | ||
"@agoric/swingset-xsnap-supervisor": "portal:../packages/swingset-xsnap-supervisor", | ||
"@agoric/telemetry": "portal:../packages/telemetry", | ||
"@agoric/time": "portal:../packages/time", | ||
"@agoric/vat-data": "portal:../packages/vat-data", | ||
"@agoric/vats": "portal:../packages/vats", | ||
"@agoric/vm-config": "portal:../packages/vm-config", | ||
"@agoric/vow": "portal:../packages/vow", | ||
"@agoric/wallet": "portal:../packages/wallet", | ||
"@agoric/wallet-backend": "portal:../packages/wallet/api", | ||
"@agoric/xsnap": "portal:../packages/xsnap", | ||
"@agoric/xsnap-lockdown": "portal:../packages/xsnap-lockdown", | ||
"@agoric/zoe": "portal:../packages/zoe", | ||
"@agoric/zone": "portal:../packages/zone" | ||
}, | ||
"eslintConfig": { | ||
"root": true, | ||
|
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
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"include": [ | ||
"src", | ||
"tools", | ||
"test" | ||
], | ||
"compilerOptions": { | ||
"checkJs": false | ||
} | ||
"src", | ||
"tools", | ||
"test" | ||
] | ||
} |
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.
Did you use tooling to add all these resolutions?
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.
agoric-sdk/multichain-testing/README.md
Line 24 in 1af5f1d