Skip to content

Commit 82cd4e4

Browse files
committed
fix(src): rename setupAndInitializeTokens function to setUpAndInitializeTokens for consistency
1 parent 3c750d2 commit 82cd4e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/developer-hub-javascript/uniswapV3Wrapper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async function deployAndVerifyContract() {
5050
}
5151

5252
// 7. Function to setup and initialize tokens
53-
async function setupAndInitializeTokens() {
53+
async function setUpAndInitializeTokens() {
5454
const accounts = await web3.eth.getAccounts();
5555
const deployer = accounts[0];
5656

@@ -212,7 +212,7 @@ async function main() {
212212
await deployAndVerifyContract();
213213

214214
const { deployer, usdt0, fxrp, initialUsdt0Balance, initialFxrpBalance } =
215-
await setupAndInitializeTokens();
215+
await setUpAndInitializeTokens();
216216

217217
await verifyPoolAndLiquidity(uniswapV3Wrapper);
218218

0 commit comments

Comments
 (0)