Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pools to ignore filter #558

Merged
merged 4 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 104 additions & 0 deletions balancer-js/examples/swaps/swapDebug.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/**
* Helper example to facilitate swap debugging within the SDK
*
* How to run:
* yarn example examples/swaps/swapDebug.ts
*/
import { ADDRESSES } from '@/test/lib/constants';
import { FORK_NODES, RPC_URLS, forkSetup } from '@/test/lib/utils';
import { BalancerSDK, Network } from '@balancer-labs/sdk';
import { formatFixed } from '@ethersproject/bignumber';

const network = Network.MAINNET;
const rpcUrl = RPC_URLS[network];
const sdk = new BalancerSDK({
network,
rpcUrl,
});

const tokenIn = ADDRESSES[network].BAL8020BPT;
const tokenOut = ADDRESSES[network].auraBal;
const amount = String(BigInt(1000e18)); // 1000 eth

const { swaps } = sdk;
const erc20Out = sdk.contracts.ERC20(tokenOut.address, sdk.provider);

async function swap() {
const signer = sdk.provider.getSigner();
const account = await signer.getAddress();

await forkSetup(
signer,
[tokenIn.address],
[tokenIn.slot],
[amount],
FORK_NODES[network]
);

// Finding a trading route rely on on-chain data.
// fetchPools will fetch the current data from the subgraph.
// Let's fetch just 5 pools with highest liquidity of tokenOut.
await swaps.fetchPools({
first: 5,
where: {
swapEnabled: {
eq: true,
},
tokensList: {
contains: [tokenOut.address],
},
},
orderBy: 'totalLiquidity',
orderDirection: 'desc',
});

// Set exectution deadline to 60 seconds from now
const deadline = String(Math.ceil(Date.now() / 1000) + 60);

// Avoid getting rekt by setting low slippage from expected amounts out, 10 bsp = 0.1%
const maxSlippage = 10;

// Building the route payload
const payload = await swaps.buildRouteExactIn(
account,
account,
tokenIn.address,
tokenOut.address,
amount,
{
maxSlippage,
deadline,
}
);

// Extract parameters required for sendTransaction
const { to, data, value } = payload;

// Execution with ethers.js
try {
const balanceBefore = await erc20Out.balanceOf(account);

await (
await signer.sendTransaction({
to,
data,
value,
gasLimit: 8e6,
})
).wait();

// check delta
const balanceAfter = await erc20Out.balanceOf(account);

console.log(
`Amount of tokenOut received: ${formatFixed(
balanceAfter.sub(balanceBefore),
tokenOut.decimals
)}`
);
} catch (err) {
console.log(err);
}
}

swap();
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SubgraphArgsFormatter,
} from '@/lib/graphql/args-builder';

import { isSameAddress } from '@/lib/utils';

Check warning on line 22 in balancer-js/src/modules/sor/pool-data/subgraphPoolDataService.ts

View workflow job for this annotation

GitHub Actions / lint

'isSameAddress' is defined but never used
import { Logger } from '@/lib/utils/logger';

// eslint-disable-next-line @typescript-eslint/no-explicit-any
Expand Down Expand Up @@ -76,8 +76,8 @@

const filteredPools = pools.filter((p) => {
if (!this.network.poolsToIgnore) return true;
const index = this.network.poolsToIgnore.findIndex((addr) =>
isSameAddress(addr, p.address)
const index = this.network.poolsToIgnore.findIndex(
(id) => id.toLowerCase() === p.id.toLowerCase()
);
return index === -1;
});
Expand Down
2 changes: 1 addition & 1 deletion balancer-js/src/test/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const RPC_URLS: Record<number, string> = {
};

export const FORK_NODES: Record<number, string> = {
[Network.MAINNET]: `${process.env.ALCHEMY_URL}`,
[Network.MAINNET]: `${process.env.RPC_URL_MAINNET}`,
[Network.GOERLI]: `${process.env.ALCHEMY_URL_GOERLI}`,
[Network.POLYGON]: `${process.env.ALCHEMY_URL_POLYGON}`,
[Network.ARBITRUM]: `${process.env.ALCHEMY_URL_ARBITRUM}`,
Expand Down
Loading