This is a SkyTrade Rust Smart Contract(Solana Blockchain) built for educational purposes. It provides global air rights marketplace where participants buy, sell and rent airspace.
Below are some features contained in the program:
- Register property owner
- Register drone operator
- Claim airspace
- Rent airspace
- Buy airspace
- Sell airspace
In order to run this example program you will need to install Rust and Solana. Information about installing Rust can be found here and information about installing Solana can be found here.
Once you've completed the Solana installation run the following commands to configure your machine for local deployment:
solana config set --url localhost
solana-keygen new
These two commands create Solana config files in ~/.config/solana/
which solana command line tools will read in to determine what cluster
to connect to and what keypair to use.
Having done that run a local Solana validator by executing:
solana-test-validator
This program must be left running in a separate terminal window.
To deploy the Solana program in this repository to the Solana cluster that you have configured run:
anchor build
anchor deploy
To run the test program you must have already deployed the Solana program. The test program sends a transaction to the Solana blockchain asking it to execute the deployed program and reports the results.
anchor test --skip-local-validator