원클릭으로
hippius
Hippius substrate node manager + S3-compatible decentralized storage gateway.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Hippius substrate node manager + S3-compatible decentralized storage gateway.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bittensor dTAO copy trading — mirror subnet allocations of top performers via a rotating pool of public RPC endpoints. No third-party APIs, no wallet required to browse.
Copy-trade any Hyperliquid wallet by N-day performance and compose them into vault-backed indexes
Pickup sports across the city — one board for every soccer/hockey/basketball game. Create games (one-off or recurring), invite/RSVP/kick players, optional USDC/USDT fee on Base. Free by default. No wallet needed to play.
GitHub commit-feed monitor. Tracks the mod repo (modc2/mod) and shows its dev-branch commit history by default, and attaches any other GitHub repo into one aggregated updates feed that flags commits new since you last looked. GitHub REST API (optional $GITHUB_TOKEN) with a local `git log` fallback. Use to see what changed, watch repos, or poll for new commits on a schedule.
Unified decentralized storage over filecoin + hippius, with MetaMask SIWE auth and Next.js app.
Modular governance for multi-option staked disputes — players stake on the options of a question (two or many), then a token-weighted vote or an M-of-N multisig picks the winning option whose backers split the pot pro-rata. Supports SEALED (private commit-reveal) voting that hides individual votes until settlement (only aggregates show), with zk-friendly nullifiers + eligibility-proof hook, and gas-minimal Merkle-claim settlement. Use for stake-backed bets/disputes/proposals resolved by token vote or arbiter multisig.
| name | hippius |
| description | Hippius substrate node manager + S3-compatible decentralized storage gateway. |
| type | orbit-module |
Manage a local Hippius substrate node, upload via the S3-compatible gateway, and retrieve CIDs through IPFS-style gateways.
hippius-node substrate binary (subprocess)import mod as m
h = m.mod('hippius')()
h.start_node()
h.put('/path/to/file', owner='0xabc')
h.get('bafy...')
h.peers()
m hippius/status
m hippius/start_node
m hippius/put /path/to/file owner=0xabc
m hippius/get bafy...
m hippius/peers
m hippius/stop_node
| Function | Description |
|---|---|
put(path, owner=None, key=None) | Upload via S3 (preferred) or local node IPFS. |
get(cid, out=None) | Retrieve by CID via gateway. |
pin(cid, owner=None) | Pin via substrate IPFS pallet. |
list(owner=None) | List recorded objects. |
rm(cid) | Drop record. |
start_node(chain='mainnet') | Launch substrate node. |
stop_node() | SIGTERM the node. |
node_status() | Daemon + RPC health. |
peers() | Substrate peers. |
account() | Chain/system info. |
hippius/
├── hippius/mod.py
├── config.json
└── skill.md
State: ~/.hippius-mod/hippius.db, ~/.hippius-mod/hippius.pid.
HIPPIUS_BIN — substrate node binary pathHIPPIUS_PATH — base path (~/.hippius)HIPPIUS_RPC — substrate JSON-RPC URLHIPPIUS_S3_ENDPOINT / HIPPIUS_S3_KEY / HIPPIUS_S3_SECRET / HIPPIUS_S3_BUCKETHIPPIUS_IPFS_GATEWAY — retrieval gatewayAnchor class Mod in hippius/mod.py. Reachable as m.mod('hippius')() or m hippius/<fn>.