@cascade-fyi/sati-sdk 0.13.0 → 0.14.0
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 +7 -0
- package/README.md +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.14.0] - 2026-03-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Default RPC URLs now route through hosted Helius-backed proxy at `sati.cascade.fyi/api/rpc/:network` for zero-config mainnet access without 429 rate limits
|
|
13
|
+
- `nonTransferable` default documented as `false` (opt-in soulbound)
|
|
14
|
+
|
|
8
15
|
## [0.13.0] - 2026-03-05
|
|
9
16
|
|
|
10
17
|
### Added
|
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ const result = await sati.registerAgent({
|
|
|
42
42
|
additionalMetadata: [ // Optional key-value pairs
|
|
43
43
|
{ key: "version", value: "1.0" },
|
|
44
44
|
],
|
|
45
|
-
nonTransferable:
|
|
45
|
+
nonTransferable: false, // Default: false. Set true for soulbound (non-transferable).
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
console.log(result.mint); // Agent's token address (identity)
|
package/dist/index.cjs
CHANGED
|
@@ -5449,8 +5449,8 @@ var SatiAgentBuilder = class {
|
|
|
5449
5449
|
* @see https://github.com/cascade-protocol/sati
|
|
5450
5450
|
*/
|
|
5451
5451
|
const RPC_URLS = {
|
|
5452
|
-
mainnet: "https://api
|
|
5453
|
-
devnet: "https://api
|
|
5452
|
+
mainnet: "https://sati.cascade.fyi/api/rpc/mainnet",
|
|
5453
|
+
devnet: "https://sati.cascade.fyi/api/rpc/devnet",
|
|
5454
5454
|
localnet: "http://127.0.0.1:8899"
|
|
5455
5455
|
};
|
|
5456
5456
|
const WS_URLS = {
|
package/dist/index.mjs
CHANGED
|
@@ -5421,8 +5421,8 @@ var SatiAgentBuilder = class {
|
|
|
5421
5421
|
* @see https://github.com/cascade-protocol/sati
|
|
5422
5422
|
*/
|
|
5423
5423
|
const RPC_URLS = {
|
|
5424
|
-
mainnet: "https://api
|
|
5425
|
-
devnet: "https://api
|
|
5424
|
+
mainnet: "https://sati.cascade.fyi/api/rpc/mainnet",
|
|
5425
|
+
devnet: "https://sati.cascade.fyi/api/rpc/devnet",
|
|
5426
5426
|
localnet: "http://127.0.0.1:8899"
|
|
5427
5427
|
};
|
|
5428
5428
|
const WS_URLS = {
|