$24,806.42
Private USDC and USDT custody with distributed signing, policy controls, and passkey recovery.
Private USDC and USDT custody with distributed signing, policy controls, and passkey recovery.
The full private key is never assembled. Shard A signs locally, Shard B validates policy, and the aggregate signature settles on Robinhood Chain.
The sender derives a fresh destination from your public meta-address. External explorers cannot trivially link incoming payments to a persistent identity.
Your handle points to a public stealth meta-address.
The sender creates a one-time address for each payment.
The wallet detects funds without exposing a persistent identity.
No raw seed phrase is displayed, copied, or stored. Recovery uses an independent quorum path.
The proposed @privatum/robinhood-chain-sdk package exposes shard creation, wallet composition, threshold signing, and network submission through Viem based APIs.
import { Shard, PrivatumWallet, sendUsdc } from "@privatum/robinhood-chain-sdk";
const driveShard = await Shard.create("drive");
const serverShard = await Shard.create("server");
const recoveryShard = await Shard.create("recovery");
const wallet = PrivatumWallet.twoOfThree({
shards: [driveShard, serverShard, recoveryShard],
threshold: 2,
});
const txHash = await sendUsdc({
wallet,
to: "recipient.privatum",
amount: "50.0",
signingShards: [driveShard, serverShard],
});
Connect to Robinhood Chain, chain ID 4663. Your wallet remains in your control.