Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Aug 21, 2024
1 parent c6cea5a commit da990a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/src/TokenHome/ERC20TokenHomeUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ contract ERC20TokenHomeUpgradeable is IERC20TokenHome, TokenHome {
/**
* @notice Initializes the token TokenHome instance to send ERC20 tokens to TokenRemote instances on other chains.
* @param teleporterRegistryAddress The current blockchain ID's Teleporter registry
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/upgrades
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/registry
* @param teleporterManager Address that manages this contract's integration with the
* Teleporter registry and Teleporter versions.
* @param tokenAddress The ERC20 token contract address to be transferred by the home.
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/TokenHome/NativeTokenHomeUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ contract NativeTokenHomeUpgradeable is INativeTokenHome, TokenHome {
* @notice Initializes this token TokenHome instance to send native tokens to TokenRemote instances on other chains.
* Always uses a {tokenDecimals} value of 18 since it is the denomination of the native token of EVM instances.
* @param teleporterRegistryAddress The current blockchain ID's Teleporter registry
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/upgrades
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/registry
* @param teleporterManager Address that manages this contract's integration with the
* Teleporter registry and Teleporter versions.
* @param wrappedTokenAddress The wrapped native token contract address of the native asset
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/TokenRemote/interfaces/ITokenRemote.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {TeleporterFeeInfo} from "@teleporter/ITeleporterMessenger.sol";
/**
* @notice Settings for constructing a {ITokenRemote} contract.
* @param teleporterRegistryAddress The current blockchain ID's Teleporter registry
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/upgrades.
* address. See here for details: https://github.com/ava-labs/teleporter/tree/main/contracts/teleporter/registry.
* @param teleporterManager Address that manages this contract's integration with the
* Teleporter registry and Teleporter versions.
* @param tokenHomeBlockchainID The blockchain ID of the associated TokenHome instance.
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/utils/SafeERC20TransferFrom.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {SafeERC20} from "@openzeppelin/contracts@5.0.2/token/ERC20/utils/SafeERC
/**
* @dev Provides a wrapper used for calling an ERC20 transferFrom method to receive tokens to a contract
* from a specified sender. Differs from the "SafeERC20TransferFrom" implementation found here
* https://github.com/ava-labs/teleporter/blob/main/contracts/teleporter/SafeERC20TransferFrom.sol in that
* https://github.com/ava-labs/teleporter/blob/main/contracts/utilities/SafeERC20TransferFrom.sol in that
* it supports passing arbitrary sender address values, allowing its use in ERC-2771 compliant meta-transactions.
*
* Checks the balance of the contract using the library before and after the call to safeTransferFrom, and
Expand Down
5 changes: 2 additions & 3 deletions tests/local/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,18 +85,17 @@ var _ = ginkgo.BeforeSuite(func() {
teleporterContractAddress,
fundedKey,
)
LocalNetworkInstance.SetTeleporterContractAddress(teleporterContractAddress)

LocalNetworkInstance.SetTeleporterContractAddress(teleporterContractAddress)
LocalNetworkInstance.DeployTeleporterRegistryContracts(teleporterContractAddress, fundedKey)
log.Info("Set up ginkgo before suite")

ginkgo.AddReportEntry(
"network directory with node logs & configs; useful in the case of failures",
LocalNetworkInstance.Dir(),
ginkgo.ReportEntryVisibilityFailureOrVerbose,
)

log.Info("Set up ginkgo before suite")
log.Info("Finished ginkgo before suite set up")
})

var _ = ginkgo.AfterSuite(func() {
Expand Down

0 comments on commit da990a6

Please sign in to comment.