Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rae-ralston/solidity-intro-first-contract
OAKLAND BLOCKCHAIN DEVELOPERS: A class going over the basics of the solidity language & developing/deploying your first contract.
https://github.com/rae-ralston/solidity-intro-first-contract
dapp ethereum ethereum-dapp my-first-dapp solidity solidity-contracts solidity-language
Last synced: about 1 month ago
JSON representation
OAKLAND BLOCKCHAIN DEVELOPERS: A class going over the basics of the solidity language & developing/deploying your first contract.
- Host: GitHub
- URL: https://github.com/rae-ralston/solidity-intro-first-contract
- Owner: rae-ralston
- License: mit
- Created: 2017-09-18T20:43:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-06T22:53:10.000Z (about 7 years ago)
- Last Synced: 2024-09-30T10:22:23.661Z (about 2 months ago)
- Topics: dapp, ethereum, ethereum-dapp, my-first-dapp, solidity, solidity-contracts, solidity-language
- Homepage: http://www.blockchaindevelopers.io
- Size: 1.19 MB
- Stars: 6
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Intro to Solidity & Writing/Deploying your First Contract
For Oakland Blockchain Developers: A class going over the basics of the solidity language & developing/deploying your first contract. Video coming soon.
**October 2017**: Web3 1.0 is only in beta so I made two versions of the instructions. In the talk I walk though the beta information, figuring I'd rather be working forward than backward. If you want to follow along with me
- [Web3 v1.0-beta Instructions](https://github.com/rachel-ftw/solidity-intro-first-contract/blob/master/walkthrough-web3-1.0beta.md), [ [Documentation](https://web3js.readthedocs.io/en/1.0/index.html) ]
- [Web3 v0.19 Instructions](https://github.com/rachel-ftw/solidity-intro-first-contract/blob/master/walkthrough-web3-0.19.0.md), [ [Older Documentation](https://github.com/ethereum/wiki/wiki/JavaScript-API) ]Shout out to [Decypher](decypher.tv), got the 0.19 version instructions from him. His videos are awesome, I'd strongly recommend checking him out!
#### Adding clear to node console
I like adding this to my node console when I'm working. Then you can call the `clear` function and it will move all text to top of screen.
```js
function clear() {
process.stdout.write('\u001B[2J\u001B[0;0f');
}
```---
[Rachel Ralston](http://www.rachelralston.com) | [twitter](http://www.twitter.com/rachelralston) | [medium](http://www.medium.com/@rachelralston) | [linkedIn](http://www.linkedin.com/in/rachelralston)[Oakland Blockchain Developers](http://www.blockchaindevelopers.io)