getNetwork
General info about the currently configured network.
Parameters
- None
Returns
<object>
friendbotUrl
:<string>
(optional) - The URL of this network's "friendbot" faucetpassphrase
:<string>
- Network passphrase configuredprotocolVersion
:<string>
- Protocol version of the latest ledger
Examples
Request
- Curl
- JavaScript
- Python
- JSON
curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 8675309,
"method": "getNetwork"
}' \
https://soroban-testnet.stellar.org | jq
let requestObject = {
"jsonrpc": "2.0",
"id": 8675309,
"method": "getNetwork"
}
let res = await fetch('https://soroban-testnet.stellar.org', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(requestObject),
)
let json = await res.json()
console.log(json)
import json, requests
res = requests.post('https://soroban-testnet.stellar.org', json={
"jsonrpc": "2.0",
"id": 8675309,
"method": "getNetwork"
})
print(json.dumps(res.json(), indent=2))
{
"jsonrpc": "2.0",
"id": 8675309,
"method": "getNetwork"
}
Response
{
"jsonrpc": "2.0",
"id": 8675309,
"result": {
"friendbotUrl": "https://friendbot.stellar.org/",
"passphrase": "Test SDF Network ; September 2015",
"protocolVersion": "20"
}
}