Developer entry point

Bring familiar EVM tools to Orbyn.

Use the public gateway for signed transactions and read methods. Keep signing in your wallet or local development environment; the network never needs an unlocked account.

Connect from your local stack.

no private keys
Foundry · cast
cast block-number --rpc-url https://rpc.orbynnetwork.org
cast chain-id --rpc-url https://rpc.orbynnetwork.org
cast send <contract> "method()" --rpc-url https://rpc.orbynnetwork.org --private-key $DEPLOYER_KEY
Hardhat · network config
networks: {
  orbyn: {
    url: "https://rpc.orbynnetwork.org",
    chainId: 88990,
  },
}
Next steps

Read the protocol details before shipping.

Each topic is a document, not a marketing claim. Follow the RPC and explorer pages before deploying contracts.