Filters

Here is a comprehensive list of currently available filters. There are many more under development/testing being released soon.

Suggestions on what values to use for your strategy can be found here.

**Note that the token screener is only watching launches in the past 3 hours(meaning a token has 3 hours to get into your filter stream). We will add support for longer timeframes as we see demand but most users are hunting for new pairs. We will introduce support for strategies that focus on more established coins.

Name
Description
Value

chains

only include tokens from these chain(s)

hyphen-seperated string of 1 or more chains. all dexscreener supported-chains.

solana base blast ethereum optimism arbitrum bsc ton scroll fantom sui sei aptos avalanche and more

e.g. solana-blast-base

min_volume

only include tokens with this much volume in USD in the last 24 hours

integer > 0

min_liquidity

only include tokens with this much liquidity in USD

integer > 0

lp_locked

LP Locked is a percent value > 0 and <= 100 that represents the minimum amount of the initial LP that is locked/burned

integer > 0 && <= 100

(0.1= 0.1%, 51= 511%)

socials

token has some kind of social platform verified on their Dexscreener profile

true or false

mutable

token contract is mutable(metadata of the token like the name and ticker you see can be changed)

true or false

mintable

token supply is mintable meaning the dev can print more tokens and potentially cause a supply dump

true or false

freezable

this means the token can be frozen at a certain point potentially preventing you from transferring/selling your tokens

true or false

renounced

this means the token's contract owner renounced ownership.

true or false

honeypot

a honeypot is a token contract that allows you to buy but not sell, it is a scam. Note that the filter is not working on solana yet but will be soon. If you are looking for solana launches, don't set this filter yet

false

header

the token has a header image set on Dexscreener profile

true or false

audit

token has a contract security audit published on Dexscreener

true or false

buy_tax

Buy Tax is a percent value >= 0 indicating the maximum buy tax percentage a token's contract can have

integer >= 0 (0= 0%, 1 = 1%)

sell_tax

Sell Tax is a percent value >= 0 indicating the maximum sell tax percentage a token's contract can have

integer >= 0 (0= 0%, 1 = 1%)

min_maker_volume

minimum volume in USD per unique maker on this token(address that bought or sold this token)

integer > 0

max_maker_volume

maximum volume in USD per unique maker on this token(address that bought or sold this token)

integer > 0

min_liq_percent

minimum percentage ratio of liquidity to fully-diluted value of the token in USD

integer > 0 (0=0%, 1=1%)

max_liq_percent

maximum percentage ratio of liquidity to fully-diluted value of the token in USD

integer > 0 (0=0%, 1=1%)

min_makers

minimum number of unique wallets buying or selling on this token

integer >= 1

max_makers

maximum number of unique wallets buying or selling on this token

integer >= 1

cto

CTO is a true or false indicating if a token was abandoned by the dev/taken over by community members. At this time its not possible to guarantee detection of a CTO

true or false

min_price_change

Minimum Price Change is pretty much any number representing the minimum performance of the token in the last 24 hours or less(has it gone up atleast 20%, or not down more than 20(%) for example

any number

Discord Command Examples

// 1. all solana tokens with atleast 50k volume and 90% lp locked/burned

/create 'Sol tokens 50k+' 'chains: solana, 
  lp_locked: 90, min_volume: 50000'
  
// 2. all solana, base, or eth tokens with 100k+ liquidity and 1m+ volume
  
/create 'Sol/base/eth tokens high volume' 'chains: solana-base-ethereum, 
  min_liquidity: 100000, min_volume: 1000000'
  
- no need for the quotations when actually using discord slash commands
it interprets where each parameter should go

Last updated