Skip to content

Latest commit

 

History

History
80 lines (59 loc) · 1.83 KB

DEVELOPER.md

File metadata and controls

80 lines (59 loc) · 1.83 KB

GLAM *.+ The New Standard for Asset Management.
Website | Contact | X




GLAM is a decentralized on-chain asset management protocol on Solana that enables efficient management & operations of investment products, empowering investors to have greater control & equity in their financial futures.

Dev

This project was generated with the create-solana-dapp generator using React preset.

Prerequisites

  • Node v20.11.0 or higher
  • Pnpm v8.15.1 or higher
  • Rust v1.75.0 or higher
  • Anchor CLI 0.29.0 or higher
  • Solana CLI 1.18.7

Recommended:

sh -c "$(curl -sSfL https://release.solana.com/v1.18.7/install)"

Installation

git clone ...
cd glam

pnpm install

(Internal team only: get keypairs.zip and unpack it into ./anchor/target/deploy)

Run the tests

cd anchor
anchor build
# ^ this will create target/deploy
cd target/deploy
unzip /path/to/keypairs.zip
cd -
anchor test

This should also work:

pnpm run anchor-build
pnpm run anchor-test

Start the web app

pnpm run dev

Start the api server

pnpm run api-serve