2015-11-24 00:02:00 +03:00
---
language: Solidity
filename: learnSolidity.sol
contributors:
2015-12-29 05:58:31 +03:00
- ["Nemil Dalal", "https://www.nemil.com"]
- ["Joseph Chow", ""]
2018-10-28 15:27:02 +03:00
- ["Bhoomtawath Plinsut", "https://github.com/varshard"]
2021-03-26 15:05:58 +03:00
- ["Shooter", "https://github.com/liushooter"]
2021-02-26 21:58:26 +03:00
- ["Patrick Collins", "https://gist.github.com/PatrickAlphaC"]
2015-11-24 00:02:00 +03:00
---
2015-12-29 01:11:00 +03:00
Solidity lets you program on [Ethereum ](https://www.ethereum.org/ ), a
blockchain-based virtual machine that allows the creation and
2016-06-20 21:56:44 +03:00
execution of smart contracts, without requiring centralized or trusted parties.
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
Solidity is a statically typed, contract programming language that has
similarities to Javascript and C. Like objects in OOP, each contract contains
state variables, functions, and common data types. Contract-specific features
include modifier (guard) clauses, event notifiers for listeners, and custom
global variables.
2015-11-24 00:02:00 +03:00
2021-02-26 21:58:26 +03:00
Some Ethereum contract examples include crowdfunding, voting, [decentralized finance ](https://defipulse.com/ ), and blind auctions.
2015-12-29 01:11:00 +03:00
2016-06-20 21:56:44 +03:00
There is a high risk and high cost of errors in Solidity code, so you must be very careful to test
and slowly rollout. WITH THE RAPID CHANGES IN ETHEREUM, THIS DOCUMENT IS UNLIKELY TO STAY UP TO
DATE, SO YOU SHOULD FOLLOW THE SOLIDITY CHAT ROOM AND ETHEREUM BLOG FOR THE LATEST. ALL CODE HERE IS
PROVIDED AS IS, WITH SUBSTANTIAL RISK OF ERRORS OR DEPRECATED CODE PATTERNS.
Unlike other code, you may also need to add in design patterns like pausing, deprecation, and
throttling usage to reduce risk. This document primarily discusses syntax, and so excludes many
popular design patterns.
2015-12-29 01:11:00 +03:00
As Solidity and Ethereum are under active development, experimental or beta
2016-06-20 21:56:44 +03:00
features are typically marked, and subject to change. Pull requests welcome.
2015-11-24 00:02:00 +03:00
2021-02-26 21:58:26 +03:00
# Working with Remix and Metamask
One of the easiest ways to build, deploy, and test solidity code is by using the:
1. [Remix Web IDE ](https://remix.ethereum.org/ )
2. [Metamask wallet ](https://metamask.io/ ).
To get started, [download the Metamask Browser Extension ](https://metamask.io/ ).
Once installed, we will be working with Remix. The below code will be pre-loaded, but before we head over there, let's look at a few tips to get started with remix. Load it all by [hitting this link ](https://remix.ethereum.org/#version=soljson-v0.6.6+commit.6c089d02.js&optimize=false&evmVersion=null&gist=f490c0d51141dd0515244db40bbd0c17&runs=200 ).
1. Choose the Solidity compiler
![Solidity-in-remix ](images/solidity/remix-solidity.png )
2. Open the file loaded by that link
![Solidity-choose-file ](images/solidity/remix-choose-file.png )
3. Compile the file
![Solidity-compile ](images/solidity/remix-compile.png )
4. Deploy
![Solidity-deploy ](images/solidity/remix-deploy.png )
5. Play with contracts
![Solidity-deploy ](images/solidity/remix-interact.png )
You've deployed your first contract! Congrats!
You can test out and play with the functions defined. Check out the comments to learn about what each does.
## Working on a testnet
Deploying and testing on a testnet is the most accurate way to test your smart contracts in solidity.
To do this let's first get some testnet ETH from the Kovan testnet.
[Pop into this Gitter Channel ](https://gitter.im/kovan-testnet/faucet ) and drop your metamask address in.
In your metamask, you'll want to change to the `Kovan` testnet.
![Solidity-in-remix ](images/solidity/metamask-kovan.png )
You'll be given some free test Ethereum. Ethereum is needed to deploy smart contracts when working with a testnet.
In the previous example, we didn't use a testnet, we deployed to a fake virtual environment.
When working with a testnet, we can actually see and interact with our contracts in a persistent manner.
To deploy to a testnet, on the `#4 Deploy` step, change your `environment` to `injected web3` .
This will use whatever network is currently selected in your metamask as the network to deploy to.
![Solidity-in-remix ](images/solidity/remix-testnet.png )
For now, please continue to use the `Javascript VM` unless instructed otherwise. When you deploy to a testnet, metamask will pop up to ask you to "confirm" the transaction. Hit yes, and after a delay, you'll get the same contract interface at the bottom of your screen.
2015-11-24 00:02:00 +03:00
```javascript
2015-12-29 01:11:00 +03:00
// First, a simple Bank contract
// Allows deposits, withdrawals, and balance checks
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// simple_bank.sol (note .sol extension)
/* ** ** START EXAMPLE ** ** */
2017-12-29 05:39:48 +03:00
// Declare the source file compiler version
2021-02-26 21:58:26 +03:00
pragma solidity ^0.6.6;
2017-07-25 13:32:29 +03:00
2015-12-29 01:11:00 +03:00
// Start with Natspec comment (the three slashes)
// used for documentation - and as descriptive data for UI elements/actions
/// @title SimpleBank
/// @author nemild
/* 'contract' has similarities to 'class' in other languages (class variables,
inheritance, etc.) */
2016-12-23 21:47:03 +03:00
contract SimpleBank { // CapWords
2015-12-29 01:11:00 +03:00
// Declare state variables outside function, persist through life of contract
// dictionary that maps addresses to balances
2016-06-20 21:56:44 +03:00
// always be careful about overflow attacks with numbers
2015-12-01 01:23:41 +03:00
mapping (address => uint) private balances;
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
// "private" means that other contracts can't directly query balances
// but data is still viewable to other parties on blockchain
2015-11-30 23:45:03 +03:00
address public owner;
2015-12-29 01:11:00 +03:00
// 'public' makes externally readable (not writeable) by users or contracts
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Events - publicize actions to external listeners
2016-06-20 21:56:44 +03:00
event LogDepositMade(address accountAddress, uint amount);
2015-12-29 01:11:00 +03:00
// Constructor, can receive one or many variables here; only one allowed
2021-02-26 21:58:26 +03:00
constructor() public {
2015-12-29 03:36:48 +03:00
// msg provides details about the message that's sent to the contract
2015-12-29 01:11:00 +03:00
// msg.sender is contract caller (address of contract creator)
owner = msg.sender;
2015-11-24 00:02:00 +03:00
}
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
/// @notice Deposit ether into bank
/// @return The balance of the user after the deposit is made
2017-12-29 05:39:48 +03:00
function deposit() public payable returns (uint) {
// Use 'require' to test user inputs, 'assert' for internal invariants
// Here we are making sure that there isn't an overflow issue
require((balances[msg.sender] + msg.value) >= balances[msg.sender]);
2015-12-29 01:11:00 +03:00
balances[msg.sender] += msg.value;
// no "this." or "self." required with state variable
2015-12-29 21:05:45 +03:00
// all values set to data type's initial value by default
2015-12-29 01:11:00 +03:00
2021-02-26 21:58:26 +03:00
emit LogDepositMade(msg.sender, msg.value); // fire event
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
return balances[msg.sender];
2015-11-24 00:02:00 +03:00
}
2015-12-29 01:11:00 +03:00
/// @notice Withdraw ether from bank
/// @dev This does not return any excess ether sent to it
/// @param withdrawAmount amount you want to withdraw
2021-02-26 21:58:26 +03:00
/// @return remainingBal
2015-12-29 01:11:00 +03:00
function withdraw(uint withdrawAmount) public returns (uint remainingBal) {
2017-12-29 05:39:48 +03:00
require(withdrawAmount < = balances[msg.sender]);
// Note the way we deduct the balance right away, before sending
// Every .transfer/.send from this contract can call an external function
// This may allow the caller to request an amount greater
// than their balance using a recursive call
// Aim to commit state before calling external functions, including .transfer/.send
balances[msg.sender] -= withdrawAmount;
// this automatically throws on a failure, which means the updated balance is reverted
msg.sender.transfer(withdrawAmount);
2015-12-29 05:58:31 +03:00
2015-12-29 03:36:48 +03:00
return balances[msg.sender];
2015-11-24 00:02:00 +03:00
}
2015-12-29 01:11:00 +03:00
/// @notice Get balance
/// @return The balance of the user
2018-02-27 13:29:12 +03:00
// 'view' (ex: constant) prevents function from editing state variables;
2015-12-29 01:11:00 +03:00
// allows function to run locally/off blockchain
2018-02-27 13:29:12 +03:00
function balance() view public returns (uint) {
2015-12-29 01:11:00 +03:00
return balances[msg.sender];
2015-11-24 00:02:00 +03:00
}
}
2015-11-30 23:45:03 +03:00
// ** END EXAMPLE **
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Now, the basics of Solidity
2015-11-30 23:48:47 +03:00
// 1. DATA TYPES AND ASSOCIATED METHODS
2015-12-29 01:11:00 +03:00
// uint used for currency amount (there are no doubles
// or floats) and for dates (in unix time)
2015-11-30 23:45:03 +03:00
uint x;
// int of 256 bits, cannot be changed after instantiation
int constant a = 8;
2015-12-01 00:01:51 +03:00
int256 constant a = 8; // same effect as line above, here the 256 is explicit
2015-12-11 21:07:01 +03:00
uint constant VERSION_ID = 0x123A1; // A hex constant
2015-12-29 18:59:01 +03:00
// with 'constant', compiler replaces each occurrence with actual value
2015-11-30 23:45:03 +03:00
2017-12-29 05:39:48 +03:00
// All state variables (those outside a function)
// are by default 'internal' and accessible inside contract
// and in all contracts that inherit ONLY
2018-03-14 17:10:24 +03:00
// Need to explicitly set to 'public' to allow external contracts to access
2017-12-29 05:39:48 +03:00
int256 public a = 8;
2015-12-29 01:11:00 +03:00
// For int and uint, can explicitly set space in steps of 8 up to 256
// e.g., int8, int16, int24
2015-11-24 00:02:00 +03:00
uint8 b;
int64 c;
uint248 e;
2015-12-29 18:59:01 +03:00
// Be careful that you don't overflow, and protect against attacks that do
2017-12-29 05:39:48 +03:00
// For example, for an addition, you'd do:
uint256 c = a + b;
assert(c >= a); // assert tests for internal invariants; require is used for user inputs
// For more examples of common arithmetic issues, see Zeppelin's SafeMath library
// https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol
2015-12-29 18:59:01 +03:00
2022-04-09 06:36:21 +03:00
// No random functions built in, you can get a pseduo-random number by hashing the current blockhash, or get a truly random number using something like Chainlink VRF.
2021-03-26 15:05:58 +03:00
// https://docs.chain.link/docs/get-a-random-number
2015-12-29 01:11:00 +03:00
2015-11-24 00:02:00 +03:00
// Type casting
2015-11-30 23:45:03 +03:00
int x = int(b);
2015-11-24 00:02:00 +03:00
bool b = true; // or do 'var b = true;' for inferred typing
2015-12-29 01:11:00 +03:00
// Addresses - holds 20 byte/160 bit Ethereum addresses
// No arithmetic allowed
address public owner;
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Types of accounts:
// Contract account: address set on create (func of creator address, num transactions sent)
// External Account: (person/external entity): address created from public key
// Add 'public' field to indicate publicly/externally accessible
// a getter is automatically created, but NOT a setter
// All addresses can be sent ether
2017-12-29 05:39:48 +03:00
owner.transfer(SOME_BALANCE); // fails and reverts on failure
// Can also do a lower level .send call, which returns a false if it failed
if (owner.send) {} // REMEMBER: wrap send in 'if', as contract addresses have
2016-06-20 21:56:44 +03:00
// functions executed on send and these can fail
// Also, make sure to deduct balances BEFORE attempting a send, as there is a risk of a recursive
// call that can drain the contract
2015-12-29 01:11:00 +03:00
// Can check balance
owner.balance; // the balance of the owner (user or contract)
// Bytes available from 1 to 32
2015-11-24 00:02:00 +03:00
byte a; // byte is same as bytes1
2015-12-29 01:11:00 +03:00
bytes2 b;
bytes32 c;
// Dynamically sized bytes
bytes m; // A special array, same as byte[] array (but packed tightly)
// More expensive than byte1-byte32, so use those when possible
2015-11-24 00:02:00 +03:00
// same as bytes, but does not allow length or index access (for now)
2015-12-29 01:11:00 +03:00
string n = "hello"; // stored in UTF8, note double quotes, not single
// string utility functions to be added in future
// prefer bytes32/bytes, as UTF8 uses more storage
2015-11-24 00:02:00 +03:00
2017-08-23 11:14:39 +03:00
// Type inference
2015-11-30 23:45:03 +03:00
// var does inferred typing based on first assignment,
2015-11-24 00:02:00 +03:00
// can't be used in functions parameters
var a = true;
2015-12-29 01:11:00 +03:00
// use carefully, inference may provide wrong type
// e.g., an int8, when a counter needs to be int16
// var can be used to assign function to variable
function a(uint x) returns (uint) {
return x * 2;
}
var f = a;
f(22); // call
2015-11-24 00:02:00 +03:00
// by default, all values are set to 0 on instantiation
2015-12-01 01:23:41 +03:00
// Delete can be called on most types
2015-12-29 01:11:00 +03:00
// (does NOT destroy value, but sets value to 0, the initial value)
2022-07-22 20:40:54 +03:00
delete x;
2015-12-29 01:11:00 +03:00
// Destructuring/Tuples
2017-12-29 05:39:48 +03:00
(x, y) = (2, 7); // assign/swap multiple values
2015-11-24 00:02:00 +03:00
2015-11-30 23:48:47 +03:00
2015-11-24 00:02:00 +03:00
// 2. DATA STRUCTURES
// Arrays
2015-11-30 23:45:03 +03:00
bytes32[5] nicknames; // static array
bytes32[] names; // dynamic array
2015-11-24 00:02:00 +03:00
uint newLength = names.push("John"); // adding returns new length of the array
// Length
names.length; // get length
2015-12-29 01:11:00 +03:00
names.length = 1; // lengths can be set (for dynamic arrays in storage only)
// multidimensional array
2021-10-10 20:32:14 +03:00
uint[][5] x; // arr with 5 dynamic array elements (opp order of most languages)
2015-11-24 00:02:00 +03:00
// Dictionaries (any type to any other type)
2015-11-24 08:09:10 +03:00
mapping (string => uint) public balances;
2015-12-29 01:11:00 +03:00
balances["charles"] = 1;
2018-12-25 10:05:13 +03:00
// balances["ada"] result is 0, all non-set key values return zeroes
2015-12-29 01:11:00 +03:00
// 'public' allows following from another contract
2016-09-27 17:41:22 +03:00
contractName.balances("charles"); // returns 1
2015-12-29 01:11:00 +03:00
// 'public' created a getter (but not setter) like the following:
2016-09-27 17:41:22 +03:00
function balances(string _account) returns (uint balance) {
2015-12-29 01:11:00 +03:00
return balances[_account];
2015-11-24 00:02:00 +03:00
}
2015-12-29 01:11:00 +03:00
// Nested mappings
2015-12-29 05:53:37 +03:00
mapping (address => mapping (address => uint)) public custodians;
2015-12-29 01:11:00 +03:00
2015-11-24 00:02:00 +03:00
// To delete
2015-12-01 01:23:41 +03:00
delete balances["John"];
2015-12-29 01:11:00 +03:00
delete balances; // sets all elements to 0
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Unlike other languages, CANNOT iterate through all elements in
// mapping, without knowing source keys - can build data structure
// on top to do this
2015-11-24 00:02:00 +03:00
2017-12-29 05:39:48 +03:00
// Structs
2015-12-29 01:11:00 +03:00
struct Bank {
address owner;
uint balance;
}
2015-11-24 00:02:00 +03:00
Bank b = Bank({
2015-12-29 01:11:00 +03:00
owner: msg.sender,
balance: 5
2015-11-24 00:02:00 +03:00
});
2015-12-29 01:11:00 +03:00
// or
Bank c = Bank(msg.sender, 5);
2017-09-26 23:16:13 +03:00
c.balance = 5; // set to new value
2015-12-29 01:11:00 +03:00
delete b;
// sets to initial value, set all variables in struct to 0, except mappings
2015-11-24 00:02:00 +03:00
// Enums
2015-12-29 01:11:00 +03:00
enum State { Created, Locked, Inactive }; // often used for state machine
2015-11-24 00:02:00 +03:00
State public state; // Declare variable from enum
state = State.Created;
2015-11-30 23:45:03 +03:00
// enums can be explicitly converted to ints
2015-12-29 01:11:00 +03:00
uint createdState = uint(State.Created); // 0
2015-11-24 00:02:00 +03:00
2017-12-29 05:39:48 +03:00
// Data locations: Memory vs. storage vs. calldata - all complex types (arrays,
2015-12-29 01:11:00 +03:00
// structs) have a data location
2015-11-30 23:45:03 +03:00
// 'memory' does not persist, 'storage' does
2015-12-29 01:11:00 +03:00
// Default is 'storage' for local and state variables; 'memory' for func params
// stack holds small local variables
// for most types, can explicitly set which data location to use
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// 3. Simple operators
// Comparisons, bit operators and arithmetic operators are provided
// exponentiation: **
// exclusive or: ^
// bitwise negation: ~
2015-11-30 23:48:47 +03:00
2015-12-29 01:11:00 +03:00
// 4. Global Variables of note
2015-11-30 23:45:03 +03:00
// ** this **
2015-12-29 01:11:00 +03:00
this; // address of contract
2017-12-29 05:39:48 +03:00
// often used at end of contract life to transfer remaining balance to party
2015-11-30 23:45:03 +03:00
this.balance;
2015-12-29 01:11:00 +03:00
this.someFunction(); // calls func externally via call, not via internal jump
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// ** msg - Current message received by the contract ** **
msg.sender; // address of sender
2017-12-29 05:39:48 +03:00
msg.value; // amount of ether provided to this contract in wei, the function should be marked "payable"
2015-11-30 23:45:03 +03:00
msg.data; // bytes, complete call data
msg.gas; // remaining gas
2015-11-24 00:02:00 +03:00
2015-11-30 23:45:03 +03:00
// ** tx - This transaction **
2015-12-29 01:11:00 +03:00
tx.origin; // address of sender of the transaction
tx.gasprice; // gas price of the transaction
// ** block - Information about current block **
2015-12-29 21:05:45 +03:00
now; // current time (approximately), alias for block.timestamp (uses Unix time)
2017-12-29 05:39:48 +03:00
// Note that this can be manipulated by miners, so use carefully
2015-12-29 01:11:00 +03:00
block.number; // current block number
block.difficulty; // current block difficulty
block.blockhash(1); // returns bytes32, only works for most recent 256 blocks
2015-11-30 23:45:03 +03:00
block.gasLimit();
2015-12-29 01:11:00 +03:00
// ** storage - Persistent storage hash **
2015-11-30 23:45:03 +03:00
storage['abc'] = 'def'; // maps 256 bit words to 256 bit words
2015-11-24 00:02:00 +03:00
2015-11-30 23:48:47 +03:00
2022-07-22 20:38:42 +03:00
// 5. FUNCTIONS AND MORE
2015-11-24 00:02:00 +03:00
// A. Functions
// Simple function
function increment(uint x) returns (uint) {
2015-12-29 01:11:00 +03:00
x += 1;
return x;
2015-11-24 00:02:00 +03:00
}
2022-04-09 06:36:21 +03:00
// Functions can return many arguments,
// and by specifying returned arguments name explicit return is not needed
2015-11-24 00:02:00 +03:00
function increment(uint x, uint y) returns (uint x, uint y) {
2015-12-29 01:11:00 +03:00
x += 1;
y += 1;
2015-11-24 00:02:00 +03:00
}
2022-04-09 06:36:21 +03:00
// Call previous function
2015-11-24 00:02:00 +03:00
uint (a,b) = increment(1,1);
2018-02-27 13:29:12 +03:00
// 'view' (alias for 'constant')
2017-12-29 05:39:48 +03:00
// indicates that function does not/cannot change persistent vars
2018-02-27 13:29:12 +03:00
// View function execute locally, not on blockchain
// Noted: constant keyword will soon be deprecated.
2017-12-29 05:39:48 +03:00
uint y = 1;
2015-11-24 00:02:00 +03:00
2018-02-27 13:29:12 +03:00
function increment(uint x) view returns (uint x) {
2015-12-29 01:11:00 +03:00
x += 1;
y += 1; // this line would fail
2018-02-27 13:29:12 +03:00
// y is a state variable, and can't be changed in a view function
2015-11-24 00:02:00 +03:00
}
2018-02-27 13:29:12 +03:00
// 'pure' is more strict than 'view' or 'constant', and does not
2017-12-29 05:39:48 +03:00
// even allow reading of state vars
// The exact rules are more complicated, so see more about
2018-02-27 13:29:12 +03:00
// view/pure:
2017-12-29 05:39:48 +03:00
// http://solidity.readthedocs.io/en/develop/contracts.html#view-functions
2015-12-29 01:11:00 +03:00
// 'Function Visibility specifiers'
2018-02-27 13:29:12 +03:00
// These can be placed where 'view' is, including:
2017-12-29 05:39:48 +03:00
// public - visible externally and internally (default for function)
// external - only visible externally (including a call made with this.)
2015-11-24 00:02:00 +03:00
// private - only visible in the current contract
2015-12-29 01:11:00 +03:00
// internal - only visible in current contract, and those deriving from it
2015-11-24 00:02:00 +03:00
2017-12-29 05:39:48 +03:00
// Generally, a good idea to mark each function explicitly
2015-12-29 01:11:00 +03:00
// Functions hoisted - and can assign a function to a variable
2015-11-24 00:02:00 +03:00
function a() {
2015-12-29 01:11:00 +03:00
var z = b;
2022-07-22 20:40:24 +03:00
z();
2015-11-24 00:02:00 +03:00
}
function b() {
}
2017-12-29 05:39:48 +03:00
// All functions that receive ether must be marked 'payable'
function depositEther() public payable {
balances[msg.sender] += msg.value;
}
2015-12-29 01:11:00 +03:00
// Prefer loops to recursion (max call stack depth is 1024)
2018-03-14 17:10:24 +03:00
// Also, don't setup loops that you haven't bounded,
2017-12-29 05:39:48 +03:00
// as this can hit the gas limit
2015-12-29 01:11:00 +03:00
2015-11-24 00:02:00 +03:00
// B. Events
2015-12-29 01:11:00 +03:00
// Events are notify external parties; easy to search and
// access events from outside blockchain (with lightweight clients)
// typically declare after contract parameters
2015-11-24 00:02:00 +03:00
2016-06-20 21:56:44 +03:00
// Typically, capitalized - and add Log in front to be explicit and prevent confusion
// with a function call
2015-12-29 01:11:00 +03:00
// Declare
2016-06-20 21:56:44 +03:00
event LogSent(address indexed from, address indexed to, uint amount); // note capital first letter
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Call
2018-03-14 17:10:24 +03:00
LogSent(from, to, amount);
2015-12-29 01:11:00 +03:00
2018-12-03 19:25:57 +03:00
/**
For an external party (a contract or external entity), to watch using
the Web3 Javascript library:
// The following is Javascript code, not Solidity code
2018-03-14 17:10:24 +03:00
Coin.LogSent().watch({}, '', function(error, result) {
2015-11-24 00:02:00 +03:00
if (!error) {
console.log("Coin transfer: " + result.args.amount +
" coins were sent from " + result.args.from +
" to " + result.args.to + ".");
console.log("Balances now:\n" +
"Sender: " + Coin.balances.call(result.args.from) +
"Receiver: " + Coin.balances.call(result.args.to));
}
}
2018-12-03 19:25:57 +03:00
**/
2015-12-29 01:11:00 +03:00
// Common paradigm for one contract to depend on another (e.g., a
// contract that depends on current exchange rate provided by another)
2015-11-24 00:02:00 +03:00
// C. Modifiers
2015-12-29 01:11:00 +03:00
// Modifiers validate inputs to functions such as minimal balance or user auth;
// similar to guard clause in other languages
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
// '_' (underscore) often included as last line in body, and indicates
2015-11-24 00:02:00 +03:00
// function being called should be placed there
2017-12-29 05:39:48 +03:00
modifier onlyAfter(uint _time) { require (now >= _time); _ ; }
2022-07-24 22:17:41 +03:00
modifier onlyOwner { require(msg.sender == owner); _; }
2015-12-29 01:11:00 +03:00
// commonly used with state machines
2022-07-25 11:54:32 +03:00
modifier onlyIfStateA (State currState) { require(currState == State.A); _; }
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Append right after function declaration
2015-11-30 23:45:03 +03:00
function changeOwner(newOwner)
2015-12-11 21:07:01 +03:00
onlyAfter(someTime)
onlyOwner()
2015-12-29 01:11:00 +03:00
onlyIfState(State.A)
2015-12-11 21:07:01 +03:00
{
2015-12-29 01:11:00 +03:00
owner = newOwner;
2015-11-24 00:02:00 +03:00
}
2015-12-29 01:11:00 +03:00
// underscore can be included before end of body,
// but explicitly returning will skip, so use carefully
modifier checkValue(uint amount) {
2017-12-29 05:39:48 +03:00
_;
2015-12-29 01:11:00 +03:00
if (msg.value > amount) {
2016-06-20 21:56:44 +03:00
uint amountToRefund = amount - msg.value;
2017-12-29 05:39:48 +03:00
msg.sender.transfer(amountToRefund);
2015-12-29 01:11:00 +03:00
}
}
2015-11-30 23:48:47 +03:00
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// 6. BRANCHING AND LOOPS
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// All basic logic blocks work - including if/else, for, while, break, continue
// return - but no switch
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
// Syntax same as javascript, but no type conversion from non-boolean
// to boolean (comparison operators must be used to get the boolean val)
2015-11-30 23:48:47 +03:00
2016-06-20 21:56:44 +03:00
// For loops that are determined by user behavior, be careful - as contracts have a maximal
// amount of gas for a block of code - and will fail if that is exceeded
// For example:
for(uint x = 0; x < refundAddressList.length ; x + + ) {
2017-12-29 05:39:48 +03:00
refundAddressList[x].transfer(SOME_AMOUNT);
2016-06-20 21:56:44 +03:00
}
// Two errors above:
2017-12-29 05:39:48 +03:00
// 1. A failure on transfer stops the loop from completing, tying up money
2016-06-20 21:56:44 +03:00
// 2. This loop could be arbitrarily long (based on the amount of users who need refunds), and
// therefore may always fail as it exceeds the max gas for a block
// Instead, you should let people withdraw individually from their subaccount, and mark withdrawn
2017-12-29 05:39:48 +03:00
// e.g., favor pull payments over push payments
2016-06-20 21:56:44 +03:00
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// 7. OBJECTS/CONTRACTS
// A. Calling external contract
2017-12-29 05:39:48 +03:00
contract InfoFeed {
2019-08-06 18:29:19 +03:00
function info() payable returns (uint ret) { return 42; }
2015-11-24 00:02:00 +03:00
}
contract Consumer {
2015-12-29 01:11:00 +03:00
InfoFeed feed; // points to contract on blockchain
// Set feed to existing contract instance
function setFeed(address addr) {
// automatically cast, be careful; constructor is not called
feed = InfoFeed(addr);
}
// Set feed to new instance of contract
function createNewFeed() {
2015-12-29 21:05:45 +03:00
feed = new InfoFeed(); // new instance created; constructor called
2015-12-29 01:11:00 +03:00
}
function callFeed() {
// final parentheses call contract, can optionally add
// custom ether value or gas
feed.info.value(10).gas(800)();
}
2015-11-24 00:02:00 +03:00
}
2015-11-30 23:45:03 +03:00
// B. Inheritance
2015-12-29 01:11:00 +03:00
// Order matters, last inherited contract (i.e., 'def') can override parts of
// previously inherited contracts
contract MyContract is abc, def("a custom argument to def") {
2015-11-30 23:45:03 +03:00
// Override function
2015-12-29 01:11:00 +03:00
function z() {
if (msg.sender == owner) {
def.z(); // call overridden function from def
2017-08-23 11:14:39 +03:00
super.z(); // call immediate parent overridden function
2015-12-29 01:11:00 +03:00
}
2015-11-30 23:45:03 +03:00
}
2015-12-29 01:11:00 +03:00
}
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
// abstract function
function someAbstractFunction(uint x);
// cannot be compiled, so used in base/abstract contracts
// that are then implemented
2015-11-30 23:45:03 +03:00
// C. Import
import "filename";
import "github.com/ethereum/dapp-bin/library/iterable_mapping.sol";
2015-12-29 01:13:20 +03:00
2015-12-29 01:11:00 +03:00
// 8. OTHER KEYWORDS
2015-11-24 00:02:00 +03:00
2017-12-29 05:39:48 +03:00
// A. Selfdestruct
2015-12-29 01:11:00 +03:00
// selfdestruct current contract, sending funds to address (often creator)
selfdestruct(SOME_ADDRESS);
// removes storage/code from current/future blocks
// helps thin clients, but previous data persists in blockchain
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// Common pattern, lets owner end the contract and receive remaining funds
2015-11-30 23:45:03 +03:00
function remove() {
2015-12-29 01:11:00 +03:00
if(msg.sender == creator) { // Only let the contract creator do this
selfdestruct(creator); // Makes contract inactive, returns funds
}
2015-11-30 23:45:03 +03:00
}
2015-12-29 01:11:00 +03:00
// May want to deactivate contract manually, rather than selfdestruct
// (ether sent to selfdestructed contract is lost)
// 9. CONTRACT DESIGN NOTES
// A. Obfuscation
2015-12-29 06:31:48 +03:00
// All variables are publicly viewable on blockchain, so anything
2015-12-29 19:10:39 +03:00
// that is private needs to be obfuscated (e.g., hashed w/secret)
2015-12-29 01:11:00 +03:00
// Steps: 1. Commit to something, 2. Reveal commitment
2017-12-29 05:39:48 +03:00
keccak256("some_bid_amount", "some secret"); // commit
2015-12-29 01:11:00 +03:00
2016-01-14 18:17:51 +03:00
// call contract's reveal function in the future
// showing bid plus secret that hashes to SHA3
2015-12-29 01:11:00 +03:00
reveal(100, "mySecret");
// B. Storage optimization
2015-12-29 19:10:39 +03:00
// Writing to blockchain can be expensive, as data stored forever; encourages
2015-12-29 01:11:00 +03:00
// smart ways to use memory (eventually, compilation will be better, but for now
// benefits to planning data structures - and storing min amount in blockchain)
// Cost can often be high for items like multidimensional arrays
// (cost is for storing data - not declaring unfilled variables)
2015-12-29 19:10:39 +03:00
// C. Data access in blockchain
// Cannot restrict human or computer from reading contents of
2015-12-29 01:11:00 +03:00
// transaction or transaction's state
2015-12-29 19:10:39 +03:00
// While 'private' prevents other *contracts* from reading data
// directly - any other party can still read data in blockchain
2015-11-24 00:02:00 +03:00
2015-12-29 19:10:39 +03:00
// All data to start of time is stored in blockchain, so
2015-12-29 01:11:00 +03:00
// anyone can observe all previous data and changes
2015-11-30 23:48:47 +03:00
2022-07-23 15:01:21 +03:00
// D. Oracles and External Data
2021-02-26 21:58:26 +03:00
// Oracles are ways to interact with your smart contracts outside the blockchain.
// They are used to get data from the real world, send post requests, to the real world
// or vise versa.
// Time-based implementations of contracts are also done through oracles, as
// contracts need to be directly called and can not "subscribe" to a time.
// Due to smart contracts being decentralized, you also want to get your data
2022-04-09 06:36:21 +03:00
// in a decentralized manner, otherwise you run into the centralized risk that
2021-02-26 21:58:26 +03:00
// smart contract design matter prevents.
2024-05-13 10:00:26 +03:00
// The easiest way to get and use pre-boxed decentralized data is with Chainlink Data Feeds
2021-02-26 21:58:26 +03:00
// https://docs.chain.link/docs/get-the-latest-price
// We can reference on-chain reference points that have already been aggregated by
// multiple sources and delivered on-chain, and we can use it as a "data bank"
// of sources.
2021-03-26 15:05:58 +03:00
// You can see other examples making API calls here:
// https://docs.chain.link/docs/make-a-http-get-request
2021-02-26 21:58:26 +03:00
2021-03-26 15:05:58 +03:00
// And you can of course build your own oracle network, just be sure to know
// how centralized vs decentralized your application is.
2021-02-26 21:58:26 +03:00
// Setting up oracle networks yourself
2022-07-23 15:01:21 +03:00
// E. Cron Job
2015-12-29 19:10:39 +03:00
// Contracts must be manually called to handle time-based scheduling; can create external
// code to regularly ping, or provide incentives (ether) for others to
2021-02-26 21:58:26 +03:00
//
2015-11-30 23:45:03 +03:00
2022-07-23 15:01:21 +03:00
// F. Observer Pattern
2016-01-14 18:17:51 +03:00
// An Observer Pattern lets you register as a subscriber and
// register a function which is called by the oracle (note, the oracle pays
// for this action to be run)
// Some similarities to subscription in Pub/sub
// This is an abstract contract, both client and server classes import
// the client should implement
contract SomeOracleCallback {
function oracleCallback(int _value, uint _time, bytes32 info) external;
}
contract SomeOracle {
SomeOracleCallback[] callbacks; // array of all subscribers
// Register subscriber
function addSubscriber(SomeOracleCallback a) {
callbacks.push(a);
}
function notify(value, time, info) private {
for(uint i = 0;i < callbacks.length ; i + + ) {
// all called subscribers must implement the oracleCallback
callbacks[i].oracleCallback(value, time, info);
}
}
function doSomething() public {
// Code to do something
// Notify all subscribers
notify(_value, _time, _info);
}
}
2016-01-14 22:01:45 +03:00
// Now, your client contract can addSubscriber by importing SomeOracleCallback
// and registering with Some Oracle
2016-01-14 18:17:51 +03:00
2022-07-23 15:01:21 +03:00
// G. State machines
2015-12-29 01:11:00 +03:00
// see example below for State enum and inState modifier
2021-02-26 21:58:26 +03:00
```
2015-12-29 01:11:00 +03:00
2021-02-26 21:58:26 +03:00
Work with the full example below using the [`Javascript VM` in remix here. ](https://remix.ethereum.org/#version=soljson-v0.6.6+commit.6c089d02.js&optimize=false&evmVersion=null&gist=3d12cd503dcedfcdd715ef61f786be0b&runs=200 )
2015-12-29 01:13:20 +03:00
2021-02-26 21:58:26 +03:00
```javascript
2015-12-29 01:11:00 +03:00
// ** * EXAMPLE: A crowdfunding example (broadly similar to Kickstarter) ** *
2015-11-30 23:45:03 +03:00
// ** START EXAMPLE **
2015-12-29 01:11:00 +03:00
// CrowdFunder.sol
2021-03-26 15:05:58 +03:00
pragma solidity ^0.6.6;
2015-12-29 01:11:00 +03:00
/// @title CrowdFunder
/// @author nemild
contract CrowdFunder {
// Variables set on create by creator
address public creator;
2021-03-26 15:05:58 +03:00
address payable public fundRecipient; // creator may be different than recipient, and must be payable
2015-12-29 01:11:00 +03:00
uint public minimumToRaise; // required to tip, else everyone gets refund
string campaignUrl;
2021-03-26 15:05:58 +03:00
byte version = "1";
2015-12-29 01:11:00 +03:00
// Data structures
enum State {
Fundraising,
2016-06-20 21:56:44 +03:00
ExpiredRefund,
Successful
2015-12-29 01:11:00 +03:00
}
struct Contribution {
uint amount;
2021-03-26 15:05:58 +03:00
address payable contributor;
2015-12-01 00:51:53 +03:00
}
2015-11-24 00:02:00 +03:00
2015-12-29 01:11:00 +03:00
// State variables
State public state = State.Fundraising; // initialize on create
uint public totalRaised;
uint public raiseBy;
2016-06-20 21:56:44 +03:00
uint public completeAt;
2015-12-29 01:11:00 +03:00
Contribution[] contributions;
2016-06-20 21:56:44 +03:00
event LogFundingReceived(address addr, uint amount, uint currentTotal);
event LogWinnerPaid(address winnerAddress);
2015-12-29 01:11:00 +03:00
modifier inState(State _state) {
2017-12-29 05:39:48 +03:00
require(state == _state);
_;
2015-12-29 01:11:00 +03:00
}
2015-11-30 23:48:47 +03:00
2015-12-29 01:11:00 +03:00
modifier isCreator() {
2017-12-29 05:39:48 +03:00
require(msg.sender == creator);
_;
2015-12-29 01:11:00 +03:00
}
2017-12-29 05:39:48 +03:00
// Wait 24 weeks after final contract state before allowing contract destruction
2015-12-29 01:11:00 +03:00
modifier atEndOfLifecycle() {
2017-12-29 05:39:48 +03:00
require(((state == State.ExpiredRefund || state == State.Successful) & &
completeAt + 24 weeks < now ) ) ;
_;
2015-12-29 01:11:00 +03:00
}
2021-03-26 15:05:58 +03:00
function crowdFund(
2015-12-29 01:11:00 +03:00
uint timeInHoursForFundraising,
2021-03-26 15:05:58 +03:00
string memory _campaignUrl,
address payable _fundRecipient,
2015-12-29 01:11:00 +03:00
uint _minimumToRaise)
2017-12-29 05:39:48 +03:00
public
2015-12-29 01:11:00 +03:00
{
creator = msg.sender;
fundRecipient = _fundRecipient;
campaignUrl = _campaignUrl;
minimumToRaise = _minimumToRaise;
raiseBy = now + (timeInHoursForFundraising * 1 hours);
}
function contribute()
public
2017-12-29 05:39:48 +03:00
payable
2015-12-29 01:11:00 +03:00
inState(State.Fundraising)
2017-12-29 05:39:48 +03:00
returns(uint256 id)
2015-12-29 01:11:00 +03:00
{
contributions.push(
Contribution({
amount: msg.value,
contributor: msg.sender
}) // use array, so can iterate
);
totalRaised += msg.value;
2021-03-26 15:05:58 +03:00
emit LogFundingReceived(msg.sender, msg.value, totalRaised);
2015-12-29 01:11:00 +03:00
checkIfFundingCompleteOrExpired();
2016-06-20 21:56:44 +03:00
return contributions.length - 1; // return id
2015-12-29 01:11:00 +03:00
}
2018-03-14 17:10:24 +03:00
function checkIfFundingCompleteOrExpired()
2017-12-29 05:39:48 +03:00
public
{
2015-12-29 01:11:00 +03:00
if (totalRaised > minimumToRaise) {
state = State.Successful;
payOut();
// could incentivize sender who initiated state change here
} else if ( now > raiseBy ) {
2016-06-20 21:56:44 +03:00
state = State.ExpiredRefund; // backers can now collect refunds by calling getRefund(id)
2015-12-29 01:11:00 +03:00
}
2016-06-20 21:56:44 +03:00
completeAt = now;
2015-12-29 01:11:00 +03:00
}
function payOut()
public
inState(State.Successful)
{
2021-03-26 15:05:58 +03:00
fundRecipient.transfer(address(this).balance);
2016-06-20 21:56:44 +03:00
LogWinnerPaid(fundRecipient);
2015-12-29 01:11:00 +03:00
}
2017-12-29 05:39:48 +03:00
function getRefund(uint256 id)
2016-06-20 21:56:44 +03:00
inState(State.ExpiredRefund)
2017-12-29 05:39:48 +03:00
public
returns(bool)
2015-12-29 01:11:00 +03:00
{
2017-12-29 05:39:48 +03:00
require(contributions.length > id & & id >= 0 & & contributions[id].amount != 0 );
2016-06-20 21:56:44 +03:00
2017-12-29 05:39:48 +03:00
uint256 amountToRefund = contributions[id].amount;
2016-06-20 21:56:44 +03:00
contributions[id].amount = 0;
2017-12-29 05:39:48 +03:00
contributions[id].contributor.transfer(amountToRefund);
2015-12-29 01:11:00 +03:00
2017-12-29 05:39:48 +03:00
return true;
2015-12-29 01:11:00 +03:00
}
function removeContract()
public
isCreator()
atEndOfLifecycle()
{
selfdestruct(msg.sender);
2016-06-20 21:56:44 +03:00
// creator gets all money that hasn't be claimed
2015-12-29 01:11:00 +03:00
}
}
// ** END EXAMPLE **
2021-02-26 21:58:26 +03:00
```
2015-12-29 01:11:00 +03:00
2021-02-26 21:58:26 +03:00
Some more functions.
```javascript
2015-12-29 01:11:00 +03:00
// 10. OTHER NATIVE FUNCTIONS
2015-11-24 00:02:00 +03:00
// Currency units
2015-12-29 01:11:00 +03:00
// Currency is defined using wei, smallest unit of Ether
2015-11-24 00:02:00 +03:00
uint minAmount = 1 wei;
2015-12-29 01:11:00 +03:00
uint a = 1 finney; // 1 ether == 1000 finney
// Other units, see: http://ether.fund/tool/converter
2015-11-24 00:02:00 +03:00
// Time units
1 == 1 second
1 minutes == 60 seconds
2015-12-29 01:11:00 +03:00
// Can multiply a variable times unit, as units are not stored in a variable
2015-11-24 00:02:00 +03:00
uint x = 5;
(x * 1 days); // 5 days
2015-12-29 01:11:00 +03:00
// Careful about leap seconds/years with equality statements for time
// (instead, prefer greater than/less than)
2015-11-24 00:02:00 +03:00
// Cryptography
2015-12-29 01:11:00 +03:00
// All strings passed are concatenated before hash action
2015-11-24 00:02:00 +03:00
sha3("ab", "cd");
ripemd160("abc");
sha256("def");
2016-06-20 21:56:44 +03:00
// 11. SECURITY
// Bugs can be disastrous in Ethereum contracts - and even popular patterns in Solidity,
// may be found to be antipatterns
2015-12-29 01:13:20 +03:00
2016-06-20 21:56:44 +03:00
// See security links at the end of this doc
// 12. LOW LEVEL FUNCTIONS
2015-12-29 01:11:00 +03:00
// call - low level, not often used, does not provide type safety
successBoolean = someContractAddress.call('function_name', 'arg1', 'arg2');
2015-11-30 23:48:47 +03:00
2015-12-29 01:11:00 +03:00
// callcode - Code at target address executed in *context* of calling contract
// provides library functionality
someContractAddress.callcode('function_name');
2015-11-24 00:02:00 +03:00
2015-12-29 01:13:20 +03:00
2016-06-20 21:56:44 +03:00
// 13. STYLE NOTES
2015-12-29 01:11:00 +03:00
// Based on Python's PEP8 style guide
2017-12-29 05:39:48 +03:00
// Full Style guide: http://solidity.readthedocs.io/en/develop/style-guide.html
2015-11-24 00:02:00 +03:00
2015-12-29 19:10:39 +03:00
// Quick summary:
2015-12-29 01:11:00 +03:00
// 4 spaces for indentation
// Two lines separate contract declarations (and other top level declarations)
// Avoid extraneous spaces in parentheses
// Can omit curly braces for one line statement (if, for, etc)
// else should be placed on own line
2015-11-24 00:02:00 +03:00
2015-12-29 01:13:20 +03:00
2017-08-23 11:14:39 +03:00
// 14. NATSPEC COMMENTS
2015-12-29 06:29:19 +03:00
// used for documentation, commenting, and external UIs
2015-12-29 01:11:00 +03:00
// Contract natspec - always above contract definition
/// @title Contract title
/// @author Author name
2015-11-24 08:09:10 +03:00
2015-12-29 01:11:00 +03:00
// Function natspec
/// @notice information about what function does; shown when function to execute
/// @dev Function documentation for developer
2015-11-30 23:45:03 +03:00
2015-12-29 01:11:00 +03:00
// Function parameter/return value natspec
/// @param someParam Some description of what the param does
/// @return Description of the return value
2015-11-24 00:02:00 +03:00
```
## Additional resources
2015-12-29 10:45:58 +03:00
- [Solidity Docs ](https://solidity.readthedocs.org/en/latest/ )
2021-02-26 21:58:26 +03:00
- [Chainlink Beginner Tutorials ](https://docs.chain.link/docs/beginners-tutorial )
2017-12-29 05:39:48 +03:00
- [Smart Contract Best Practices ](https://github.com/ConsenSys/smart-contract-best-practices )
2018-11-23 18:01:08 +03:00
- [Superblocks Lab - Browser based IDE for Solidity ](https://lab.superblocks.com/ )
2017-11-23 15:39:43 +03:00
- [EthFiddle - The JsFiddle for Solidity ](https://ethfiddle.com/ )
2017-12-29 05:39:48 +03:00
- [Browser-based Solidity Editor ](https://remix.ethereum.org/ )
2016-06-20 21:56:44 +03:00
- [Gitter Solidity Chat room ](https://gitter.im/ethereum/solidity )
2015-12-29 01:11:00 +03:00
- [Modular design strategies for Ethereum Contracts ](https://docs.erisindustries.com/tutorials/solidity/ )
2021-02-26 21:58:26 +03:00
- [Chainlink Documentation ](https://docs.chain.link/docs/getting-started )
2015-11-24 00:02:00 +03:00
2021-03-26 15:05:58 +03:00
## Smart Contract Development Frameworks
- [Hardhat ](https://hardhat.org/ )
- [Brownie ](https://github.com/eth-brownie/brownie )
- [Truffle ](https://www.trufflesuite.com/ )
2017-12-29 05:39:48 +03:00
## Important libraries
2021-02-26 21:58:26 +03:00
- [Zeppelin ](https://github.com/OpenZeppelin/openzeppelin-contracts ): Libraries that provide common contract patterns (crowdfuding, safemath, etc)
- [Chainlink ](https://github.com/smartcontractkit/chainlink ): Code that allows you to interact with external data
2017-12-29 05:39:48 +03:00
2015-12-01 00:14:26 +03:00
## Sample contracts
2015-12-11 21:07:01 +03:00
- [Dapp Bin ](https://github.com/ethereum/dapp-bin )
2021-02-26 21:58:26 +03:00
- [Defi Example ](https://github.com/PatrickAlphaC/chainlink_defi )
2015-12-01 00:14:26 +03:00
- [Solidity Baby Step Contracts ](https://github.com/fivedogit/solidity-baby-steps/tree/master/contracts )
2015-12-29 10:45:58 +03:00
- [ConsenSys Contracts ](https://github.com/ConsenSys/dapp-store-contracts )
2015-12-01 01:23:41 +03:00
- [State of Dapps ](http://dapps.ethercasts.com/ )
2015-12-01 00:14:26 +03:00
2016-06-20 21:56:44 +03:00
## Security
- [Thinking About Smart Contract Security ](https://blog.ethereum.org/2016/06/19/thinking-smart-contract-security/ )
- [Smart Contract Security ](https://blog.ethereum.org/2016/06/10/smart-contract-security/ )
- [Hacking Distributed Blog ](http://hackingdistributed.com/ )
2015-12-29 01:11:00 +03:00
## Style
2018-04-10 21:12:03 +03:00
- [Solidity Style Guide ](http://solidity.readthedocs.io/en/latest/style-guide.html ): Ethereum's style guide is heavily derived from Python's [PEP 8 ](https://www.python.org/dev/peps/pep-0008/ ) style guide.
2015-12-29 01:11:00 +03:00
2016-06-20 21:56:44 +03:00
## Editors
2021-02-26 21:58:26 +03:00
- [Remix ](https://remix.ethereum.org/ )
2018-04-10 21:12:03 +03:00
- [Emacs Solidity Mode ](https://github.com/ethereum/emacs-solidity )
2016-06-20 21:56:44 +03:00
- [Vim Solidity ](https://github.com/tomlion/vim-solidity )
- Editor Snippets ([Ultisnips format](https://gist.github.com/nemild/98343ce6b16b747788bc))
2015-12-29 01:11:00 +03:00
## Future To Dos
- New keywords: protected, inheritable
2016-06-20 21:56:44 +03:00
- List of common design patterns (throttling, RNG, version upgrade)
- Common security anti patterns
2015-11-30 23:45:03 +03:00
Feel free to send a pull request with any edits - or email nemild -/at-/ gmail