All Projects → PatrickAlphaC → brownie_simple_storage

PatrickAlphaC / brownie_simple_storage

Licence: other
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language
solidity
1140 projects
shell
77523 projects

Projects that are alternatives of or similar to brownie simple storage

chainlink-mix
Working with smart contracts with eth-brownie, python, and Chainlink.
Stars: ✭ 447 (+1931.82%)
Mutual labels:  chainlink, brownie
ape-safe
gnosis safe tx builder
Stars: ✭ 211 (+859.09%)
Mutual labels:  brownie
kotal
Blockchain Kubernetes Operator
Stars: ✭ 137 (+522.73%)
Mutual labels:  chainlink
hardhat-starter-kit
A repo for boilerplate code for testing, deploying, and shipping chainlink solidity code.
Stars: ✭ 730 (+3218.18%)
Mutual labels:  chainlink
dungeons-and-dragons-nft
#chainlink #nft
Stars: ✭ 583 (+2550%)
Mutual labels:  chainlink
ChainlinkEthFailover
Use multiple Ethereum nodes for redundancy on your Chainlink node
Stars: ✭ 25 (+13.64%)
Mutual labels:  chainlink
react-mix
Everything you need to use React with Brownie!
Stars: ✭ 58 (+163.64%)
Mutual labels:  brownie
Chainlink
node of the decentralized oracle network, bridging on and off-chain computation
Stars: ✭ 2,680 (+12081.82%)
Mutual labels:  chainlink
full-blockchain-solidity-course-py
Ultimate Solidity, Blockchain, and Smart Contract - Beginner to Expert Full Course | Python Edition
Stars: ✭ 5,349 (+24213.64%)
Mutual labels:  chainlink
chainlink defi
Build a defi yield farmable dApp. Get started here.
Stars: ✭ 134 (+509.09%)
Mutual labels:  chainlink
brownie-token-tester
Helper objects for generating ERC20s while testing a Brownie project.
Stars: ✭ 25 (+13.64%)
Mutual labels:  brownie
nftoken
A non-fungible implementation of the ERC20 standard, allowing scalable NFT transfers with fixed gas costs.
Stars: ✭ 59 (+168.18%)
Mutual labels:  brownie
ape
The smart contract development tool for Pythonistas, Data Scientists, and Security Professionals
Stars: ✭ 339 (+1440.91%)
Mutual labels:  brownie
  1. Install Brownie
python3 -m pip install --user pipx
python3 -m pipx ensurepath
# restart your terminal
pipx install eth-brownie

Or, if that doesn't work, via pip

pip install eth-brownie
  1. Clone this
git clone https://github.com/PatrickAlphaC/brownie_simple_storage
cd brownie_simple_storage
  1. Add your metamask to the brownie accounts at the 0 index
brownie accounts new 0

You'll be prompted to add your private key: 0xa5555555555555a09215803a6b540f1e054797eeda2eec6d49076760d48e7589 And a password, and you can see your new added account with brownie accounts list

Or, export your PRIVATE_KEY as an environment variable, and uncomment the line:

# account = accounts.add(config["wallets"]["from_key"])

and comment the line:

account = accounts[0]
  1. Testing
brownie test
  1. Running scripts
brownie run scripts/deploy.py
  1. Deploy to a testnet

Add your WEB3_INFURA_PROJECT_ID from Infura to your .env and run

source .env

To set your environment variable. You can check you've done it correctly with:

echo $WEB3_INFURA_PROJECT_ID

Change the deploy_simple_storage function in deploy.py to look like:

account = accounts.add(config["wallets"]["from_key"])
# account = accounts.load("id")
# account = accounts[0]

Then run:

brownie run scripts/deploy.py --network rinkeby

Make sure you have some testnet ETH. You can find faucets in the Chainlink Documenatation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].