verfication failed
See original GitHub issueEnvironment information
brownie
Version: 1.14.6solc
Version: 0.8.4- Python Version: 3.9.4
- OS: linux
What was wrong?
Given a contract
// contracts/hodl.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "OpenZeppelin/openzeppelin-contracts@4.0.0/contracts/utils/Context.sol";
import "OpenZeppelin/openzeppelin-contracts@4.0.0/contracts/token/ERC777/ERC777.sol";
contract TestToken is ERC777 {
constructor() ERC777("Test Token", "TEST", new address[](0)) {
_mint(msg.sender, 1e25, "", "");
}
}
brownie compile
runs perfect. But in brownie console
, verification always fails using either deploy()
or publish_source()
.
How can it be fixed?
I don’t know how to fix this.
Issue Analytics
- State:
- Created 2 years ago
- Comments:9
Top Results From Across the Web
how to solve "Verification Failed!… | Apple Developer Forums
Go to appleid.apple.com, edit & disable the two-factor authentication in security. Signout from icloud in phone and re-login..works!!! Posted 5 ...
Read more >(100% Works) How to Fix Apple ID Verification Failed - Mobitrix
Part 1: Check Your iPhone When Apple ID Verification Fails ; 1. Are You Connected to the Internet? Check Your Internet Connection ;...
Read more >Fix: Verification failed 'There was an error connecting to Apple ...
Fix: Verification failed 'There was an error connecting to Apple ID Server' · 1. Update the Time & Date to Correct Values ·...
Read more >How To Fix The Apple ID Verification Failed Error - SlashGear
How To Fix The Apple ID Verification Failed Error · 1. Check and, if necessary, update the time and date on your phone....
Read more >How To Fix The Apple ID Verification Failed Error?
How To Fix The Apple ID Verification Failed Error? · Method 1: Attempt a Re-login · Method 2: Restart Your Device and Network...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have the same issue. Using solc 0.8.3 instead of 0.8.4 seems to have fixed. Guessing this is related to the issue that makes coverage reports fail on 0.8.4
Possible related issue #1604