You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiler run failed:
Error (2904): Declaration "Base" not found in"lib/wormhole-solidity-sdk/src/WormholeRelayerSDK.sol" (referenced as "./WormholeRelayerSDK.sol").
--> lib/wormhole-solidity-sdk/src/TokenBase.sol:8:1:
|
8 | import {Base} from "./WormholeRelayerSDK.sol";
Basically, in the file ./WormholeRelayerSDK.sol, the line import {Base} from "./Base.sol"; is causing an error. However, I checked, and I can't figure out what's wrong. The contract exists, and the import seems correct.
In order to solve this issue I'm just importing TokenBase.sol instead of WormholeRelayerSDK.sol but it should be giving an error by just importing the WormholeRelayerSDK.sol
The text was updated successfully, but these errors were encountered:
I'm participating in SIGMA Sprint, and to perform cross-chain transfers of ERC-20 tokens, I'm following the tutorial from the documentation.
Framework:
Command run:
To install the Wormhole Solidity SDK, I'm using Git submodules.
Cuándo creo el contrato sender me esta dando error al compilar.
The error I got is as follows:
Basically, in the file
./WormholeRelayerSDK.sol
, the lineimport {Base} from "./Base.sol";
is causing an error. However, I checked, and I can't figure out what's wrong. The contract exists, and the import seems correct.In order to solve this issue I'm just importing
TokenBase.sol
instead ofWormholeRelayerSDK.sol
but it should be giving an error by just importing theWormholeRelayerSDK.sol
The text was updated successfully, but these errors were encountered: