= ({ txHash, address, amount, date }) => {
key={`latest-mints-${txHash}`}
_odd={{ backgroundColor: "gray.50" }}
sx={{ td: { borderBottom: "none" } }}
+ transform="scale(1)"
>
diff --git a/src/threshold-ts/tbtc/index.ts b/src/threshold-ts/tbtc/index.ts
index 45735dc50..b4b15dd6c 100644
--- a/src/threshold-ts/tbtc/index.ts
+++ b/src/threshold-ts/tbtc/index.ts
@@ -1028,10 +1028,10 @@ export class TBTC implements ITBTC {
}
getBitcoinTransaction = async (
- transacionHash: string
+ transactionHash: string
): Promise => {
return this._bitcoinClient.getTransaction(
- TransactionHash.from(transacionHash)
+ TransactionHash.from(transactionHash)
)
}
diff --git a/src/threshold-ts/utils/bitcoin.ts b/src/threshold-ts/utils/bitcoin.ts
index 1a5953ef5..31d90e391 100644
--- a/src/threshold-ts/utils/bitcoin.ts
+++ b/src/threshold-ts/utils/bitcoin.ts
@@ -40,7 +40,7 @@ export const isPayToScriptHashTypeAddress = (address: string): boolean => {
* Bitcoin transaction hash is stored on Ethereum in native Bitcoin
* little-endian format but to get the confirmations for this transaction we
* need to reverse its hash.
- * @param {string} txHash Transacion hash as string.
+ * @param {string} txHash Transaction hash as string.
* @return {TransactionHash} Reversed transaction hash.
*/
export const reverseTxHash = (txHash: string): TransactionHash => {
|