RPC Browser



Arguments

generatetoaddress nblocks "address" ( maxtries "algo" )

Mine blocks immediately to a specified address (before the RPC call returns)

Arguments:
1. nblocks     (numeric, required) How many blocks are generated immediately.
2. address     (string, required) The address to send the newly generated bitcoin to.
3. maxtries    (numeric, optional, default=1000000) How many iterations to try.
4. algo        (string, optional, default="neoscrypt") Which mining algorithm to use.

Result:
[           (json array) hashes of blocks generated
  "hex",    (string) blockhash
  ...
]

Examples:

Generate 11 blocks to myaddress
> spacexpanse-cli generatetoaddress 11 "myaddress"
If you are using the SpaceXpanse wallet, you can get a new address to send the newly generated bitcoin to with:
> spacexpanse-cli getnewaddress 
[
    {
        "name": "nblocks",
        "detailsLines": [],
        "properties": [
            "numeric",
            "required"
        ],
        "description": "How many blocks are generated immediately."
    },
    {
        "name": "address",
        "detailsLines": [],
        "properties": [
            "string",
            "required"
        ],
        "description": "The address to send the newly generated bitcoin to."
    },
    {
        "name": "maxtries",
        "detailsLines": [],
        "properties": [
            "numeric",
            "optional",
            "default=1000000"
        ],
        "description": "How many iterations to try."
    },
    {
        "name": "algo",
        "detailsLines": [],
        "properties": [
            "string",
            "optional",
            "default=\"neoscrypt\""
        ],
        "description": "Which mining algorithm to use."
    }
]