One-call issuance
Issue an ERC-20 token from a single API call. No Solidity, no deployment scripts, no ABIs.
ERC-20 issuance, gas sponsorship, and transfer policies — all from a single API call. Ship a loyalty token in an afternoon.
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
Issue an ERC-20 token from a single API call. No Solidity, no deployment scripts, no ABIs.
Sponsor transfer fees for users. Set per-user caps and token-level transfer policies.
Control who can transfer, whitelist recipients, and set cooling periods from the console.
Update token name, symbol, and metadata without redeployment via the API.
Full transfer history and balance snapshots for every holder — queryable in real time.
Deploy to Base and Polygon with the same call. More EVM networks on the roadmap.
How it works
Sign in to console. Create a project. Copy your key.
POST /v1/tokens with name, symbol, and supply. Contract deployed automatically.
Transfer, mint, burn, and apply policies via the SDK or REST API.
FAQ · structured for voice & AI search
No. FabricBloc deploys and manages the smart contract for you. You interact only via the API or SDK.
Yes. You can whitelist recipients, set per-wallet transfer caps, and enforce cooling periods via transfer policies in the console.
ERC-20 today. ERC-1155 multi-token support is on the roadmap.
You can sponsor gas on behalf of users via gas policies set in the console, or let users pay their own fees.
Pairs with
Request access to the beta. We onboard teams in waves.