In lesson 6 I am at 5:15:54 where Patrick deploys the FundMe contract to Rinkeby. It compiled fine but when I tried to deploy to Rinkeby (below) it gives me no transaction details and I also do not see a deployment, only this:
Trell@Kentrells-MBP brownie_fund_me % brownie run scripts/deploy.py --network rinkeby
Brownie v1.16.4 - Python development framework for Ethereum
BrownieFundMeProject is the active project.
Running 'scripts/deploy.py::main'...
Trell@Kentrells-MBP brownie_fund_me %
Please note that I do see a change in my scripts as this pycache is created. not too sure what it does.:
deploy.py
from brownie import FundMe
from scripts.helpful_scripts import get_account
def deploy_fund_me():
account = get_account()
fund_me = FundMe.deploy({"from": account})
print(f"Contract deployed to {fund_me.address}")
def main():
deploy_fund_me
helpful_scripts.py
from brownie import network, config, accounts
def get_account():
if network.show_active() == "development":
return accounts[0]
else:
return accounts.add(config["wallets"]["from_key"])
In lesson 6 I am at 5:15:54 where Patrick deploys the FundMe contract to Rinkeby. It compiled fine but when I tried to deploy to Rinkeby (below) it gives me no transaction details and I also do not see a deployment, only this:
Please note that I do see a change in my scripts as this pycache is created. not too sure what it does.:
deploy.py
helpful_scripts.py
brownie-config.yaml
.env
.env returned these problems but that was a non-issue when deploying SimpleStorage in previous lesson.
Finally here is a picture of my sidebar. I have been stuck for 2 days and 6+ hours and would love some assistance.