SettleMint
Runbooks

Deploy and mint a bond

Step-by-step guide for creating and minting bond tokens using the DALP TypeScript client.

Bond issuance connects maturity terms, denomination assets, compliance checks, and minting through the Platform API. You create the bond, grant the required roles, unpause the contract, and mint initial supply to investor wallets. Each step below shows the corresponding Platform API call in context.

Rendering diagram...

The diagram traces the path from issuer through the TypeScript client to the Platform API, where bond terms, maturity, compliance checks, and the denomination asset feed the token contract. The contract then supplies bonds to investor wallets.

Prerequisites

Before running these commands, you need:

  1. Your DALP platform URL, such as https://your-platform.example.com
  2. A running DALP instance, local or hosted
  3. A user account created through the Console with email and password
  4. PINCODE set up during onboarding. Manage it from Account → Wallet.
  5. The admin role on your account to grant system roles in Step 3
  6. A deployed stablecoin contract address for the denomination asset. Create one using the Stablecoin Guide or use an existing address.

Your wallet address is available during DALP signup. Step 2 retrieves it programmatically so you can use it in role grants and minting calls. The stablecoin contract address in item 6 must exist before you run Step 4.


Quick reference

StepWhatSDK call
1Create the clientcreateDalpClient
2Get user infodalp.user.me
3Grant system rolesGrant tokenManager role
4Create bonddalp.token.create, then recover if queued
5Grant token rolesdalp.token.grantRole
6Unpausedalp.token.unpause
7Mint bondsdalp.token.mint
8Verifydalp.token.holders

Bond token lifecycle flow

This diagram shows the complete bond deployment and minting workflow:

Rendering diagram...

The table below lists the bond-specific fields and role requirements.

FieldDescription
denominationAssetStablecoin contract address for redemptions. Required.
faceValueRedemption value per bond at maturity
maturityDateFuture ISO timestamp when bonds become redeemable
System rolesRequires tokenManager before creation
Token rolessupplyManagement for minting; emergency for unpausing

Bond creation in the Asset Designer

Step-by-step commands

Step 1: create the client

Create the DALP SDK client with your platform URL and API key. All subsequent calls use this client instance.

import { createDalpClient } from "@settlemint/dalp-sdk";

async function main() {
  // Step 1: Create the SDK client
  // Replace these placeholders with your actual values
  const dalp = createDalpClient({
    url: "https://your-platform.example.com",
    apiKey: "YOUR_API_KEY",
  });
  const pincode = "YOUR_PINCODE";
  const stablecoinAddress = "YOUR_STABLECOIN_CONTRACT_ADDRESS";

Step 2: check that your session has a wallet

  // Step 2: Get your wallet address
  const me = await dalp.user.me({});
  const myWallet = me.data.wallet;
  if (!myWallet) {
    throw new Error("No wallet found. Create a wallet first via the DALP dashboard.");
  }
  console.log("Wallet:", myWallet);

Save the wallet address. You use it when you grant token roles and mint the first bond supply.


Step 3: set up system roles

Grant yourself the tokenManager system role before creating the bond. Only users with the admin role can grant system roles. If you do not have admin access, ask your system administrator to grant tokenManager.


Step 4: create the bond token

  // Step 4: Create bond token
  const bond = await dalp.token.create({
    body: {
      type: "bond",
      name: "Test Corporate Bond",
      symbol: "TCBD",
      decimals: 18,
      countryCode: "840",
      cap: 1_000_000_000_000_000_000_000_000n,
      faceValue: 1_000_000_000_000_000_000_000n,
      maturityDate: new Date("2026-12-31T23:59:59Z").toISOString(),
      denominationAsset: stablecoinAddress,
      initialModulePairs: [],
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });

  if ("transactionId" in bond) {
    console.log("Bond creation queued:", bond.transactionId);
    return;
  }
  const tokenAddress = bond.data.id;
  console.log("Bond created:", tokenAddress);

Parameters:

  • type: Must be "bond".
  • name: Bond name, such as "Test Corporate Bond".
  • symbol: Bond symbol, such as "TCBD".
  • decimals: Usually 18 for bonds.
  • countryCode: ISO country code (840 = USA, 056 = Belgium, 276 = Germany).
  • cap: Maximum supply using toBigDecimal("1000000", 18) = 1M bonds.
  • faceValue: Redemption value per bond using toBigDecimal("1000", 18) = 1000 tokens.
  • maturityDate: When the bond matures (ISO string).
  • denominationAsset: Your stablecoin contract address from the stablecoin guide.
  • initialModulePairs: Compliance modules (empty array [] for basic setup).

A synchronous response returns bond data with data.id, the bond contract address. Save this address for the role grant, unpause, mint, and holder checks.

If the response contains transactionId instead of data.id, the request was queued. Poll dalp.transaction.status until the transaction completes. Then call dalp.token.list filtered by name, symbol, and tokenType and save the matching token id as tokenAddress. Production automation must wait for this resolution before continuing.


Step 5: grant token roles

Grant yourself supplyManagement for minting and emergency for unpausing on the bond contract. When you create a token, you automatically receive the admin role and the governance role. You must separately grant supplyManagement and emergency before proceeding.

  // Step 5: Grant token roles
  await dalp.token.grantRole({
    params: { tokenAddress },
    body: {
      accounts: [myWallet],
      role: "supplyManagement",
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  await dalp.token.grantRole({
    params: { tokenAddress },
    body: {
      accounts: [myWallet],
      role: "emergency",
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Roles granted");

The role grant transaction must complete before you proceed to Step 6.


Step 6: unpause the bond

New tokens start paused. Unpause the bond to enable transfers. This step requires the emergency role from Step 5 and a confirmed role-grant transaction.

  // Step 6: Unpause the bond
  await dalp.token.unpause({
    params: { tokenAddress },
    body: {
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Bond unpaused");

Step 7: mint bonds

  // Step 7: Mint bonds — 100 bonds
  await dalp.token.mint({
    params: { tokenAddress },
    body: {
      recipients: [myWallet],
      amounts: [100_000_000_000_000_000_000n],
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Minted bonds");

Parameters:

  • tokenAddress: Your bond contract address (in path)
  • recipients: Array of recipient wallet address(es)
  • amounts: Array of amounts using toBigDecimal("100", 18) = 100 bonds

The Platform API returns the transaction hash. This step requires the supplyManagement role from Step 5.


Step 8: verify the mint

  // Step 8: Verify holders
  const holders = await dalp.token.holders({ params: { tokenAddress }, query: { limit: 200 } });
  console.log("Holders:", holders.data);

The response shows bond holders with their balances.


Full script

import { createDalpClient } from "@settlemint/dalp-sdk";

async function main() {
  // Step 1: Create the SDK client
  // Replace these placeholders with your actual values
  const dalp = createDalpClient({
    url: "https://your-platform.example.com",
    apiKey: "YOUR_API_KEY",
  });
  const pincode = "YOUR_PINCODE";
  const stablecoinAddress = "YOUR_STABLECOIN_CONTRACT_ADDRESS";

  // Step 2: Get your wallet address
  const me = await dalp.user.me({});
  const myWallet = me.data.wallet;
  if (!myWallet) {
    throw new Error("No wallet found. Create a wallet first via the DALP dashboard.");
  }
  console.log("Wallet:", myWallet);

  // Step 3: Set up system roles
  // Follow the Set Up Roles guide to:
  // - Grant yourself 'tokenManager' system role
  // See: /docs/developer-guides/runbooks/setup-roles

  // Step 4: Create bond token
  const bond = await dalp.token.create({
    body: {
      type: "bond",
      name: "Test Corporate Bond",
      symbol: "TCBD",
      decimals: 18,
      countryCode: "840",
      cap: 1_000_000_000_000_000_000_000_000n,
      faceValue: 1_000_000_000_000_000_000_000n,
      maturityDate: new Date("2026-12-31T23:59:59Z").toISOString(),
      denominationAsset: stablecoinAddress,
      initialModulePairs: [],
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });

  if ("transactionId" in bond) {
    console.log("Bond creation queued:", bond.transactionId);
    return;
  }
  const tokenAddress = bond.data.id;
  console.log("Bond created:", tokenAddress);

  // Step 5: Grant token roles
  await dalp.token.grantRole({
    params: { tokenAddress },
    body: {
      accounts: [myWallet],
      role: "supplyManagement",
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  await dalp.token.grantRole({
    params: { tokenAddress },
    body: {
      accounts: [myWallet],
      role: "emergency",
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Roles granted");

  // Step 6: Unpause the bond
  await dalp.token.unpause({
    params: { tokenAddress },
    body: {
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Bond unpaused");

  // Step 7: Mint bonds — 100 bonds
  await dalp.token.mint({
    params: { tokenAddress },
    body: {
      recipients: [myWallet],
      amounts: [100_000_000_000_000_000_000n],
      walletVerification: {
        secretVerificationCode: pincode,
        verificationType: "PINCODE",
      },
    },
  });
  console.log("Minted bonds");

  // Step 8: Verify holders
  const holders = await dalp.token.holders({ params: { tokenAddress }, query: { limit: 200 } });
  console.log("Holders:", holders.data);
}

await main();

Deployed bond token details

Troubleshooting

ErrorFix
Authentication missingCheck the API key passed to createDalpClient.
PINCODE_INVALIDReconfirm your PINCODE.
USER_NOT_AUTHORIZED / tokenManager requiredGrant the tokenManager role (requires admin access).
Permission deniedGrant the required token roles (supplyManagement, emergency).
Token is pausedConfirm Step 6 (unpause) succeeded and the account holds the emergency role.
Invalid denomination assetVerify your stablecoin contract address from the stablecoin guide.
Maturity date must be in the futureUse a future date.

On this page