Seraph Hood LogoDOCS

Technology

Seraph Hood Mode

Exploring the technological void and the blockchain architecture that powers eternal ownership.

Robinhood Chain

Seraph Hood is deployed on the Robinhood Chain, a permissionless, Ethereum-compatible Layer-2 built on Arbitrum technology.

  • Sub-second Finality: Actions feel instantaneous.
  • Low Gas: The cost to Sanctify is near zero.
  • EVM Equivalent: Inherits the security of Ethereum mainnet.

Account Abstraction

We utilize ERC-4337 Account Abstraction to remove the friction of traditional web3.

Users log in via social or email, and a Smart Wallet is generated in the background. No seed phrases, no complicated setups. Gas fees are sponsored by the platform for new users, making the descent into the sanctuary frictionless.

The Tech Stack

Frontend FrameworkNext.js (App Router) + TypeScript
State ManagementZustand
Styling & UITailwind CSS, Framer Motion, Radix UI
Audio SynthesisWeb Audio API (Harp/Celestial Synthesis)
Blockchain DataAlchemy, Wagmi, Viem

Halos & The Smart Contracts

When you collect a track, you mint a Halo (an ERC-1155 token on Robinhood Chain). This Halo represents your patronage and ownership.

function sanctify(uint256 trackId) external payable {
  require(msg.value == trackPrice, "Incorrect blessing amount");
  _mint(msg.sender, trackId, 1, "");
  _forwardBlessing(trackArtist[trackId], msg.value);
}