No more paying upfront to strangers. Lock payments until both buyer and seller confirm. Fair, fast, and safe online transactions.
Buyers pay upfront but the seller never ships the goods or ghosts the buyer.
Freelancers deliver work but the client refuses to pay or disappears.
Sellers ship items, buyers claim fraud, and the bank forcibly reverses the payment.
P2P marketplaces lack a trusted layer to hold funds during the exchange.
The buyer deposits funds into the secure smart contract. Money is locked and cannot be withdrawn by the seller yet.
The seller ships the item or delivers the digital service, knowing the funds are safely waiting in the vault.
The buyer confirms receipt. The smart contract automatically releases the funds to the seller. Transaction complete.
Our escrow logic is open-source and auditable. We don't rely on hidden backends; we rely on code.
Funds move only when conditions are met. No human bias, no frozen accounts without cause.
If a dispute arises, neutral arbitrators review evidence on-chain to decide the outcome fairly.
function releaseFunds(orderId) {
const order = await getOrder(orderId);
// Ensure security checks
if (order.status !== 'CONFIRMED') {
throw new Error('Buyer has not confirmed');
}
// Atomic transfer
await transfer(order.seller, order.amount);
// Close order
order.status = 'CONFIRMED';
return true;
}Never deliver without protection. Ensure payment is secured before you ship.
Never work for free again. Ensure the client funds the project before you write a single line of code.
Exchange cryptocurrency or digital assets with strangers safely.
Safe buying and selling of domains, gaming accounts, and software licenses.
Manage high-ticket client retainers with milestone-based escrow releases.
Build your own secure apps using our robust SDKs and comprehensive documentation.
If the seller fails to ship before the agreed deadline, the smart contract automatically refunds the buyer. No manual intervention required.
Once the seller marks the item as shipped, a confirmation timer starts.If the buyer doesn’t respond within the time window, the funds are automatically released to the seller.
In case of a dispute, funds are temporarily locked while the contract follows predefined rules.There is no admin decision — outcomes are determined by on-chain logic and time-based rules.
Yes. Nector never holds user funds.All payments are locked in a Solana smart contract and can only be released according to the contract rules.
Yes. Escrow rules are enforced by smart contracts, not human trust. This makes it suitable for high-value online transactions where trust is critical.
No. You only need a wallet to send and receive payments. The escrow logic runs automatically in the background.