├── README.md ├── TODO.md ├── game01 └── README.md ├── game02 └── README.md ├── luck_poing ├── .DS_Store ├── README.md ├── bs-config.json ├── build │ └── contracts │ │ ├── BasicToken.json │ │ ├── ERC20.json │ │ ├── ERC20Basic.json │ │ ├── LuckPoing.json │ │ ├── LuckPoingToken.json │ │ ├── Migrations.json │ │ ├── SafeMath.json │ │ ├── StandardToken.json │ │ └── TicTacToeToken.json ├── contracts │ ├── LuckPoing.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── package-lock.json ├── package.json ├── src │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── style.css │ │ └── style.js │ ├── images │ │ ├── .DS_Store │ │ ├── bg.jpg │ │ ├── logo.png │ │ ├── player1s.png │ │ ├── player2s.png │ │ └── presenter.png │ ├── index.html │ └── js │ │ ├── .DS_Store │ │ ├── app.js │ │ ├── bootstrap.min.js │ │ ├── game.js │ │ ├── jquery.min.js │ │ ├── truffle-contract.js │ │ └── web3.min.js ├── truffle-config.js └── truffle.js └── tic_tac_toe ├── .DS_Store ├── README.md ├── bs-config.json ├── build └── contracts │ ├── BasicToken.json │ ├── ERC20.json │ ├── ERC20Basic.json │ ├── Migrations.json │ ├── SafeMath.json │ ├── StandardToken.json │ └── TicTacToeToken.json ├── contracts ├── Migrations.sol └── TicTacToeToken.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package-lock.json ├── package.json ├── src ├── .DS_Store ├── css │ ├── .DS_Store │ ├── style.css │ └── style.js ├── images │ ├── .DS_Store │ ├── bg.jpg │ ├── board_btn_0.png │ ├── board_btn_1.png │ ├── board_btn_2.png │ ├── logo.png │ ├── player1s.png │ └── player2s.png ├── index.html └── js │ ├── .DS_Store │ ├── app.js │ ├── bootstrap.min.js │ ├── game.js │ ├── jquery.min.js │ ├── truffle-contract.js │ └── web3.min.js ├── truffle-config.js └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/TODO.md -------------------------------------------------------------------------------- /game01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/game01/README.md -------------------------------------------------------------------------------- /game02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/game02/README.md -------------------------------------------------------------------------------- /luck_poing/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/.DS_Store -------------------------------------------------------------------------------- /luck_poing/README.md: -------------------------------------------------------------------------------- 1 | 以太坊比大小游戏 2 | 本项目基于ERC20协议 3 | 项目部署前,使用前先初始化nodejs的module 4 | -------------------------------------------------------------------------------- /luck_poing/bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/bs-config.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/BasicToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/BasicToken.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/ERC20.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/ERC20Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/ERC20Basic.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/LuckPoing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/LuckPoing.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/LuckPoingToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/LuckPoingToken.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/Migrations.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/SafeMath.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/StandardToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/StandardToken.json -------------------------------------------------------------------------------- /luck_poing/build/contracts/TicTacToeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/build/contracts/TicTacToeToken.json -------------------------------------------------------------------------------- /luck_poing/contracts/LuckPoing.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/contracts/LuckPoing.sol -------------------------------------------------------------------------------- /luck_poing/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/contracts/Migrations.sol -------------------------------------------------------------------------------- /luck_poing/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /luck_poing/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /luck_poing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/package-lock.json -------------------------------------------------------------------------------- /luck_poing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/package.json -------------------------------------------------------------------------------- /luck_poing/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/.DS_Store -------------------------------------------------------------------------------- /luck_poing/src/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/css/.DS_Store -------------------------------------------------------------------------------- /luck_poing/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/css/style.css -------------------------------------------------------------------------------- /luck_poing/src/css/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/css/style.js -------------------------------------------------------------------------------- /luck_poing/src/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/.DS_Store -------------------------------------------------------------------------------- /luck_poing/src/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/bg.jpg -------------------------------------------------------------------------------- /luck_poing/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/logo.png -------------------------------------------------------------------------------- /luck_poing/src/images/player1s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/player1s.png -------------------------------------------------------------------------------- /luck_poing/src/images/player2s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/player2s.png -------------------------------------------------------------------------------- /luck_poing/src/images/presenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/images/presenter.png -------------------------------------------------------------------------------- /luck_poing/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/index.html -------------------------------------------------------------------------------- /luck_poing/src/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/.DS_Store -------------------------------------------------------------------------------- /luck_poing/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/app.js -------------------------------------------------------------------------------- /luck_poing/src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /luck_poing/src/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/game.js -------------------------------------------------------------------------------- /luck_poing/src/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/jquery.min.js -------------------------------------------------------------------------------- /luck_poing/src/js/truffle-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/truffle-contract.js -------------------------------------------------------------------------------- /luck_poing/src/js/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/src/js/web3.min.js -------------------------------------------------------------------------------- /luck_poing/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/truffle-config.js -------------------------------------------------------------------------------- /luck_poing/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/luck_poing/truffle.js -------------------------------------------------------------------------------- /tic_tac_toe/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/.DS_Store -------------------------------------------------------------------------------- /tic_tac_toe/README.md: -------------------------------------------------------------------------------- 1 | # tic_tac_toe 2 | 以太坊三连棋游戏 3 | 本项目基于ERC20协议 4 | 项目部署前,使用前先初始化nodejs的module -------------------------------------------------------------------------------- /tic_tac_toe/bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/bs-config.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/BasicToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/BasicToken.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/ERC20.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/ERC20Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/ERC20Basic.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/Migrations.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/SafeMath.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/StandardToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/StandardToken.json -------------------------------------------------------------------------------- /tic_tac_toe/build/contracts/TicTacToeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/build/contracts/TicTacToeToken.json -------------------------------------------------------------------------------- /tic_tac_toe/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/contracts/Migrations.sol -------------------------------------------------------------------------------- /tic_tac_toe/contracts/TicTacToeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/contracts/TicTacToeToken.sol -------------------------------------------------------------------------------- /tic_tac_toe/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /tic_tac_toe/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /tic_tac_toe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/package-lock.json -------------------------------------------------------------------------------- /tic_tac_toe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/package.json -------------------------------------------------------------------------------- /tic_tac_toe/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/.DS_Store -------------------------------------------------------------------------------- /tic_tac_toe/src/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/css/.DS_Store -------------------------------------------------------------------------------- /tic_tac_toe/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/css/style.css -------------------------------------------------------------------------------- /tic_tac_toe/src/css/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/css/style.js -------------------------------------------------------------------------------- /tic_tac_toe/src/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/.DS_Store -------------------------------------------------------------------------------- /tic_tac_toe/src/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/bg.jpg -------------------------------------------------------------------------------- /tic_tac_toe/src/images/board_btn_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/board_btn_0.png -------------------------------------------------------------------------------- /tic_tac_toe/src/images/board_btn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/board_btn_1.png -------------------------------------------------------------------------------- /tic_tac_toe/src/images/board_btn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/board_btn_2.png -------------------------------------------------------------------------------- /tic_tac_toe/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/logo.png -------------------------------------------------------------------------------- /tic_tac_toe/src/images/player1s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/player1s.png -------------------------------------------------------------------------------- /tic_tac_toe/src/images/player2s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/images/player2s.png -------------------------------------------------------------------------------- /tic_tac_toe/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/index.html -------------------------------------------------------------------------------- /tic_tac_toe/src/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/.DS_Store -------------------------------------------------------------------------------- /tic_tac_toe/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/app.js -------------------------------------------------------------------------------- /tic_tac_toe/src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /tic_tac_toe/src/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/game.js -------------------------------------------------------------------------------- /tic_tac_toe/src/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/jquery.min.js -------------------------------------------------------------------------------- /tic_tac_toe/src/js/truffle-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/truffle-contract.js -------------------------------------------------------------------------------- /tic_tac_toe/src/js/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/src/js/web3.min.js -------------------------------------------------------------------------------- /tic_tac_toe/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/truffle-config.js -------------------------------------------------------------------------------- /tic_tac_toe/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/truechain/truechain-dapps/HEAD/tic_tac_toe/truffle.js --------------------------------------------------------------------------------