@t2000/sdk 1.17.1 → 1.18.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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -242,9 +242,10 @@ declare function buildSendTx({ client, address, to, amount, asset, }: {
|
|
|
242
242
|
}): Promise<Transaction>;
|
|
243
243
|
/**
|
|
244
244
|
* Fragment-appender for the chain-mode send leg of SPEC 7 multi-write
|
|
245
|
-
*
|
|
246
|
-
* `addWithdrawToTx`, `addSwapToTx`) and transfers it to
|
|
247
|
-
* within the same
|
|
245
|
+
* Payment Intents. Consumes a coin reference produced by a previous
|
|
246
|
+
* appender (e.g. `addWithdrawToTx`, `addSwapToTx`) and transfers it to
|
|
247
|
+
* `recipient` within the same Payment Intent — no intermediate wallet
|
|
248
|
+
* materialization.
|
|
248
249
|
*
|
|
249
250
|
* Codifies the hand-built send leg from
|
|
250
251
|
* `scripts/smoke-spec7-withdraw-then-send.ts` (P2.1) into a typed
|
package/dist/index.d.ts
CHANGED
|
@@ -242,9 +242,10 @@ declare function buildSendTx({ client, address, to, amount, asset, }: {
|
|
|
242
242
|
}): Promise<Transaction>;
|
|
243
243
|
/**
|
|
244
244
|
* Fragment-appender for the chain-mode send leg of SPEC 7 multi-write
|
|
245
|
-
*
|
|
246
|
-
* `addWithdrawToTx`, `addSwapToTx`) and transfers it to
|
|
247
|
-
* within the same
|
|
245
|
+
* Payment Intents. Consumes a coin reference produced by a previous
|
|
246
|
+
* appender (e.g. `addWithdrawToTx`, `addSwapToTx`) and transfers it to
|
|
247
|
+
* `recipient` within the same Payment Intent — no intermediate wallet
|
|
248
|
+
* materialization.
|
|
248
249
|
*
|
|
249
250
|
* Codifies the hand-built send leg from
|
|
250
251
|
* `scripts/smoke-spec7-withdraw-then-send.ts` (P2.1) into a typed
|