├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── _config.yml ├── package.json └── src ├── app ├── index.js ├── miner.js └── p2p.js ├── blockchain ├── block.js ├── block.test.js ├── index.js └── index.test.js ├── config.js ├── dev.js ├── index.js ├── utility ├── index.js └── uuid.js └── wallet ├── index.js ├── index.test.js ├── transaction-pool.js ├── transaction-pool.test.js ├── transaction.js └── transaction.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | !.* 2 | node_modules/* 3 | /dist 4 | ./readme.md -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/_config.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/package.json -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/app/miner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/app/miner.js -------------------------------------------------------------------------------- /src/app/p2p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/app/p2p.js -------------------------------------------------------------------------------- /src/blockchain/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/blockchain/block.js -------------------------------------------------------------------------------- /src/blockchain/block.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/blockchain/block.test.js -------------------------------------------------------------------------------- /src/blockchain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/blockchain/index.js -------------------------------------------------------------------------------- /src/blockchain/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/blockchain/index.test.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/config.js -------------------------------------------------------------------------------- /src/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/dev.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/utility/index.js -------------------------------------------------------------------------------- /src/utility/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/utility/uuid.js -------------------------------------------------------------------------------- /src/wallet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/index.js -------------------------------------------------------------------------------- /src/wallet/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/index.test.js -------------------------------------------------------------------------------- /src/wallet/transaction-pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/transaction-pool.js -------------------------------------------------------------------------------- /src/wallet/transaction-pool.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/transaction-pool.test.js -------------------------------------------------------------------------------- /src/wallet/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/transaction.js -------------------------------------------------------------------------------- /src/wallet/transaction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazingandyyy/leptin/HEAD/src/wallet/transaction.test.js --------------------------------------------------------------------------------