Type
CONTRACT
Validation date
2023-12-07 01:41:56 UTC
Fee
0.2050657 UCO

Code (819 B)

@version 1

condition triggered_by: transaction, on: set_secret_hash(_secret_hash, _secret_hash_signature, _end_time), as: [
  previous_public_key: (
  # Transaction is not yet validated so we need to use previous address
  # to get the genesis address
  previous_address = Chain.get_previous_address()
	Chain.get_genesis_address(previous_address) == 0x000018D60115ECE0C7558A46B4693749BF6BEAB524FDDCCF9B10B910619E4EE08801
)
]

actions triggered_by: transaction, on: set_secret_hash(secret_hash, secret_hash_signature, end_time) do
  next_code = """
  @version 1
  # Automate the refunding after the given timestamp
  actions triggered_by: datetime, at: #{end_time} do
    Contract.set_type "transfer"
  # Send back the token to the user address
  Contract.add_uco_transfer to: 0x000095FFC09F7D5FE59BE1153D66FC51233FA9C1ECE801EA0D262A5F4C94B2031DE9, amount: 5
  Contract.set_code ""

  end

  condition triggered_by: transaction, on: refund(), as: [
    timestamp: timestamp >= #{end_time}
  ]

  actions triggered_by: transaction, on: refund() do
    Contract.set_type "transfer"
  # Send back the token to the user address
  Contract.add_uco_transfer to: 0x000095FFC09F7D5FE59BE1153D66FC51233FA9C1ECE801EA0D262A5F4C94B2031DE9, amount: 5
  Contract.set_code ""

  end

  condition triggered_by: transaction, on: reveal_secret(secret, secret_signature), as: [
    previous_public_key: (
    # Transaction is not yet validated so we need to use previous address
    # to get the genesis address
    previous_address = Chain.get_previous_address()
	  Chain.get_genesis_address(previous_address) == 0x000018D60115ECE0C7558A46B4693749BF6BEAB524FDDCCF9B10B910619E4EE08801
  ),
    timestamp: transaction.timestamp < #{end_time},
    content: Crypto.hash(String.to_hex(secret)) == 0x#{secret_hash}
  ]

  actions triggered_by: transaction, on: reveal_secret(secret, secret_signature) do
    next_code = """
    @version 1

    export fun get_secret() do
      [
        secret: 0x\#{secret},
        secret_signature: [
          r: 0x\#{secret_signature.r},
          s: 0x\#{secret_signature.s},
          v: \#{secret_signature.v}
        ]
      ]
    end

    \"""

    Contract.set_type "transfer"
    Contract.add_uco_transfer to: 0x000018D60115ECE0C7558A46B4693749BF6BEAB524FDDCCF9B10B910619E4EE08801, amount: 4.985
    Contract.add_uco_transfer to: 0x0000749d250560bf06c079832e0e9a24509b1e440a45c33bd9448b41b6a056fc6201, amount: 0.015

    Contract.set_code next_code
  end

  export fun get_htlc_data() do
    [
      amount: 4.985,
      end_time: #{end_time},
      secret_hash: 0x#{secret_hash},
      secret_hash_signature: [
        r: 0x#{secret_hash_signature.r},
        s: 0x#{secret_hash_signature.s},
        v: #{secret_hash_signature.v}
      ]
    ]
  end

  """

  Contract.set_code next_code
end

Content (0 B)

State (0 B)

Movements (0)

Ownerships (1)

  • Secret shared with 1 key

    Encoded secret

    219F020AF27975883C3E587DBCF2E95B3BC11EB8376687C33F69F54AD477421EDC4B600051CA8672DD25BA44F1BB774BBCF080241DE5BE9D60F022EF

    Authorized keys

    • 00017877BCF4122095926A49489009649603AB129822A19EF9D573B8FD714911ED7F

Contract recipients (0)

Inputs (0)

Contract inputs (0)

Unspent outputs (1)

Proofs and signatures

Previous public key

00014056B9C8E4DCE46E65DDED2FFD4F7412100FF64616BB93CF27BBA403A29D6F5F

Previous signature

07590BFBE10CA219D2407C0CD01203A7C062EBBC35BC85DA4E4DB992FCBE8463CEF0EC95465E81F2F54764151ECF0D10A7DB35C5F65C21D3198B8D2C2BC86507

Origin signature

3045022100EE496C32C8B4AEC8EB36EE60C57D8FDD6CAEF53B0DC78289C7A1E16222ACFF3202204386821948E0AF8F0453E698DA375ADC9F580123BDAB9A2E8C881EE14365A2AC

Proof of work

010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6

Proof of integrity

00CCC434E7EA73B1A69C689E8928AFCD0B996D572C7699BDD41F6A35F61E518B71

Coordinator signature

B5985237BDE593B072B4D02F4BD35451E40E47ED39F31C900AF8E2D41749CB7282C8337EE39F0482D271890B6C93D2530D002CEC741F7B573B2FAA85C1A56804

Validator #1 public key

000151C124A6211CD402FD1CFE560C5DB51ED0CBEF44B09B21A41206028E7E5942BF

Validator #1 signature

EF8A9E16F533C7AF9FC7E69C0F6112FADE53661C9569BB4256B70E640CCAAA5459E97A167C16D790194C8DCDDE1E27CF5DDAD0CB12171B4640F2947690A60A08

Validator #2 public key

0001B0A94804BF8ECC9897075C6207FF63EF4D339F57A0349888E6B77CD47DB53EF3

Validator #2 signature

C8830DE31FFAA1BE76B6A770BA6AAD7370D4395EF3FBF5F04A063D0FF298B3ED2B6B5A61347DE78C717220A5F27F1E0E8CD8F15B7FA5B43223C3A26432D3830D