@swapkit/core 4.4.27 → 4.4.29
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/types/index.d.ts +5 -5
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -1822,7 +1822,7 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
|
|
|
1822
1822
|
validateAddress: typeof import("@swapkit/toolboxes/evm").validateEVMAddress;
|
|
1823
1823
|
};
|
|
1824
1824
|
NEAR: ChainWallet<Chain.Near> & {
|
|
1825
|
-
broadcastTransaction: (signedTransaction: import("@near-js/transactions").SignedTransaction) => Promise<
|
|
1825
|
+
broadcastTransaction: (signedTransaction: import("@near-js/transactions").SignedTransaction) => Promise<string>;
|
|
1826
1826
|
callFunction: (params: import("@swapkit/toolboxes/near/types").NearFunctionCallParams) => Promise<string>;
|
|
1827
1827
|
createAction: (params: import("@swapkit/toolboxes/near/types").CreateActionParams) => Promise<import("@near-js/transactions").Action>;
|
|
1828
1828
|
createContract: <T_1 extends import("@near-js/accounts").Contract = import("@near-js/accounts").Contract>(contractInterface: import("@swapkit/toolboxes/near/types").NearContractInterface) => Promise<T_1>;
|
|
@@ -1841,9 +1841,9 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
|
|
|
1841
1841
|
getSignerFromPhrase: typeof import("@swapkit/toolboxes/near/index").getNearSignerFromPhrase;
|
|
1842
1842
|
getSignerFromPrivateKey: typeof import("@swapkit/toolboxes/near/index").getNearSignerFromPrivateKey;
|
|
1843
1843
|
serializeTransaction: (transaction: import("@near-js/transactions").Transaction) => string;
|
|
1844
|
-
signAndBroadcastTransaction: (transaction: import("@near-js/transactions").Transaction) => Promise<
|
|
1844
|
+
signAndBroadcastTransaction: (transaction: import("@near-js/transactions").Transaction) => Promise<string>;
|
|
1845
1845
|
signTransaction: (transaction: import("@near-js/transactions").Transaction) => Promise<import("@near-js/transactions").SignedTransaction>;
|
|
1846
|
-
transfer: (params: import("@swapkit/toolboxes/near/types").NearTransferParams) => Promise<
|
|
1846
|
+
transfer: (params: import("@swapkit/toolboxes/near/types").NearTransferParams) => Promise<string>;
|
|
1847
1847
|
validateAddress: typeof import("@swapkit/toolboxes/near/index").validateNearAddress;
|
|
1848
1848
|
};
|
|
1849
1849
|
NOBLE: ChainWallet<Chain.Noble> & {
|
|
@@ -2322,8 +2322,8 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
|
|
|
2322
2322
|
phrase: string;
|
|
2323
2323
|
derivationPath: string;
|
|
2324
2324
|
}) => string;
|
|
2325
|
-
signAndBroadcastTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT) => Promise<string>;
|
|
2326
|
-
signTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT) => Promise<import("@swapkit/utxo-signer").ZcashTransaction>;
|
|
2325
|
+
signAndBroadcastTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT | import("@swapkit/utxo-signer").ZcashPSBT) => Promise<string>;
|
|
2326
|
+
signTransaction: (tx: import("@swapkit/utxo-signer").ZcashTransaction | import("@swapkit/utxo-signer").PCZT | import("@swapkit/utxo-signer").ZcashPSBT) => Promise<import("@swapkit/utxo-signer").ZcashTransaction>;
|
|
2327
2327
|
transfer: ({ recipient, assetValue, feeOptionKey, ...rest }: import("@swapkit/toolboxes/utxo/types").UTXOTransferParams) => Promise<string>;
|
|
2328
2328
|
validateAddress: typeof import("@swapkit/toolboxes/utxo/index").validateZcashAddress;
|
|
2329
2329
|
accumulative: typeof import("@swapkit/toolboxes/utxo/index").accumulative;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "swapkit-dev",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"@swapkit/helpers": "4.13.
|
|
5
|
-
"@swapkit/plugins": "4.6.
|
|
6
|
-
"@swapkit/toolboxes": "4.
|
|
7
|
-
"@swapkit/wallet-core": "4.3.
|
|
4
|
+
"@swapkit/helpers": "4.13.11",
|
|
5
|
+
"@swapkit/plugins": "4.6.43",
|
|
6
|
+
"@swapkit/toolboxes": "4.16.0",
|
|
7
|
+
"@swapkit/wallet-core": "4.3.2"
|
|
8
8
|
},
|
|
9
9
|
"description": "SwapKit - Core",
|
|
10
10
|
"devDependencies": { "@stricahq/typhonjs": "3.1.0", "cosmjs-types": "0.11.0", "ts-pattern": "5.9.0" },
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"type-check:go": "tsgo"
|
|
27
27
|
},
|
|
28
28
|
"type": "module",
|
|
29
|
-
"version": "4.4.
|
|
29
|
+
"version": "4.4.29"
|
|
30
30
|
}
|