aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contracts.rst
Commit message (Collapse)AuthorAgeFilesLines
* Update contracts.rstMorgan2017-04-181-1/+1
|
* Fix typoMatt Searle2017-03-271-1/+1
|
* Disallow constructor in interfacesAlex Beregszaszi2017-03-181-0/+1
|
* Disallow enums in interfacesAlex Beregszaszi2017-03-181-0/+1
|
* Document interfacesAlex Beregszaszi2017-03-181-0/+27
|
* Fix typo (recieve to receive)Alex Beregszaszi2017-03-161-1/+1
|
* Documentation update.chriseth2017-03-131-8/+13
|
* Extend documentation for constant state variables.chriseth2017-03-131-2/+9
|
* Disallow constants that are neither value types nor strings.chriseth2017-03-131-0/+3
|
* Documentation.chriseth2017-03-131-6/+5
|
* Rename accessor to getterAlex Beregszaszi2017-02-031-12/+12
|
* docs: document the resriction about a function and an event of the same ↵Yoichi Hirai2017-01-121-0/+7
| | | | name, and so on
* docs: add a description about the types of parameters of overriding functionsYoichi Hirai2016-11-231-2/+4
|
* Merge the constructor sectionsAlex Beregszaszi2016-10-191-0/+3
|
* Mention why Homestead was different for librariesAlex Beregszaszi2016-10-191-1/+1
|
* Document constant functionsAlex Beregszaszi2016-10-191-3/+24
|
* Rename sha3 to keccak256 in the documentationAlex Beregszaszi2016-10-061-3/+3
|
* Update documentation to version 0.4.0.chriseth2016-09-071-17/+51
|
* Merge pull request #1003 from winsvega/docschriseth2016-09-061-0/+26
|\ | | | | add "pragma solidity ^0.4.0;" to code examples
| * add "pragma solidity ^0.4.0;" to code examplesDimitry2016-09-051-0/+26
| |
* | Require ";" after "_"chriseth2016-09-051-3/+3
|/
* Clarify warning.chriseth2016-08-301-2/+3
|
* Documentation.chriseth2016-08-301-0/+5
|
* Clean up contracts.rstDenton Liu2016-08-271-14/+17
|
* Merge pull request #953 from Denton-L/fallback-stuffchriseth2016-08-261-18/+27
|\ | | | | Write about what fallback functions cannot do
| * Add "Sending Ether"Denton Liu2016-08-261-0/+1
| |
| * Correct spacingDenton Liu2016-08-261-18/+18
| |
| * Write about what fallback functions cannot doDenton Liu2016-08-261-0/+8
| |
* | Disallow fallback function to return values.chriseth2016-08-261-1/+2
|/
* Merge pull request #925 from mocamircea/patch-10chriseth2016-08-261-11/+56
|\ | | | | Update contracts.rst
| * Update contracts.rstMircea Moca2016-08-251-9/+47
| | | | | | | | | | | | | | | | | | I left the example with contract C only, showing the access specifiers discussed at 186-188. The specifier of data is left public since nothing is related to accessor functions now. Added a separate example with contracts C, D and E to show specifier's effect. Added a separate example to prove the synthesizing of accessor functions. Added a new example to show the internal/external call of the accessor, according to existent discussion.
| * Update contracts.rstMircea Moca2016-08-191-4/+4
| | | | | | I think it's more clear now and without the risk of mentioning the yet discussed accessor concept
| * Update contracts.rstMircea Moca2016-08-181-7/+14
| | | | | | Extended example according to the discussed stuff, clarification & typos
* | Update contracts.rstDenton Liu2016-08-241-3/+4
| |
* | Remove trailing whitespacesDenton Liu2016-08-241-1/+1
| |
* | Small documentation updateDave Hoover2016-08-241-1/+1
|/
* BREAKING: return only exits current function/modifierchriseth2016-08-171-7/+33
|
* Made snippet work as is.chriseth2016-08-011-3/+3
|
* Update contracts.rstcseberino2016-08-011-2/+6
|
* Update contracts.rstManidos2016-07-271-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) ^-------------------^
* Security Considerationschriseth2016-07-041-1/+1
|
* Fixing library examples that don't compile.Dave Hoover2016-06-251-5/+5
| | | Addressing https://github.com/ethereum/solidity/issues/684
* Merge pull request #658 from graup/graup-patch-1chriseth2016-06-211-1/+1
|\ | | | | Fix typo in Libraries section
| * Fix typo in Libraries sectionPaul Grau2016-06-181-2/+2
| |
* | Fix two documentation typosFabio Berger2016-06-201-2/+2
|/
* Changed inline code syntaxDenton Liu2016-05-301-60/+60
| | | | Changed from :code:`<inline>` to ``<inline>``
* Modified contracts.rstDenton Liu2016-05-301-60/+60
| | | | Changed inline code syntax
* Changed link from markdown to rstDenton Liu2016-05-191-2/+2
| | | | Added labels for the links to point to
* Corrected capitalisation of symbol namesDenton Liu2016-05-191-11/+12
|
* Changed whitespace formattingDenton Liu2016-05-181-23/+24
|
* Replaced all tabs with spacesDenton Liu2016-05-181-50/+50
|
* More code-style correctionsDenton Liu2016-05-181-5/+21
|
* fix example solidity contract code by adding argument to constructorAlex Melville2016-05-161-1/+1
|
* Reformatted according to style guideDenton Liu2016-05-061-3/+53
|
* Update contracts.rstDenton Liu2016-05-061-1/+1
| | | | Corrected grammar error
* Documentation.chriseth2016-05-051-0/+66
|
* Documentation for delegatecall.chriseth2016-03-121-35/+8
|
* Update contracts.rstuberlaufer2016-03-111-4/+3
|
* shortened lines to 79uberlaufer2016-03-111-1/+5
|
* Update contracts.rstuberlaufer2016-03-111-5/+1
| | | minor grammar and spelling corrections
* Added in-depth links to function modifiers, structs and enums in structure ↵holgerd772016-02-191-0/+2
| | | | section
* docs: code sytleu22015-12-301-192/+192
|
* Fixes in the misc section.chriseth2015-12-211-0/+4
|
* Note about private note being invisible.chriseth2015-12-141-0/+7
|
* Imported documentation.chriseth2015-12-081-0/+899