🔹 Multi-Chain Narrative Artifacts in the PORTAL POINT Ecosystem
UNIQUE NFT COMICS are digital narrative artifacts implemented in the format of graphic novels unfolding within the worlds of PORTAL POINT. These are not merely works of art, but narrative portals captured in unique digital assets that exist simultaneously across three blockchains: TON, Stellar, and Polygon.
Each comic begins as a TON NFT (TEP-62) within the Telegram Mini-App, transforms into a Stellar Custom Asset for verification and utility, and is mirrored as an ERC-721 on Polygon for trading on Rarible marketplaces.
fn mint_comic_nft(
recipient: Address,
uuid: String,
world_asset_code: String,
metadata_ipfs_cid: String,
unlock_conditions: Vec<Condition>
) -> Result<Asset, Error> {
// Verify origin from TON NFT
require(ton_bridge.verify_uuid(uuid), "Invalid TON NFT proof");
// Create Stellar Asset with canonical metadata
let asset = Asset::new(
format!("COMIC_{}", uuid),
PORTAL_ISSUER,
CLAWBACK_FLAG | AUTH_REQUIRED_FLAG
);
asset.set_metadata(metadata_ipfs_cid);
asset.set_issuer_flags(unlock_conditions);
Ok(asset)
}
1. User confirms bridge via web interface
2. TON NFT → Stellar Asset conversion
3. Stellar Asset locked in Soroban escrow
4. ERC-721 minted on Polygon with same UUID
5. Automatic listing on Rarible with pre-configured royalties