Links

Smart Contracts

Technical details of how Flair platform works under the hood.
You can install contract ABIs in your app:
npm install @0xflair/contracts-registry
Then import:
import { loadContract, Version } from '@0xflair/contracts-registry';
const contract = loadContract(
'collections/ERC721/presets/ERC721FullFeaturedCollection',
'v1.3',
);
console.log(contract.artifact.abi);

Finance.sol

This smart contract is the orchestrator of our Flair escrow and funding options.

Funding.sol

This smart contract receives collectors' payments and keeps track of their vesting period. Flair's DAO (or development team) has no control over funds in this contract.

High-level Diagrams

High-level Architecture of Flair Funding for Gassless Funding Offers
High-level Architecture of Flair Funding for on-chain Funding Offers
Last modified 1yr ago