Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bc08669
feat(wallet): add Solana wallet support with commands for address, ba…
Jun 12, 2026
484cb98
feat(trade): sign Solana trade legs — ownership proofs (base64) and v…
psmiratisu Jun 12, 2026
d561aef
feat(trade): run sponsored solana-instructions actions (native-SOL ga…
psmiratisu Jun 13, 2026
de43d63
Revert "feat(trade): run sponsored solana-instructions actions (nativ…
psmiratisu Jun 13, 2026
bf1a6ac
fix(trade): address Bugbot review on PR #44
psmiratisu Jun 13, 2026
f1b5f33
fix(trade): attach solWallet for Solana --chain-out too
psmiratisu Jun 13, 2026
809305f
fix(trade): don't attach solWallet when a non-sol venue is pinned
psmiratisu Jun 13, 2026
3e961c2
fix(trade): define unpinned Treasures buy positively (require spend a…
psmiratisu Jun 13, 2026
d6e5fc0
fix(trade): only swallow genuine no-Solana-wallet errors
psmiratisu Jun 13, 2026
16cffc0
docs: document tokenized-stock trading + Solana routing (README + SKILL)
psmiratisu Jun 13, 2026
5809100
feat(trade): add `acp trade stock-list` discovery command
psmiratisu Jun 16, 2026
e0206ee
chore: bump @virtuals-protocol/acp-node-v2 version to 0.1.5 in packag…
Jun 13, 2026
cdc381b
fix: add approval gate for trade command
andrew-virtuals Jun 13, 2026
e0bf8c6
fix: surface approval urls from wallet gate
ai-virtual-b Jun 15, 2026
40c1633
fix: restrict approval url detection
ai-virtual-b Jun 15, 2026
ff2b28e
fix: tighten approval text matching
ai-virtual-b Jun 15, 2026
d0cdb02
fix: surface trade approval errors
ai-virtual-b Jun 15, 2026
c9fa083
fix: keep approval url change scoped
ai-virtual-b Jun 15, 2026
e2ef42b
fix: mirror approval urls from sdk output
ai-virtual-b Jun 15, 2026
fbd5f2e
feat: simplify error message handling
andrew-virtuals Jun 15, 2026
d59f80b
feat: add wallet policy management commands and update documentation …
Zuhwa Jun 16, 2026
23fc7fb
feat: enhance wallet balance command to support querying all supporte…
Zuhwa Jun 16, 2026
8197784
feat: update wallet balance command to include Solana support and imp…
Jun 16, 2026
d359fca
docs: update HL account status documentation to clarify on-chain toke…
Jun 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
142 changes: 132 additions & 10 deletions README.md

Large diffs are not rendered by default.

78 changes: 69 additions & 9 deletions SKILL.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions bin/acp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { registerMessageCommands } from "../src/commands/message";
import { registerWalletCommands } from "../src/commands/wallet";
import { registerConfigureCommand } from "../src/commands/configure";
import { registerAgentCommands } from "../src/commands/agent";
import { registerPolicyCommands } from "../src/commands/policy";
import { registerBrowseCommand } from "../src/commands/browse";
import { registerOfferingCommands } from "../src/commands/offering";
import { registerResourceCommands } from "../src/commands/resource";
Expand Down Expand Up @@ -56,6 +57,7 @@ registerMessageCommands(program);
registerWalletCommands(program);
registerConfigureCommand(program);
registerAgentCommands(program);
registerPolicyCommands(program);
registerBrowseCommand(program);
registerOfferingCommands(program);
registerResourceCommands(program);
Expand Down
Loading