Example aopd Mutations

Changing AOPP (Digital Signatures), Visual Proof and Satoshi Test related server state happens under this object type.

registerProof

Proofs obtained via wallets that do not support AOPP can be stored with this query. For example, the end-user has manually submitted the signature for a signing challenge.

Example

mutation {
  aopd {
    registerProof(proof: {
      message: "hello",
      asset: BTC,
      address: "bc1qnshsvhrfl28g03k0vxdez6vua56r0c72xy9e93",
      signature: "H1oYVmDaWxZBPEk2ou4myn1SRC20ycBUPPD5fLS+SmQ1e04Bi1J9mIJ5fNhe3khDhJRUX2fU+VHGKlJdAjYIvBU="
    }) {
      id
    }
  }
}