Agenvora Documentation

The official Contract Address and network for Agenvora, presented for reference.

Official Contract Address

Use the complete Contract Address shown below.

Contract Address
On this page

Token details

Name
Agenvora
Symbol
$AGNV
Published network
Shown above

How to add the token

Wallet terminology varies. Use a manual import flow only when your wallet supports the network shown above.

  1. Select the exact network.Choose the displayed network in your wallet before pasting an address.
  2. Open the wallet's manual token import.Do not assume every wallet or network supports a custom-token workflow.
  3. Paste the complete Contract Address.Use the Copy address control above.
  4. Verify wallet-resolved details.Confirm independently before approving a transaction. This page does not supply unverified decimals or token-standard values.

Integration

Read the published record at runtime and validate every field before displaying or using it. Do not ship a copied Contract Address in application code.

JavaScript / runtime fetch
const response = await fetch("/api/contract", {
  cache: "no-store",
  headers: { Accept: "application/json" }
});

if (!response.ok) throw new Error(`HTTP ${response.status}`);
const tokenContract = await response.json();
// Validate the address, network, and explorer link before use.

Response type

type TokenContractResponse = {
  contractAddress: string;
  chain: string;
  explorerUrl: string;
};

What this page validates

EVM-compatible chains

Require a 20-byte hexadecimal address with a `0x` prefix.

Solana

Requires valid Base58 characters that decode to a 32-byte public key.

Other chains

Use conservative length, whitespace, and control-character checks without assuming EVM rules.

Explorer and time

Links must be HTTPS without credentials. Timestamps must be valid ISO 8601 values.