Agenvora Documentation
The official Contract Address and network for Agenvora, presented for reference.
Official Contract Address
Use the complete Contract Address shown below.
May be outdated. The latest refresh failed. Retry before using this address.
No validated address is available.
No validated address loaded.
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.
- Select the exact network.Choose the displayed network in your wallet before pasting an address.
- Open the wallet's manual token import.Do not assume every wallet or network supports a custom-token workflow.
- Paste the complete Contract Address.Use the Copy address control above.
- 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.
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
Require a 20-byte hexadecimal address with a `0x` prefix.
Requires valid Base58 characters that decode to a 32-byte public key.
Use conservative length, whitespace, and control-character checks without assuming EVM rules.
Links must be HTTPS without credentials. Timestamps must be valid ISO 8601 values.