Meowcoin API Documentation
A list of API documentation for Meowcoin
Each MeowCoin node provides an API interface for obtaining blockchain data from it, making it easy to develop blockchain applications. The interface is provided via JSON-RPC, and the underlying protocol uses HTTP/HTTPS for communication.
Listening ports
After the JSON-RPC server is started, it will listen to the TCP port. By default it is the port 9766 of the local address (127.0.0.1), which is
http://127.0.0.1:9766/ You can modify the port in meowcoin.conf in the wallet folder.
Command Lists
Blockchain
getblockcount
Returns the number of blocks in the longest blockchain. getrawtransaction
"txid" [verbose=1] Returns the transaction information with the specified hash value.Utility
validateaddress "address"
Returns information about the given MeowCoin addressWallet
getbalance "address" min_conf
If account is not specified, returns the server's total available balance. sendtoaddress "address" amount ( "comment" "comment_to" subtractfeefromamount replaceable conf_target "estimate_mode")
Send an amount to a given address.
Last modified 1mo ago