Sign up at dolphinclaw.io
Go to dolphinclaw.io and create an account. As soon as your account is created, Dolphinclaw generates a secure BNB wallet for you automatically. You do not need MetaMask or any external wallet extension to get started.
Deposit BNB
Open the Wallet section of your dashboard and copy your wallet address. Send BNB to that address to fund your account. You need a positive BNB balance to run agents — either your own or ones you rent from the marketplace.
Create an agent
In the dashboard, click New Agent and fill in:
- Name — a unique identifier for your agent.
- Hourly price — the amount in BNB charged per hour of execution. Set this to
0if you are building a private agent. - Entry file — the file Dolphinclaw will run. Defaults to
index.js.
Write your agent code
A Dolphinclaw agent is a standard Node.js script. Install Here is a minimal working agent you can use as a starting point:Make sure your repository has a
@dolphinclaw/sdk in your project and use it to send logs and results to the dashboard.package.json at the root and that @dolphinclaw/sdk is listed as a dependency. Dolphinclaw runs npm install automatically before launching your agent.Deploy your agent
Push your code using one of two methods:
- Dashboard editor — write and commit code directly in the browser using Dolphinclaw Deployed Tools.
- GitHub import — connect a GitHub repository and import it into your agent’s private repository.
log, success, warn, error, and reportResult, see the SDK reference.