@1claw/sdk 0.35.0 → 0.36.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/README.md +1 -1
- package/dist/generated/api-types.d.ts +28 -0
- package/dist/generated/api-types.d.ts.map +1 -1
- package/dist/types.d.ts +28 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -470,7 +470,7 @@ const { data } = await client.agents.create({
|
|
|
470
470
|
injection_threshold: 0.7,
|
|
471
471
|
|
|
472
472
|
// Model restrictions
|
|
473
|
-
allowed_models: ["gpt-4o-mini", "claude-sonnet-
|
|
473
|
+
allowed_models: ["gpt-4o-mini", "claude-sonnet-5"], // Whitelist specific models
|
|
474
474
|
denied_models: ["gpt-3.5-turbo"], // Blacklist models
|
|
475
475
|
allowed_providers: ["openai", "anthropic"], // Restrict providers
|
|
476
476
|
|
|
@@ -5334,6 +5334,20 @@ export interface components {
|
|
|
5334
5334
|
* @default false
|
|
5335
5335
|
*/
|
|
5336
5336
|
gasless: boolean;
|
|
5337
|
+
/** @description Non-EVM (XRP): destination tag for exchange deposits */
|
|
5338
|
+
destination_tag?: number;
|
|
5339
|
+
/** @description Non-EVM (XRP, Solana): optional memo */
|
|
5340
|
+
memo?: string;
|
|
5341
|
+
/** @description Non-EVM (Bitcoin): override the fetched fee rate (sat/vByte) */
|
|
5342
|
+
fee_rate_sat_per_vbyte?: number;
|
|
5343
|
+
/** @description Non-EVM (Tron): TRC-20 energy fee limit in sun */
|
|
5344
|
+
fee_limit_sun?: number;
|
|
5345
|
+
/** @description Non-EVM (Solana SPL / Tron TRC-20): token mint or contract address; omit for native transfer */
|
|
5346
|
+
token_mint?: string;
|
|
5347
|
+
/** @description Non-EVM (Solana, Tron): token decimals (default 6) */
|
|
5348
|
+
token_decimals?: number;
|
|
5349
|
+
/** @description Non-EVM (Cardano): transaction time-to-live (absolute slot) */
|
|
5350
|
+
ttl?: number;
|
|
5337
5351
|
};
|
|
5338
5352
|
SignTransactionRequest: {
|
|
5339
5353
|
/** @description Destination address (0x-prefixed) */
|
|
@@ -5353,6 +5367,20 @@ export interface components {
|
|
|
5353
5367
|
max_priority_fee_per_gas?: string;
|
|
5354
5368
|
/** @default false */
|
|
5355
5369
|
simulate_first: boolean;
|
|
5370
|
+
/** @description Non-EVM (XRP): destination tag for exchange deposits */
|
|
5371
|
+
destination_tag?: number;
|
|
5372
|
+
/** @description Non-EVM (XRP, Solana): optional memo */
|
|
5373
|
+
memo?: string;
|
|
5374
|
+
/** @description Non-EVM (Bitcoin): override the fetched fee rate (sat/vByte) */
|
|
5375
|
+
fee_rate_sat_per_vbyte?: number;
|
|
5376
|
+
/** @description Non-EVM (Tron): TRC-20 energy fee limit in sun */
|
|
5377
|
+
fee_limit_sun?: number;
|
|
5378
|
+
/** @description Non-EVM (Solana SPL / Tron TRC-20): token mint or contract address; omit for native transfer */
|
|
5379
|
+
token_mint?: string;
|
|
5380
|
+
/** @description Non-EVM (Solana, Tron): token decimals (default 6) */
|
|
5381
|
+
token_decimals?: number;
|
|
5382
|
+
/** @description Non-EVM (Cardano): transaction time-to-live (absolute slot) */
|
|
5383
|
+
ttl?: number;
|
|
5356
5384
|
};
|
|
5357
5385
|
SignTransactionResponse: {
|
|
5358
5386
|
/** @description Raw signed transaction hex (always included) */
|