├── .env ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── contracts ├── contracts │ ├── ERC20.sol │ ├── IERC20.sol │ ├── MakerDao.sol │ ├── Migrations.sol │ ├── Ownable.sol │ ├── SafeMath.sol │ ├── Telco.sol │ └── User.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_user.js ├── package.json ├── password.js ├── test │ └── user.js ├── truffle-config.js └── yarn.lock ├── createBindings ├── erc20 └── erc20.go ├── frontend ├── .gitignore ├── User.json ├── dist │ ├── index.html │ ├── main.52a7655786850235bd33.js │ ├── main.52a7655786850235bd33.js.map │ ├── main.d9903aa8fc6d5a101666.js │ ├── main.d9903aa8fc6d5a101666.js.map │ ├── vendor.1393e5ac3697fac40520.js │ ├── vendor.1393e5ac3697fac40520.js.map │ ├── vendor.a77fd0057c202ddfeb2a.js │ └── vendor.a77fd0057c202ddfeb2a.js.map ├── package.json ├── src │ ├── index.html │ ├── index.tsx │ ├── pages │ │ └── index.tsx │ └── services │ │ └── web3.ts ├── tsconfig.json ├── webpack │ ├── base.config.js │ ├── dev.config.js │ └── prod.config.js └── yarn.lock ├── go.mod ├── go.sum ├── handler.go ├── keystore └── key.txt ├── main.go ├── memory └── memory.go ├── mkr └── mkr.go ├── raiden.go ├── telco └── telco.go ├── types.go └── user └── user.go /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/crypto-ussd 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/README.md -------------------------------------------------------------------------------- /contracts/contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/ERC20.sol -------------------------------------------------------------------------------- /contracts/contracts/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/IERC20.sol -------------------------------------------------------------------------------- /contracts/contracts/MakerDao.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/MakerDao.sol -------------------------------------------------------------------------------- /contracts/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/contracts/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/Ownable.sol -------------------------------------------------------------------------------- /contracts/contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/SafeMath.sol -------------------------------------------------------------------------------- /contracts/contracts/Telco.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/Telco.sol -------------------------------------------------------------------------------- /contracts/contracts/User.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/contracts/User.sol -------------------------------------------------------------------------------- /contracts/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /contracts/migrations/2_deploy_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/migrations/2_deploy_user.js -------------------------------------------------------------------------------- /contracts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/package.json -------------------------------------------------------------------------------- /contracts/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/password.js -------------------------------------------------------------------------------- /contracts/test/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/test/user.js -------------------------------------------------------------------------------- /contracts/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/truffle-config.js -------------------------------------------------------------------------------- /contracts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/contracts/yarn.lock -------------------------------------------------------------------------------- /createBindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/createBindings -------------------------------------------------------------------------------- /erc20/erc20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/erc20/erc20.go -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /frontend/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/User.json -------------------------------------------------------------------------------- /frontend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/index.html -------------------------------------------------------------------------------- /frontend/dist/main.52a7655786850235bd33.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/main.52a7655786850235bd33.js -------------------------------------------------------------------------------- /frontend/dist/main.52a7655786850235bd33.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/main.52a7655786850235bd33.js.map -------------------------------------------------------------------------------- /frontend/dist/main.d9903aa8fc6d5a101666.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/main.d9903aa8fc6d5a101666.js -------------------------------------------------------------------------------- /frontend/dist/main.d9903aa8fc6d5a101666.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/main.d9903aa8fc6d5a101666.js.map -------------------------------------------------------------------------------- /frontend/dist/vendor.1393e5ac3697fac40520.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/vendor.1393e5ac3697fac40520.js -------------------------------------------------------------------------------- /frontend/dist/vendor.1393e5ac3697fac40520.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/vendor.1393e5ac3697fac40520.js.map -------------------------------------------------------------------------------- /frontend/dist/vendor.a77fd0057c202ddfeb2a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/vendor.a77fd0057c202ddfeb2a.js -------------------------------------------------------------------------------- /frontend/dist/vendor.a77fd0057c202ddfeb2a.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/dist/vendor.a77fd0057c202ddfeb2a.js.map -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/services/web3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/src/services/web3.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/webpack/base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/webpack/base.config.js -------------------------------------------------------------------------------- /frontend/webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/webpack/dev.config.js -------------------------------------------------------------------------------- /frontend/webpack/prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/webpack/prod.config.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/go.sum -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/handler.go -------------------------------------------------------------------------------- /keystore/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/keystore/key.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/main.go -------------------------------------------------------------------------------- /memory/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/memory/memory.go -------------------------------------------------------------------------------- /mkr/mkr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/mkr/mkr.go -------------------------------------------------------------------------------- /raiden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/raiden.go -------------------------------------------------------------------------------- /telco/telco.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/telco/telco.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/types.go -------------------------------------------------------------------------------- /user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev43/crypto-ussd/HEAD/user/user.go --------------------------------------------------------------------------------