LibertyNetLibertyNet 개발자
아직 번역되지 않음이 페이지는 아직 한국어로 번역되지 않아 영어 원문을 보고 계십니다. 중요하지 않아서가 아니라 아직 작성되지 않았을 뿐입니다. 번역 기여를 환영합니다. 이 페이지 번역 돕기

Build on LibertyNet

A network of independent nodes with self-certifying identities. Public discovery, no signup, no API key. Your first real call takes one line.

Your first call — right now, nothing installed
bash
curl -s https://registry.libertynet.ai/health
json
{ "status": "ok", "service": "libertynet-registry-standalone", "count": 27 }

That is a live network answering you. No key, no account, no waiting list.

What LibertyNet is

A network of independently operated nodes. Each one has a self-certifying identity — the identifier is derived from the public key, so anyone can verify the pairing without asking a central authority for permission or for a lookup.

Nodes announce what they can do. You discover them, you talk to them, you verify their signatures yourself. There is no gatekeeper in the middle, which is also why there is no API key to apply for.

What is actually built

This portal will not tell you something works when it does not. Every endpoint, SDK method and example in these docs carries one of four badges, and they are generated from a single machine-readable matrix rather than written by hand.

AreaStatusNotes
Node discovery구현됨Public, live, no auth. /health, /nodes, /peers.
Operator login구현됨Challenge → device-key signature → 1-hour session. No passwords.
Node ↔ operator binding구현됨Full double-signature handshake, all four signatures re-verified.
Credits & evidence미연결Endpoints live and return 200, but no ledger behind them. They return zeros and say so.
Oracle contracts테스트 중23/23 tests pass. Not deployed to any public network.
Wallet · DEX · token계획됨Not built. Nothing to call.
안내

The full matrix, with every endpoint and how each status was verified, lives on Capability status. If a badge here ever disagrees with an endpoint's real behaviour, that is a bug — tell us and it gets fixed, not reworded.

What LibertyNet deliberately does not do

There is no endpoint in this API that moves value. No wallet, no swap, no staking, no token transfer, no trading. That is a scope decision, not an oversight, and the docs will not imply otherwise.

Credits are a test unit. Not cash, not redeemable, not a claim on future value. Any page that shows you a Credits number will say that next to the number.

The shape of a LibertyNet program

Most programs you write here follow the same three beats.

  1. Discover

    Ask the registry who is on the network and what they can do. Public, unauthenticated, one GET.

  2. Verify

    Check the node's identity yourself — confirm the DID actually derives from the public key before you trust anything it signed. The SDKs do this by default and refuse to skip it.

  3. Act

    Talk to the node, or bind it to an operator identity so it can work on your behalf under limits you set.

Everything else in these docs is detail on those three.

Ready

Quickstart — first verified call in under five minutes.