Type
CONTRACT
Validation date
2023-11-28 09:43:56 UTC
Fee
0.51034213 UCO

Code (1.01 KB)

@version 1

condition triggered_by: transaction, on: provision(_evm_contract, _url), 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: provision(evm_contract, url) do
  next_code = """
    @version 1

  # Automate the refunding after the given timestamp
  actions triggered_by: datetime, at: 1701171780 do
    Contract.set_type "transfer"
    # Send back UCO to bridge pool
  Contract.add_uco_transfer to: 0x000018D60115ECE0C7558A46B4693749BF6BEAB524FDDCCF9B10B910619E4EE08801, amount: 49750

    Contract.set_code ""
  end

  condition triggered_by: transaction, on: refund(), as: [
    timestamp: timestamp >= 1701171780
  ]

  actions triggered_by: transaction, on: refund() do
    Contract.set_type "transfer"
    # Send back UCO to bridge pool
  Contract.add_uco_transfer to: 0x000018D60115ECE0C7558A46B4693749BF6BEAB524FDDCCF9B10B910619E4EE08801, amount: 49750

    Contract.set_code ""
  end

  condition triggered_by: transaction, on: reveal_secret(secret), as: [
    content: Crypto.hash(String.to_hex(secret)) == 0x5B54A7E8E8C499B184243780AEF1657F85F06FDB7B412A43069C59F3A9DCEAF6,
    address: (
      valid? = false

      abi_data = Evm.abi_encode("status()")
      tx = [to: "#{evm_contract}", data: "0x\#{abi_data}"]
      request = [jsonrpc: "2.0", id: "1", method: "eth_call", params: [tx, "latest"]]

      headers = ["Content-Type": "application/json"]
      body = Json.to_string(request)

      res = Http.request("#{url}", "POST", headers, body)
      if res.status == 200 && Json.is_valid?(res.body) do
        response = Json.parse(res.body)
        result = Map.get(response, "result")
        
        if result != nil do
          decoded_abi = Evm.abi_decode("(uint)", result)
          # Withdrawn status is 1
          valid? = List.at(decoded_abi, 0) == 1
        end
      end

      valid?
    )
  ]

  actions triggered_by: transaction, on: reveal_secret(secret) do
    Contract.set_type "transfer"
    Contract.add_uco_transfer to: 0x0000E3E9B897C1EE0DC7FE004AD18B4B23361B00861F0C4DC6FC85FEC6A762FF235C, amount: 49600.75
  Contract.add_uco_transfer to: 0x0000749d250560bf06c079832e0e9a24509b1e440a45c33bd9448b41b6a056fc6201, amount: 149.25

    Contract.set_code ""
  end

  """

  Contract.set_code next_code
end

Content (0 B)

State (0 B)

Movements (0)

Ownerships (1)

  • Secret shared with 1 key

    Encoded secret

    9801AB2597293B903D3412A02193118220862F6BDA27BAC433FD864C6B57F1CFD8C9CDB30FFDDF666E9F104E35BBE3C6ADEDFBBDEB811C66C1E69C75

    Authorized keys

    • 00017877BCF4122095926A49489009649603AB129822A19EF9D573B8FD714911ED7F

Contract recipients (1)

Inputs (0)

Contract inputs (0)

Unspent outputs (1)

Proofs and signatures

Previous public key

0001CD55AECF5A6FB9354DD3FD6D3B90C9E17A3E0CC0A887517381C56F1B638ABA33

Previous signature

EC3047F2BAD51A92887A175FCE0D1A6E890ED709F29C32D64C8835962E6B18EB8C7CCAEF1EBB90C823FE8BE23BC987975B2405CF0B447B1453F7641798AE4003

Origin signature

30450221009021F149C628F78A94021EBF181FC7A786AF08EE3B24614508B863C6BFDBADF202200FAA43726CA12EC6348D734E7BE1E80433CBBF25B59D6488094F2B0240A3BD3D

Proof of work

010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6

Proof of integrity

0076B3ED0A627FC48DF3A629EBBA262647F06D85E26144197E08001BF2BDAAB1C1

Coordinator signature

CD0F0456F70AA47F33478644070B18B28C58C30641C1BB8EF1E361C123D548C915444B49051D188EB09B90EBBAD8D4B930938848F786C39C3F53E88D0F70670C

Validator #1 public key

00011B58ED42235461734EAF253BD97A80B92899ABCC3BE680D44B6825DD2A88A947

Validator #1 signature

DECDBC65080DA24E46D08ACCF67A14F65AEB4578C5C503A1C369922EF05D45E9D620CCBEBE9D027AA693CD477996FBAFE0196E8B76051B360F4BDF91646A1F03

Validator #2 public key

0001B0A94804BF8ECC9897075C6207FF63EF4D339F57A0349888E6B77CD47DB53EF3

Validator #2 signature

FAA665A2D751975BD4C997394A5F00F1513031AAE75BB0161B6D5072C482D8D350A8AF79D3E0B1D4A4BF2A04A5B85D0530E777D3EF3634D101310B318F7C0704