Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename "call data" to "calldata" | Denton Liu | 2016-08-24 | 1 | -2/+2 |
| | |||||
* | Add comma | Denton Liu | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Fix control-structures | Denton Liu | 2016-08-24 | 1 | -4/+4 |
| | |||||
* | Update contracts.rst | Denton Liu | 2016-08-24 | 1 | -3/+4 |
| | |||||
* | Fix description about how blocks work | Denton Liu | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Change XXX bit to XXX-bit | Denton Liu | 2016-08-24 | 1 | -6/+6 |
| | |||||
* | Fix typo | Denton Liu | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Change example code formatting | Denton Liu | 2016-08-24 | 1 | -3/+3 |
| | |||||
* | Change capitalisation | Denton Liu | 2016-08-24 | 2 | -2/+2 |
| | |||||
* | Remove trailing whitespaces | Denton Liu | 2016-08-24 | 3 | -5/+5 |
| | |||||
* | Small documentation update | Dave Hoover | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Merge pull request #706 from Denton-L/withdrawal-pattern | chriseth | 2016-08-20 | 6 | -5/+113 |
|\ | | | | | Add Withdrawal Pattern Example | ||||
| * | Remove throw from withdrawal pattern | Denton Liu | 2016-08-19 | 1 | -3/+7 |
| | | |||||
| * | Fix code | Denton Liu | 2016-08-12 | 1 | -6/+6 |
| | | |||||
| * | Reference inspiration | Denton Liu | 2016-08-12 | 1 | -1/+2 |
| | | |||||
| * | Add minor corrections | Denton Liu | 2016-08-12 | 1 | -9/+10 |
| | | |||||
| * | Update contracts and descriptions | Denton Liu | 2016-08-11 | 1 | -4/+13 |
| | | |||||
| * | Change withdrawal example | Denton Liu | 2016-08-11 | 1 | -78/+43 |
| | | | | | | | | | | | | | | | | | | The example is now a "King of the Ether"-esque contract. This is actually relevant as they suffered an attack because of an almost identical issue. See the post-mortem here: https://www.kingoftheether.com/postmortem.html | ||||
| * | Use store example | Denton Liu | 2016-08-10 | 1 | -96/+68 |
| | | |||||
| * | Change example to auction | Denton Liu | 2016-08-10 | 1 | -24/+100 |
| | | |||||
| * | Remove trailing whitespace | Denton Liu | 2016-08-10 | 4 | -4/+4 |
| | | |||||
| * | Fix withdrawal pattern documentation | Denton Liu | 2016-08-10 | 1 | -4/+4 |
| | | |||||
| * | Link to withdraw pattern | Denton Liu | 2016-08-10 | 2 | -1/+3 |
| | | |||||
| * | Add section about withdrawal pattern | Denton Liu | 2016-08-10 | 3 | -0/+78 |
| | | |||||
* | | Document throwing on contract-creation fail | Denton Liu | 2016-08-19 | 1 | -1/+2 |
| | | |||||
* | | Document throwing on calling empty code | Denton Liu | 2016-08-18 | 1 | -1/+2 |
| | | |||||
* | | Add documentation about throwing | Denton Liu | 2016-08-18 | 1 | -2/+3 |
| | | |||||
* | | Merge pull request #839 from chriseth/checkcode | chriseth | 2016-08-17 | 1 | -0/+4 |
|\ \ | | | | | | | BREAKING: Make function calls throw if target does not have code. | ||||
| * | | Make function calls throw if target does not have code. | chriseth | 2016-08-17 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | Low-level calls still just execute and will actually report "success". This allows `x.call.value(y)()` for x being a non-contract account. | ||||
* | | | Merge pull request #888 from chriseth/throwOnDivZero | chriseth | 2016-08-17 | 1 | -0/+2 |
|\ \ \ | | | | | | | | | Throw on division by zero. | ||||
| * | | | Throw on division by zero. | chriseth | 2016-08-17 | 1 | -0/+2 |
| |/ / | |||||
* / / | BREAKING: return only exits current function/modifier | chriseth | 2016-08-17 | 1 | -7/+33 |
|/ / | |||||
* | | Merge pull request #905 from ethereum/chriseth-patch-1 | chriseth | 2016-08-17 | 1 | -1/+1 |
|\ \ | | | | | | | Docs: wording: recursive call exploit -> reentrancy exploit | ||||
| * | | Wording: recursive call exploit -> reentrancy exploit | chriseth | 2016-08-16 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #838 from chriseth/ecrecover | chriseth | 2016-08-17 | 2 | -2/+2 |
|\ \ \ | | | | | | | | | Make ecrecover return zero for malformed input. | ||||
| * | | | Actually better to return zero on error. | chriseth | 2016-08-16 | 2 | -2/+2 |
| |/ / | |||||
* | | | Fix docs. (#916) | chriseth | 2016-08-17 | 1 | -3/+9 |
| | | | |||||
* | | | Introduce hex literals (#832) | Alex Beregszaszi | 2016-08-16 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce hex keyword token * Support hex literals * Include tests for hex literals * Document hex literals | ||||
* | | | fix typo in costs modifier (#850) | gl367 | 2016-08-16 | 1 | -3/+5 |
| | | | |||||
* | | | Merge pull request #903 from mocamircea/patch-8 | chriseth | 2016-08-16 | 1 | -3/+10 |
|\ \ \ | | | | | | | | | Update control-structures.rst | ||||
| * | | | Update control-structures.rst | Mircea Moca | 2016-08-16 | 1 | -3/+8 |
| | | | | | | | | | | | | Splitted example. | ||||
| * | | | Update control-structures.rst | Mircea Moca | 2016-08-16 | 1 | -1/+3 |
| |/ / | |||||
* | | | Merge pull request #710 from chriseth/throwFailedCreate | chriseth | 2016-08-16 | 1 | -0/+37 |
|\ \ \ | | | | | | | | | BREAKING: Throw if contract creation fails. | ||||
| * | | | Throw if contract creation fails. | chriseth | 2016-08-16 | 1 | -0/+37 |
| |/ / | |||||
* | | | Merge pull request #904 from mocamircea/patch-9 | chriseth | 2016-08-16 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Update control-structures.rst | ||||
| * | | | Update control-structures.rst | Mircea Moca | 2016-08-16 | 1 | -1/+1 |
| | | | | |||||
| * | | | Update control-structures.rst | Mircea Moca | 2016-08-16 | 1 | -1/+1 |
| |/ / | | | | | | | typo -> coherence with previous occurrence in the document of C/JavaScript | ||||
* / / | Update index.rst | Jacob Benjamin Cholewa | 2016-08-16 | 1 | -0/+3 |
|/ / | | | | | Added a link for Syntastic. A vim plugin that provide compile checking using the solc compiler. | ||||
* | | Merge pull request #886 from mocamircea/patch-6 | chriseth | 2016-08-12 | 1 | -1/+1 |
|\ \ | | | | | | | Update units-and-global-variables.rst | ||||
| * | | Update units-and-global-variables.rst | Mircea Moca | 2016-08-12 | 1 | -1/+1 |
| | | | | | | | | | Coherence -> at the bottom of the document Wei is used several times, not "wei". | ||||
* | | | Update units-and-global-variables.rst | Mircea Moca | 2016-08-12 | 1 | -1/+1 |
|/ / | | | | | "Suffixes of" is wrong and misleading. "seconds", "minutes" etc. are suffixes of literal numbers. | ||||
* | | Merge pull request #858 from Denton-L/quotes-docs | chriseth | 2016-08-12 | 4 | -12/+24 |
|\ \ | | | | | | | Document existence of single-quotes | ||||
| * | | Correct all UTF-8 spellings | Denton Liu | 2016-08-11 | 2 | -6/+6 |
| | | | |||||
| * | | Add double-quotes to style guide | Denton Liu | 2016-08-11 | 1 | -1/+13 |
| | | | |||||
| * | | Change i.e. to e.g. | Denton Liu | 2016-08-11 | 1 | -1/+1 |
| | | | |||||
| * | | Mention single-quotes | Denton Liu | 2016-08-11 | 1 | -2/+2 |
| | | | |||||
| * | | Correct UTF-8 spellings | Denton Liu | 2016-08-11 | 1 | -3/+3 |
| | | | |||||
* | | | Merge pull request #844 from Denton-L/remove-after | chriseth | 2016-08-12 | 1 | -2/+1 |
|\ \ \ | | | | | | | | | BREAKING: Remove after | ||||
| * | | | Remove after keyword from documentation | Denton Liu | 2016-08-11 | 1 | -2/+1 |
| |/ / | |||||
* | | | Merge pull request #857 from cholewa1992/patch-1 | chriseth | 2016-08-12 | 1 | -1/+1 |
|\ \ \ | |/ / |/| | | Update installing-solidity.rst | ||||
| * | | Update installing-solidity.rst | Jacob Benjamin Cholewa | 2016-08-10 | 1 | -1/+1 |
| |/ | | | | | The JsonCpp library is also a needed dependency | ||||
* | | Merge pull request #824 from Denton-L/fix-typo | chriseth | 2016-08-11 | 1 | -2/+2 |
|\ \ | |/ |/| | Fix typo | ||||
| * | Add missing s | Denton Liu | 2016-08-09 | 1 | -1/+1 |
| | | |||||
| * | Refix typo | Denton Liu | 2016-08-09 | 1 | -1/+1 |
| | | |||||
| * | Fix typo | Denton Liu | 2016-08-05 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #820 from mocamircea/patch-3 | chriseth | 2016-08-08 | 1 | -0/+20 |
|\ \ | | | | | | | Update layout-of-source-files.rst | ||||
| * | | Update layout-of-source-files.rst | Mircea Moca | 2016-08-05 | 1 | -0/+20 |
| | | | | | | | | | An example of natspec comment. | ||||
* | | | Merge pull request #819 from mocamircea/patch-2 | chriseth | 2016-08-08 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Update layout-of-source-files.rst | ||||
| * | | | Update layout-of-source-files.rst | Mircea Moca | 2016-08-05 | 1 | -1/+1 |
| |/ / | | | | | | | better reading | ||||
* / / | Update layout-of-source-files.rst | Mircea Moca | 2016-08-05 | 1 | -1/+1 |
|/ / | | | | | The phrase eds with the given example. | ||||
* | | Merge pull request #666 from axic/feature/unicode-escape | chriseth | 2016-08-05 | 1 | -1/+3 |
|\ \ | | | | | | | Support unicode escape characters | ||||
| * | | Document \n, \xNN and \uNNNN | Alex Beregszaszi | 2016-08-05 | 1 | -0/+2 |
| | | | |||||
| * | | Fix String Literals documentation about implicit conversions | Alex Beregszaszi | 2016-08-05 | 1 | -1/+1 |
| |/ | |||||
* / | Build using solidity-standalone. | chriseth | 2016-08-04 | 1 | -38/+10 |
|/ | |||||
* | Merge pull request #776 from chriseth/deploydocs | chriseth | 2016-08-01 | 1 | -1/+5 |
|\ | | | | | Deploydocs | ||||
| * | Made snippet work as is. | chriseth | 2016-08-01 | 1 | -3/+3 |
| | | |||||
| * | Update contracts.rst | cseberino | 2016-08-01 | 1 | -2/+6 |
| | | |||||
* | | Merge pull request #750 from ethereum/chriseth-patch-2 | chriseth | 2016-08-01 | 1 | -1/+1 |
|\ \ | | | | | | | Correct source map definition. | ||||
| * | | Correct source map definition. | chriseth | 2016-07-27 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #764 from Denton-L/make-safe | chriseth | 2016-08-01 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | Throw if send() fails in example code | ||||
| * | | | Throw if send() fails in example code | Denton Liu | 2016-07-30 | 1 | -1/+2 |
| | |/ | |/| | |||||
* | | | Merge pull request #732 from Denton-L/document-precedence | chriseth | 2016-08-01 | 3 | -1/+67 |
|\ \ \ | |/ / |/| | | Document precedence | ||||
| * | | Add unary operations to the table | Denton Liu | 2016-07-29 | 1 | -0/+2 |
| | | | |||||
| * | | Link to order of precedence table | Denton Liu | 2016-07-29 | 1 | -1/+1 |
| | | | |||||
| * | | Remove >>> and >>>= operators | Denton Liu | 2016-07-27 | 1 | -3/+3 |
| | | | |||||
| * | | Revert "Remove comma operator" | Denton Liu | 2016-07-27 | 1 | -0/+3 |
| | | | | | | | | | | | | This reverts commit 1ec74f8cc4b952331b3003e2326eb90aa7fc2e55. | ||||
| * | | Fix assignment operators | Denton Liu | 2016-07-27 | 1 | -0/+1 |
| | | | |||||
| * | | Remove comma operator | Denton Liu | 2016-07-27 | 1 | -3/+0 |
| | | | |||||
| * | | Add link to operator table | Denton Liu | 2016-07-21 | 2 | -0/+5 |
| | | | |||||
| * | | Create order of precedence table | Denton Liu | 2016-07-21 | 1 | -0/+58 |
| | | | |||||
* | | | Mix is discontinued | chriseth | 2016-07-27 | 1 | -3/+6 |
| |/ |/| | |||||
* | | Update contracts.rst | Manidos | 2016-07-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | I've changed line 88, because **if (msg.sender == creator)** threw an exception in solidity browser compier. Untitled:25:13: Error: Operator == not compatible with types address and contract TokenCreator if (msg.sender == creator) ^-------------------^ | ||||
* | | Merge pull request #721 from ethers/patch-5 | chriseth | 2016-07-27 | 1 | -1/+1 |
|\ \ | | | | | | | mixedCase for modifiers | ||||
| * | | mixedCase for modifiers | ethers | 2016-07-14 | 1 | -1/+1 |
| | | | |||||
* | | | Added tx.origin caution | DennisBPeterson | 2016-07-22 | 1 | -0/+39 |
| | | | |||||
* | | | Missing '_' in modifier 'timedTransitions' | Weiyang Zhu | 2016-07-21 | 1 | -0/+1 |
| | | | |||||
* | | | Source mapping documentation. | chriseth | 2016-07-21 | 1 | -0/+53 |
| | | | |||||
* | | | Merge pull request #704 from ethereum/malleability | chriseth | 2016-07-19 | 1 | -1/+5 |
|\ \ \ | |_|/ |/| | | Expanded malleability risks. | ||||
| * | | Expanded malleability risks. | chriseth | 2016-07-07 | 1 | -2/+6 |
| | | | |||||
* | | | Fix typos | Denton Liu | 2016-07-13 | 2 | -3/+3 |
| | | | |||||
* | | | Update copyright | Denton Liu | 2016-07-12 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Merge pull request #680 from Denton-L/fix-679 | chriseth | 2016-07-09 | 2 | -4/+12 |
|\ \ | | | | | | | Add section about default values of variables | ||||
| * | | Incorporate changes | Denton Liu | 2016-07-09 | 1 | -2/+1 |
| | | | |||||
| * | | Apply fixes | Denton Liu | 2016-07-05 | 1 | -5/+4 |
| | | | |||||
| * | | Add reference to default values in mapping section | Denton Liu | 2016-07-04 | 1 | -1/+1 |
| | | | |||||
| * | | Fix incorrect directives | Denton Liu | 2016-07-04 | 1 | -3/+5 |
| | | | |||||
| * | | Add section about default values of variables | Denton Liu | 2016-06-23 | 1 | -2/+10 |
| | | | |||||
* | | | Merge pull request #689 from redsquirrel/patch-1 | chriseth | 2016-07-09 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Removing "easy" language | ||||
| * | | | Removing "easy" language | Dave Hoover | 2016-06-27 | 1 | -1/+1 |
| | | | | | | | | | | | | I'm trying to steer us away from language that over-simplifies the complexity of writing secure smart contracts. | ||||
* | | | | Merge pull request #700 from Denton-L/sec | chriseth | 2016-07-09 | 2 | -49/+52 |
|\ \ \ \ | | | | | | | | | | | Minor Changes to #693 | ||||
| * | | | | Repharse sentence | Denton Liu | 2016-07-09 | 1 | -1/+2 |
| | | | | | |||||
| * | | | | Mention dangers of polymorphism | Denton Liu | 2016-07-08 | 1 | -1/+4 |
| | | | | | |||||
| * | | | | Incorporate corrections | Denton Liu | 2016-07-08 | 2 | -4/+4 |
| | | | | | |||||
| * | | | | Reformat code | Denton Liu | 2016-07-05 | 1 | -17/+16 |
| | | | | | |||||
| * | | | | Correct grammar and language | Denton Liu | 2016-07-05 | 2 | -34/+34 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #703 from raineorshine/patch-2 | chriseth | 2016-07-08 | 1 | -0/+12 |
|\ \ \ \ | | | | | | | | | | | Documentation: Add Solidity Tools | ||||
| * | | | | Documentation: Add Solidity Tools | Raine Revere | 2016-07-06 | 1 | -0/+12 |
| |/ / / | |||||
* / / / | Fixed mix-up of variable names in Sent event | svantetobias | 2016-07-06 | 1 | -2/+2 |
|/ / / | | | | | | | event Sent(address from, address to, uint amount) defines "amount" variable but it is two times referred to as "value", which can be a bit confusing for the reader. | ||||
* | | | Fixes. | chriseth | 2016-07-04 | 1 | -10/+23 |
| | | | |||||
* | | | Security Considerations | chriseth | 2016-07-04 | 7 | -32/+250 |
|/ / | |||||
* | | Merge pull request #672 from pjdelport/patch-1 | chriseth | 2016-06-27 | 1 | -1/+1 |
|\ \ | | | | | | | Update link to atom-ethereum-interface package | ||||
| * | | Update link to atom-ethereum-interface package | Pi Delport | 2016-06-20 | 1 | -1/+1 |
| | | | |||||
* | | | Fixing library examples that don't compile. | Dave Hoover | 2016-06-25 | 1 | -5/+5 |
| |/ |/| | | | Addressing https://github.com/ethereum/solidity/issues/684 | ||||
* | | Merge pull request #658 from graup/graup-patch-1 | chriseth | 2016-06-21 | 1 | -1/+1 |
|\ \ | | | | | | | Fix typo in Libraries section | ||||
| * | | Fix typo in Libraries section | Paul Grau | 2016-06-18 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #555 from Denton-L/single-line-functions | chriseth | 2016-06-21 | 1 | -1/+10 |
|\ \ \ | | | | | | | | | Added a Clause in Style Guide about Single Line Function Declarations | ||||
| * | | | Change whitespace section to include exception | Denton Liu | 2016-05-12 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | For single-line functions, some whitespace padding makes the functions slightly more readable. | ||||
| * | | | Changed do_something to doSomething | Denton Liu | 2016-05-12 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | This is in accordance to the style guide | ||||
| * | | | Added a clause about short functions | Denton Liu | 2016-05-06 | 1 | -0/+5 |
| | | | | |||||
* | | | | Merge pull request #669 from fabioberger/patch-2 | chriseth | 2016-06-21 | 1 | -2/+2 |
|\ \ \ \ | | | | | | | | | | | Fix two documentation typos | ||||
| * | | | | Fix two documentation typos | Fabio Berger | 2016-06-20 | 1 | -2/+2 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #673 from pjdelport/patch-2 | chriseth | 2016-06-21 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | Restore correct inline code sample | ||||
| * | | | | Restore correct inline code sample | Pi Delport | 2016-06-20 | 1 | -1/+1 |
| |/ / / | | | | | | | | | (This appears to have been accidentally broken in a73428b4.) | ||||
* / / / | Add missing inline code tag | Pi Delport | 2016-06-20 | 1 | -1/+1 |
|/ / / | |||||
* | | | Fix mis-typed word. The recipient will `run` out of gas, not `go` out of gas | Fabio Berger | 2016-06-19 | 1 | -1/+1 |
| | | | |||||
* | | | Added missing word in sentence | Fabio Berger | 2016-06-18 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Merge pull request #640 from chriseth/globalPaths | chriseth | 2016-06-10 | 2 | -5/+29 |
|\ \ | | | | | | | Allow remappings to change depending on the context. | ||||
| * | | Allow remappings to change depending on the context. | chriseth | 2016-06-09 | 2 | -5/+29 |
| | | | |||||
* | | | Merge pull request #616 from chriseth/docs | chriseth | 2016-06-10 | 3 | -29/+61 |
|\ \ \ | |/ / |/| | | Removed some problems in documentation examples. | ||||
| * | | Typo. | chriseth | 2016-06-09 | 1 | -1/+1 |
| | | | |||||
| * | | style | chriseth | 2016-06-02 | 1 | -3/+5 |
| | | | |||||
| * | | Removed some problems in documentation examples. | chriseth | 2016-05-31 | 3 | -28/+58 |
| | | | |||||
* | | | Merge pull request #618 from chriseth/inlineArrays | chriseth | 2016-06-09 | 1 | -0/+38 |
|\ \ \ | | | | | | | | | Document inline arrays. | ||||
| * | | | Fixed typo. | chriseth | 2016-06-03 | 1 | -1/+1 |
| | | | | |||||
| * | | | Document inline arrays. | chriseth | 2016-05-31 | 1 | -0/+38 |
| |/ / | |||||
* | | | Merge pull request #612 from Denton-L/global-variables | chriseth | 2016-06-07 | 4 | -37/+83 |
|\ \ \ | | | | | | | | | Cleaned up and modified global variables documentation | ||||
| * | | | Added back 'For more information...' statement | Denton Liu | 2016-06-03 | 1 | -0/+2 |
| | | | | |||||
| * | | | Changed reference name | Denton Liu | 2016-06-02 | 2 | -3/+2 |
| | | | | |||||
| * | | | Fixed a bad reference | Denton Liu | 2016-06-02 | 1 | -1/+2 |
| | | | | |||||
| * | | | Added newlines to fix build error | Denton Liu | 2016-06-02 | 1 | -0/+2 |
| | | | | |||||
| * | | | Documented max stack depth at 1024 | Denton Liu | 2016-06-02 | 2 | -2/+2 |
| | | | | |||||
| * | | | Make address link look better | Denton Liu | 2016-06-02 | 1 | -4/+2 |
| | | | | |||||
| * | | | uint20 is not a type | Denton Liu | 2016-06-02 | 1 | -2/+2 |
| | | | | |||||
| * | | | Copied warning message from cherry-picked commit | Denton Liu | 2016-06-02 | 1 | -3/+4 |
| | | | | |||||
| * | | | Updated incorrect list number | Denton Liu | 2016-06-02 | 1 | -1/+1 |
| | | | | |||||
| * | | | Document some pitfalls in connection with "send". | chriseth | 2016-06-02 | 2 | -0/+24 |
| | | | | |||||
| * | | | Link address-type and address-global methods | Denton Liu | 2016-06-02 | 2 | -0/+4 |
| | | | | |||||
| * | | | Corrected typo | Denton Liu | 2016-06-02 | 1 | -1/+1 |
| | | | | |||||
| * | | | Named the global function parameters | Denton Liu | 2016-05-31 | 2 | -6/+6 |
| | | | | |||||
| * | | | Added section on address-related constants | Denton Liu | 2016-05-31 | 1 | -0/+15 |
| | | | | |||||
| * | | | Corrected descriptions of hashes | Denton Liu | 2016-05-31 | 1 | -3/+3 |
| | | | | |||||
| * | | | Removed leading space | Denton Liu | 2016-05-31 | 1 | -14/+14 |
| | | | | |||||
| * | | | Made explicit that we use KECCAK-256 | Denton Liu | 2016-05-31 | 2 | -2/+2 |
| | | | | |||||
| * | | | Removed ending periods for consistency | Denton Liu | 2016-05-31 | 1 | -3/+3 |
| | | | | |||||
| * | | | Added the type of .balance | Denton Liu | 2016-05-31 | 1 | -1/+1 |
| | | | | |||||
| * | | | Sorted block attributes alphabetically | Denton Liu | 2016-05-31 | 2 | -2/+2 |
| | | | | |||||
| * | | | Made it apparent that block.blockhash is function | Denton Liu | 2016-05-31 | 2 | -2/+2 |
| | | | | |||||
| * | | | Corrected underline length | Denton Liu | 2016-05-31 | 1 | -1/+1 |
| | | | | |||||
| * | | | Corrected capitalisation on index.rst | Denton Liu | 2016-05-31 | 1 | -5/+5 |
| |/ / | |||||
* | | | Up-to-date build instructions for Ubuntu 14.04 | Giacomo Tazzari | 2016-06-05 | 1 | -3/+25 |
| | | | |||||
* | | | I forgot to finish typing a paragraph | Giacomo Tazzari | 2016-06-05 | 1 | -1/+1 |
| | | | |||||
* | | | Instructions to build Solidity on Ubuntu 16.04 | Giacomo Tazzari | 2016-06-05 | 1 | -39/+25 |
|/ / | | | | | | | Minimal dependencies for Solidity on Ubuntu 16.04, removed those for older Ubuntu versions for now (they were a bit confusing). Removed --all and added -DETHASHCL=0 to ethbuild.sh when building Solidity only. | ||||
* | | Added a section about .send() returning false | Denton Liu | 2016-05-30 | 1 | -0/+3 |
| | | |||||
* | | Added @Arachnid's string library | Denton Liu | 2016-05-30 | 1 | -1/+1 |
| | | |||||
* | | Removed inline code formatting for one title | Denton Liu | 2016-05-30 | 1 | -2/+2 |
| | | |||||
* | | Corrected underline lengths | Denton Liu | 2016-05-30 | 1 | -30/+30 |
| | | |||||
* | | Changed inline code syntax | Denton Liu | 2016-05-30 | 12 | -456/+456 |
| | | | | | | | | Changed from :code:`<inline>` to ``<inline>`` | ||||
* | | Modified units-and-global-variables.rst | Denton Liu | 2016-05-30 | 1 | -39/+39 |
| | | | | | | | | Corrected syntax for inline code | ||||
* | | Modified types.rst | Denton Liu | 2016-05-30 | 1 | -83/+83 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Modified style-guide.rst | Denton Liu | 2016-05-30 | 1 | -4/+4 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Corrected solidity-by-example.rst | Denton Liu | 2016-05-30 | 1 | -1/+1 |
| | | | | | | | | Fixed inline code syntax | ||||
* | | Modified miscellaneous.rst | Denton Liu | 2016-05-30 | 1 | -59/+61 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Modified layout-of-source-files.rst | Denton Liu | 2016-05-30 | 1 | -19/+19 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Modified introduction-to-smart-contracts.rst | Denton Liu | 2016-05-30 | 1 | -25/+25 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Modified installing-solidity.rst | Denton Liu | 2016-05-30 | 1 | -3/+3 |
| | | | | | | | | Corrected inline code syntax | ||||
* | | Fixed whitespacing issues | Denton Liu | 2016-05-30 | 1 | -10/+10 |
| | | |||||
* | | Corrected FAQ titles | Denton Liu | 2016-05-30 | 1 | -66/+66 |
| | | |||||
* | | Modified frequently-asked-questions.rst | Denton Liu | 2016-05-30 | 1 | -78/+78 |
| | | | | | | | | Changed inline code syntax | ||||
* | | Modified control-structures.rst | Denton Liu | 2016-05-30 | 1 | -46/+46 |
| | | | | | | | | Changed inline code syntax | ||||
* | | Modified contracts.rst | Denton Liu | 2016-05-30 | 1 | -60/+60 |
| | | | | | | | | Changed inline code syntax | ||||
* | | Modified common-patterns.rst | Denton Liu | 2016-05-30 | 1 | -4/+4 |
| | | | | | | | | Now it uses proper inline code syntax | ||||
* | | Added Atom Solidity Linter to Docs | Jacob Payne | 2016-05-28 | 1 | -1/+4 |
| | | |||||
* | | Merge pull request #601 from mathvdh/patch-1 | chriseth | 2016-05-27 | 1 | -1/+1 |
|\ \ | | | | | | | Typo correction in solidity-by-example.rst | ||||
| * | | Typo correction in solidity-by-example.rst | Mathieu Van der Haegen | 2016-05-26 | 1 | -1/+1 |
| | | | | | | | | | Just correcting a simple typo in the comments of the code | ||||
* | | | Use original vim-solidity repository | chriseth | 2016-05-27 | 1 | -1/+1 |
| | | | |||||
* | | | Add vim and emacs plugins. | chriseth | 2016-05-26 | 1 | -2/+8 |
|/ / | |||||
* | | Fixed errors introduced by previous commit | Denton Liu | 2016-05-24 | 1 | -1/+2 |
| | | | | | | | | #565 introduced some errors in the documentation | ||||
* | | Update links to browser-solidity. | chriseth | 2016-05-20 | 5 | -17/+9 |
| | | |||||
* | | Merge pull request #578 from winsvega/develop | chriseth | 2016-05-20 | 1 | -2/+24 |
|\ \ | | | | | | | More Solidity IDE links | ||||
| * | | More links to solidity implementations | Dimitry | 2016-05-20 | 1 | -2/+24 |
| | | | |||||
* | | | Merge pull request #565 from VoR0220/fixedDataType | chriseth | 2016-05-20 | 1 | -8/+48 |
|\ \ \ | | | | | | | | | Fixed data typename fixes and documentation | ||||
| * | | | updated docs | VoR0220 | 2016-05-19 | 1 | -8/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | types reference | ||||
* | | | | Typo fix | Dave Hoover | 2016-05-20 | 1 | -1/+1 |
| | | | | |||||
* | | | | Corrected capitalisation | Denton Liu | 2016-05-20 | 1 | -3/+3 |
| | | | | |||||
* | | | | Changed link to point to solc-js repo | Denton Liu | 2016-05-20 | 1 | -1/+1 |
| | | | | |||||
* | | | | Corrected typo | Denton Liu | 2016-05-19 | 1 | -1/+1 |
| | | | | |||||
* | | | | Changed link from markdown to rst | Denton Liu | 2016-05-19 | 3 | -4/+6 |
| | | | | | | | | | | | | | | | | Added labels for the links to point to | ||||
* | | | | Corrected capitalisation of symbol names | Denton Liu | 2016-05-19 | 4 | -21/+22 |
| | | | | |||||
* | | | | Corrected documentation for ecrecover | Denton Liu | 2016-05-19 | 2 | -3/+3 |
| | | | | |||||
* | | | | Corrected "who's" to "whose" | Denton Liu | 2016-05-19 | 1 | -2/+2 |
| | | | | |||||
* | | | | Changed do_something to doSomething | Denton Liu | 2016-05-19 | 1 | -9/+9 |
|/ / / | | | | | | | | | | This is in accordance to the style guide | ||||
* | | | Corrected errors. | chriseth | 2016-05-19 | 3 | -2/+4 |
| | | | |||||
* | | | Fixed a badly resolved merge conflict | Denton Liu | 2016-05-19 | 1 | -3/+3 |
| | | | |||||
* | | | Changed whitespace formatting | Denton Liu | 2016-05-18 | 9 | -186/+219 |
| | | | |||||
* | | | Added space to example code | Denton Liu | 2016-05-18 | 1 | -0/+4 |
| | | | |||||
* | | | Removed trailing whitespace | Denton Liu | 2016-05-18 | 6 | -37/+37 |
| | | | |||||
* | | | Added an extra necessary linebreak | Denton Liu | 2016-05-18 | 1 | -0/+1 |
| | | | |||||
* | | | Removed trailing whitespace | Denton Liu | 2016-05-18 | 2 | -7/+7 |
| | | | |||||
* | | | Fixed table formatting | Denton Liu | 2016-05-18 | 1 | -141/+141 |
| | | | |||||
* | | | Replaced tabs with spaces | Denton Liu | 2016-05-18 | 1 | -97/+97 |
| | | | |||||
* | | | Increased clarity of assembly statement | Denton Liu | 2016-05-18 | 1 | -2/+5 |
| | | | |||||
* | | | Corrected spacing to four spaces | Denton Liu | 2016-05-18 | 1 | -38/+40 |
| | | | |||||
* | | | Removed trailing space | Denton Liu | 2016-05-18 | 1 | -1/+1 |
| | | | |||||
* | | | Replaced all tabs with spaces | Denton Liu | 2016-05-18 | 1 | -50/+50 |
| | | | |||||
* | | | More code-style corrections | Denton Liu | 2016-05-18 | 1 | -5/+21 |
|/ / | |||||
* | | Merge pull request #572 from Melvillian/fix-example-contract-abi | chriseth | 2016-05-18 | 1 | -1/+1 |
|\ \ | | | | | | | fix example solidity contract code by adding argument to constructor | ||||
| * | | fix example solidity contract code by adding argument to constructor | Alex Melville | 2016-05-16 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #545 from chriseth/accessFunLabels | chriseth | 2016-05-18 | 1 | -2/+13 |
|\ \ \ | |/ / |/| | | Allow access to functions in inline assembly. | ||||
| * | | Typo | chriseth | 2016-05-17 | 1 | -1/+1 |
| | | | |||||
| * | | Allow access to functions in inline assembly. | chriseth | 2016-05-12 | 1 | -2/+13 |
| | | | |||||
* | | | Merge pull request #546 from chriseth/fixiszero | chriseth | 2016-05-14 | 1 | -3/+3 |
|\ \ \ | | | | | | | | | Correctly use not/bnot/iszero. | ||||
| * | | | Correctly use not/bnot/iszero. | chriseth | 2016-05-09 | 1 | -3/+3 |
| |/ / | | | | | | | | | | | | | A long time ago, some opcodes were renamed. Now we should only have not (bitwise negation) and iszero (logical negation). | ||||
* | | | Merge pull request #543 from raineorshine/patch-1 | chriseth | 2016-05-14 | 1 | -2/+3 |
|\ \ \ | | | | | | | | | Add this.balance and this.send to units-and-global-variables.rst | ||||
| * | | | Update units-and-global-variables.rst with link to address ref | Raine Revere | 2016-05-10 | 1 | -5/+2 |
| | | | | |||||
| * | | | Add this.balance and this.send to units-and-global-variables.rst | Raine Revere | 2016-05-09 | 1 | -0/+4 |
| |/ / | | | | | | | I looked here for this information and didn't initially find it. Hoping to help out others who think the same way as me and look here. | ||||
* | | | Merge pull request #557 from Denton-L/scoping | chriseth | 2016-05-13 | 1 | -0/+57 |
|\ \ \ | | | | | | | | | Added Section about Scoping Behaviours | ||||
| * | | | Removed unnecessary period | Denton Liu | 2016-05-13 | 1 | -2/+2 |
| | | | | |||||
| * | | | Added origin of scoping rules | Denton Liu | 2016-05-12 | 1 | -0/+1 |
| | | | | |||||
| * | | | Moved comment to more logical place | Denton Liu | 2016-05-12 | 1 | -1/+1 |
| | | | | |||||
| * | | | Removed trailing spaces | Denton Liu | 2016-05-12 | 1 | -4/+4 |
| | | | | |||||
| * | | | Added content | Denton Liu | 2016-05-12 | 1 | -0/+51 |
| | | | | |||||
| * | | | Changed the title | Denton Liu | 2016-05-12 | 1 | -4/+3 |
| | | | | |||||
| * | | | Created scoping section | Denton Liu | 2016-05-12 | 1 | -0/+6 |
| |/ / | |||||
* / / | Update style-guide.rst | mario02423 | 2016-05-10 | 1 | -1/+1 |
|/ / | | | | | Removed extraneous comma from line 366 | ||||
* | | Merge pull request #541 from Denton-L/develop | chriseth | 2016-05-07 | 6 | -90/+208 |
|\| | | | | | Minor Documentation Changes | ||||
| * | Removed trailing whitespace | Denton Liu | 2016-05-06 | 1 | -2/+2 |
| | | |||||
| * | Removed bulleted list | Denton Liu | 2016-05-06 | 1 | -3/+3 |
| | | |||||
| * | Moved the location of the "||" | Denton Liu | 2016-05-06 | 1 | -3/+3 |
| | | |||||
| * | Fixed up formatting | Denton Liu | 2016-05-06 | 1 | -62/+94 |
| | | |||||
| * | Corrected formatting | Denton Liu | 2016-05-06 | 1 | -9/+37 |
| | |