
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
lumen-base-mainnet
Advanced tools
LUMEN World Computer - Official Base Mainnet deployment addresses and ABIs
A verification & settlement kernel for the Agent Economy on Base.
Network: Base Mainnet (ChainID: 8453)
| Contract | Address |
|---|---|
| Kernel | 0x967bc97cdD6924411cA645761aF3Eb00FD1fb2EE |
| AgentVault | 0x2FC5134B187931fBC8e1A4997D806E82c54536bc |
| AgentBond | 0x38F73Be1341B88bCFb4fd76dF0849717C8f4e4E1 |
| A2A Clearinghouse | 0xA2F2F933221a114aA9CA1E2414dF01F2a79Bf814 |
Source code verified on Blockscout:
View Verified Contract →
All contracts are deployed and verified on Base Mainnet. You can inspect the source code, ABIs, and deployment parameters directly on the block explorer.
Install via npm to access deployment addresses and ABIs in your project:
npm install lumen-base-mainnet
import deployments from 'lumen-base-mainnet/lumen_base_deploy.json';
console.log('Kernel Address:', deployments.kernel);
console.log('AgentVault Address:', deployments.agentVault);
console.log('AgentBond Address:', deployments.agentBond);
console.log('A2A Clearinghouse:', deployments.a2a);
import abis from 'lumen-base-mainnet/lumen_base_abi.json';
// Use with ethers.js
import { ethers } from 'ethers';
const kernelContract = new ethers.Contract(
deployments.kernel,
abis.Kernel,
provider
);
import { ethers } from 'ethers';
import deployments from 'lumen-base-mainnet/lumen_base_deploy.json';
import abis from 'lumen-base-mainnet/lumen_base_abi.json';
// Connect to Base Mainnet
const provider = new ethers.JsonRpcProvider('https://mainnet.base.org');
// Initialize contracts
const kernel = new ethers.Contract(deployments.kernel, abis.Kernel, provider);
const agentVault = new ethers.Contract(deployments.agentVault, abis.AgentVault, provider);
// Query contract state
const vaultBalance = await agentVault.totalAssets();
console.log('Total Vault Assets:', ethers.formatUnits(vaultBalance, 6), 'USDC');
LUMEN World Computer provides a decentralized infrastructure for agent-to-agent (A2A) transactions with:
MIT License - see LICENSE for details.
Contributions are welcome! Please open an issue or submit a pull request.
Built with ❤️ by the LUMEN Protocol Team
FAQs
LUMEN World Computer - Official Base Mainnet deployment addresses and ABIs
We found that lumen-base-mainnet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.