@stellar-agent/stellar 0.4.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 stellar-agent-bridge contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,494 @@
1
+ import { NetworkProfile, TestnetWallet, redactWallet } from "@stellar-agent/core";
2
+ import { xdr } from "@stellar/stellar-sdk";
3
+ export interface FriendbotResult {
4
+ funded: boolean;
5
+ hash?: string;
6
+ alreadyFunded?: boolean;
7
+ }
8
+ export interface BalanceLine {
9
+ asset: string;
10
+ balance: string;
11
+ }
12
+ export interface SubmittedPayment {
13
+ hash: string;
14
+ ledger?: number;
15
+ successful: boolean;
16
+ feeCharged?: string;
17
+ feeBid?: string;
18
+ feeStrategy?: FeeStrategy;
19
+ }
20
+ export interface SubmittedOperation {
21
+ hash: string;
22
+ ledger?: number;
23
+ successful: boolean;
24
+ feeCharged?: string;
25
+ feeBid?: string;
26
+ feeStrategy?: FeeStrategy;
27
+ }
28
+ export interface SubmittedTransaction {
29
+ hash: string;
30
+ ledger?: number;
31
+ successful: boolean;
32
+ feeCharged?: string;
33
+ }
34
+ export type FeeStrategy = "base" | "low" | "medium" | "high" | "p95";
35
+ export interface FeeStatsSummary {
36
+ source: "horizon" | "base_fee_fallback";
37
+ strategy: FeeStrategy;
38
+ perOperationFee: string;
39
+ transactionFee: string;
40
+ operationCount: number;
41
+ cached: boolean;
42
+ ledgerCapacityUsage?: string;
43
+ }
44
+ export interface BuiltPaymentTransactionXdr {
45
+ xdr: string;
46
+ source: string;
47
+ destination: string;
48
+ amount: string;
49
+ asset: string;
50
+ networkPassphrase: string;
51
+ fee: FeeStatsSummary;
52
+ }
53
+ export interface BatchPaymentItem {
54
+ destination: string;
55
+ amount: string;
56
+ asset?: string;
57
+ }
58
+ export interface SubmittedPaymentBatch extends SubmittedOperation {
59
+ operationCount: number;
60
+ payments: Array<{
61
+ destination: string;
62
+ amount: string;
63
+ asset: string;
64
+ }>;
65
+ }
66
+ export interface ClaimableBalanceRecord {
67
+ id: string;
68
+ asset: string;
69
+ amount: string;
70
+ sponsor?: string;
71
+ lastModifiedLedger?: number;
72
+ claimants: Array<{
73
+ destination: string;
74
+ predicate?: unknown;
75
+ }>;
76
+ }
77
+ export interface LiquidityPoolReserve {
78
+ asset: string;
79
+ amount: string;
80
+ }
81
+ export interface LiquidityPoolSummary {
82
+ id: string;
83
+ pagingToken?: string;
84
+ feeBp: number;
85
+ type: string;
86
+ totalTrustlines: string;
87
+ totalShares: string;
88
+ reserves: LiquidityPoolReserve[];
89
+ }
90
+ export interface LiquidityPoolPosition {
91
+ account: string;
92
+ poolId: string;
93
+ shares: string;
94
+ limit?: string;
95
+ shareOfPool?: number;
96
+ estimatedReserves?: LiquidityPoolReserve[];
97
+ pool?: LiquidityPoolSummary;
98
+ }
99
+ export interface LiquidityPoolPreflight {
100
+ action: "deposit" | "withdraw";
101
+ pool: LiquidityPoolSummary;
102
+ account?: string;
103
+ assets: string[];
104
+ currentPrice?: string;
105
+ trustlines?: {
106
+ reserveAssetsSatisfied: boolean;
107
+ poolShareSatisfied: boolean;
108
+ missing: string[];
109
+ };
110
+ deposit?: {
111
+ maxAmountA: string;
112
+ maxAmountB: string;
113
+ minPrice: string;
114
+ maxPrice: string;
115
+ estimatedShares?: string;
116
+ };
117
+ withdraw?: {
118
+ shares: string;
119
+ minAmountA: string;
120
+ minAmountB: string;
121
+ estimatedReserves?: LiquidityPoolReserve[];
122
+ };
123
+ risk: {
124
+ notes: string[];
125
+ };
126
+ }
127
+ export interface ClaimableTimestamp {
128
+ epochSeconds: string;
129
+ iso: string;
130
+ }
131
+ export interface ClaimableBalancePredicateOptions {
132
+ claimableAfter?: string | number | Date;
133
+ claimableBefore?: string | number | Date;
134
+ }
135
+ export interface ClaimableBalancePredicateSummary {
136
+ type: "unconditional" | "not_before_absolute_time" | "before_absolute_time" | "time_window";
137
+ claimableAfter?: ClaimableTimestamp;
138
+ claimableBefore?: ClaimableTimestamp;
139
+ }
140
+ export interface HorizonCollectionResult<T = unknown> {
141
+ records: T[];
142
+ next?: string;
143
+ previous?: string;
144
+ }
145
+ export interface StellarCliStatus {
146
+ available: boolean;
147
+ binary: string;
148
+ version?: string;
149
+ error?: string;
150
+ }
151
+ export declare function clearStellarSessionCache(): void;
152
+ export declare function stellarSessionCacheSnapshot(now?: number): Array<{
153
+ key: string;
154
+ expiresAt: string;
155
+ ttlMs: number;
156
+ }>;
157
+ export declare function resolveNetworkProfile(profileName: string, profiles: Record<string, NetworkProfile>): NetworkProfile;
158
+ export declare function createTestnetWallet(name: string): TestnetWallet;
159
+ export declare function publicWalletView(wallet: TestnetWallet): ReturnType<typeof redactWallet>;
160
+ export declare function fundWithFriendbot(address: string, profile?: NetworkProfile, fetchImpl?: typeof fetch): Promise<FriendbotResult>;
161
+ export declare function getBalances(address: string, profile?: NetworkProfile): Promise<BalanceLine[]>;
162
+ export declare function sendNativePayment(args: {
163
+ source: TestnetWallet;
164
+ destination: string;
165
+ amount: string;
166
+ memo?: string;
167
+ profile?: NetworkProfile;
168
+ }): Promise<SubmittedPayment>;
169
+ export declare function sendPayment(args: {
170
+ source: TestnetWallet;
171
+ destination: string;
172
+ amount: string;
173
+ asset?: string;
174
+ memo?: string;
175
+ profile?: NetworkProfile;
176
+ feeStrategy?: FeeStrategy;
177
+ noCache?: boolean;
178
+ }): Promise<SubmittedPayment>;
179
+ export declare function changeTrustline(args: {
180
+ source: TestnetWallet;
181
+ asset: string;
182
+ limit?: string;
183
+ profile?: NetworkProfile;
184
+ feeStrategy?: FeeStrategy;
185
+ noCache?: boolean;
186
+ }): Promise<SubmittedOperation & {
187
+ asset: string;
188
+ limit: string;
189
+ }>;
190
+ export declare function removeTrustline(args: {
191
+ source: TestnetWallet;
192
+ asset: string;
193
+ profile?: NetworkProfile;
194
+ }): Promise<SubmittedOperation & {
195
+ asset: string;
196
+ limit: "0";
197
+ }>;
198
+ export declare function createClaimableBalance(args: {
199
+ source: TestnetWallet;
200
+ amount: string;
201
+ asset?: string;
202
+ claimant: string;
203
+ claimants?: string[];
204
+ claimableAfter?: string | number | Date;
205
+ claimableBefore?: string | number | Date;
206
+ profile?: NetworkProfile;
207
+ feeStrategy?: FeeStrategy;
208
+ noCache?: boolean;
209
+ }): Promise<SubmittedOperation & {
210
+ asset: string;
211
+ amount: string;
212
+ claimant: string;
213
+ claimants: string[];
214
+ predicate: ClaimableBalancePredicateSummary;
215
+ claimableBalances: ClaimableBalanceRecord[];
216
+ claimableBalancesByClaimant: Record<string, ClaimableBalanceRecord[]>;
217
+ }>;
218
+ export declare function buildClaimableBalancePredicate(options?: ClaimableBalancePredicateOptions): {
219
+ predicate: xdr.ClaimPredicate;
220
+ summary: ClaimableBalancePredicateSummary;
221
+ };
222
+ export declare function resolveClaimableBalanceClaimants(claimant: string, claimants?: string[]): string[];
223
+ export declare function claimClaimableBalance(args: {
224
+ source: TestnetWallet;
225
+ balanceId: string;
226
+ profile?: NetworkProfile;
227
+ feeStrategy?: FeeStrategy;
228
+ noCache?: boolean;
229
+ }): Promise<SubmittedOperation & {
230
+ balanceId: string;
231
+ }>;
232
+ export declare function listLiquidityPools(args?: {
233
+ profile?: NetworkProfile;
234
+ assetA?: string;
235
+ assetB?: string;
236
+ account?: string;
237
+ limit?: number;
238
+ }): Promise<HorizonCollectionResult<LiquidityPoolSummary>>;
239
+ export declare function inspectLiquidityPool(args: {
240
+ poolId: string;
241
+ profile?: NetworkProfile;
242
+ }): Promise<LiquidityPoolSummary>;
243
+ export declare function liquidityPoolTrades(args: {
244
+ poolId: string;
245
+ profile?: NetworkProfile;
246
+ limit?: number;
247
+ }): Promise<HorizonCollectionResult<unknown>>;
248
+ export declare function inspectLiquidityPoolPosition(args: {
249
+ account: string;
250
+ poolId?: string;
251
+ profile?: NetworkProfile;
252
+ }): Promise<{
253
+ account: string;
254
+ positions: LiquidityPoolPosition[];
255
+ }>;
256
+ export declare function preflightLiquidityPoolDeposit(args: {
257
+ poolId: string;
258
+ maxAmountA: string;
259
+ maxAmountB: string;
260
+ minPrice: string;
261
+ maxPrice: string;
262
+ account?: string;
263
+ profile?: NetworkProfile;
264
+ }): Promise<LiquidityPoolPreflight>;
265
+ export declare function preflightLiquidityPoolWithdraw(args: {
266
+ poolId: string;
267
+ shares: string;
268
+ minAmountA: string;
269
+ minAmountB: string;
270
+ account?: string;
271
+ profile?: NetworkProfile;
272
+ }): Promise<LiquidityPoolPreflight>;
273
+ export declare function changeLiquidityPoolTrustline(args: {
274
+ source: TestnetWallet;
275
+ poolId?: string;
276
+ assetA?: string;
277
+ assetB?: string;
278
+ limit?: string;
279
+ profile?: NetworkProfile;
280
+ feeStrategy?: FeeStrategy;
281
+ noCache?: boolean;
282
+ }): Promise<SubmittedOperation & {
283
+ poolId: string;
284
+ limit: string;
285
+ }>;
286
+ export declare function submitLiquidityPoolDeposit(args: {
287
+ source: TestnetWallet;
288
+ poolId: string;
289
+ maxAmountA: string;
290
+ maxAmountB: string;
291
+ minPrice: string;
292
+ maxPrice: string;
293
+ profile?: NetworkProfile;
294
+ feeStrategy?: FeeStrategy;
295
+ noCache?: boolean;
296
+ }): Promise<SubmittedOperation & {
297
+ preflight: LiquidityPoolPreflight;
298
+ }>;
299
+ export declare function submitLiquidityPoolWithdraw(args: {
300
+ source: TestnetWallet;
301
+ poolId: string;
302
+ shares: string;
303
+ minAmountA: string;
304
+ minAmountB: string;
305
+ profile?: NetworkProfile;
306
+ feeStrategy?: FeeStrategy;
307
+ noCache?: boolean;
308
+ }): Promise<SubmittedOperation & {
309
+ preflight: LiquidityPoolPreflight;
310
+ }>;
311
+ export declare function buildPaymentTransactionXdr(args: {
312
+ sourcePublicKey: string;
313
+ destination: string;
314
+ amount: string;
315
+ asset?: string;
316
+ memo?: string;
317
+ profile?: NetworkProfile;
318
+ sourceSequence?: string;
319
+ allowRealFunds?: boolean;
320
+ feeStrategy?: FeeStrategy;
321
+ noCache?: boolean;
322
+ }): Promise<BuiltPaymentTransactionXdr>;
323
+ export declare function sendPaymentBatch(args: {
324
+ source: TestnetWallet;
325
+ payments: BatchPaymentItem[];
326
+ memo?: string;
327
+ profile?: NetworkProfile;
328
+ feeStrategy?: FeeStrategy;
329
+ noCache?: boolean;
330
+ }): Promise<SubmittedPaymentBatch>;
331
+ export declare function submitTransactionXdr(args: {
332
+ xdr: string;
333
+ profile?: NetworkProfile;
334
+ allowRealFunds?: boolean;
335
+ fetchImpl?: typeof fetch;
336
+ }): Promise<SubmittedTransaction>;
337
+ export declare function listClaimableBalances(claimant: string, profile?: NetworkProfile): Promise<ClaimableBalanceRecord[]>;
338
+ export declare function invokeContractWithStellarCli(args: {
339
+ contractId: string;
340
+ source: string;
341
+ network?: string;
342
+ rpcUrl?: string | null;
343
+ networkPassphrase?: string;
344
+ functionName: string;
345
+ contractArgs?: Record<string, string>;
346
+ stellarBinary?: string;
347
+ stellarConfigDir?: string;
348
+ noCache?: boolean;
349
+ }): Promise<StellarCliResult>;
350
+ export interface StellarCliResult {
351
+ command: string[];
352
+ stdout: string;
353
+ stderr: string;
354
+ }
355
+ export declare function parseStellarCliTransactionHash(output: string): string | undefined;
356
+ export declare function deployContractWithStellarCli(args: {
357
+ source: string;
358
+ wasm?: string;
359
+ wasmHash?: string;
360
+ alias?: string;
361
+ network?: string;
362
+ rpcUrl?: string | null;
363
+ networkPassphrase?: string;
364
+ constructorArgs?: Record<string, string>;
365
+ stellarBinary?: string;
366
+ stellarConfigDir?: string;
367
+ noCache?: boolean;
368
+ }): Promise<StellarCliResult>;
369
+ export declare function uploadContractWasmWithStellarCli(args: {
370
+ source: string;
371
+ wasm: string;
372
+ network?: string;
373
+ rpcUrl?: string | null;
374
+ networkPassphrase?: string;
375
+ stellarBinary?: string;
376
+ stellarConfigDir?: string;
377
+ noCache?: boolean;
378
+ }): Promise<StellarCliResult>;
379
+ export declare function deployAssetContractWithStellarCli(args: {
380
+ source: string;
381
+ asset: string;
382
+ alias?: string;
383
+ network?: string;
384
+ rpcUrl?: string | null;
385
+ networkPassphrase?: string;
386
+ stellarBinary?: string;
387
+ stellarConfigDir?: string;
388
+ noCache?: boolean;
389
+ }): Promise<StellarCliResult>;
390
+ export declare function assetContractIdWithStellarCli(args: {
391
+ asset: string;
392
+ network?: string;
393
+ rpcUrl?: string | null;
394
+ networkPassphrase?: string;
395
+ stellarBinary?: string;
396
+ stellarConfigDir?: string;
397
+ noCache?: boolean;
398
+ }): Promise<StellarCliResult>;
399
+ export declare function contractInfoWithStellarCli(args: {
400
+ kind: "interface" | "meta" | "env-meta" | "build" | "hash";
401
+ contractId?: string;
402
+ wasm?: string;
403
+ wasmHash?: string;
404
+ network?: string;
405
+ rpcUrl?: string | null;
406
+ networkPassphrase?: string;
407
+ stellarBinary?: string;
408
+ stellarConfigDir?: string;
409
+ noCache?: boolean;
410
+ }): Promise<StellarCliResult>;
411
+ export declare function readContractWithStellarCli(args: {
412
+ contractId?: string;
413
+ key?: string;
414
+ keyXdr?: string;
415
+ wasm?: string;
416
+ wasmHash?: string;
417
+ durability?: "persistent" | "temporary";
418
+ output?: "string" | "json" | "xdr";
419
+ network?: string;
420
+ rpcUrl?: string | null;
421
+ networkPassphrase?: string;
422
+ stellarBinary?: string;
423
+ stellarConfigDir?: string;
424
+ noCache?: boolean;
425
+ }): Promise<StellarCliResult>;
426
+ export declare function fetchContractWasmWithStellarCli(args: {
427
+ contractId?: string;
428
+ wasmHash?: string;
429
+ outFile?: string;
430
+ network?: string;
431
+ rpcUrl?: string | null;
432
+ networkPassphrase?: string;
433
+ stellarBinary?: string;
434
+ stellarConfigDir?: string;
435
+ noCache?: boolean;
436
+ }): Promise<StellarCliResult>;
437
+ export declare function extendContractWithStellarCli(args: {
438
+ source: string;
439
+ ledgersToExtend: number;
440
+ contractId?: string;
441
+ key?: string;
442
+ keyXdr?: string;
443
+ wasm?: string;
444
+ wasmHash?: string;
445
+ durability?: "persistent" | "temporary";
446
+ ttlLedgerOnly?: boolean;
447
+ network?: string;
448
+ rpcUrl?: string | null;
449
+ networkPassphrase?: string;
450
+ stellarBinary?: string;
451
+ stellarConfigDir?: string;
452
+ noCache?: boolean;
453
+ }): Promise<StellarCliResult>;
454
+ export declare function restoreContractWithStellarCli(args: {
455
+ source: string;
456
+ contractId?: string;
457
+ key?: string;
458
+ keyXdr?: string;
459
+ wasm?: string;
460
+ wasmHash?: string;
461
+ durability?: "persistent" | "temporary";
462
+ network?: string;
463
+ rpcUrl?: string | null;
464
+ networkPassphrase?: string;
465
+ stellarBinary?: string;
466
+ stellarConfigDir?: string;
467
+ noCache?: boolean;
468
+ }): Promise<StellarCliResult>;
469
+ export declare function checkStellarCli(binary?: string): Promise<StellarCliStatus>;
470
+ export declare function estimateTransactionFee(args: {
471
+ profile?: NetworkProfile;
472
+ operationCount?: number;
473
+ strategy?: FeeStrategy;
474
+ noCache?: boolean;
475
+ fetchImpl?: typeof fetch;
476
+ }): Promise<FeeStatsSummary>;
477
+ export declare function lookupTransaction(hash: string, profile: NetworkProfile): Promise<unknown>;
478
+ export declare function accountPayments(args: {
479
+ address: string;
480
+ profile: NetworkProfile;
481
+ limit?: number;
482
+ }): Promise<HorizonCollectionResult>;
483
+ export declare function accountEffects(args: {
484
+ address: string;
485
+ profile: NetworkProfile;
486
+ limit?: number;
487
+ }): Promise<HorizonCollectionResult>;
488
+ export declare function transactionEffects(args: {
489
+ hash: string;
490
+ profile: NetworkProfile;
491
+ limit?: number;
492
+ }): Promise<HorizonCollectionResult>;
493
+ export declare function latestLedger(profile: NetworkProfile): Promise<unknown>;
494
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}