diff --git a/packages/address-table/contracts/ArbitrumVIP.sol b/packages/address-table/contracts/ArbitrumVIP.sol index fdf7e59..70df841 100644 --- a/packages/address-table/contracts/ArbitrumVIP.sol +++ b/packages/address-table/contracts/ArbitrumVIP.sol @@ -16,7 +16,7 @@ contract ArbitrumVIP { } function addVIPPoints(uint256 addressIndex) external { - // retreive address from address table + // retrieve address from address table address addressFromTable = arbAddressTable.lookupIndex(addressIndex); arbitrumVIPPoints[addressFromTable]++; diff --git a/packages/address-table/scripts/exec.js b/packages/address-table/scripts/exec.js index ff0e28d..434f161 100644 --- a/packages/address-table/scripts/exec.js +++ b/packages/address-table/scripts/exec.js @@ -63,7 +63,7 @@ async function main() { const addressIndex = await arbAddressTable.lookup(myAddress) /** - * From here on out we can use this index instead of our address as a paramter into any contract with affordances to look up out address in the address data. + * From here on out we can use this index instead of our address as a parameter into any contract with affordances to look up out address in the address data. */ const txnRes = await arbitrumVIP.addVIPPoints(addressIndex) diff --git a/packages/token-withdraw/scripts/exec.js b/packages/token-withdraw/scripts/exec.js index 8c09fb7..a43ba20 100644 --- a/packages/token-withdraw/scripts/exec.js +++ b/packages/token-withdraw/scripts/exec.js @@ -114,7 +114,7 @@ const main = async () => { const l2Result = await depositRec.waitForL2(l2Provider) console.log(`Setup complete`) /** - * The `complete` boolean tells us if the l1 to l2 message was successul + * The `complete` boolean tells us if the l1 to l2 message was successful */ l2Result.complete ? console.log(