This Truffle Box provides everything you need to quickly build Ethereum dApps that have authentication features with vue, including configuration for easy deployment to the Ropsten Network. It's also Gravatar-enabled. Connecting to a running Ganache blockchain network from Truffle is also possible -- for fast development and testing purposes.
Built on Truffle 4, eth-vue uses vuex for state management, vuex-persist for local storage of app state, and vue-router for routing.
Authentication functionalities are handled by Smart Contracts running on the Ethereum blockchain.
With deployment configuration for the Ropsten Network, deployment to the remote test network doesn't have to be a pain anymore. It's now as simple as truffle migrate --network ropsten
If you have a running Ganache blockchain network, configuring with eth-vue will connect you immediately to the private blockchain. Visit the Ganache page for installation and startup instructions, install Ganache, and eth-vue will connect accordingly.
Simply unbox and start building your own dApp.
-
Install Truffle
npm install -g truffle
-
Enter your development directory and unbox
DOkwufulueze/eth-vue
truffle unbox DOkwufulueze/eth-vue
- Configure your environment
-
Open the
truffle.js
file. You'll find the following:... module.exports = { ... networks: { development: { host: "localhost", port: 8545, // This is the conventional port. If you're using the Ganache Blockchain, change port value to the Ganache default port 7545. If you're using Truffle develop network, change port value to 9545 network_id: "*", // Match any network id. You may need to replace * with your network Id from: "", // Add your unlocked account within the double quotes gas: 4444444 } } };
Insert your unlocked account within the double-quotes of the
from
key -
Open the
src/util/constants.js
file. You'll find the following:export const NETWORKS = { '1': 'Main Net', '2': 'Deprecated Morden test network', '3': 'Ropsten test network', '4': 'Rinkeby test network', '42': 'Kovan test network', '4447': 'Truffle Develop Network', '5777': 'Ganache Blockchain', '666': 'Daniel Private Blockchain' } export const APPROVED_NETWORK_ID = '3'
The default network above is the Ropsten network [
APPROVED_NETWORK_ID = '3'
], but you can change this, as Ropsten was chosen for testing purpose only.
If your choice network is on the list ofNETWORKS
but is not Ropsten, then change the value ofAPPROVED_NETWORK_ID
to the ID of your choice network. For example, if one is to use the private Blockchain above ['666': 'Daniel Private Blockchain'
], thenAPPROVED_NETWORK_ID
would be'666'
.
But if your choice network is not on theNETWORKS
list, simply add your network using the existing pattern [<networkId>: <networkName>
], and change the value ofAPPROVED_NETWORK_ID
to the ID of your choice network.
If you're using Ganache, please remember to point your Ethereum provider [Metamask, for example] to a Custom RPC running on port 7545.
For Truffle develop network, point your Ethereum provider [Metamask, for example] to a Custom RPC running on port 9545.
-
-
Install npm dependencies
npm install
To deploy the contracts, you can either compile and migrate to your custom network as configured in the truffle.js
file or you could use the test network and test addresses that truffle 4 provides. Find details for both deployment processes below.
Compile and Migrate to your custom network as configured in truffle.js
. [For the Ganache Blockchain, it runs on port 7545 and doesn't conflict with any conventional port. So edit your truffle.js
file appropriately before deploying]
-
Compile the Contracts
truffle compile
-
Deploy the compiled contracts
truffle migrate
-
Compile the Contracts on Ropsten
truffle compile --network ropsten
-
Deploy the compiled Contracts to Ropsten
truffle migrate --network ropsten
The default port for truffle develop
is 9545, so it doesn't conflict with any conventional port. Edit truffle.js
appropriately.
-
Enter the
truffle develop
environmenttruffle develop
-
Compile the Contracts
compile
-
Deploy the compiled contracts
migrate
-
Start the server
npm run start
-
Open your browser and enter the following:
localhost:3001
Please send bug issues you may encounter to Issues
This dApp is distributed under the GNU GPL-3.0 licence.