set_requires_notarization

set_requires_notarization coin requires_notarization

The set_requires_notarization method indicates whether Komodo DeFi Framework API must wait for a dPoW notarization of the given atomic swap transactions.

Arguments

StructureTypeDescription
coinstringthe ticker of the selected coin
requires_notarizationboolwhether the node should wait for dPoW notarization of atomic swap transactions

Response

StructureTypeDescription
coinstringthe coin selected in the request
requires_notarizationboolwhether the node must wait for a dPoW notarization of the atomic swap transactions

📌 Examples

Command

POST set_requires_notarization
{
  "userpass": "RPC_UserP@SSW0RD",
  "method": "set_requires_notarization",
  "coin": "DOC",
  "requires_notarization": true
}
Show Response

Response (success)

{
  "result": {
    "coin": "ETOMIC",
    "requires_notarization": true
  }
}