An official web wallet for Panacea Core v2+.
- Node.js v10.13.0 ~ v10.24.0
- Panacea Tendermint RPC Endpoint
npm installFirst of all, edit configurations in the network.js.
{
name: 'Mynet', // An alias of the network
chainId: 'mychain-1', // A chain ID of the network
code: 1, // To be deprecated soon
mServerURL: 'http://localhost:8080', // A Panacea Explorer Server endpoint
mClientURL: 'http://localhost:7070', // A Panacea Explorer Client(web) endpoint
nodes: ['http://localhost:26657'], // Tendermint RPC endpoint
}Then, the dev server can be run:
npm run devnpm run buildThe package is built in the output directory: app/build/.
Upload the package to the AWS S3 bucket which is associated to a proper AWS Cloudfront.
cd app/build/
aws cp . s3://BUCKET_NAME/ --recursive