v2
latestOpenAPI 3.1.02026-08-01170225.5 KBBoost
Contract
Find event and function signatures used in Boost configurations
Retrieve event or function signatures, human readable signature and their ABI which can be used when configuring Boost Actions.
get/known-signatures
Query parameters
pageinteger nullable
The desired page to return from the query
pageSizeinteger nullable
The amount of items to return from the query, defaults to 10, and must be <= 100
Response
Returns a list of Boosts
Example response
{
"signatures": [
{
"id": "0x00000000000000000000000000000000000000000000000000000000a836f32f",
"textSignature": "mint(address mintTo,uint256 quantity,address collection,uint256 tokenId,address mintReferral,string comment)",
"abiItem": {
"name": "mint",
"type": "function",
"inputs": [
{
"name": "mintTo",
"type": "address"
},
{
"name": "quantity",
"type": "uint256"
},
{
"name": "collection",
"type": "address"
},
{
"name": "tokenId",
"type": "uint256"
},
{
"name": "mintReferral",
"type": "address"
},
{
"name": "comment",
"type": "string"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
"signatureType": "function"
}
]
}