# BlueLink — Tokenizing Blue Bonds for Ocean Conservation on Sui

Date: 2025-10-25
Source: https://kxhuang.dev/2025/10/25/BlueLink/
Description: BlueLink tokenizes blue bonds on Sui, letting issuers raise funds for ocean conservation while investors track principal and interest fully on-chain.
Categories: project
Tags: DeFi, RWA, Tokenization, BlueBond
Author: Kai Xiu Huang (https://kxhuang.dev)

---
## What It Is

BlueLink is a blue bond fundraising platform built on the Sui blockchain, for ocean conservation, sustainable fisheries, and other blue economy initiatives — it sits alongside [Blink Market](/2026/06/06/BlinkMarket/), a binary prediction market protocol, as one of a few Sui-based financial applications I've built. Blue bonds are specialized financial instruments designed to raise capital for ocean conservation and sustainable marine economy projects.

Investors sign in with a Sui wallet signature rather than a password, browse listed blue bonds with their issuers, interest rates, and maturity dates, purchase bond tokens and receive NFT bond certificates, track their holdings and earnings, and redeem principal and interest on the maturity date.

Issuers can issue blue bonds to raise funds for ocean projects, manage the collected funds and redemption pools, monitor fundraising progress and investor information in real time, and pause or resume bond sales.

I built BlueLink around four problems I saw in ocean conservation fundraising: traditional fundraising lacks transparent fund tracking, investors struggle to verify actual fund usage, there are no platformized blue bond issuance tools, and international investors find it hard to participate in ocean project financing. Sui’s high throughput and low fees — second-level confirmations at low transaction cost — make it possible to keep the whole bond lifecycle on-chain, where records are permanent and fund flows are verifiable in real time, and smart contracts execute automatically instead of relying on intermediaries.

## My Role

I worked on the backend and the Sui Move contracts — the Go service and its PostgreSQL layer, and the on-chain bond modules.

## How It Works

| Layer | Components |
|-------|------------|
| **Blockchain Layer** | Sui Move Smart Contracts, Event Listening, RPC API |
| **Backend** | Go 1.24 + Gin Framework, PostgreSQL Database |
| **Authentication** | Wallet Signature Verification + Memory Session Management |
| **Frontend (Planned)** | React + TypeScript + Vite |

The system keeps itself synchronized with on-chain state by listening to blockchain events, including BondProjectCreated, BondTokensPurchased, and BondTokenRedeemed.

A few things I’d call out about the design:

- Smart contracts execute redemption and interest distribution automatically, without manual intervention, and every investment, redemption, and fund management operation is stored permanently on-chain.
- The system polls on-chain events every 15 seconds and updates platform data automatically.
- Sign-in uses native Sui wallet signature verification with a nonce mechanism to prevent replay attacks.
- Sessions are held in HttpOnly cookies with a 24-hour validity period, and users can see every logged-in device and revoke suspicious connections, up to a maximum of 3 concurrent logins.
- Requests carry a request ID for audit logging and fault tracing, and deletions are soft, preserving data history for traceability and compliance.
- The platform is designed specifically for ocean-related projects, with support for the fundraising parameters and progress tracking those projects need.

## What's Next

I am no longer maintaining BlueLink, so what follows is what was planned rather than what is coming. The next 3–6 months would have been about shipping the React + TypeScript frontend, migrate to Sui mainnet so the platform can handle real fund flows, and support more blue economy project types such as aquaculture, ocean cleanup, and coral protection. Further out, the roadmap covers cross-chain support for blue bonds across multiple public chains, a DAO governance model, and an analytics dashboard giving issuers detailed reports and investor insights. The longer-term ambition is to serve as financing infrastructure for the blue economy in support of United Nations Sustainable Development Goal 14 — connecting investors worldwide with ocean conservation projects, making financing more accessible to them, and establishing transparent disclosure and fund tracking mechanisms.
