Skip to content

Commit

Permalink
small fixes for typedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciopenia committed Sep 17, 2024
1 parent bedacf5 commit d0cd09b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/XLinkSDK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class XLinkSDK {
* - `toToken: TokenId` - The token expected on the destination chain.
* - `toAddress: string` - The recipient's address on the destination blockchain.
* - `amount: SDKNumber` - The amount of tokens to transfer.
* - `sendTransaction: // TODO.
* - `sendTransaction` - // Implementation for sending transaction from Stacks mainnet.
*
* @returns A promise that resolves with the transaction ID (`txid`) of the bridging operation.
* @throws UnsupportedBridgeRouteError - If the provided route between the source and destination
Expand Down Expand Up @@ -326,7 +326,7 @@ export class XLinkSDK {
* - `toAddress: string` - The recipient's address on the destination blockchain.
* - `toAddressScriptPubKey?: Uint8Array` - The script public key for the `toAddress`, required when the destination is a Bitcoin chain.
* - `amount: SDKNumber` - The amount of tokens to transfer.
* - `sendTransaction: // TODO.
* - `sendTransaction` - // Implementation for sending transaction from EVM chain.
*
* @returns A promise that resolves with the transaction hash (`txHash`) of the bridging operation.
* @throws UnsupportedBridgeRouteError - If the provided route between the source and destination
Expand Down Expand Up @@ -366,7 +366,7 @@ export class XLinkSDK {
* @param input - An object containing the input parameters required for claiming time-locked assets:
* - `chain: KnownChainId.EVMChain` - The ID of the EVM-compatible blockchain where the assets are locked.
* - `lockedAssetIds: string[]` - An array of IDs representing the locked assets to be claimed.
* - `sendTransaction: // TODO.
* - `sendTransaction` - // Implementation for sending transaction from EVM chain.
*
* @returns A promise that resolves with the transaction hash (`txHash`) of the claiming operation, or `undefined` if the operation fails.
* @throws UnsupportedChainError - If the provided EVM chain is unsupported or invalid.
Expand Down Expand Up @@ -421,7 +421,7 @@ export class XLinkSDK {
* - `toAddress: string` - The destination address on the target blockchain.
* - `amount: SDKNumber` - The amount of tokens to be transferred.
* - `networkFeeRate: bigint` - The fee rate for the Bitcoin network.
* - `reselectSpendableUTXOs: // TODO.
* - `reselectSpendableUTXOs` - // Implementation for reselect UTXOs.
*
* @returns A promise that resolves with an object containing the estimated transaction details:
* - `fee: SDKNumber` - The estimated transaction fee.
Expand Down

0 comments on commit d0cd09b

Please sign in to comment.