chaingraph icon indicating copy to clipboard operation
chaingraph copied to clipboard

Add 'unlocking_bytecode_hex' and 'locking_bytecode_hex' computed fields

Open mainnet-pat opened this issue 1 year ago • 0 comments

With these computed fields we now can flexibly lookup/constrain various unlocking and locking bytecodes with custom matches.

Available at https://chaingraph.pat.mn

Most basic usage:

...
where: {
  inputs: {
     unlocking_bytecode_hex: {_like: "41%9c"}
  }
  outputs: {
    locking_bytecode_hex: {_like: "6a%"}
  }
}
...

mainnet-pat avatar Dec 17 '24 20:12 mainnet-pat