بنقرة واحدة
filecoin
Lotus daemon manager + Filecoin storage deals with HTTP gateway fallback for put/get/pin.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Lotus daemon manager + Filecoin storage deals with HTTP gateway fallback for put/get/pin.
التثبيت باستخدام 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 | filecoin |
| description | Lotus daemon manager + Filecoin storage deals with HTTP gateway fallback for put/get/pin. |
| type | orbit-module |
Manage a local lotus daemon for real Filecoin storage deals, with an HTTP
gateway fallback (Lighthouse / public IPFS) so put/get work even when no
node is running.
client deal --auto)import mod as m
f = m.mod('filecoin')()
f.start_node()
f.put('/path/to/file', owner='0xabc...')
f.get('bafy...')
f.deals()
f.wallet()
m filecoin/status
m filecoin/start_node
m filecoin/put /path/to/file owner=0xabc
m filecoin/get bafy...
m filecoin/deals
m filecoin/stop_node
| Function | Description |
|---|---|
put(path, owner=None, deal=False) | Import file. With deal=True and daemon running, initiates storage deal. Else uploads via gateway. |
get(cid, out=None) | Retrieve a CID via lotus or fallback gateway. |
pin(cid, owner=None) | Pin/deal a CID. |
list(owner=None, limit=100) | List recorded objects. |
rm(cid) | Drop a record from the local index. |
start_node(network='mainnet') | Spawn lotus daemon. |
stop_node() | SIGTERM the daemon. |
node_status() | Daemon alive + sync state. |
deals(limit=50) | Active deals from lotus client list-deals. |
wallet() | List wallet addresses. |
balance(address=None) | Wallet balance. |
status() | Combined module + daemon status. |
filecoin/
├── filecoin/mod.py # Mod class
├── config.json # ports, endpoints, env
└── skill.md # this file
State: ~/.filecoin-mod/filecoin.db (SQLite index), ~/.filecoin-mod/lotus.pid, ~/.filecoin-mod/lotus.log.
LOTUS_BIN — path to lotus binary (defaults to which lotus)LOTUS_PATH — lotus state dir (default ~/.lotus)FILECOIN_GATEWAY — HTTP gateway URL (default https://node.lighthouse.storage)FILECOIN_GATEWAY_TOKEN — bearer token for authenticated gateway uploadsAnchor class Mod in filecoin/mod.py. Inherits nothing — plain class. Functions exposed via fns list in config.json. Reachable as m.mod('filecoin')() or m filecoin/<fn> from the CLI.