0xhardman / donate3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Step to run locally in Donate3-Solana

# install all git submodule
git submodule update --init --recursive

donate3-website-new:

cd ../
cd donate3-website-new
cp .env.example .env

yarn install
yarn build
yarn start

Now you can try all feature of Donate3-Solana. You can also try run SDK:

cd ../
cd donate3-sdk
yarn install
yarn run dev

đź’ˇ If you want to deploy your own contract:

cd ../
cd donate3-contract-solana

cp .env.example .env
# fill the api key and scan key
yarn install

npx hardhat run scripts/deploy.ts --network {YOUR_NETWORK}
npx hardhat verify {DEPLOYED_ADDRESS} --network {YOUR_NETWORK} ETH

About