Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ PARTNER_ID=

# Override the directory holding config.json / config-testnet.json (default: ~/.config/acp)
ACP_CONFIG_DIR=

# Geodesics API key for `acp swap` (free at https://console.geodesics.ai)
GEODESICS_API_KEY=

# Override the Geodesics API base URL (default: https://api.geodesics.ai; https-only)
GEODESICS_API_URL=
2 changes: 2 additions & 0 deletions bin/acp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { registerCardCommands } from "../src/commands/card";
import { registerComputeCommands } from "../src/commands/compute";
import { registerSkillCommands } from "../src/commands/skill";
import { registerTradeCommands } from "../src/commands/trade";
import { registerSwapCommands } from "../src/commands/swap";

const require = createRequire(import.meta.url);

Expand Down Expand Up @@ -68,5 +69,6 @@ registerCardCommands(program);
registerComputeCommands(program);
registerSkillCommands(program);
registerTradeCommands(program);
registerSwapCommands(program);

program.parse();
10 changes: 10 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"web3"
],
"dependencies": {
"@geodesics-protocol/sdk": "^0.8.2",
"@privy-io/node": "^0.11.0",
"@virtuals-protocol/acp-node": "^0.3.0-beta.40",
"@virtuals-protocol/acp-node-v2": "^0.1.10",
Expand Down
Loading