Shared Packages Explorer

Interactive runtime workbench for @dn/finance-core, @dn/finance-security, and @dn/finance-ui

PORT :9001 ACTIVE

Multi-Chain Wallet & Account Core

v1.0.0

Provides unified multi-asset account state across EVM (Ethereum, Base), RTGS fiat deposits, and tokenized bullion vaults.

Managed Treasury Address:0x969500dnbkparis2026889911223344556677
EURC (MiCA EMT):1,250,000
Bitcoin (BTC):14.85 BTC
Allocated Gold:250 oz
Exported Module SignaturesTypeScript Declarations
// @dn/finance-core exports
export interface WalletAccount {
  id: string;
  address: string;
  balances: {
    eurc: number;
    btc: number;
    goldOz: number;
    usdc: number;
  };
  kycTier: 'INSTITUTIONAL_TIER_3';
  jurisdiction: 'EU_FR' | 'CH' | 'DE';
}

export declare function createMultiChainWallet(): Promise<WalletAccount>;
export declare function rebalanceTreasury(params: any): Promise<void>;