File size: 48,512 Bytes
6993919 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 | ADDITIONAL_TOOLS = {
"contract_upgrade_monitor": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Monitor proxy contract upgrades in real-time β detects malicious implementation swaps, hidden timelock changes, and privilege escalation through upgrade patterns",
},
"correlation_matrix": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Compute cross-token correlation heatmap for portfolio risk β generates rolling correlation matrices, identifies regime shifts, and flags pairs with diverging correlation signals",
},
"cross_chain_trace": {
"price_usd": 0.15,
"price_atoms": "150000",
"category": "premium",
"trial_free": 1,
"description": "Trace funds across blockchain bridges and mixers β follows tainted money through bridge hops, mixer obfuscation, DEX swaps, and cross-chain routing with confidence scoring",
},
"cross_chain_whale": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "intelligence",
"trial_free": 2,
"description": "Track whale wallets across multiple blockchains simultaneously β maps cross-chain capital flows, bridge migrations, and multi-network positioning of top holders",
},
"deep_forensics": {
"price_usd": 0.25,
"price_atoms": "250000",
"category": "premium",
"trial_free": 1,
"description": "Institutional deep-dive forensic analysis β complete contract bytecode decompilation, variable state reconstruction, hidden function discovery, and multi-vector exploit scenario modeling",
},
"deployer_history": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Investigate any token creator's complete deployment history β reveals rug pulls, honeypots, deployer patterns, serial scammer behavior, and risk classification across all chains",
},
"degen_score": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Calculate degen trading behavior score for any wallet β evaluates leverage usage, meme token exposure, entry timing quality, and risk-on appetite with percentile ranking",
},
"dex_volume_rank": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "market",
"trial_free": 2,
"description": "Rank tokens by decentralized exchange trading volume β computes volume-weighted momentum scores, compares DEX vs CEX volume distribution, and surfaces volume outliers trending up",
},
"discord_alpha": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "social",
"trial_free": 2,
"description": "Monitor Discord servers for early alpha signals β detects project announcements, team member activity spikes, and insider conversation patterns before information reaches public channels",
},
"dormant_whale_alert": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Alert when dormant large wallets become active β monitors long-inactive top holders for reactivation signals, first transfers, and exchange deposits that precede market moves",
},
"drawdown_analyzer": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Calculate maximum drawdown and recovery patterns β computes peak-to-trough metrics, underwater equity curves, recovery time estimates, and stress tests against historical crash scenarios",
},
"dust_attack_detect": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Identify dusting attacks and address poisoning β traces micro-transactions from attacker wallets, detects lookalike address generation, and flags contaminated UTXO sets",
},
"fair_launch_detect": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "launchpad",
"trial_free": 2,
"description": "Detect and verify fair launch token distribution parameters β checks for no team allocation, renounced ownership, locked liquidity, and equal-opportunity buy conditions",
},
"flash_loan_detect": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Detect flash loan attack patterns on any token or pool β identifies price manipulation sequences, atomic arbitrage exploits, and governance vote flashes before damage occurs",
},
"full_wallet_dossier": {
"price_usd": 0.3,
"price_atoms": "300000",
"category": "premium",
"trial_free": 1,
"description": "Complete dossier on any wallet combining all intelligence β behavioral profiling, P&L history, counterparty network, risk scoring, cross-chain footprint, and OSINT identity correlation",
},
"funding_rate": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "market",
"trial_free": 2,
"description": "Monitor and analyze perpetual futures funding rates β tracks real-time rates across exchanges, identifies extreme positioning, and correlates funding with spot price action",
},
"github_developer_activity": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "social",
"trial_free": 2,
"description": "Track blockchain project developer commit activity β monitors code velocity, contributor count trends, issue resolution speed, and flags abandoned or suddenly-resumed repositories",
},
"governance_attack": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Detect governance manipulation and voting anomalies β flags flash-loan voting, proposal hijacking, quorum exploitation, and centralized governance risk in DAO protocols",
},
"ido_tracker": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "launchpad",
"trial_free": 2,
"description": "Track initial DEX offering launches and participation metrics β monitors IDO schedules, raise progress, oversubscription rates, and historical post-IDO performance patterns",
},
"impermanent_loss": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "defi",
"trial_free": 2,
"description": "Calculate impermanent loss for liquidity provision positions β computes current IL, projects worst-case scenarios, compares IL versus hold returns, and recommends optimal rebalancing intervals",
},
"influencer_impact_score": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "social",
"trial_free": 2,
"description": "Quantify specific influencer impact on token prices β measures post-to-pump latency, 24h post-impact ROI, audience authenticity, and distinguishes organic vs paid shill influence",
},
"liquidation_heatmap": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "market",
"trial_free": 2,
"description": "Visualize liquidation clusters and cascade risk zones β maps leveraged position concentrations by price level, estimates cascade threshold prices, and highlights DeFi protocol vulnerability",
},
"nft_floor_analytics": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Analyze NFT collection floor price trends and health β tracks floor price support levels, wash trading indicators, unique holder growth, and listing-to-sale ratio dynamics",
},
"options_flow": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "market",
"trial_free": 2,
"description": "Track unusual options activity and large block trades β detects smart money positioning through IV skew, put/call ratio anomalies, and outsized OI changes on crypto derivatives",
},
"oracle_manipulation": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Detect oracle price manipulation attack vectors β analyzes feed latency, stale price windows, single-source dependencies, and historical manipulation events for any DeFi protocol",
},
"phantom_mint_detect": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Detect phantom minting attacks where hidden mint functions create tokens from nowhere β scans contract bytecode for unauthorized mint paths, inflation exploits, and supply manipulation vectors",
},
"orderbook_imbalance": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "market",
"trial_free": 2,
"description": "Detect order book asymmetry signaling directional pressure β computes bid-ask depth ratio, spoofing probability, and hidden wall detection across major trading venues",
},
"presale_scanner": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "launchpad",
"trial_free": 2,
"description": "Scan and risk-score upcoming token presales β evaluates team verification, hard cap vs soft cap ratio, vesting terms, contract audit status, and community authenticity signals",
},
"privilege_escalation": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Detect excessive contract owner privileges β flags unlimited mint functions, emergency_PAUSE backdoors, transfer blocklists, and hidden admin roles in token contracts",
},
"proxy_detect": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Resolve proxy contracts to real implementations β checks upgrade authority, timelock status, fingerprints bytecode against known rug patterns, and detects malicious implementation swaps",
},
"pump_dump_detect": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Detect pump-and-dump lifecycle patterns β identifies volume spike anomalies, coordinated fresh-wallet buy clusters, price-volume divergence, and rug pull lifecycle stage classification",
},
"static_analysis": {
"price_usd": 0.12,
"price_atoms": "120000",
"category": "security",
"trial_free": 1,
"description": "Deep contract static analysis β detects reentrancy, access control issues, integer overflows, and live exploit alerts",
},
"decompiler_analysis": {
"price_usd": 0.10,
"price_atoms": "100000",
"category": "security",
"trial_free": 1,
"description": "Decompile unverified contract bytecode β extracts function selectors, identifies dangerous rug signatures (withdrawAll, drain, setOwner, emergencyWithdraw), and compares against known-rug pattern database",
},
"address_labels": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Multi-source wallet address labeling β resolves any address across chains to identify exchanges, MEV bots, known scammers, and deployers",
},
"fund_flow": {
"price_usd": 0.10,
"price_atoms": "100000",
"category": "security",
"trial_free": 1,
"description": "Fund flow visualization β generates fund flow graph showing token creator to initial funders, LP providers, and early sellers. Traces money paths through deployer and exchange-funded wallets",
},
"contract_diff": {
"price_usd": 0.10,
"price_atoms": "100000",
"category": "security",
"trial_free": 1,
"description": "Contract bytecode diff against known rug contracts β hashes function selectors and bytecode, detects clones, forks, and near-identical contracts. Flags dangerous signatures and rug-specific patterns",
},
"reddit_sentiment": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "social",
"trial_free": 2,
"description": "Aggregate and score Reddit crypto community sentiment β analyzes post frequency, comment polarity, subreddit engagement velocity, and identifies narrative shifts across crypto subreddits",
},
"reentrancy_scanner": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Scan smart contracts for reentrancy vulnerability patterns β detects external calls before state updates, callback loops, and cross-function reentrancy attack surfaces",
},
"sector_rotation": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Track capital rotation between crypto sectors and narratives β monitors DeFi, L1/L2, gaming, AI, and meme sector flows, identifying leading and lagging rotation patterns",
},
"sharpe_ratio_calc": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Compute risk-adjusted return metrics for any wallet or token β calculates Sharpe, Sortino, and Calmar ratios with configurable benchmark and rolling window parameters",
},
"smart_contract_interactions": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Map all contract interactions for a given address β reconstructs call graphs, identifies frequently-used protocols, and surfaces unknown delegate calls or suspicious contract relationships",
},
"tax_lot_optimizer": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Optimize tax lot identification for crypto portfolios β identifies tax-loss harvesting opportunities, computes FIFO/LIFO/Specific ID outcomes, and generates compliant lot assignment recommendations",
},
"telegram_pump_detect": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "social",
"trial_free": 2,
"description": "Detect coordinated pump groups on Telegram channels β identifies pre-pump coordination messages, group call timing patterns, and cross-references with on-chain volume anomalies",
},
"token_distribution_health": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Assess the health of token holder distribution β computes Gini coefficient, Herfindahl index, top-10 concentration risk, and compares distribution trajectory over time",
},
"token_velocity": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Analyze token circulation speed and holding patterns β computes turnover rate, velocity of money, dormant supply ratio, and compares against sector benchmarks",
},
"vesting_schedule_analyzer": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "launchpad",
"trial_free": 2,
"description": "Analyze token vesting schedules and cliff impacts β maps unlock timelines, calculates dilution pressure at each vesting event, and correlates scheduled unlocks with historical price impact",
},
"volatility_surface": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "market",
"trial_free": 2,
"description": "Analyze implied and realized volatility across timeframes β constructs term structure, identifies volatility skew opportunities, and compares current levels to historical percentile ranges",
},
"volume_profile": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "analysis",
"trial_free": 2,
"description": "Analyze volume distribution across price levels β identifies volume nodes, point-of-control zones, high-value nodes, and low-volume gaps that act as price magnets or barriers",
},
"wallet_cluster_score": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "intelligence",
"trial_free": 2,
"description": "Score wallet clusters for manipulation risk probability β combines funding-source analysis, behavioral correlation, and timing patterns to rate coordinated group threat level",
},
"wallet_drain_scanner": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Scan wallet for dangerous token approvals and signatures β identifies unlimited spending approvals, phishing permit signatures, and drain contract vulnerabilities",
},
"wallet_label_registry": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "intelligence",
"trial_free": 2,
"description": "Enrich wallet addresses with known entity labels β resolves exchange hot wallets, institutional addresses, MEV bot identities, known scammers, and fund manager tags",
},
"whale_network_map": {
"price_usd": 0.2,
"price_atoms": "200000",
"category": "premium",
"trial_free": 1,
"description": "Map complete whale wallet interconnection networks β reveals shared funding sources, coordinated allocation patterns, and influence cascades between top-100 holders across all chains",
},
"yield_aggregator": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "defi",
"trial_free": 2,
"description": "Aggregate and compare yields across DeFi protocols β ranks staking, lending, and LP opportunities by risk-adjusted APY, accounting for impermanent loss, smart contract risk, and fee structure",
},
"honeypot_check_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana honeypot detector β check tokens for sell restrictions, tax traps, and malicious contract logic on Solana",
"base_tool": "honeypot_check",
"chain": "solana",
},
"honeypot_check_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base honeypot detector β check tokens for sell restrictions, tax traps, and malicious contract logic on Base",
"base_tool": "honeypot_check",
"chain": "base",
},
"honeypot_check_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum honeypot detector β check tokens for sell restrictions, tax traps, and malicious contract logic on Ethereum",
"base_tool": "honeypot_check",
"chain": "ethereum",
},
"honeypot_check_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC honeypot detector β check tokens for sell restrictions, tax traps, and malicious contract logic on BSC",
"base_tool": "honeypot_check",
"chain": "bsc",
},
"rug_pull_predictor_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana rug pull predictor β AI risk scoring with 12+ signals, tuned for Solana token patterns",
"base_tool": "rug_pull_predictor",
"chain": "solana",
},
"rug_pull_predictor_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base rug pull predictor β AI risk scoring with 12+ signals, tuned for Base token patterns",
"base_tool": "rug_pull_predictor",
"chain": "base",
},
"rug_pull_predictor_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum rug pull predictor β AI risk scoring with 12+ signals, tuned for Ethereum token patterns",
"base_tool": "rug_pull_predictor",
"chain": "ethereum",
},
"rug_pull_predictor_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC rug pull predictor β AI risk scoring with 12+ signals, tuned for BSC token patterns",
"base_tool": "rug_pull_predictor",
"chain": "bsc",
},
"rugshield_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana RugShield β real-time safety scanner for Solana tokens, checking liquidity locks and ownership",
"base_tool": "rugshield",
"chain": "solana",
},
"rugshield_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base RugShield β real-time safety scanner for Base tokens, checking liquidity locks and ownership",
"base_tool": "rugshield",
"chain": "base",
},
"rugshield_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum RugShield β real-time safety scanner for Ethereum tokens, checking liquidity locks and ownership",
"base_tool": "rugshield",
"chain": "ethereum",
},
"rugshield_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC RugShield β real-time safety scanner for BSC tokens, checking liquidity locks and ownership",
"base_tool": "rugshield",
"chain": "bsc",
},
"scam_database_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana scam database β check Solana addresses against known scam, phishing, and rug pull databases",
"base_tool": "scam_database",
"chain": "solana",
},
"scam_database_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base scam database β check Base addresses against known scam, phishing, and rug pull databases",
"base_tool": "scam_database",
"chain": "base",
},
"scam_database_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum scam database β check Ethereum addresses against known scam, phishing, and rug pull databases",
"base_tool": "scam_database",
"chain": "ethereum",
},
"scam_database_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC scam database β check BSC addresses against known scam, phishing, and rug pull databases",
"base_tool": "scam_database",
"chain": "bsc",
},
"wallet_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana wallet profiler β complete address analysis on Solana: holdings, PnL, risk score, counterparty exposure",
"base_tool": "wallet",
"chain": "solana",
},
"wallet_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base wallet profiler β complete address analysis on Base: holdings, PnL, risk score, counterparty exposure",
"base_tool": "wallet",
"chain": "base",
},
"wallet_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum wallet profiler β complete address analysis on Ethereum: holdings, PnL, risk score, counterparty exposure",
"base_tool": "wallet",
"chain": "ethereum",
},
"wallet_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC wallet profiler β complete address analysis on BSC: holdings, PnL, risk score, counterparty exposure",
"base_tool": "wallet",
"chain": "bsc",
},
"wallet_pnl_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana wallet PnL β realized and unrealized gains, win rate, ROI, and trade history on Solana",
"base_tool": "wallet_pnl",
"chain": "solana",
},
"wallet_pnl_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base wallet PnL β realized and unrealized gains, win rate, ROI, and trade history on Base",
"base_tool": "wallet_pnl",
"chain": "base",
},
"wallet_pnl_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum wallet PnL β realized and unrealized gains, win rate, ROI, and trade history on Ethereum",
"base_tool": "wallet_pnl",
"chain": "ethereum",
},
"wallet_pnl_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC wallet PnL β realized and unrealized gains, win rate, ROI, and trade history on BSC",
"base_tool": "wallet_pnl",
"chain": "bsc",
},
"whale_scan_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana whale scanner β real-time large wallet activity on Solana: transfers, exchange deposits, accumulation",
"base_tool": "whale_scan",
"chain": "solana",
},
"whale_scan_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base whale scanner β real-time large wallet activity on Base: transfers, exchange deposits, accumulation",
"base_tool": "whale_scan",
"chain": "base",
},
"whale_scan_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum whale scanner β real-time large wallet activity on Ethereum: transfers, exchange deposits, accumulation",
"base_tool": "whale_scan",
"chain": "ethereum",
},
"whale_scan_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC whale scanner β real-time large wallet activity on BSC: transfers, exchange deposits, accumulation",
"base_tool": "whale_scan",
"chain": "bsc",
},
"smart_money_alpha_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana smart money alpha β track top-performing Solana wallets entering new positions",
"base_tool": "smart_money_alpha",
"chain": "solana",
},
"smart_money_alpha_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base smart money alpha β track top-performing Base wallets entering new positions",
"base_tool": "smart_money_alpha",
"chain": "base",
},
"smart_money_alpha_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum smart money alpha β track top-performing Ethereum wallets entering new positions",
"base_tool": "smart_money_alpha",
"chain": "ethereum",
},
"smart_money_alpha_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC smart money alpha β track top-performing BSC wallets entering new positions",
"base_tool": "smart_money_alpha",
"chain": "bsc",
},
"forensics_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana token forensics β deep on-chain investigation for Solana contracts: ownership, upgrades, exploit history",
"base_tool": "forensics",
"chain": "solana",
},
"forensics_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base token forensics β deep on-chain investigation for Base contracts: ownership, upgrades, exploit history",
"base_tool": "forensics",
"chain": "base",
},
"forensics_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum token forensics β deep on-chain investigation for Ethereum contracts: ownership, upgrades, exploit history",
"base_tool": "forensics",
"chain": "ethereum",
},
"forensics_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC token forensics β deep on-chain investigation for BSC contracts: ownership, upgrades, exploit history",
"base_tool": "forensics",
"chain": "bsc",
},
"audit_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana contract audit β automated security audit for Solana smart contracts with vulnerability scoring",
"base_tool": "audit",
"chain": "solana",
},
"audit_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base contract audit β automated security audit for Base smart contracts with vulnerability scoring",
"base_tool": "audit",
"chain": "base",
},
"audit_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum contract audit β automated security audit for Ethereum smart contracts with vulnerability scoring",
"base_tool": "audit",
"chain": "ethereum",
},
"audit_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC contract audit β automated security audit for BSC smart contracts with vulnerability scoring",
"base_tool": "audit",
"chain": "bsc",
},
"fresh_pair_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana fresh pair scanner β detect new trading pairs on Solana DEXs with liquidity and risk analysis",
"base_tool": "fresh_pair",
"chain": "solana",
},
"fresh_pair_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base fresh pair scanner β detect new trading pairs on Base DEXs with liquidity and risk analysis",
"base_tool": "fresh_pair",
"chain": "base",
},
"fresh_pair_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum fresh pair scanner β detect new trading pairs on Ethereum DEXs with liquidity and risk analysis",
"base_tool": "fresh_pair",
"chain": "ethereum",
},
"fresh_pair_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC fresh pair scanner β detect new trading pairs on BSC DEXs with liquidity and risk analysis",
"base_tool": "fresh_pair",
"chain": "bsc",
},
"sniper_alert_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana sniper alert β detect sniper bots entering new Solana token launches in real-time",
"base_tool": "sniper_alert",
"chain": "solana",
},
"sniper_alert_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base sniper alert β detect sniper bots entering new Base token launches in real-time",
"base_tool": "sniper_alert",
"chain": "base",
},
"sniper_alert_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum sniper alert β detect sniper bots entering new Ethereum token launches in real-time",
"base_tool": "sniper_alert",
"chain": "ethereum",
},
"sniper_alert_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC sniper alert β detect sniper bots entering new BSC token launches in real-time",
"base_tool": "sniper_alert",
"chain": "bsc",
},
"liquidity_depth_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana liquidity depth β order book depth, slippage estimation, and market impact on Solana DEXs",
"base_tool": "liquidity_depth",
"chain": "solana",
},
"liquidity_depth_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base liquidity depth β order book depth, slippage estimation, and market impact on Base DEXs",
"base_tool": "liquidity_depth",
"chain": "base",
},
"liquidity_depth_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum liquidity depth β order book depth, slippage estimation, and market impact on Ethereum DEXs",
"base_tool": "liquidity_depth",
"chain": "ethereum",
},
"liquidity_depth_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC liquidity depth β order book depth, slippage estimation, and market impact on BSC DEXs",
"base_tool": "liquidity_depth",
"chain": "bsc",
},
"arbitrage_scan_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana arbitrage scanner β find price discrepancies across Solana DEXs and cross-chain bridges",
"base_tool": "arbitrage_scan",
"chain": "solana",
},
"arbitrage_scan_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base arbitrage scanner β find price discrepancies across Base DEXs and cross-chain bridges",
"base_tool": "arbitrage_scan",
"chain": "base",
},
"arbitrage_scan_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum arbitrage scanner β find price discrepancies across Ethereum DEXs and cross-chain bridges",
"base_tool": "arbitrage_scan",
"chain": "ethereum",
},
"arbitrage_scan_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC arbitrage scanner β find price discrepancies across BSC DEXs and cross-chain bridges",
"base_tool": "arbitrage_scan",
"chain": "bsc",
},
"sentiment_spike_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana sentiment spike β real-time social and on-chain volume anomalies for Solana tokens",
"base_tool": "sentiment_spike",
"chain": "solana",
},
"sentiment_spike_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base sentiment spike β real-time social and on-chain volume anomalies for Base tokens",
"base_tool": "sentiment_spike",
"chain": "base",
},
"sentiment_spike_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum sentiment spike β real-time social and on-chain volume anomalies for Ethereum tokens",
"base_tool": "sentiment_spike",
"chain": "ethereum",
},
"sentiment_spike_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC sentiment spike β real-time social and on-chain volume anomalies for BSC tokens",
"base_tool": "sentiment_spike",
"chain": "bsc",
},
"cluster_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana wallet cluster analysis β identify connected Solana addresses through funding pattern analysis",
"base_tool": "cluster",
"chain": "solana",
},
"cluster_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base wallet cluster analysis β identify connected Base addresses through funding pattern analysis",
"base_tool": "cluster",
"chain": "base",
},
"cluster_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum wallet cluster analysis β identify connected Ethereum addresses through funding pattern analysis",
"base_tool": "cluster",
"chain": "ethereum",
},
"cluster_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC wallet cluster analysis β identify connected BSC addresses through funding pattern analysis",
"base_tool": "cluster",
"chain": "bsc",
},
"insider_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana insider tracker β trace developer and team wallet movements on Solana before token launches",
"base_tool": "insider",
"chain": "solana",
},
"insider_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base insider tracker β trace developer and team wallet movements on Base before token launches",
"base_tool": "insider",
"chain": "base",
},
"insider_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum insider tracker β trace developer and team wallet movements on Ethereum before token launches",
"base_tool": "insider",
"chain": "ethereum",
},
"insider_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC insider tracker β trace developer and team wallet movements on BSC before token launches",
"base_tool": "insider",
"chain": "bsc",
},
"deployer_history_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana deployer history β every token this wallet launched on Solana, scam patterns, success rate",
"base_tool": "deployer_history",
"chain": "solana",
},
"deployer_history_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base deployer history β every token this wallet launched on Base, scam patterns, success rate",
"base_tool": "deployer_history",
"chain": "base",
},
"deployer_history_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum deployer history β every token this wallet launched on Ethereum, scam patterns, success rate",
"base_tool": "deployer_history",
"chain": "ethereum",
},
"deployer_history_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC deployer history β every token this wallet launched on BSC, scam patterns, success rate",
"base_tool": "deployer_history",
"chain": "bsc",
},
"alpha_digest_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana alpha digest β curated Solana intelligence from top wallets, on-chain signals, accumulation",
"base_tool": "alpha_digest",
"chain": "solana",
},
"alpha_digest_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base alpha digest β curated Base intelligence from top wallets, on-chain signals, accumulation",
"base_tool": "alpha_digest",
"chain": "base",
},
"alpha_digest_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum alpha digest β curated Ethereum intelligence from top wallets, on-chain signals, accumulation",
"base_tool": "alpha_digest",
"chain": "ethereum",
},
"alpha_digest_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC alpha digest β curated BSC intelligence from top wallets, on-chain signals, accumulation",
"base_tool": "alpha_digest",
"chain": "bsc",
},
"urlcheck_solana": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Solana URL checker β verify Solana dApp URLs against phishing databases and clone detection",
"base_tool": "urlcheck",
"chain": "solana",
},
"urlcheck_base": {
"price_usd": 0.03,
"price_atoms": "30000",
"category": "variant",
"trial_free": 1,
"description": "Base URL checker β verify Base dApp URLs against phishing databases and clone detection",
"base_tool": "urlcheck",
"chain": "base",
},
"urlcheck_ethereum": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "Ethereum URL checker β verify Ethereum dApp URLs against phishing databases and clone detection",
"base_tool": "urlcheck",
"chain": "ethereum",
},
"urlcheck_bsc": {
"price_usd": 0.04,
"price_atoms": "40000",
"category": "variant",
"trial_free": 1,
"description": "BSC URL checker β verify BSC dApp URLs against phishing databases and clone detection",
"base_tool": "urlcheck",
"chain": "bsc",
},
# ββ SENTINEL scanner modules ββββββββββββββββββββββββββββββββββββββ
"sentinel_scan": {
"price_usd": 0.15,
"price_atoms": "150000",
"category": "security",
"trial_free": 1,
"description": "Deep scan β all 9 security modules in parallel with graded risk score, comprehensive token security audit",
},
"holder_analysis": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Holder Analysis β HHI concentration, fake diversification detection, whale ratio, holder health score",
},
"bundle_detect": {
"price_usd": 0.08,
"price_atoms": "80000",
"category": "security",
"trial_free": 2,
"description": "Bundle Detection β enhanced bundle/sniper detection, same-block group analysis, MEV exposure",
},
"exchange_fund_check": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Exchange Fund Check β CEX-funded wallet detection, withdrawal clustering, deposit-to-dump patterns",
},
"liquidity_verify": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Liquidity Verification β lock verification, fake locks, timelock analysis, rug-proof LP assessment",
},
"dev_reputation": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Developer Reputation β serial rugg detection, cross-chain deployer tracking, team history analysis",
},
"metadata_fingerprint": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Metadata Fingerprint β HTML structure hashing, description cloning detection, social fingerprinting",
},
"pumpfun_analysis": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Launch Analysis β bonding curve progress, bot detection, dev wallet concentration, early buyer patterns",
},
"sentiment_check": {
"price_usd": 0.05,
"price_atoms": "50000",
"category": "security",
"trial_free": 2,
"description": "Sentiment Check β social sentiment scoring, bot campaign detection, artificial hype flagging",
},
}
|