8x protocol is a way to enable decentralised recurring payments on the Ethereum blockchain. You can read more about it at: https://github.com/8x-protocol/whitepaper.
This repo is for the payment gateway that merchants will use.
To contribute, fork this repo, create a new branch, and submit a PR with your changes.
npm install
npm start
- Strip trailing whitespace
- 2 soft indent(spaces)
- 80 char line limit
- semi-colons
- alphabetize all things
Our components are organized in order of life-cycle events. Functions are ordered alphabetically. We recommend using an add-on for your editor for sorting if available.
React.createClass({
displayName : '',
propTypes: {},
getInitialState : function() {},
componentWillMount : function() {},
componentWillUnmount : function() {},
render : function() {}
});
Components without childrens should be self closed.
<Example />
Indent attributes for elements as shown below
<input
type="text"
value={this.props.example} />