We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a2fc0 commit dfcecd2Copy full SHA for dfcecd2
packages/apps/ability-hyperliquid/src/lib/ability-helpers/send-deposit-tx.ts
@@ -96,8 +96,8 @@ export const sendDepositTx = async ({
96
{ waitForResponse: true, name: '[sendDepositTx] Deposit tx sender' },
97
async () => {
98
try {
99
- const uniswapRpcProvider = new ethers.providers.StaticJsonRpcProvider(rpcUrl);
100
- const receipt = await uniswapRpcProvider.sendTransaction(signedSwapTx);
+ const rpcProvider = new ethers.providers.StaticJsonRpcProvider(rpcUrl);
+ const receipt = await rpcProvider.sendTransaction(signedSwapTx);
101
return JSON.stringify({
102
status: 'success',
103
txHash: receipt.hash,
0 commit comments