huginn-onboard

Solid

Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration.

AI & Automation 80 stars 25 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
64
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Huginn Onboarding Skill **Goal**: Enable any agent on any EVM chain to onboard to Starknet and register their identity with the HuginnRegistry. ## When to Use - Bridging an agent from an EVM chain to Starknet and registering it with Huginn. - Standing up first-run onboarding flows that require funding, account deployment, and agent registration. ## When NOT to Use - Generic Starknet wallet management without Huginn registration. - Cairo contract authoring, deployment-only runbooks, or security audits. Related modules: [skills catalog](../README.md). ## Prerequisites - Agent has ETH or USDC on source chain (Ethereum, Base, or Arbitrum) - Agent can sign transactions - Basic HTTP/RPC access ## Step 1: Bridge to Starknet Use AVNU bridge to transfer funds: ```bash # Get bridge quote curl -X POST "https://api.avnu.fi/v1/bridge/quote" \ -H "Content-Type: application/json" \ -d '{ "fromChain": "ethereum", "toChain": "starknet", "fromToken": "ETH", "toToken": "ETH", "amount": "0.01", "slippage": 0.5 }' # Execute bridge transaction # (Use response calldata with your signer) ``` ## Step 2: Deploy Agent Account Deploy a Starknet account contract: ```bash # Using starknet.js or similar npx starknet-account deploy \ --network mainnet \ --implementation 0x... # Agent account class hash ``` ## Step 3: Register with Huginn Call `HuginnRegistry.register_agent()`: ```typescript import { Contract, Account } from "starknet"; const registry = ...

Details

Author
keep-starknet-strange
Repository
keep-starknet-strange/starknet-agentic
Created
6 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category