@thirdfy/agent-cli 0.2.59 → 0.2.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +3 -4
- package/package.json +1 -1
- package/src/runtime/providerHints.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.60] - 2026-09-05
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- basedbid buy and sell hints now cover Ethereum `1` and Robinhood Chain `4663` as well as Base. Buy still spends native ETH on the target chain. Pairs with `thirdfy-mcp` **0.0.108** and Thirdfy API **3.14.22**.
|
|
12
|
+
|
|
7
13
|
## [0.2.59] - 2026-09-05
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -40,11 +40,10 @@ Run without global install:
|
|
|
40
40
|
npx @thirdfy/agent-cli --help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
## What's new in v0.2.
|
|
43
|
+
## What's new in v0.2.60
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
- Venue tooling: `venue readiness`, `venue setup`, and `venue fund` for `avantis`.
|
|
45
|
+
- basedbid buy and sell are live on Base, Ethereum, and Robinhood Chain.
|
|
46
|
+
- Buy spends native ETH on the target chain. `tokenAddress` is the listing, not the funding token.
|
|
48
47
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
49
48
|
|
|
50
49
|
## Quick start
|
package/package.json
CHANGED
|
@@ -720,7 +720,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
720
720
|
],
|
|
721
721
|
supportedChains: [8453, 1, 4663],
|
|
722
722
|
laneCompatibility:
|
|
723
|
-
'basedbid launchpad. Discovery is read-only. LBP and flash create are write-enabled on 8453, 1, and 4663. Buy
|
|
723
|
+
'basedbid launchpad. Discovery is read-only. LBP and flash create, buy, and sell are write-enabled on 8453, 1, and 4663. Buy spends native ETH on the target chain. Board, fee claim, and hook writes stay fail-closed. Console uses the existing preview-then-confirm path. No extra venue credential.',
|
|
724
724
|
example:
|
|
725
725
|
'thirdfy-agent run --action basedbid_get_tokens --params \'{"chainId":8453,"limit":10}\' --provider basedbid --json',
|
|
726
726
|
};
|