Service Marketplace on Solana
This project implements a 2-sided marketplace for services on the Solana blockchain using the Anchor framework. Vendors can list their services as NFTs, and consumers can purchase these service NFTs. The marketplace supports both soulbound and non-soulbound NFTs and collects royalties on resales.
Features
- Vendors can list services as NFTs with metadata.
- Consumers can purchase service NFTs.
- Supports both soulbound and non-soulbound NFTs.
- Collects royalties on NFT resales.
Prerequisites
Before starting, ensure you have the following installed:
- Rust
- Solana CLI
- Anchor CLI
- Node.js and npm (for client scripts)
Installation
Clone the repository and navigate to the project directory:
git clone https://github.com/your-username/service-marketplace
cd service-marketplace
anchor build
anchor deploy // solana-test-validator
npm install @project-serum/anchor
const anchor = require('@project-serum/anchor');
const { SystemProgram } = anchor.web3;
async function listService(provider, serviceDetails) {
const program = anchor.workspace.ServiceMarketplace;
const serviceAccount = anchor.web3.Keypair.generate();
await program.rpc.listService(
serviceDetails.serviceName,
serviceDetails.description,
new anchor.BN(serviceDetails.price),
serviceDetails.isSoulbound,
{
accounts: {
serviceAccount: serviceAccount.publicKey,
vendor: provider.wallet.publicKey,
systemProgram: SystemProgram.programId,
},
signers: [serviceAccount],
}
);
}
async function purchaseService(provider, servicePublicKey, vendorPublicKey, consumerTokenAccount, vendorTokenAccount) {
const program = anchor.workspace.ServiceMarketplace;
await program.rpc.purchaseService({
accounts: {
serviceAccount: servicePublicKey,
vendor: vendorPublicKey,
consumer: provider.wallet.publicKey,
consumerTokenAccount: consumerTokenAccount,
vendorTokenAccount: vendorTokenAccount,
tokenProgram: anchor.web3.TOKEN_PROGRAM_ID,
},
});
}
module.exports = {
listService,
purchaseService,
};
## Run the client script
node your_script_name.js
Program Structure
lib.rs: Contains the Solana program logic.
client.js: Contains scripts to interact with the Solana program.