Skip to content

Commit 45112c7

Browse files
committed
Merge branch 'master' into update-to-arb-sdk-4
2 parents 99c0af9 + dc14c7a commit 45112c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/address-table/contracts/ArbitrumVIP.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contract ArbitrumVIP {
1616
}
1717

1818
function addVIPPoints(uint256 addressIndex) external {
19-
// retreive address from address table
19+
// retrieve address from address table
2020
address addressFromTable = arbAddressTable.lookupIndex(addressIndex);
2121

2222
arbitrumVIPPoints[addressFromTable]++;

packages/address-table/scripts/exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async function main() {
6363
const addressIndex = await arbAddressTable.lookup(myAddress)
6464

6565
/**
66-
* 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.
66+
* 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.
6767
*/
6868

6969
const txnRes = await arbitrumVIP.addVIPPoints(addressIndex)

packages/token-withdraw/scripts/exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const main = async () => {
114114
const l2Result = await depositRec.waitForL2(l2Provider)
115115
console.log(`Setup complete`)
116116
/**
117-
* The `complete` boolean tells us if the l1 to l2 message was successul
117+
* The `complete` boolean tells us if the l1 to l2 message was successful
118118
*/
119119
l2Result.complete
120120
? console.log(

0 commit comments

Comments
 (0)