diff --git a/docs/query_proxy.md b/docs/query_proxy.md index 1baedd8f2b..e74b2f7ff7 100644 --- a/docs/query_proxy.md +++ b/docs/query_proxy.md @@ -143,7 +143,7 @@ The following are the Solana call types. Both require the `chain` parameter plus - `solAccount`, requires the `account` parameter. - `solPDA`, requires the `programAddress` parameter. -The Solana account and and program address can be expressed as either a 32 byte hex string starting with "0x" or as a base 58 value. +The Solana account and program address can be expressed as either a 32 byte hex string starting with "0x" or as a base 58 value. #### Wild Card Contract Addresses diff --git a/ethereum/README.md b/ethereum/README.md index febab6c22e..c126518b37 100644 --- a/ethereum/README.md +++ b/ethereum/README.md @@ -53,7 +53,7 @@ ethereum$ MNEMONIC= ./sh/deployTokenBridgeShutdown.sh #### Generate Flattened Source -To generated the flattened source files to verify the contracts using the explorer UI +To generate the flattened source files to verify the contracts using the explorer UI ```shell ethereum$ ./sh/flatten.sh diff --git a/ethereum/contracts/Messages.sol b/ethereum/contracts/Messages.sol index c70efbb6a1..3663dac222 100644 --- a/ethereum/contracts/Messages.sol +++ b/ethereum/contracts/Messages.sol @@ -12,7 +12,7 @@ import "./libraries/external/BytesLib.sol"; contract Messages is Getters { using BytesLib for bytes; - /// @dev parseAndVerifyVM serves to parse an encodedVM and wholy validate it for consumption + /// @dev parseAndVerifyVM serves to parse an encodedVM and wholly validate it for consumption function parseAndVerifyVM(bytes calldata encodedVM) public view returns (Structs.VM memory vm, bool valid, string memory reason) { vm = parseVM(encodedVM); /// setting checkHash to false as we can trust the hash field in this case given that parseVM computes and then sets the hash field above diff --git a/terra/docs/token_upgrades.md b/terra/docs/token_upgrades.md index 570db603ae..69f9dba5e5 100644 --- a/terra/docs/token_upgrades.md +++ b/terra/docs/token_upgrades.md @@ -56,5 +56,5 @@ Currently there is no implementation of a token contract migration function that ## Historical note: -In Aug 2022, an attempt to upgrade the the token contracts was made, but failed due to the gas error: +In Aug 2022, an attempt to upgrade the token contracts was made, but failed due to the gas error: https://finder.terra.money/classic/tx/FE39E9549770F59E2AAA1C6B0B86DDF36A4C56CED0CFB0CA4C9D4CC9FBE1E5BA. A subsequent upgrade changed the code id of *new* wrapped contracts to 767, but did not perform the migration for old contracts. This means that currently (as of Dec 2023), some wrapped tokens are still on the old code id, and some (the ones deployed after Aug 2022) are on the new code. This discrepancy is fine in the current case, because it only affects the rendering of the token name (https://github.com/wormhole-foundation/wormhole/commit/c832b123fcfb017d55086cb4d71241370ed270c6).