Skip to content

Commit dfcecd2

Browse files
committed
fix: remove mention of uniswap in send deposit tx
1 parent d2a2fc0 commit dfcecd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/apps/ability-hyperliquid/src/lib/ability-helpers/send-deposit-tx.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ export const sendDepositTx = async ({
9696
{ waitForResponse: true, name: '[sendDepositTx] Deposit tx sender' },
9797
async () => {
9898
try {
99-
const uniswapRpcProvider = new ethers.providers.StaticJsonRpcProvider(rpcUrl);
100-
const receipt = await uniswapRpcProvider.sendTransaction(signedSwapTx);
99+
const rpcProvider = new ethers.providers.StaticJsonRpcProvider(rpcUrl);
100+
const receipt = await rpcProvider.sendTransaction(signedSwapTx);
101101
return JSON.stringify({
102102
status: 'success',
103103
txHash: receipt.hash,

0 commit comments

Comments
 (0)