ika-network
- Repo stars 0
- Author updated Live
- Author repo ika-network-skill
- Domain
- Other
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 83 / 100 · community maintained
- Author / version / license
- @wanderconnect01 · no license declared
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- macOS · Linux · Windows
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- External requests
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。; 检出高风险片段:pipe_curl_to_shell
---
name: ika-network
description: > Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable, transfe…
category: other
runtime: no special runtime
---
# ika-network output preview
## PART A: Task fit
- Use case: > Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable, transferable signing keys that work on any blockchain. A dWallet is controlled by a Sui smart makes outbound network calls. Works with Claude Code, Cursor, Cline and 23 more..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “What Ika Is / Quick Start / Prerequisites” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “> Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable, transferable signing keys that work on any blockchain. A dWallet is controlled by a Sui smart makes outbound network calls. Works with Claude Code, Cursor, Cline and 23 more.”.
- **02** When the source has headings, the agent prioritizes “What Ika Is / Quick Start / Prerequisites” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; may access external network resources; usually needs no extra API key.
## Running Rules
- read files, write/modify files; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “What Ika Is / Quick Start / Prerequisites”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: ika-network
description: > Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable, transfe…
category: other
source: wanderconnect01/ika-network-skill
---
# ika-network
## When to use
- > Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable, transferable signing keys tha…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “What Ika Is / Quick Start / Prerequisites” and keep inference separate from source facts.
- read files, write/modify files; may access external network resources; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "ika-network" {
input -> user goal + target files + boundaries + acceptance criteria
context -> What Ika Is / Quick Start / Prerequisites
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | may access external network resources
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} Ika Network Developer Skill
What Ika Is
Ika is a parallel MPC signing network built on Sui. It creates dWallets: programmable,
transferable signing keys that work on any blockchain. A dWallet is controlled by a Sui smart
contract (via DWalletCap) and requires BOTH the user AND the Ika validator network to produce
a signature. Neither can sign alone (non-collusive 2PC-MPC). This means Sui contracts can
natively control Bitcoin, Ethereum, Solana assets without bridges or wrapping.
Quick Start
import { IkaClient, getNetworkConfig } from '@ika.xyz/sdk';
import { SuiClient } from '@mysten/sui/client';
// IMPORTANT: Use publicnode RPC, NOT the default Sui RPC (rate-limited)
const suiClient = new SuiClient({ url: 'https://sui-testnet-rpc.publicnode.com' });
const ikaClient = new IkaClient({
suiClient,
config: getNetworkConfig('testnet'),
network: 'testnet',
cache: true,
});
await ikaClient.initialize();
Prerequisites
- Rust (
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh) - Sui CLI (
brew install sui) - pnpm (
npm install -g pnpm) - wasm-pack (
curl https://drager.github.io/wasm-pack/installer/init.sh -sSf | sh) - wasm-bindgen-cli (
cargo install wasm-bindgen-cli --version 0.2.100)
Install SDK: pnpm add @ika.xyz/sdk
Tips & Practical Notes
- Use
https://sui-testnet-rpc.publicnode.comfor testnet, NOTgetFullnodeUrl('testnet'). The default Sui RPC rate-limits the SDK's multi-call patterns. - IKA tokens required: Get them at
https://faucet.ika.xyz/by swapping SUI for IKA. - Create encryption keys:
UserShareEncryptionKeys.fromRootSeedKey(randomBytes(32), Curve.SECP256K1)— the factory method for generating key pairs. - Deprecated API warning: Do NOT use
requestDWalletDKGFirstRound,requestDWalletDKGFirstRoundAsync, orrequestDWalletDKGSecondRound. UserequestDWalletDKG(v2 API). - Mainnet RPC:
https://ikafn-on-sui-2-mainnet.ika-network.net/
Navigation
| I want to... | Read |
|---|---|
| Understand dWallets, 2PC-MPC, zero-trust | concepts.md |
| See SDK API (types, functions, signatures) | sdk-api.md |
| Walk through DKG → sign end-to-end | workflows.md |
| Write Move contracts using dWallets | move-integration.md |
| Debug an error | error-catalogue.md |
| Deploy to production | production-patterns.md |
| See network endpoints, package IDs, config | network-config.md |
| Explore use cases + code stubs | use-cases.md |
| Build AI agent with dWallet signing | agentic-patterns.md |
| Understand security model + trust assumptions | security-model.md |
Status Notes
- EdDSA: Added Dec 2025, available for Solana/Cardano/Near/Stellar signing
- Operators docs: Coming soon on official docs
- Code Examples section: Coming soon on official docs
- Move integration: See move-integration.md for extended examples beyond the official guides
Key Concepts (30-second version)
- dWallet = Sui object that can sign on any chain. Created via DKG (Distributed Key Generation).
- DWalletCap = The capability object that controls a dWallet. Whoever holds it controls signing policy. Losing it = frozen wallet.
- 2PC-MPC = Two-Party Computation with Multi-Party Computation. User + network = signature. Neither alone can sign. Non-collusive by construction.
- Zero-Trust = Even if 100% of validators are compromised, they cannot sign without the user's participation.
- Presigning = Pre-compute partial signatures for faster signing later.
GitHub & Resources
- Repo: https://github.com/dwallet-labs/ika
- SDK:
@ika.xyz/sdkon npm - Docs: https://docs.ika.xyz/docs/sdk
- Faucet: https://faucet.ika.xyz/
- Paper: IACR ePrint 2024/253
- Twitter: @ikadotxyz
Decide Fit First
Design Intent
How To Use It
Boundaries And Review