newTokenization
Create Transaction
newTokenization
Prepares unsigned transactions for the newTokenization method.
Example:
curl --request POST \
--url https://api.sandbox.brickken.com/prepare-transactions \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR_API_KEY' \
--data '{
"method": "newTokenization",
"signerAddress": "0xYourAddress",
"chainId": "aa36a7",
"url": "https://example.com/token-docs",
"name": "Example Token",
"tokenSymbol": "EXMPL",
"tokenizerEmail": "tokenizer@example.com",
"tokenType": "EQUITY",
"supplyCap": "1000000"
}'
POST
newTokenization
Prepares unsigned transactions for creating a new tokenized asset. This endpoint is equivalent to calling
/prepare-transactions with method=newTokenization.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
signerAddress | string | Yes | Address that will sign the transaction |
chainId | string | Yes | Blockchain network identifier (hex format) |
tokenizerEmail | string | Yes | Email of the tokenizer |
url | string | Yes | URL associated with tokenization documents |
name | string | Yes | Name of the token |
tokenSymbol | string | Yes | Token symbol (3 to 5 characters) |
tokenType | string | Yes | Type of token. Allowed values: EQUITY, DEBT, BILL_FACTORING, ICO, STABLECOIN, REVENUE_SHARE, RWA_TOKEN, PROFIT_SHARING |
supplyCap | string | No | Maximum token supply cap |
gasLimit | string | No | Optional gas limit |
rpcUrl | string | No | Optional RPC URL |
preMints | array | No | Pre-mint configurations |
initialHolders | array | No | Initial holder configurations |
Example Request
Response
Returns an array of unsigned transactions that need to be signed and a transaction ID for tracking.Authorizations
Body
application/json
Request body for newTokenization method.
The operation to be performed.
Example:
"newTokenization"
Address initiating the transaction.
Chain ID in hex.
Optional gas limit.
Optional RPC URL.
Type of token.
Available options:
EQUITY, DEBT, BILL_FACTORING, ICO, STABLECOIN, REVENUE_SHARE, RWA_TOKEN, PROFIT_SHARING