├── .babelrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public ├── favicon-32x32.png └── v.png ├── solidity-contracts ├── BasicToken.sol ├── ERC20.sol ├── ERC20Basic.sol ├── FuncToken.sol ├── SafeMath.sol └── StandardToken.sol ├── src ├── App.vue ├── components │ ├── SendTokens.vue │ └── WalletInfo.vue ├── config.js ├── main.js └── stylus │ └── main.styl ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/public/v.png -------------------------------------------------------------------------------- /solidity-contracts/BasicToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/BasicToken.sol -------------------------------------------------------------------------------- /solidity-contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/ERC20.sol -------------------------------------------------------------------------------- /solidity-contracts/ERC20Basic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/ERC20Basic.sol -------------------------------------------------------------------------------- /solidity-contracts/FuncToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/FuncToken.sol -------------------------------------------------------------------------------- /solidity-contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/SafeMath.sol -------------------------------------------------------------------------------- /solidity-contracts/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/solidity-contracts/StandardToken.sol -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/SendTokens.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/components/SendTokens.vue -------------------------------------------------------------------------------- /src/components/WalletInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/components/WalletInfo.vue -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/config.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/main.js -------------------------------------------------------------------------------- /src/stylus/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/src/stylus/main.styl -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/what-the-func/func-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------