# Utility
The following RPC calls interact with the Tokel blockchain daemon, and are made available through the tokel-cli software.
The Tokel blockchain inherits all Komodo smartchain RPC's, but not all RPC's are enabled. For simplicity, our documentation only shows those commands that are enabled and available for use.
# createmultisig
createmultisig nrequired [ "key", ... ]
The createmultisig method creates a multi-signature address with n signature(s) of m key(s) required. The method returns a json object with the address and redeemScript.
# Arguments
| Name | Type | Description |
|---|---|---|
| number_required | (numeric, required) | the number of required signatures out of the n key(s) or address(es) |
| "keys" | (string, required) | a json array of keys which are addresses or hex-encoded public keys |
| "key" | (string) | an address or hex-encoded public key |
# Response
| Name | Type | Description |
|---|---|---|
| "address" | (string) | the value of the new multisig address |
| "redeemScript" | (string) | the string value of the hex-encoded redemption script |
# 📌 Examples
Command:
./tokel-cli createmultisig 2 "[\"RJnVEQgucK1iwiRjfTZmreXkF49KgTErDn\",\"RCVyjn9MQ8Tw6YRJnDcsx67kfsmfUgLdfw\"]"
You can find the rpcuser, rpcpassword, and rpcport in the coin's .conf file.
Command:
curl --user $rpcuser:$rpcpassword --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "createmultisig", "params": [2, ["RJnVEQgucK1iwiRjfTZmreXkF49KgTErDn","RCVyjn9MQ8Tw6YRJnDcsx67kfsmfUgLdfw"]] }' -H 'content-type: text/plain;' http://127.0.0.1:$rpcport/
# decodeccopret
decodeccopret scriptPubKey
The decodeccopret method decodes the OP RETURN data from a CC transaction to output the EVALCODE and function id of the method that produced the transaction.
# Finding the OP RETURN Data From a CC Transaction
The OP RETURN data from a CC transaction can be found by following these steps:
- Decode a transaction produced by a CC module using the method getrawtransaction's verbose option.
- Look for the
voutkey; it is an array of jsons - Find the json that contains the
scriptPubkey, and which has thetype:nulldatakey pair - Copy the
hexvalue from thatscriptPubkeyjson - This is the hex-string that is expected as the argument for the above method.
- You can verify that the transaction was produced by a CC module by checking if one of the
voutjson'sscriptPubkeyjson has thetype:cryptoconditionkey pair
# Arguments
| Name | Type | Description |
|---|---|---|
| scriptPubKey | (string) | the hex-string format scriptPubKey of the type : nulldata in the vout of a transaction produced by a CC module |
# Response
| Name | Type | Description |
|---|---|---|
| result | (string) | whether the call succeeded |
| OpRets | (json) | a json containing the keys EVALCODE and function id |
| eval_code | (hexadecimal number) | the EVALCODE of the method that produced the transaction |
| function | (string) | the function id of the method that produced the transaction |
# 📌 Examples
Command:
./tokel-cli decodeccopret 6a2412782103d31479e789014a96ba6dd60d50210045aa8292fe693f293d44615929f04cf57a
You can find the rpcuser, rpcpassword, and rpcport in the coin's .conf file.
Command:
curl --user $rpcuser:$rpcpassword --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "decodeccopret", "params": ["6a2412782103d31479e789014a96ba6dd60d50210045aa8292fe693f293d44615929f04cf57a"] }' -H 'content-type: text/plain;' http://127.0.0.1:$rpcport/
# estimatefee
estimatefee nblocks
The estimatefee method estimates the approximate fee per kilobyte. The method is needed for a transaction to begin confirmation within nblocks blocks.
The value -1.0 is returned if not enough transactions and blocks have been observed to make an estimate.
# Arguments
| Name | Type | Description |
|---|---|---|
| nblocks | (numeric) | the number of blocks within which the fee should be tested |
# Response
| Name | Type | Description |
|---|---|---|
| n | (numeric) | the estimated fee |
# 📌 Examples
Command:
./tokel-cli estimatefee 6
# estimatepriority
estimatepriority nblocks
The estimatepriority method estimates the approximate priority of a zero-fee transaction, when it needs to begin confirmation within nblocks blocks.
The value -1.0 is returned if not enough transactions and blocks have been observed to make an estimate.
# Arguments
| Name | Type | Description |
|---|---|---|
| nblocks | (numeric) | a statement indicating within how many blocks the transaction should be confirmed |
# Response
| Name | Type | Description |
|---|---|---|
| n | (numeric) | the estimated priority |
# 📌 Examples
Command:
./tokel-cli estimatepriority 6
# invalidateblock
invalidateblock "hash"
The invalidateblock method permanently marks a block as invalid, as if it violated a consensus rule.
# Arguments
| Name | Type | Description |
|---|---|---|
| hash | (string, required) | the hash of the block to mark as invalid |
# Response
| Name | Type | Description |
|---|---|---|
| (none) |
# 📌 Examples
Command:
./tokel-cli invalidateblock "02f51fb2793b0728050c5e983ffed669594e0a2dda01dcb7a68d129fd87436e0"
You can find the rpcuser, rpcpassword, and rpcport in the coin's .conf file.
Command:
curl --user $rpcuser:$rpcpassword --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "invalidateblock", "params": ["02f51fb2793b0728050c5e983ffed669594e0a2dda01dcb7a68d129fd87436e0"] }' -H 'content-type: text/plain;' http://127.0.0.1:$rpcport/
# reconsiderblock
reconsiderblock "hash"
The reconsiderblock method removes invalidity status of a block and its descendants, reconsidering them for activation. This can be used to undo the effects of the invalidateblock method.
# Arguments
| Name | Type | Description |
|---|---|---|
| hash | (string, required) | the hash of the block to reconsider |
# Response
| Name | Type | Description |
|---|---|---|
| (none) |
# 📌 Examples
Command:
./tokel-cli reconsiderblock "02f51fb2793b0728050c5e983ffed669594e0a2dda01dcb7a68d129fd87436e0"
# txnotarizedconfirmed
txnotarizedconfirmed txid
The txnotarizedconfirmed method returns information about a transaction's state of confirmation.
If the transaction is on a chain that has Komodo's dPoW security service, the method returns true if the transaction is notarized.
Tokel is protected by Komodo's dPoW security service.
# Arguments
| Name | Type | Description |
|---|---|---|
| "txid" | (string, required) | the transaction id |
# Response
| Name | Type | Description |
|---|---|---|
| "result" | (boolean) | whether the transaction is confirmed, for dPoW-based chains; for non-dPoW chains, the value indicates whether the transaction has 60 or more confirmations |
# 📌 Examples
Command:
./tokel-cli txnotarizedconfirmed ce1e3df1fb24ab3301b4032c3a0af466ca03b9365f8c649511bdd72f5519fecb
# validateaddress
validateaddress "tokeladdress"
The validateaddress method returns information about the given address.
# Arguments
| Name | Type | Description |
|---|---|---|
| "address" | (string, required) | the address to validate |
# Response
| Name | Type | Description |
|---|---|---|
| "isvalid" | (boolean) | indicates whether the address is valid. If it is not, this is the only property returned. |
| "address" | (string) | the address validated |
| "scriptPubKey" | (string) | the hex encoded scriptPubKey generated by the address |
| "ismine" | (boolean) | indicates whether the address is yours |
| "isscript" | (boolean) | whether the key is a script |
| "pubkey" | (string) | the hex value of the raw public key |
| "iscompressed" | (boolean) | whether the address is compressed |
| "account" | (string) | DEPRECATED the account associated with the address; "" is the default account |
# 📌 Examples
Command:
./tokel-cli validateaddress "RDNC9mLrN48pVGDQ5jSoPb2nRsUPJ5t2R7"
# verifymessage
verifymessage "address" "signature" "message"
The verifymessage method verifies a signed message.
TIP
See also signmessage.
# Arguments
| Name | Type | Description |
|---|---|---|
| "address" | (string, required) | the address to use for the signature |
| "signature" | (string, required) | the signature provided by the signer in base 64 encoding |
| "message" | (string, required) | the message that was signed |
# Response
| Name | Type | Description |
|---|---|---|
| true/false | (boolean) | indicates whether the signature is verified |
# 📌 Examples
Create the signature:
Command:
./tokel-cli signmessage "RBtNBJjWKVKPFG4To5Yce9TWWmc2AenzfZ" "my message"
Verify the signature:
Command:
./tokel-cli verifymessage "RBtNBJjWKVKPFG4To5Yce9TWWmc2AenzfZ" "H1y0mn/wRv56r1bcfkbQtzjG6XeWSelAsyayBuCwEL9XGXs7ieU55dryt/cFWM9gnRFI7gS01AByuSqRs+o/AZs=" "my message"