diff --git a/examples/createAndInitPool/createAndInitLBPoolV3.ts b/examples/createAndInitPool/createAndInitLBPoolV3.ts index ca637a78..2af8ba18 100644 --- a/examples/createAndInitPool/createAndInitLBPoolV3.ts +++ b/examples/createAndInitPool/createAndInitLBPoolV3.ts @@ -125,7 +125,7 @@ export async function runAgainstFork() { // Create the pool and parse the tx receipt to get the pool address const poolAddress = await createPool({ client, account }); - // Approve the cannonical permit2 contract to spend tokens that will be used for pool init + // Approve the canonical permit2 contract to spend tokens that will be used for pool init await approveSpenderOnTokens( client, account, @@ -174,7 +174,7 @@ export default async function runAgainstNetwork() { // Create the pool and parse the tx receipt to get the pool address const poolAddress = await createPool({ client, account }); - // Approve the cannonical permit2 contract to spend tokens that will be used for pool init + // Approve the canonical permit2 contract to spend tokens that will be used for pool init for (const token of amountsIn) { const tokenContract = getContract({ address: token.address, diff --git a/examples/createAndInitPool/createAndInitPoolV3.ts b/examples/createAndInitPool/createAndInitPoolV3.ts index 41099d54..b412199c 100644 --- a/examples/createAndInitPool/createAndInitPoolV3.ts +++ b/examples/createAndInitPool/createAndInitPoolV3.ts @@ -116,7 +116,7 @@ export default async function runAgainstFork() { // Create the pool and parse the tx receipt to get the pool address const poolAddress = await createPool({ client, account }); - // Approve the cannonical permit2 contract to spend tokens that will be used for pool init + // Approve the canonical permit2 contract to spend tokens that will be used for pool init await approveSpenderOnTokens( client, account, @@ -165,7 +165,7 @@ export async function runAgainstNetwork() { // Create the pool and parse the tx receipt to get the pool address const poolAddress = await createPool({ client, account }); - // Approve the cannonical permit2 contract to spend tokens that will be used for pool init + // Approve the canonical permit2 contract to spend tokens that will be used for pool init for (const token of amountsIn) { const tokenContract = getContract({ address: token.address, diff --git a/examples/removeLiquidity/removeLiquidityWithPermitSignature.ts b/examples/removeLiquidity/removeLiquidityWithPermitSignature.ts index c13d2cd7..aed7ae0f 100644 --- a/examples/removeLiquidity/removeLiquidityWithPermitSignature.ts +++ b/examples/removeLiquidity/removeLiquidityWithPermitSignature.ts @@ -60,7 +60,7 @@ async function runAgainstFork() { // prepare example by adding liquidity to the pool, so we can remove it await prepExample(rpcUrl, chainId, pool, slippage, userAccount, client); - // TODO: suppress prepExample logs to avoid poluting the console with unnecessary content + // TODO: suppress prepExample logs to avoid polluting the console with unnecessary content const bptIn: InputAmount = { rawAmount: parseEther('0.0001'), diff --git a/examples/swaps/auraBalSwap.ts b/examples/swaps/auraBalSwap.ts index 9bd06c00..da7d32ae 100644 --- a/examples/swaps/auraBalSwap.ts +++ b/examples/swaps/auraBalSwap.ts @@ -58,7 +58,7 @@ const auraBalSwap = async ({ rpcUrl, client, userAccount, chainId }) => { // Create AuraBalSwap instance which can be used to query & buildCalls const auraBalSwap = new AuraBalSwap(rpcUrl as string); - // Querys onchain to get result + // Queries onchain to get result const queryOutput = await auraBalSwap.query({ tokenIn, tokenOut,