#REHASHER & exohashing
fakebob is for testnet only
1 canister on bob subnet for reBOB
dfx canister --network ic create --subnet bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe
they you should just need to replace the const reBobCanisterID = "bd3sg-teaaa-aaaaa-qaaba-cai"; line in App.tsx with the reBob canister id. (furst put cycles in ledger princple)
then npm instal
then npm start; it should build
then go into dfx.json and for the frontend and backend entries you'll need to add something like:
"backend": { "id": { "ic": "rno2w-sqaaa-aaaaa-aaacq-cai", } },
But backend will be your rebob canister and frontend will be your front end
then dfx deploy --network ic backend then dfx deploy --network ic frontend
it should build,
You may need to update the compute allocation of the rebob canister to 1
dfx canister --network ic update-settings backend --compute-allocation 1
This will ensure you get scheduled to run at least every 100 rounds
--
notes:
dfx,json may require reformatting to canister_ids.json
{ "backend": { "ic": "xxx" }, "frontend": { "ic": "xxx" }, "rebob": { "ic": "xxx" } }
This template gives you everything you need to build a full-stack Web3 application on the Internet Computer.
For an example of a real-world dapp built using this starter project, check out the source code for DFINITY's Developer Experience Feedback Board.
Make sure that Node.js >= 16
and dfx
>= 0.14
are installed on your system.
Run the following commands in a new, empty project directory:
npx degit rvanasa/vite-react-motoko # Download this starter project
dfx start --clean --background # Run dfx in the background
npm run setup # Install packages, deploy canisters, and generate type bindings
npm start # Start the development server
When ready, run dfx deploy --network ic
to deploy your application to the Internet Computer.
- Vite: high-performance tooling for front-end web development
- React: a component-based UI library
- TypeScript: JavaScript extended with syntax for types
- Sass: an extended syntax for CSS stylesheets
- Prettier: code formatting for a wide range of supported languages
- Motoko: a safe and simple programming language for the Internet Computer
- Mops: an on-chain community package manager for Motoko
- mo-dev: a live reload development server for Motoko
- @ic-reactor: A suite of JavaScript libraries for seamless frontend development on the Internet Computer
- Vite developer docs
- React quick start guide
- Internet Computer docs
dfx.json
reference schema- Motoko developer docs
- Mops usage instructions
- @ic-reactor/react
- Customize your project's code style by editing the
.prettierrc
file and then runningnpm run format
. - Reduce the latency of update calls by passing the
--emulator
flag todfx start
. - Install a Motoko package by running
npx ic-mops add <package-name>
. Here is a list of available packages. - Split your frontend and backend console output by running
npm run frontend
andnpm run backend
in separate terminals.