Info

info.isBootstrapped

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.isBootstrapped",
    "params": {
        "chain": "X"
    }
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "isBootstrapped": true
    },
    "id": 1
}

info.getBlockchainID

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.getBlockchainID",
    "params": {
        "alias": "X"
    }
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "blockchainID": "fK5e6T3EniMqagBkxXjAug9EbhFDZbEzPPr4f22uwMoP5i2cJ"
    },
    "id": 1
}

info.getNetworkID

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.getNetworkID"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "networkID": "14"
    },
    "id": 1
}

info.getNetworkName

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.getNetworkName"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "networkName": "flare"
    },
    "id": 1
}

info.getNodeVersion

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.getNodeVersion"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "version": "avalanche/1.7.1807",
        "databaseVersion": "v1.4.5",
        "gitCommit": "93fd844b1e85366ee9c1c4a3fb9e9399220534cc",
        "vmVersions": {
            "avm": "v1.7.1807",
            "evm": "v0.8.15",
            "platform": "v1.7.1807"
        }
    },
    "id": 1
}

info.getTxFee

Method: POST

https://flr.nownodes.io/ext/info

Example body (raw)

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "info.getTxFee"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "result": {
        "txFee": "1000000",
        "creationTxFee": "1000000",
        "createAssetTxFee": "1000000",
        "createSubnetTxFee": "100000000",
        "createBlockchainTxFee": "100000000"
    },
    "id": 1
}

Last updated