I saw a lot of issues on this same problem and tried them all but it still doesnt solve the callback issue for me.
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol";
import "@chainlink/contracts/src/v0.6/vendor/SafeMathChainlink.sol";
contract FundMe {
using SafeMathChainlink for uint256;
error message doesn't go away for me
this is my brownie-config.yaml file
dependencies:
# -<organization/repo>@<version>
- smartcontractkit/chainlink-brownie-contracts@1.1.1
compiler:
solc:
remappings:
- "@chainlink=smartcontractkit/chainlink-brownie-contracts@1.1.1"
after that I compiled and it was successful but the errors wouldnt go away. brownie-compile
Any help on this would be EPIC. Thank you in advance