├── .gitignore ├── README.md ├── contract ├── docs │ ├── motherday合约手册.md │ ├── picture │ │ ├── create_game.png │ │ ├── result_game.png │ │ ├── test_contract.png │ │ ├── todo_create.png │ │ ├── todo_delete.png │ │ └── todo_get.png │ ├── tic_tac_toe合约手册.md │ └── todo合约手册.md ├── motherday │ ├── motherday.abi │ ├── motherday.cpp │ └── motherday.wast ├── tic_tac_toe │ ├── tic_tac_toe.abi │ ├── tic_tac_toe.cpp │ ├── tic_tac_toe.hpp │ ├── tic_tac_toe.wasm │ └── tic_tac_toe.wast └── todo │ ├── todo.abi │ ├── todo.cpp │ └── todo.wast ├── frontend ├── .babelrc ├── app │ ├── components │ │ ├── Home.jsx │ │ ├── TicTacToe │ │ │ ├── Board.jsx │ │ │ ├── Chess.jsx │ │ │ ├── Game.jsx │ │ │ ├── Square.jsx │ │ │ ├── img │ │ │ │ ├── black.png │ │ │ │ └── white.png │ │ │ └── style.less │ │ ├── TodoList │ │ │ ├── AddTodoItem.jsx │ │ │ ├── TodoBox.jsx │ │ │ ├── TodoItem.jsx │ │ │ ├── TodoList.jsx │ │ │ └── style.less │ │ └── Wish.jsx │ ├── containers │ │ ├── App.jsx │ │ └── style.less │ ├── index.jsx │ ├── router │ │ ├── README.md │ │ └── RouteMap.jsx │ └── static │ │ ├── README.md │ │ └── css │ │ └── common.less ├── dist │ └── index.html ├── docs │ └── 运行前端界面.md ├── package-lock.json ├── package.json └── webpack.config.js ├── motherday.gif ├── tasklist.gif └── tictactoe.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/README.md -------------------------------------------------------------------------------- /contract/docs/motherday合约手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/motherday合约手册.md -------------------------------------------------------------------------------- /contract/docs/picture/create_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/create_game.png -------------------------------------------------------------------------------- /contract/docs/picture/result_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/result_game.png -------------------------------------------------------------------------------- /contract/docs/picture/test_contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/test_contract.png -------------------------------------------------------------------------------- /contract/docs/picture/todo_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/todo_create.png -------------------------------------------------------------------------------- /contract/docs/picture/todo_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/todo_delete.png -------------------------------------------------------------------------------- /contract/docs/picture/todo_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/picture/todo_get.png -------------------------------------------------------------------------------- /contract/docs/tic_tac_toe合约手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/tic_tac_toe合约手册.md -------------------------------------------------------------------------------- /contract/docs/todo合约手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/docs/todo合约手册.md -------------------------------------------------------------------------------- /contract/motherday/motherday.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/motherday/motherday.abi -------------------------------------------------------------------------------- /contract/motherday/motherday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/motherday/motherday.cpp -------------------------------------------------------------------------------- /contract/motherday/motherday.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/motherday/motherday.wast -------------------------------------------------------------------------------- /contract/tic_tac_toe/tic_tac_toe.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/tic_tac_toe/tic_tac_toe.abi -------------------------------------------------------------------------------- /contract/tic_tac_toe/tic_tac_toe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/tic_tac_toe/tic_tac_toe.cpp -------------------------------------------------------------------------------- /contract/tic_tac_toe/tic_tac_toe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/tic_tac_toe/tic_tac_toe.hpp -------------------------------------------------------------------------------- /contract/tic_tac_toe/tic_tac_toe.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/tic_tac_toe/tic_tac_toe.wasm -------------------------------------------------------------------------------- /contract/tic_tac_toe/tic_tac_toe.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/tic_tac_toe/tic_tac_toe.wast -------------------------------------------------------------------------------- /contract/todo/todo.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/todo/todo.abi -------------------------------------------------------------------------------- /contract/todo/todo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/todo/todo.cpp -------------------------------------------------------------------------------- /contract/todo/todo.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/contract/todo/todo.wast -------------------------------------------------------------------------------- /frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/.babelrc -------------------------------------------------------------------------------- /frontend/app/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/Home.jsx -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/Board.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/Board.jsx -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/Chess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/Chess.jsx -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/Game.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/Game.jsx -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/Square.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/Square.jsx -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/img/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/img/black.png -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/img/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/img/white.png -------------------------------------------------------------------------------- /frontend/app/components/TicTacToe/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TicTacToe/style.less -------------------------------------------------------------------------------- /frontend/app/components/TodoList/AddTodoItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TodoList/AddTodoItem.jsx -------------------------------------------------------------------------------- /frontend/app/components/TodoList/TodoBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TodoList/TodoBox.jsx -------------------------------------------------------------------------------- /frontend/app/components/TodoList/TodoItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TodoList/TodoItem.jsx -------------------------------------------------------------------------------- /frontend/app/components/TodoList/TodoList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TodoList/TodoList.jsx -------------------------------------------------------------------------------- /frontend/app/components/TodoList/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/TodoList/style.less -------------------------------------------------------------------------------- /frontend/app/components/Wish.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/components/Wish.jsx -------------------------------------------------------------------------------- /frontend/app/containers/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/containers/App.jsx -------------------------------------------------------------------------------- /frontend/app/containers/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/containers/style.less -------------------------------------------------------------------------------- /frontend/app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/index.jsx -------------------------------------------------------------------------------- /frontend/app/router/README.md: -------------------------------------------------------------------------------- 1 | 路由配置 -------------------------------------------------------------------------------- /frontend/app/router/RouteMap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/app/router/RouteMap.jsx -------------------------------------------------------------------------------- /frontend/app/static/README.md: -------------------------------------------------------------------------------- 1 | 项目公用的静态文件 -------------------------------------------------------------------------------- /frontend/app/static/css/common.less: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/dist/index.html -------------------------------------------------------------------------------- /frontend/docs/运行前端界面.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/docs/运行前端界面.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /motherday.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/motherday.gif -------------------------------------------------------------------------------- /tasklist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/tasklist.gif -------------------------------------------------------------------------------- /tictactoe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterHuZQ/EOS-Dapp/HEAD/tictactoe.gif --------------------------------------------------------------------------------