The wallet will return the direct response from the RPC node.
Error Response
Parameter
Description
Example
Request
neoline.getBlock({ blockHeight:2619690, network:'TestNet'}).then(result => {console.log('Block information: '+JSON.stringify(result));}).catch((error) => {const {type,description,data} = error;switch(type) {case'NO_PROVIDER':console.log('No provider available.');break;case'RPC_ERROR':console.log('There was an error when broadcasting this transaction to the network.');break;default:// Not an expected error object. Just write the error to the console.console.error(error);break; }});
The height of the block you would like to get information about
network?: string
Network to submit this request to. If omitted, will default to network the wallet is currently set to. If omitted, will default the network which the wallet is set to