Skip to content

Repository with example smart contracts and corresponding frontend

Notifications You must be signed in to change notification settings

langdon0003/bulletin-board-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository will serve dApp developers, interested in developing for Aleph Zero network, to boostrap their work. It will include:

  • an example set of smart contracts, showcasing all basic building blocks required to build a dApp
  • accompanying fronted end, together with Aleph Zero branding, for interacting with the contracts
  • integration with PolkadotJS signer extension

How to run locally

Prerequisities

  1. substrate-contracts-node version v0.22.1. Later releases are compatible with pallet-contracts version 0.9.34 which is not the same one as Aleph Zero Testnet.
  2. cargo-contract version 2.0.0-beta.1. Later releases are compatible with pallet-contracts version 0.9.34 which is not the same one as Aleph Zero Testnet.

Running chain

In the root directory of the project, run make chain-start. To stop the chain, just exit the process in your terminal.

To clean the chain's run make chain-clean. This will remove chain's database files (like blocks and contracts).

To restart the chain (and purge the state) run make chain-restart.

By default, node will bind its websocket endpoint to port 9944. Make sure that the chain is running WS at port 9944 .In the logs, look for:

2023-01-10 19:23:40.475  INFO main sc_rpc_server: Running JSON-RPC HTTP server: addr=127.0.0.1:9933, allowed origins=None
2023-01-10 19:23:40.475  INFO main sc_rpc_server: Running JSON-RPC WS server: addr=127.0.0.1:9944, allowed origins=None

If it bound to a different port your frontend instance will not connect properly - it tries to bind to 9944 port. In that case, either make sure there are no other substrate-contracts-node running (by killing them with make chain-stop) or change the port in the frontend app.

Building contracts

In /contracts directory run make build-all to build both contrats.

Deploying contracts

In the root directory, run make setup. This will:

  • deploy both contracts to the local chain
  • instantiate them
  • record their addresses
  • update addresses and contracts' metadata files in the frontend directory

Running frontend

In /frontend directory, run export REACT_APP_PROVIDER_URL=ws://localhost:9944 && npm start. This should open a new tab in your default browser that connects to your local chain.

Working with polkadot.js wallet extension

To sign transactions, we will be using polkadot extension. Follow the instructions about how to install it in the official documentation.

substrate-contracts-node ships with bunch of pre-funded accounts - we need to import them into the extension:

  1. Open the browser extension modal.
  2. Click on the + icon.
  3. Then Import account from pre-existing seed.
  4. In the EXISTING 12 OR 24-WORD MNEOMNIC SEED form add bottom drive obey lake curtain smoke basket hold race lonely fit walk -- this it the seed for the default accounts. You can find it on https://docs.substrate.io/reference/command-line-tools/subkey/#subkey-generate-node-key .
  5. Click ADVANCED and use one of the derivation paths:
  • //Bob//stash
  • //Charlie//stash
  • //Dave//stash
  • //Eve//stash
  • //Ferdie//stash
  1. Finish the account setup.

Now, you can use the newly-added account with the example frontend.

About

Repository with example smart contracts and corresponding frontend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 60.9%
  • Rust 29.7%
  • Shell 4.0%
  • JavaScript 1.8%
  • CSS 1.7%
  • HTML 1.4%
  • Makefile 0.5%