@version 1 #################################### # EVM => Archethic : Request funds # #################################### condition triggered_by: transaction, on: request_funds(end_time, amount, user_address, secret_hash), as: [ type: "contract", code: valid_chargeable_code?(end_time, amount, user_address, secret_hash), timestamp: ( # End time cannot be less than now or more than 1 day now = Time.now() end_time > now && end_time <= (now + 86400) ), address: ( # Here ensure Ethereum contract exists and check rules # How to ensure Ethereum contract is a valid one ? # Maybe get the ABI of HTLC on github and compare it to the one on Ethereum # Then control rules true ) ] actions triggered_by: transaction, on: request_funds(_end_time, amount, _user_address, _secret_hash) do args = [ 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4, amount, transaction.address ] token_definition = Contract.call_function(0x0000795bfd6ca2f5ea9f378c20775caf798e9bfbff6aec94bf87ad8d59233b4fa299, "get_token_resupply_definition", args) Contract.set_type "token" Contract.set_content token_definition end ########################################## # Archethic => EVM : Request secret hash # ########################################## condition triggered_by: transaction, on: request_secret_hash(htlc_genesis_address, amount, user_address, chain_id), as: [ type: "transfer", code: valid_signed_code?(htlc_genesis_address, amount, user_address), previous_public_key: ( # Ensure contract has enough fund to withdraw previous_address = Chain.get_previous_address() balance = Chain.get_token_balance(previous_address, 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4) balance >= amount ), content: List.in?([11155111,80001,97], chain_id), token_transfers: ( valid? = false htlc_genesis_address = String.to_hex(htlc_genesis_address) transfers = Map.get(transaction.token_transfers, htlc_genesis_address, []) for transfer in transfers do if transfer.token_address == 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4 && transfer.token_id == 0 && transfer.amount == amount do valid? = true end end valid? ) ] actions triggered_by: transaction, on: request_secret_hash(htlc_genesis_address, _amount, _user_address, chain_id) do # Here delete old secret that hasn't been used before endTime contract_content = Contract.call_function(0x0000e953513a749a64c79571fae6cb243a9ca9aae2c5110da20cf26530c5fed6063c, "get_state", []) for key in Map.keys(contract_content) do htlc_map = Map.get(contract_content, key) if htlc_map.end_time > Time.now() do contract_content = Map.delete(contract_content, key) end end secret = Crypto.hmac(transaction.address) secret_hash = Crypto.hash(secret, "sha256") # Build signature for EVM decryption signature = sign_for_evm(secret_hash, chain_id) # Calculate endtime now + 2 hours now = Time.now() end_time = now - Math.rem(now, 60) + 7200 # Add secret and signature in content htlc_map = [ hmac_address: transaction.address, end_time: end_time, chain_id: chain_id ] htlc_genesis_address = String.to_hex(htlc_genesis_address) contract_content = Map.set(contract_content, htlc_genesis_address, htlc_map) Contract.add_recipient address: 0x0000e953513a749a64c79571fae6cb243a9ca9aae2c5110da20cf26530c5fed6063c, action: "update_state", args: [contract_content] Contract.add_recipient address: htlc_genesis_address, action: "set_secret_hash", args: [secret_hash, signature, end_time] end #################################### # Archethic => EVM : Reveal secret # #################################### condition triggered_by: transaction, on: reveal_secret(htlc_genesis_address), as: [ type: "transfer", content: ( # Ensure htlc_genesis_address exists in pool state # and end_time has not been reached contract_content = Contract.call_function(0x0000e953513a749a64c79571fae6cb243a9ca9aae2c5110da20cf26530c5fed6063c, "get_state", []) valid? = false htlc_genesis_address = String.to_hex(htlc_genesis_address) htlc_map = Map.get(contract_content, htlc_genesis_address) if htlc_map != nil do valid? = htlc_map.end_time > Time.now() end valid? ), address: ( # Here ensure Ethereum contract exists and check rules # How to ensure Ethereum contract is a valid one ? # Maybe get the ABI of HTLC on github and compare it to the one on Ethereum # Then control rules true ) ] actions triggered_by: transaction, on: reveal_secret(htlc_genesis_address) do contract_content = Contract.call_function(0x0000e953513a749a64c79571fae6cb243a9ca9aae2c5110da20cf26530c5fed6063c, "get_state", []) htlc_genesis_address = String.to_hex(htlc_genesis_address) htlc_map = Map.get(contract_content, htlc_genesis_address) contract_content = Map.delete(contract_content, htlc_genesis_address) secret = Crypto.hmac(htlc_map.hmac_address) # Do not use chain ID in signature for the secret reveal signature = sign_for_evm(secret, nil) Contract.add_recipient address: 0x0000e953513a749a64c79571fae6cb243a9ca9aae2c5110da20cf26530c5fed6063c, action: "update_state", args: [contract_content] Contract.add_recipient address: htlc_genesis_address, action: "reveal_secret", args: [secret, signature] end condition triggered_by: transaction, on: update_code(new_code), as: [ previous_public_key: ( # Pool code can only be updated from the master chain if the bridge # 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) == 0x000020a6911478356ca264174e35d26021fb4cbe870703bb7c3859e01cdb34bcd823 ), code: Code.is_valid?(new_code) ] actions triggered_by: transaction, on: update_code(new_code) do Contract.set_type "contract" # Keep contract state Contract.set_content contract.content Contract.set_code new_code end #################### # Public functions # #################### export fun get_token_address() do 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4 end ##################### # Private functions # ##################### fun valid_chargeable_code?(end_time, amount, user_address, secret_hash) do args = [ end_time, user_address, 0x000066706d704329ca8c2a4153991e2ddacc968622ca10217ca14952eb7abb966c30, secret_hash, 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4, amount ] expected_code = Contract.call_function(0x0000795bfd6ca2f5ea9f378c20775caf798e9bfbff6aec94bf87ad8d59233b4fa299, "get_chargeable_htlc", args) Code.is_same?(expected_code, transaction.code) end fun valid_signed_code?(htlc_address, amount, user_address) do valid? = false htlc_address = String.to_hex(htlc_address) last_htlc_transaction = Chain.get_last_transaction(htlc_address) if last_htlc_transaction != nil do args = [ user_address, 0x000066706d704329ca8c2a4153991e2ddacc968622ca10217ca14952eb7abb966c30, 0x00003df600e329199bf3ee8fbe2b8223413d70bcdd97e15089e6a74d94de3f1173b4, amount ] expected_code = Contract.call_function(0x0000795bfd6ca2f5ea9f378c20775caf798e9bfbff6aec94bf87ad8d59233b4fa299, "get_signed_htlc", args) valid? = Code.is_same?(expected_code, last_htlc_transaction.code) end valid? end fun sign_for_evm(data, chain_id) do hash = data if chain_id != nil do # Perform a first hash to combine data and chain_id abi_data = Evm.abi_encode("(bytes32,uint)", [data, chain_id]) hash = Crypto.hash(abi_data, "keccak256") end prefix = String.to_hex("\x19Ethereum Signed Message:\n32") signature_payload = Crypto.hash("#{prefix}#{hash}", "keccak256") sig = Crypto.sign_with_recovery(signature_payload) if sig.v == 0 do sig = Map.set(sig, "v", 27) else sig = Map.set(sig, "v", 28) end sig end
{ "aeip": [ 2, 8, 18, 19 ], "supply": 1, "type": "fungible", "symbol": "aeETH", "name": "aeETH", "allow_mint": true, "properties": {}, "recipients": [ { "to": "00000000000000000000000000000000000000000000000000000000000000000000", "amount": 1 } ] }
State (0 B)
-
Secret shared with 1 key
Encoded secret
2C573AA82CA6B9F66ABA58E0A36608AC522524BF6E3236C4722264F0827C9C0D37D812CFC1089E0C4810072C24D6C417E216C0DB6BC447237FBCE27C
Authorized keys
- 00017877BCF4122095926A49489009649603AB129822A19EF9D573B8FD714911ED7F
Contract recipients (0)
Inputs (0)
Contract inputs (0)
Unspent outputs (1)
-
From 00003DF6...73B4At 2023-10-10 17:11:31 UTCAmount 0.00533864 UCO
Previous public key
000119FEA3551CD26F9457AD553EF9C6297C63D0DD4B2EE5BDC7B7D7AEFC15FF2F06
Previous signature
EE2252C0BCB4A9979504497202A2B16DB0FE823F57019A1EC912D58DA556B446BADA07586FDF52233D86B8CA72AC7260984E46AE8244722D2397DF9A702F9402
Origin signature
304502204C6056618EAE697D62A7C8CB107FC967F97C1F3A5FCCD348B0467BFDDEF1ED28022100D39D069E237C81A90ABED807245CFC56546A7CFA020674BB2139E30B80553E6B
Proof of work
010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6
Proof of integrity
00D0CEDDB361D169CDDD35865E6F95133B4498B9FBAD4FE838C506F5FAAAE9037F
Coordinator signature
F9312E0B2796226DCC3640E26FDA2D985ED67C79B0DF6082250CA829B24AA44B1B932C507BBCA73CDDF977B674BC1998BF66181D9E146BB0DD8377EC8CCA5502
Validator #1 public key
0001500FBE298B79FFBDD5CCA1798F30FD88A53D26EC39DE5DDE1F4137B032A4BC34
Validator #1 signature
7C827D35AD14894C5908F510B0FBBCC63B863827DAB614EBDAFF34CE900C640444BD57A69D140295162DF539B66A7B87220578B688C1D5E68EB38089A30E3E04
Validator #2 public key
00018A312AFA617E98B343D09AD2E73F0AB661DB0A59FB986D5DB8CE7664E14C25FC
Validator #2 signature
3B254FA80719223B4A2351B26E5295726C02C821784339F16B940D3B811788C576F38690E3ED209FC5BD89BD1AD5F4D9D9149C94320B7F02C7A28DBC7C9CCC0C