Platform
Branded digital assets, without starting from a blockchain
Define an asset, its supply model and its precision. Run it on an internal ledger, and move it to a public network only when that genuinely adds something.
Problem
The technology choice usually comes before the business case
Businesses are asked to pick a chain before they can answer what the asset is for, who holds it, whether it expires and what happens when a customer disputes a balance.
The infrastructure decision then constrains the product for years, and most of the time the public network was never required.
Solution
Internal ledger first
Assets are defined by their behaviour: supply model, precision, transferability, expiry and redemption. That definition runs on the internal double-entry ledger from day one, with no gas, no wallet setup and no network dependency.
When an asset genuinely benefits from a public network — external liquidity, third-party custody, verifiable scarcity — the same asset definition can be issued there without redefining the product.
Architecture
An asset through its lifecycle
- Define01
Name, symbol, precision, supply model
- Issue02
Minted to a treasury or directly to a wallet
- Transfer03
Moved under transfer policy
- Redeem04
Exchanged for a benefit and retired
- Expire05
Aged out on schedule where configured
Features
What the layer provides
Supply models
Unlimited, fixed, controlled, scheduled or mint-on-demand.
Configurable precision
Whole-unit points or fractional assets, decided per asset.
Transfer policy
Non-transferable, customer-to-customer or restricted to approved parties.
Redemption
Redeem against a catalogue, a discount or an external fulfilment step.
Treasury controls
Issuance authority separated from operational roles.
Infrastructure choice
Internal ledger, public network, permissioned network or a hybrid.
Use cases
What businesses run on it
Points
A non-transferable balance earned and redeemed inside one brand.
Memberships
Status assets that grant access rather than value.
Certificates
Achievement records a recipient keeps and can present elsewhere.
Store credit
Refunds and goodwill issued as an asset with defined expiry.
API preview
Defining an asset
const asset = await matinee.assets.create({
name: 'Coffee Points',
symbol: 'CFP',
precision: 0,
supply: { model: 'mint_on_demand' },
transferable: false,
expiry: { after: '12 months', from: 'issuance' },
infrastructure: 'internal_ledger',
})Illustrative. The API surface is fully specified but not yet served; this snippet does not call a live service.
Ready to build your digital economy?
Matinee AI has no public signup. Tell us what you want to launch and we will review the request.