Manage your AI assets, track earnings, and monitor storage nodes from your desktop
storage: stake_amount: 1000 # SUI tokens min_uptime: 0.95 # 95% required reward_share: 0.7 # 70% of fees auto_compound: true # Auto-stake rewards
metrics: daily_rewards: 45.5 # SUI earned storage_used: "2.1TB" active_blobs: 127 challenge_success: 0.99
# Import existing SUI wallet kyne-desktop wallet import --private-key=0x... # Or create new wallet kyne-desktop wallet create
# Set storage preferences kyne-desktop storage configure \ --min-nodes=7 \ --epochs=12 \ --redundancy=2
# Create marketplace listing await desktop.create_listing({ "model_id": "bert-v1", "price": 1000, # SUI tokens "revenue_share": 0.1 # To contributors })
# Monitor revenue streams stats = await desktop.get_earnings() print(f"Model revenue: {stats.model_revenue}") print(f"Storage rewards: {stats.node_rewards}")
# Check storage node performance node_stats = await desktop.get_node_stats() print(f"Active stake: {node_stats.stake} SUI") print(f"Daily rewards: {node_stats.daily_rewards}") print(f"Storage used: {node_stats.storage_used}") print(f"Challenge success: {node_stats.challenge_rate}")
# Configure node staking await desktop.configure_staking({ "stake_amount": 1000, # SUI tokens "auto_compound": True, # Reinvest rewards "min_duration": 30 # Epochs }) # Monitor staking returns rewards = await desktop.get_staking_rewards() print(f"Total rewards: {rewards.total} SUI") print(f"APY: {rewards.apy}%")