A decentralized bank that accepts deposits and withdrawals.
View Live
Table of Contents
This decentralized bank was developed using the ICP (Internet Computer Protocol) and the Motoko programming language. It introduces a decentralized bank that enables users to make deposits and withdrawals while maintaining a secure, transparent ledger of transactions. The system automatically updates users' account balances and displays them. Additionally, money in this decentralized bank is compounded with an interest rate of 1%.
The following technologies and libraries are used for the development of this website
If you want to test your project locally, you can use the following commands:
# Starts the replica, running in the background
dfx start --background
# Deploys your canisters to the replica and generates your candid interface
dfx deployOnce the job completes, your application will be available at http://localhost:4943?canisterId={asset_canister_id}.
If you have made changes to your backend canister, you can generate a new candid interface with
npm run generateat any time. This is recommended before starting the frontend development server, and will be run automatically any time you run dfx deploy.
If you are making frontend changes, you can start a development server with
npm startWhich will start a server at http://localhost:8080, proxying API requests to the replica at port 4943.