NewWallets, tokens, NFTs, and vaults are live. RPC nodes coming soon.

See the stack →

Launch a token. No Solidity required.

ERC-20 issuance, gas sponsorship, and transfer policies — all from a single API call. Ship a loyalty token in an afternoon.

Beta ERC-20 · EVM Base · Polygon
import { FabricBloc } from '@fabricbloc/sdk';

// Issue a token in one call. No Solidity required.
const token = await fb.tokens.issue({
  name: "PointsToken",
  symbol: "PTS",
  supply: "1000000",
  chain: "base",
});

// Transfer with sponsored gas
await fb.tokens.transfer({ tokenId: token.id, to, amount });
curl -X POST https://api.fabricbloc.com/v1/tokens \
  -H "Authorization: Bearer ${FB_KEY}" \
  -d '{
    "name": "PointsToken",
    "symbol": "PTS",
    "supply": "1000000",
    "chain": "base"
  }'

Capabilities

Everything a token product needs.

One-call issuance

Issue an ERC-20 token from a single API call. No Solidity, no deployment scripts, no ABIs.

Gas sponsorship

Sponsor transfer fees for users. Set per-user caps and token-level transfer policies.

Transfer policies

Control who can transfer, whitelist recipients, and set cooling periods from the console.

Metadata management

Update token name, symbol, and metadata without redeployment via the API.

Audit trail

Full transfer history and balance snapshots for every holder — queryable in real time.

All EVM

Deploy to Base and Polygon with the same call. More EVM networks on the roadmap.

How it works

From idea to onchain in three steps.

  1. Get your key

    Sign in to console. Create a project. Copy your key.

  2. Issue your token

    POST /v1/tokens with name, symbol, and supply. Contract deployed automatically.

  3. Transfer and govern

    Transfer, mint, burn, and apply policies via the SDK or REST API.

FAQ · structured for voice & AI search

Common questions.

Do I need to write Solidity to issue a token?

No. FabricBloc deploys and manages the smart contract for you. You interact only via the API or SDK.

Can I set transfer restrictions?

Yes. You can whitelist recipients, set per-wallet transfer caps, and enforce cooling periods via transfer policies in the console.

What token standards are supported?

ERC-20 today. ERC-1155 multi-token support is on the roadmap.

Who pays the gas fees?

You can sponsor gas on behalf of users via gas policies set in the console, or let users pay their own fees.

Issue your first token.

Request access to the beta. We onboard teams in waves.