Skip to content

Development Environment

WorldLand Networks

WorldLand provides two networks for development and production:

NetworkChain IDDescription
Seoul Mainnet103Production network
Gwangju Testnet10359Test and development network

RPC Endpoints

NetworkRPC URL
Seoul Mainnethttps://seoul.worldland.foundation/
Gwangju TestnetContact the team for testnet endpoint

Node Client

Your WorldLand node is needed to connect to the WorldLand network, issue API calls, or send transactions.

  • worldland is the WorldLand node binary
  • It exposes two interfaces: a command-line interface and the JSON-RPC APIs
  • worldland runs on Linux, Mac, and Windows
  • The CLI comes with several utility and node management functions

See the Node Developer section for detailed instructions on installing and running a node.

Smart Contract Development

WorldLand is fully EVM-compatible, meaning you can use the same development tools as Ethereum:

ToolDescription
RemixBrowser-based IDE for Web3 Development
HardhatA development environment for EVM software
FoundryFast, portable toolkit for Ethereum development

Connecting to WorldLand with Hardhat

Add WorldLand networks to your hardhat.config.js:

javascript
module.exports = {
  networks: {
    seoul: {
      url: 'https://seoul.worldland.foundation/',
      chainId: 103,
      accounts: [process.env.PRIVATE_KEY],
    },
    gwangju: {
      url: 'YOUR_GWANGJU_RPC_URL',
      chainId: 10359,
      accounts: [process.env.PRIVATE_KEY],
    },
  },
};

Connecting to WorldLand with Remix

  1. Open Remix IDE
  2. Go to Deploy & Run Transactions
  3. Select Injected Provider (MetaMask)
  4. Ensure MetaMask is connected to the WorldLand network

WorldLand Blockchain Platform

ToolDescription
Block ExplorerBlock and transaction explorer
MetaMask WalletBrowser-based account management tool
WorldLand CloudGPU Cloud Computing Platform

Adding WorldLand to MetaMask

FieldSeoul MainnetGwangju Testnet
Network NameWorldLand SeoulWorldLand Gwangju
RPC URLhttps://seoul.worldland.foundation/(Contact team)
Chain ID10310359
Currency SymbolWLWL
Block Explorerhttps://scan.worldland.foundation/https://scan.worldland.foundation/

Decentralized GPU Infrastructure for the AI Era