├── .gitignore
├── .nojekyll
├── 404.html
├── CNAME
├── LICENSE
├── README.md
├── contracts
├── BasicToken.json
├── ERC20.json
├── ERC20Basic.json
├── LeekCoin.json
├── LeekCoinCrowdsale.json
├── Migrations.json
├── MintableToken.json
├── Ownable.json
├── SafeMath.json
├── StandardToken.json
└── token.json
├── crowdsale.html
├── css
├── main.css
└── scifi.css
├── images
└── icons
│ ├── android-icon-192x192.png
│ ├── apple-icon-120x120.png
│ ├── apple-icon-144x144.png
│ ├── apple-icon-152x152.png
│ ├── apple-icon-76x76.png
│ └── favicon.png
├── index.html
├── js
├── TweenMax.min.js
├── backgrounds
│ ├── drifter.min.js
│ └── particles.min.js
├── buy-token.js
├── dependencies.js
├── jquery.min.js
├── main.js
├── truffle-contract.js
└── web3.min.js
├── package.json
├── white-paper.pdf
└── white-paper.txt
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/.gitignore
--------------------------------------------------------------------------------
/.nojekyll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/404.html
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | lec.yubolun.com
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # lec
2 | Leek Ecological Chain
3 |
--------------------------------------------------------------------------------
/contracts/BasicToken.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/BasicToken.json
--------------------------------------------------------------------------------
/contracts/ERC20.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/ERC20.json
--------------------------------------------------------------------------------
/contracts/ERC20Basic.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/ERC20Basic.json
--------------------------------------------------------------------------------
/contracts/LeekCoin.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/LeekCoin.json
--------------------------------------------------------------------------------
/contracts/LeekCoinCrowdsale.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/LeekCoinCrowdsale.json
--------------------------------------------------------------------------------
/contracts/Migrations.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/Migrations.json
--------------------------------------------------------------------------------
/contracts/MintableToken.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/MintableToken.json
--------------------------------------------------------------------------------
/contracts/Ownable.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/Ownable.json
--------------------------------------------------------------------------------
/contracts/SafeMath.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/SafeMath.json
--------------------------------------------------------------------------------
/contracts/StandardToken.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/StandardToken.json
--------------------------------------------------------------------------------
/contracts/token.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/contracts/token.json
--------------------------------------------------------------------------------
/crowdsale.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/crowdsale.html
--------------------------------------------------------------------------------
/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/css/main.css
--------------------------------------------------------------------------------
/css/scifi.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/css/scifi.css
--------------------------------------------------------------------------------
/images/icons/android-icon-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/android-icon-192x192.png
--------------------------------------------------------------------------------
/images/icons/apple-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/apple-icon-120x120.png
--------------------------------------------------------------------------------
/images/icons/apple-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/apple-icon-144x144.png
--------------------------------------------------------------------------------
/images/icons/apple-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/apple-icon-152x152.png
--------------------------------------------------------------------------------
/images/icons/apple-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/apple-icon-76x76.png
--------------------------------------------------------------------------------
/images/icons/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/images/icons/favicon.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/index.html
--------------------------------------------------------------------------------
/js/TweenMax.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/TweenMax.min.js
--------------------------------------------------------------------------------
/js/backgrounds/drifter.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/backgrounds/drifter.min.js
--------------------------------------------------------------------------------
/js/backgrounds/particles.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/backgrounds/particles.min.js
--------------------------------------------------------------------------------
/js/buy-token.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/buy-token.js
--------------------------------------------------------------------------------
/js/dependencies.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/dependencies.js
--------------------------------------------------------------------------------
/js/jquery.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/jquery.min.js
--------------------------------------------------------------------------------
/js/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/main.js
--------------------------------------------------------------------------------
/js/truffle-contract.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/truffle-contract.js
--------------------------------------------------------------------------------
/js/web3.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/js/web3.min.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/package.json
--------------------------------------------------------------------------------
/white-paper.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/discountry/lec/HEAD/white-paper.pdf
--------------------------------------------------------------------------------
/white-paper.txt:
--------------------------------------------------------------------------------
1 | 要什么自行车?
2 |
--------------------------------------------------------------------------------