@omnity/ree-client-ts-sdk 0.7.9 → 0.8.1
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/dist/index.cjs.js +21 -21
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +2978 -2930
- package/dist/react.cjs.js +1 -1
- package/dist/react.d.ts +3 -1
- package/dist/react.es.js +31 -30
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -206,10 +206,11 @@ export declare class ReeClient {
|
|
|
206
206
|
* @param params.involvedRuneId - Optional rune ID for rune swaps
|
|
207
207
|
* @returns Transaction instance
|
|
208
208
|
*/
|
|
209
|
-
createTransaction({ address, paymentAddress, publicKey, feeRate, mergeSelfRuneBtcOutputs, clientInfo, manualBuild, }: {
|
|
209
|
+
createTransaction({ address, paymentAddress, publicKey, paymentPublicKey, feeRate, mergeSelfRuneBtcOutputs, clientInfo, manualBuild, }: {
|
|
210
210
|
address: string;
|
|
211
211
|
paymentAddress: string;
|
|
212
212
|
publicKey?: string;
|
|
213
|
+
paymentPublicKey?: string;
|
|
213
214
|
feeRate?: number;
|
|
214
215
|
mergeSelfRuneBtcOutputs?: boolean;
|
|
215
216
|
clientInfo?: string;
|
|
@@ -456,6 +457,7 @@ export declare interface TransactionConfig {
|
|
|
456
457
|
address: string;
|
|
457
458
|
paymentAddress: string;
|
|
458
459
|
publicKey?: string;
|
|
460
|
+
paymentPublicKey?: string;
|
|
459
461
|
clientInfo?: string;
|
|
460
462
|
/** Optional manual fee rate in satoshis per virtual byte */
|
|
461
463
|
feeRate?: number;
|