소스 정보
- 저장소
- Demerzels-lab/elsamultiskillagent
- 최근 소스 활동
- 2026년 5월 14일 08:17
- 감지된 SKILL.md 언어
- 영어
- 스타
- 10
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill cardano-wallet명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | cardano-wallet |
| description | Generate, manage, and fund Cardano wallets for OpenClaw agents |
| homepage | https://masumi.network |
| user-invocable | true |
| metadata | {"openclaw":{"requires":{"bins":["node"],"env":[]},"emoji":"💳"}} |
Generate, restore, and manage Cardano wallets with QR code funding support
The Cardano Wallet skill provides tools for AI agents to:
cardano_generate_walletGenerate a new Cardano wallet with 24-word mnemonic phrase.
Parameters:
network (optional): "Preprod" or "Mainnet" (default: "Preprod")Returns:
address: Cardano address (addr1...)vkey: Payment verification keycredentialsPath: Path to encrypted credentialsExample:
const wallet = await cardano_generate_wallet({ network: 'Preprod' });
console.log('Address:', wallet.address);
cardano_restore_walletRestore a wallet from existing mnemonic phrase.
Parameters:
mnemonic (required): 24-word mnemonic phrasenetwork (optional): "Preprod" or "Mainnet"agentIdentifier (optional): Identifier to save credentialsExample:
const wallet = await cardano_restore_wallet({
mnemonic: 'word1 word2 ... word24',
network: 'Preprod'
});
cardano_generate_funding_qrGenerate QR code for wallet funding. Returns QR code as data URL.
Parameters:
address (optional): Cardano addressagentIdentifier (optional): Wallet identifiernetwork (optional): "Preprod" or "Mainnet"Returns:
qrDataUrl: QR code as data URL (can be displayed in image)address: Wallet addressfaucetUrl: Preprod faucet URL (if Preprod network)Example:
const qr = await cardano_generate_funding_qr({
agentIdentifier: 'my-wallet',
network: 'Preprod'
});
// Display qr.qrDataUrl as image
cardano_get_wallet_balanceGet wallet balance in ADA and lovelace. Requires Blockfrost API key.
Parameters:
agentIdentifier (required): Wallet identifiernetwork (optional): "Preprod" or "Mainnet"blockfrostApiKey (optional): Blockfrost API key (or use env var)Environment Variables:
BLOCKFROST_API_KEY: Blockfrost API keyBLOCKFROST_PREPROD_API_KEY: Preprod API keyBLOCKFROST_MAINNET_API_KEY: Mainnet API keyExample:
const balance = await cardano_get_wallet_balance({
agentIdentifier: 'my-wallet',
network: 'Preprod'
});
console.log('Balance:', balance.ada, 'ADA');
cardano_backup_walletSecurely backup wallet credentials (encrypted).
Parameters:
agentIdentifier (required): Wallet identifiernetwork (optional): "Preprod" or "Mainnet"Returns:
backupData: Encrypted backup JSONGenerate wallet:
const wallet = await cardano_generate_wallet({ network: 'Preprod' });
Generate QR code:
const qr = await cardano_generate_funding_qr({
address: wallet.address,
network: 'Preprod'
});
Display QR code (for human to scan and fund)
For Preprod: Use faucet at https://docs.cardano.org/cardano-testnet/tools/faucet
Check balance:
const balance = await cardano_get_wallet_balance({
agentIdentifier: 'wallet-id',
network: 'Preprod',
blockfrostApiKey: 'your-api-key'
});
Credentials are stored encrypted at:
~/.openclaw/credentials/cardano-wallet/Files are encrypted with AES-256-GCM and have permissions 600 (owner read/write only).
cardano_backup_wallet or save manuallyMASUMI_ENCRYPTION_KEY environment variable for secure encryption@meshsdk/core: Wallet operationsqrcode: QR code generation@blockfrost/blockfrost-js: Balance queries (optional)See examples/wallet-generation.ts for complete examples.