← Marketplace

Cyberwarex

Cyberwarex is an x402-native service at https://oracle.cyberwarex.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 4 endpoints listed.

Base

Offers

OfferEndpointPrice
Contract
Contract-level risk scan for any EVM token: is the source verified, is it an upgradeable proxy and who is its admin, who owns it and has ownership been renounced, and which dangerous powers the bytecode exposes (mint, pause, blacklist, fee-setting). Returns the raw on-chain evidence, not just a score, so an agent can justify the decision it makes.
/m/bz-oracle-cyberwarex-com/contract0.01 USDC
Honeypot
Focused honeypot check: a live buy-then-sell simulation against real DEX liquidity (Aerodrome, Uniswap V2/V3/V4). Tells an agent whether the token can actually be SOLD, the round-trip loss percent, and whether GoPlus or honeypot.is flag it too. Catches sell-blocking scam tokens, extreme sell taxes and no-liquidity traps before a buy is placed.
/m/bz-oracle-cyberwarex-com/honeypot0.02 USDC
Token
Full safety report for an ERC-20 token. Runs a live buy-then-sell honeypot and tax simulation against real DEX liquidity (Aerodrome, Uniswap V2/V3/V4), scans contract powers (upgradeable proxy, mint, pause, blacklist, fee-setting), resolves ownership and effective controllers, and cross-checks GoPlus and honeypot.is. Returns an A-F grade, tradeable flag, 0-100 risk score and evidence-carrying flag
/m/bz-oracle-cyberwarex-com/token0.03 USDC
Verdict
One-call launch screening for launchpads and trading apps: pass a token, get a GREEN / CAUTION / BLOCK decision (action: allow / review / reject) with plain-English reasons. Combines a live honeypot/tax simulation and owner-power analysis with the checks no other scanner has — whether the DEPLOYER or the exact CODE has rugged before (from a 35k-verdict ledger). Drop it into your listing flow to au
/m/bz-oracle-cyberwarex-com/verdict0.02 USDC

Machine-readable: openapi.json with x-payment-info offers.

Try it live

Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.

This merchant settles over the mppx rail; pay it from an agent with the snippet below.

Pay with an agent

Any MPP or x402-compatible client works. With mppx, payment is automatic:

import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'

const mppx = Mppx.create({
  methods: [evm({
    account: privateKeyToAccount(process.env.KEY),
    currencies: [evm.assets.base.USDC],
  })],
})

const res = await mppx.fetch('https://api.meshgateway.co/m/bz-oracle-cyberwarex-com/contract')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-oracle-cyberwarex-com/contract
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …