Configuration

January 27, 2026 ยท View on GitHub

AntTP can be configured using command-line arguments.

Command-Line Arguments

ArgumentDescriptionDefault Value
-l, --listen-addressHTTP listen address and port.0.0.0.0:18888
--https-listen-addressHTTPS listen address and port.0.0.0.0:18889
--grpc-listen-addressgRPC listen address and port.0.0.0.0:18887
-s, --static-file-directoryLocal directory for hosting static files.(empty)
-w, --wallet-private-keyHex-encoded secret key for network uploads.(empty)
-d, --download-threadsParallel threads for chunk downloads.8
-a, --app-private-keyPersonal/App private key for mutable data.(randomly generated if empty)
-b, --bookmarks-addressXOR address of the bookmarks archive.(predefined address)
-u, --uploads-disabledDisable all upload functionality.false
--mcp-tools-disabledDisable the MCP Tools API.false
--grpc-disabledDisable the gRPC API server.false
-c, --cached-mutable-ttlTTL in seconds for cached mutable data (pointers/registers).5
-p, --peersMultiaddresses for initial network peers (comma-separated).(empty)
-m, --map-cache-directoryDirectory for storing cache files./tmp/anttp/cache/ (or OS temp dir)
-e, --evm-networkEVM network to use (e.g., evm-arbitrum-one).evm-arbitrum-one
--immutable-disk-cache-sizeSize of the immutable disk cache in MB.1024
--immutable-memory-cache-sizeSize of the immutable memory cache in slots.32
-i, --idle-disconnectSeconds of inactivity before disconnecting from Autonomi.30
--command-buffer-sizeSize of the async command buffer in slots.128
--access-list-addressXOR address of the archive containing access_list.json.(empty)

Browser Proxy Configuration

Using AntTP as an HTTP/SOCKS proxy is highly recommended for the best experience.

Firefox

  1. Open Settings > Search for Proxy > Settings....
  2. Select Manual proxy configuration.
  3. Set HTTP Proxy to 127.0.0.1 and Port to 18888.
  4. Check Also use this proxy for HTTPS.
  5. Select SOCKS v5 and check Proxy DNS when using SOCKS v5.
  6. Click OK.

Brave / Chrome

Launch with proxy arguments:

brave --proxy-server="127.0.0.1:18888" http://[XOR_ADDRESS]/

<< Previous | Up | Next >>