Response Schema¶
Each response has been mapped into a pydantic schema in a way that makes it easy to read and write codes that use them.
The classes identifying the response schema of an endpoint are the only ones ending with Response word, all other sub-schemes are used to identify the structures obtained from the responses.
cyhole.rugcheck.schema
¶
RugcheckRisk
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckRisk[RugcheckRisk]
click cyhole.rugcheck.schema.RugcheckRisk href "" "cyhole.rugcheck.schema.RugcheckRisk"
A single risk factor identified during a token report.
RugcheckTokenInfo
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTokenInfo[RugcheckTokenInfo]
click cyhole.rugcheck.schema.RugcheckTokenInfo href "" "cyhole.rugcheck.schema.RugcheckTokenInfo"
On-chain token mint account data.
mint_authority
class-attribute
instance-attribute
¶
mint_authority: str | None = Field(
default=None, alias="mintAuthority"
)
is_initialized
class-attribute
instance-attribute
¶
is_initialized: bool = Field(alias='isInitialized')
freeze_authority
class-attribute
instance-attribute
¶
freeze_authority: str | None = Field(
default=None, alias="freezeAuthority"
)
RugcheckTokenMeta
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTokenMeta[RugcheckTokenMeta]
click cyhole.rugcheck.schema.RugcheckTokenMeta href "" "cyhole.rugcheck.schema.RugcheckTokenMeta"
Token metadata stored on-chain (Metaplex standard).
RugcheckHolder
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckHolder[RugcheckHolder]
click cyhole.rugcheck.schema.RugcheckHolder href "" "cyhole.rugcheck.schema.RugcheckHolder"
A single top-holder entry for a token.
ui_amount_string
class-attribute
instance-attribute
¶
ui_amount_string: str = Field(alias='uiAmountString')
RugcheckFileMeta
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckFileMeta[RugcheckFileMeta]
click cyhole.rugcheck.schema.RugcheckFileMeta href "" "cyhole.rugcheck.schema.RugcheckFileMeta"
Off-chain file metadata for a token (e.g. from Arweave/IPFS).
RugcheckLocker
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckLocker[RugcheckLocker]
click cyhole.rugcheck.schema.RugcheckLocker href "" "cyhole.rugcheck.schema.RugcheckLocker"
A single liquidity locker entry.
RugcheckVaultSummary
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckVaultSummary[RugcheckVaultSummary]
click cyhole.rugcheck.schema.RugcheckVaultSummary href "" "cyhole.rugcheck.schema.RugcheckVaultSummary"
Aggregated totals for a vault response.
RugcheckTokenAccount
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTokenAccount[RugcheckTokenAccount]
click cyhole.rugcheck.schema.RugcheckTokenAccount href "" "cyhole.rugcheck.schema.RugcheckTokenAccount"
SPL token mint account info (embedded in market data).
mint_authority
class-attribute
instance-attribute
¶
mint_authority: str | None = Field(
default=None, alias="mintAuthority"
)
is_initialized
class-attribute
instance-attribute
¶
is_initialized: bool = Field(alias='isInitialized')
freeze_authority
class-attribute
instance-attribute
¶
freeze_authority: str | None = Field(
default=None, alias="freezeAuthority"
)
RugcheckLiquidityAccount
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckLiquidityAccount[RugcheckLiquidityAccount]
click cyhole.rugcheck.schema.RugcheckLiquidityAccount href "" "cyhole.rugcheck.schema.RugcheckLiquidityAccount"
SPL token account holding liquidity for a market.
RugcheckLPInfo
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckLPInfo[RugcheckLPInfo]
click cyhole.rugcheck.schema.RugcheckLPInfo href "" "cyhole.rugcheck.schema.RugcheckLPInfo"
Liquidity pool breakdown for a market.
reserve_supply
class-attribute
instance-attribute
¶
reserve_supply: int = Field(alias='reserveSupply')
current_supply
class-attribute
instance-attribute
¶
current_supply: int = Field(alias='currentSupply')
total_tokens_unlocked
class-attribute
instance-attribute
¶
total_tokens_unlocked: int = Field(
alias="totalTokensUnlocked"
)
lp_current_supply
class-attribute
instance-attribute
¶
lp_current_supply: int = Field(alias='lpCurrentSupply')
lp_total_supply
class-attribute
instance-attribute
¶
lp_total_supply: int = Field(alias='lpTotalSupply')
RugcheckMarket
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckMarket[RugcheckMarket]
click cyhole.rugcheck.schema.RugcheckMarket href "" "cyhole.rugcheck.schema.RugcheckMarket"
A single DEX market/pool for a token.
mint_a_account
class-attribute
instance-attribute
¶
mint_a_account: RugcheckTokenAccount = Field(
alias="mintAAccount"
)
mint_b_account
class-attribute
instance-attribute
¶
mint_b_account: RugcheckTokenAccount = Field(
alias="mintBAccount"
)
mint_lp_account
class-attribute
instance-attribute
¶
mint_lp_account: RugcheckTokenAccount = Field(
alias="mintLPAccount"
)
liquidity_a_account
class-attribute
instance-attribute
¶
liquidity_a_account: RugcheckLiquidityAccount = Field(
alias="liquidityAAccount"
)
liquidity_b_account
class-attribute
instance-attribute
¶
liquidity_b_account: RugcheckLiquidityAccount = Field(
alias="liquidityBAccount"
)
RugcheckKnownAccount
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckKnownAccount[RugcheckKnownAccount]
click cyhole.rugcheck.schema.RugcheckKnownAccount href "" "cyhole.rugcheck.schema.RugcheckKnownAccount"
A labelled on-chain account (e.g. DEX program or AMM pool).
RugcheckTransferFee
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTransferFee[RugcheckTransferFee]
click cyhole.rugcheck.schema.RugcheckTransferFee href "" "cyhole.rugcheck.schema.RugcheckTransferFee"
Transfer fee configuration for Token-2022 tokens.
RugcheckTokenEvent
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTokenEvent[RugcheckTokenEvent]
click cyhole.rugcheck.schema.RugcheckTokenEvent href "" "cyhole.rugcheck.schema.RugcheckTokenEvent"
A historical event recorded for a token (e.g. authority changes).
RugcheckInsiderNode
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckInsiderNode[RugcheckInsiderNode]
click cyhole.rugcheck.schema.RugcheckInsiderNode href "" "cyhole.rugcheck.schema.RugcheckInsiderNode"
A single wallet node in an insider network graph.
RugcheckInsiderNetwork
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckInsiderNetwork[RugcheckInsiderNetwork]
click cyhole.rugcheck.schema.RugcheckInsiderNetwork href "" "cyhole.rugcheck.schema.RugcheckInsiderNetwork"
A detected insider network with its member wallet nodes.
RugcheckInsiderNetworkSummary
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckInsiderNetworkSummary[RugcheckInsiderNetworkSummary]
click cyhole.rugcheck.schema.RugcheckInsiderNetworkSummary href "" "cyhole.rugcheck.schema.RugcheckInsiderNetworkSummary"
Summarised metadata for a detected insider network.
num_active_accounts
class-attribute
instance-attribute
¶
num_active_accounts: int = Field(alias='numActiveAccounts')
RugcheckLeaderboardEntry
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckLeaderboardEntry[RugcheckLeaderboardEntry]
click cyhole.rugcheck.schema.RugcheckLeaderboardEntry href "" "cyhole.rugcheck.schema.RugcheckLeaderboardEntry"
A single entry in the vote leaderboard.
RugcheckNewToken
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckNewToken[RugcheckNewToken]
click cyhole.rugcheck.schema.RugcheckNewToken href "" "cyhole.rugcheck.schema.RugcheckNewToken"
A recently created token as returned by the new-tokens stats endpoint.
RugcheckRecentToken
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckRecentToken[RugcheckRecentToken]
click cyhole.rugcheck.schema.RugcheckRecentToken href "" "cyhole.rugcheck.schema.RugcheckRecentToken"
A recently visited token as returned by the recent stats endpoint.
RugcheckTrendingToken
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckTrendingToken[RugcheckTrendingToken]
click cyhole.rugcheck.schema.RugcheckTrendingToken href "" "cyhole.rugcheck.schema.RugcheckTrendingToken"
A trending token with vote counts.
RugcheckVerifiedToken
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckVerifiedToken[RugcheckVerifiedToken]
click cyhole.rugcheck.schema.RugcheckVerifiedToken href "" "cyhole.rugcheck.schema.RugcheckVerifiedToken"
A verified token with project metadata.
RugcheckDomain
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckDomain[RugcheckDomain]
click cyhole.rugcheck.schema.RugcheckDomain href "" "cyhole.rugcheck.schema.RugcheckDomain"
A domain-mapped token entry.
RugcheckEligibilityCriteria
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckEligibilityCriteria[RugcheckEligibilityCriteria]
click cyhole.rugcheck.schema.RugcheckEligibilityCriteria href "" "cyhole.rugcheck.schema.RugcheckEligibilityCriteria"
Eligibility criteria evaluated for a token verification request.
RugcheckVerifyData
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.RugcheckVerifyData[RugcheckVerifyData]
click cyhole.rugcheck.schema.RugcheckVerifyData href "" "cyhole.rugcheck.schema.RugcheckVerifyData"
Metadata payload for a token verification submission.
PostTokenVoteBody
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokenVoteBody[PostTokenVoteBody]
click cyhole.rugcheck.schema.PostTokenVoteBody href "" "cyhole.rugcheck.schema.PostTokenVoteBody"
Request body for submitting a vote on a token.
PostBulkTokensBody
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostBulkTokensBody[PostBulkTokensBody]
click cyhole.rugcheck.schema.PostBulkTokensBody href "" "cyhole.rugcheck.schema.PostBulkTokensBody"
Request body for bulk token report/summary endpoints.
PostTokensVerifyEligibleBody
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyEligibleBody[PostTokensVerifyEligibleBody]
click cyhole.rugcheck.schema.PostTokensVerifyEligibleBody href "" "cyhole.rugcheck.schema.PostTokensVerifyEligibleBody"
Request body for checking token verification eligibility.
PostTokensVerifyBody
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyBody[PostTokensVerifyBody]
click cyhole.rugcheck.schema.PostTokensVerifyBody href "" "cyhole.rugcheck.schema.PostTokensVerifyBody"
Request body for submitting a full token verification.
PostTokensVerifyTransactionBody
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyTransactionBody[PostTokensVerifyTransactionBody]
click cyhole.rugcheck.schema.PostTokensVerifyTransactionBody href "" "cyhole.rugcheck.schema.PostTokensVerifyTransactionBody"
Request body for generating a verification transaction.
GetPingResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetPingResponse[GetPingResponse]
click cyhole.rugcheck.schema.GetPingResponse href "" "cyhole.rugcheck.schema.GetPingResponse"
Response for the ping health-check endpoint.
GetMaintenanceResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetMaintenanceResponse[GetMaintenanceResponse]
click cyhole.rugcheck.schema.GetMaintenanceResponse href "" "cyhole.rugcheck.schema.GetMaintenanceResponse"
Response for the maintenance status endpoint.
GetLeaderboardResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetLeaderboardResponse[GetLeaderboardResponse]
click cyhole.rugcheck.schema.GetLeaderboardResponse href "" "cyhole.rugcheck.schema.GetLeaderboardResponse"
Response for the leaderboard endpoint — ordered list of top voters.
GetTokenReportResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenReportResponse[GetTokenReportResponse]
click cyhole.rugcheck.schema.GetTokenReportResponse href "" "cyhole.rugcheck.schema.GetTokenReportResponse"
Full rug-check report for a given token mint address.
creator_balance
class-attribute
instance-attribute
¶
creator_balance: int = Field(alias='creatorBalance')
token_extensions
class-attribute
instance-attribute
¶
token_extensions: Any | None = Field(
default=None, alias="token_extensions"
)
token_meta
class-attribute
instance-attribute
¶
token_meta: RugcheckTokenMeta = Field(alias='tokenMeta')
top_holders
class-attribute
instance-attribute
¶
top_holders: list[RugcheckHolder] = Field(
alias="topHolders"
)
freeze_authority
class-attribute
instance-attribute
¶
freeze_authority: str | None = Field(
default=None, alias="freezeAuthority"
)
mint_authority
class-attribute
instance-attribute
¶
mint_authority: str | None = Field(
default=None, alias="mintAuthority"
)
file_meta
class-attribute
instance-attribute
¶
file_meta: RugcheckFileMeta = Field(alias='fileMeta')
locker_owners
class-attribute
instance-attribute
¶
locker_owners: dict[str, Any] = Field(alias='lockerOwners')
locker_scan_status
class-attribute
instance-attribute
¶
locker_scan_status: str = Field(alias='lockerScanStatus')
total_market_liquidity
class-attribute
instance-attribute
¶
total_market_liquidity: float = Field(
alias="totalMarketLiquidity"
)
total_stable_liquidity
class-attribute
instance-attribute
¶
total_stable_liquidity: float = Field(
alias="totalStableLiquidity"
)
total_lp_providers
class-attribute
instance-attribute
¶
total_lp_providers: int = Field(alias='totalLPProviders')
transfer_fee
class-attribute
instance-attribute
¶
transfer_fee: RugcheckTransferFee = Field(
alias="transferFee"
)
known_accounts
class-attribute
instance-attribute
¶
known_accounts: dict[str, RugcheckKnownAccount] = Field(
alias="knownAccounts"
)
GetTokenReportSummaryResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenReportSummaryResponse[GetTokenReportSummaryResponse]
click cyhole.rugcheck.schema.GetTokenReportSummaryResponse href "" "cyhole.rugcheck.schema.GetTokenReportSummaryResponse"
Lightweight summary of a token report.
lp_locked_pct
class-attribute
instance-attribute
¶
lp_locked_pct: float = Field(alias='lpLockedPct')
GetTokenMetadataResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenMetadataResponse[GetTokenMetadataResponse]
click cyhole.rugcheck.schema.GetTokenMetadataResponse href "" "cyhole.rugcheck.schema.GetTokenMetadataResponse"
Token metadata including image URI.
update_authority
class-attribute
instance-attribute
¶
update_authority: str = Field(alias='updateAuthority')
GetTokenVotesResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenVotesResponse[GetTokenVotesResponse]
click cyhole.rugcheck.schema.GetTokenVotesResponse href "" "cyhole.rugcheck.schema.GetTokenVotesResponse"
Community vote counts for a token.
GetTokenInsidersGraphResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetTokenInsidersGraphResponse[GetTokenInsidersGraphResponse]
click cyhole.rugcheck.schema.GetTokenInsidersGraphResponse href "" "cyhole.rugcheck.schema.GetTokenInsidersGraphResponse"
List of insider networks with full node graph for a token.
GetTokenInsidersNetworksResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetTokenInsidersNetworksResponse[GetTokenInsidersNetworksResponse]
click cyhole.rugcheck.schema.GetTokenInsidersNetworksResponse href "" "cyhole.rugcheck.schema.GetTokenInsidersNetworksResponse"
Summarised list of insider network metadata for a token.
GetStatsNewTokensResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetStatsNewTokensResponse[GetStatsNewTokensResponse]
click cyhole.rugcheck.schema.GetStatsNewTokensResponse href "" "cyhole.rugcheck.schema.GetStatsNewTokensResponse"
List of recently created tokens.
GetStatsRecentResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetStatsRecentResponse[GetStatsRecentResponse]
click cyhole.rugcheck.schema.GetStatsRecentResponse href "" "cyhole.rugcheck.schema.GetStatsRecentResponse"
List of recently visited/checked tokens.
GetStatsTrendingResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetStatsTrendingResponse[GetStatsTrendingResponse]
click cyhole.rugcheck.schema.GetStatsTrendingResponse href "" "cyhole.rugcheck.schema.GetStatsTrendingResponse"
List of trending tokens by vote activity (may be empty/null).
GetStatsVerifiedResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetStatsVerifiedResponse[GetStatsVerifiedResponse]
click cyhole.rugcheck.schema.GetStatsVerifiedResponse href "" "cyhole.rugcheck.schema.GetStatsVerifiedResponse"
List of verified tokens with project metadata.
GetStatsAnalyticsResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetStatsAnalyticsResponse[GetStatsAnalyticsResponse]
click cyhole.rugcheck.schema.GetStatsAnalyticsResponse href "" "cyhole.rugcheck.schema.GetStatsAnalyticsResponse"
Aggregate analytics statistics for a given time window.
avg_launch_score
class-attribute
instance-attribute
¶
avg_launch_score: float = Field(alias='avgLaunchScore')
avg_time_to_rug_minutes
class-attribute
instance-attribute
¶
avg_time_to_rug_minutes: dict[str, Any] = Field(
alias="avgTimeToRugMinutes"
)
avg_rug_score
class-attribute
instance-attribute
¶
avg_rug_score: float = Field(alias='avgRugScore')
avg_token_score
class-attribute
instance-attribute
¶
avg_token_score: float = Field(alias='avgTokenScore')
tokens_launched
class-attribute
instance-attribute
¶
tokens_launched: dict[str, Any] = Field(
alias="tokensLaunched"
)
rug_pull_count
class-attribute
instance-attribute
¶
rug_pull_count: dict[str, Any] = Field(alias="rugPullCount")
insider_stats
class-attribute
instance-attribute
¶
insider_stats: dict[str, Any] = Field(alias='insiderStats')
avg_insider_network_size
class-attribute
instance-attribute
¶
avg_insider_network_size: float = Field(
alias="avgInsiderNetworkSize"
)
rug_market_cap_usd
class-attribute
instance-attribute
¶
rug_market_cap_usd: float = Field(alias='rugMarketCapUSD')
GetStatsRugsTickerResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetStatsRugsTickerResponse[GetStatsRugsTickerResponse]
click cyhole.rugcheck.schema.GetStatsRugsTickerResponse href "" "cyhole.rugcheck.schema.GetStatsRugsTickerResponse"
Recent rug-pull ticker items.
GetCreatorResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetCreatorResponse[GetCreatorResponse]
click cyhole.rugcheck.schema.GetCreatorResponse href "" "cyhole.rugcheck.schema.GetCreatorResponse"
Creator wallet statistics including rug history.
avg_launch_score
class-attribute
instance-attribute
¶
avg_launch_score: float = Field(alias='avgLaunchScore')
last_token_at
class-attribute
instance-attribute
¶
last_token_at: str | None = Field(
default=None, alias="lastTokenAt"
)
last_rug_at
class-attribute
instance-attribute
¶
last_rug_at: str | None = Field(
default=None, alias="lastRugAt"
)
auto_blacklisted
class-attribute
instance-attribute
¶
auto_blacklisted: bool = Field(alias='autoBlacklisted')
manual_blacklisted
class-attribute
instance-attribute
¶
manual_blacklisted: bool = Field(alias='manualBlacklisted')
GetDomainsResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetDomainsResponse[GetDomainsResponse]
click cyhole.rugcheck.schema.GetDomainsResponse href "" "cyhole.rugcheck.schema.GetDomainsResponse"
List of domain-mapped tokens.
GetDomainLookupResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.GetDomainLookupResponse[GetDomainLookupResponse]
click cyhole.rugcheck.schema.GetDomainLookupResponse href "" "cyhole.rugcheck.schema.GetDomainLookupResponse"
Resolved mint address for a given domain.
PostTokenReportResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokenReportResponse[PostTokenReportResponse]
click cyhole.rugcheck.schema.PostTokenReportResponse href "" "cyhole.rugcheck.schema.PostTokenReportResponse"
Response confirming a token report generation was queued.
PostTokenVoteResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokenVoteResponse[PostTokenVoteResponse]
click cyhole.rugcheck.schema.PostTokenVoteResponse href "" "cyhole.rugcheck.schema.PostTokenVoteResponse"
Updated vote counts after casting a vote.
GetTokenLockersResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenLockersResponse[GetTokenLockersResponse]
click cyhole.rugcheck.schema.GetTokenLockersResponse href "" "cyhole.rugcheck.schema.GetTokenLockersResponse"
Vault response containing locker details and aggregate totals.
GetTokenLockersFluxResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.GetTokenLockersFluxResponse[GetTokenLockersFluxResponse]
click cyhole.rugcheck.schema.GetTokenLockersFluxResponse href "" "cyhole.rugcheck.schema.GetTokenLockersFluxResponse"
Flux vault response containing locker details and aggregate totals.
PostBulkTokensReportResponse
¶
Bases: RootModel
flowchart TD
cyhole.rugcheck.schema.PostBulkTokensReportResponse[PostBulkTokensReportResponse]
click cyhole.rugcheck.schema.PostBulkTokensReportResponse href "" "cyhole.rugcheck.schema.PostBulkTokensReportResponse"
Detailed reports for multiple tokens requested in bulk.
PostBulkTokensSummaryResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostBulkTokensSummaryResponse[PostBulkTokensSummaryResponse]
click cyhole.rugcheck.schema.PostBulkTokensSummaryResponse href "" "cyhole.rugcheck.schema.PostBulkTokensSummaryResponse"
Summary reports for multiple tokens requested in bulk.
PostTokensVerifyEligibleResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyEligibleResponse[PostTokensVerifyEligibleResponse]
click cyhole.rugcheck.schema.PostTokensVerifyEligibleResponse href "" "cyhole.rugcheck.schema.PostTokensVerifyEligibleResponse"
Eligibility check result for a token verification request.
PostTokensVerifyResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyResponse[PostTokensVerifyResponse]
click cyhole.rugcheck.schema.PostTokensVerifyResponse href "" "cyhole.rugcheck.schema.PostTokensVerifyResponse"
Response confirming a token verification was submitted.
PostTokensVerifyTransactionResponse
¶
Bases: BaseModel
flowchart TD
cyhole.rugcheck.schema.PostTokensVerifyTransactionResponse[PostTokensVerifyTransactionResponse]
click cyhole.rugcheck.schema.PostTokensVerifyTransactionResponse href "" "cyhole.rugcheck.schema.PostTokensVerifyTransactionResponse"
Serialised transaction for on-chain token verification.