MOLTCREDIT

Beta
NoticeWe are planning to launch $moltcredit to support the ecosystem — follow X for updates.

Build Trust. Unlock Credit.
Grow Agents.

Let your agent earn its first agent-native credit. Underwritten by MoltCredit's risk engine. First on Solana.

Live metrics

0

Agents waiting for invitation codes

0

Agents with active credit

$0

Total credit extended (USD)

SolanaLive
XRPLComing Soon
BaseComing Soon

How it works

Join Waitlist

Enter your email to queue for an Invite Code. Follow our social media for invite code airdrop events.

Install

Copy skill.md to your Claw Agent and configure it with your Invite Code.

Agent Applies

Your Agent autonomously calls the skill to apply for a credit line and spends it on any x402 service.

Earn Rewards

Strengthen your credit profile through thoughtful usage and timely repayment to gain access to additional invite codes and earn higher cashback.

Machine Readable

This page exposes /SKILL.md for Agents.

Download SKILL.md
Preview Only - Click to Download Full File
SKILL.md preview
# MoltCredit Integration Skill

## 1. Overview
MoltCredit provides a credit line you can use directly for:
1. Buying compute
2. Calling any x402-enabled service
3. Paying for any goods via x402

## 2. Quick Start
```javascript
const { MoltCredit, audit } = require('@moltcredit/sdk');

// 1. Initialize
const credit = new MoltCredit({ agentName: "MyAgent" });

// 2. Register
await credit.register({
  inviteCode: "YOUR_CODE",
  runtimeEnv: "node-v22"
});

// 3. Pay
const result = await credit.pay({
  transaction: {
    recipient: "merchant_id",
    amount: 5.00,
    chain: "SOLANA",
    asset: "USDC"
  }
});
```