Namera
Namera

Changelog

All changes, fixes, and updates

Every release shipped to Namera, straight from GitHub.


GitHub Releases
CHANGELOG

Patch Changes

  • #8 63b1616 Thanks @envoy1084! - Print HelpDoc on root commands of command groups. This includes: - envoy1084

    namera
    namera keystore/k
    namera smart-account/sa
    namera session-key/sk
    namera mcp
    
  • #7 6ddc54f Thanks @envoy1084! - Fix --quite flag typo throughout all commands - envoy1084

Patch Changes

  • 0644fc0 Thanks @envoy1084! - Add tslib as a dependency, for @zerodev/webauth-key to work - envoy1084

Patch Changes

  • aa767ef Thanks @envoy1084! - Fix broken npm install caused by workspace:* dependencies being published. - envoy1084

Minor Changes

  • 8ad33c8 Thanks @envoy1084! - Initial release of @namera-ai/cli - envoy1084

    A local-first, agent-first CLI for managing smart accounts with session keys and scoped permissions across chains.

    This release provides a complete command-line interface for keystores, smart accounts, session keys, and MCP server management, designed for both interactive human use and deterministic agent-driven workflows.

    Keystore Management

    • Create encrypted keystores for owner signers
    • Import existing keystores from private keys
    • List, inspect, and decrypt keystore metadata
    • Remove keystores from disk

    Smart Account Management

    • Create ECDSA smart accounts linked to owner keystores
    • Import existing smart accounts from serialized data
    • List, inspect, and query account details
    • Check deployment status per chain
    • Remove smart account descriptors from disk

    Session Key Management

    • Create session keys with scoped policies (sudo, call, gas, timestamp, rate-limit, signature-caller)
    • List, inspect, and query session key metadata
    • Check installation status per chain
    • Remove session keys from disk

    MCP Server

    • Start local MCP server over stdio (default) or HTTP transport
    • Expose wallet tools: get_wallet_address, get_balance, read_contract, native_transfer, execute_transaction
    • Multi-chain support with per-chain RPC, bundler, and paymaster configuration via environment variables

Patch Changes

  • Updated dependencies [7781aea]:
    • @namera-ai/sdk@0.1.0

Minor Changes

  • 7781aea Thanks @envoy1084! - Initial release of @namera-ai/sdk - envoy1084

    This release provides a focused API for creating accounts, issuing scoped session keys, and executing transactions across chains, built on ZeroDev smart accounts and viem.

    Smart Accounts

    • Create ECDSA smart accounts with multi-chain validator support
    • Create passkey smart accounts with WebAuthn authentication
    • Deterministic counterfactual addresses usable before deployment
    • Configurable entrypoint and kernel versions

    Session Keys

    • ECDSA session keys with multi-chain approval via Merkle root signing
    • Passkey session keys with WebAuthn credentials for user-prompted approvals
    • Lazy plugin installation on first UserOp
    • Status checking and revocation utilities

    Policies

    • Call policy: restrict targets, functions, argument values, and native value
    • Gas policy: cap total gas spend and enforce paymaster usage
    • Signature policy: restrict which contracts can validate signed messages
    • Rate-limit policy: throttle transaction frequency
    • Timestamp policy: constrain key validity to time windows
    • Sudo policy: full permissions for trusted systems

    Transaction Execution

    • Lane-based execution model with batched and multi-chain support
    • Atomic batches for ordered, all-or-nothing flows
    • Parallel execution via nonce lanes on the same chain
    • Multi-chain routing with per-chain client matching
    • Returns UserOperationReceipt per batch

    Signing Utilities

    • ERC-6492 message signing and verification for deployed and counterfactual accounts