Segments
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
const query = {
"type": "minter",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
}
interface minter {
type: 'minter';
chain: 'ethereum' | 'polygon';
contractAddress: address;
minAmount: number;
maxAmount?: number;
}
const query = {
"type": "holder",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
}
interface holder {
type: 'holder';
chain: 'ethereum' | 'polygon';
contractAddress: address;
minAmount: number;
maxAmount?: number;
traits?: traits[];
}
const query = {
"type": "seller",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
}
interface seller {
type: 'seller';
chain: 'ethereum' | 'polygon';
contractAddress: address;
minAmount: number;
maxAmount?: number;
}
const query = {
"type": "buyer",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
}
interface buyer {
type: 'buyer';
chain: 'ethereum' | 'polygon';
contractAddress: address;
minAmount: number;
maxAmount?: number;
}
{
"operator": "AND",
"filters": [
{
"type": "minter",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
}
]
}
{
"operator": "AND",
"filters": [
{
"type": "holder",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "3",
"traits": [
{
"Fur": "Solid Gold"
}
]
}
]
}
{
"operator": "AND",
"filters": [
{
"type": "minter",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
},
{
"type": "minter",
"chain": "ethereum",
"contractAddress": "0x60e4d786628fea6478f785a6d7e704777c86a7c6",
"minAmount": "1"
}
]
}
{
"operator": "OR",
"filters": [
{
"type": "minter",
"chain": "ethereum",
"contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"minAmount": "1"
},
{
"type": "minter",
"chain": "ethereum",
"contractAddress": "0xc1a12e1404485c85479bef9414b83a99ca4cd478",
"minAmount": "3"
}
]
}