Transaction Details

Hash 00002DEEC53C1C59259FA756A26118B3042D105853C7EA8E0897E2EBA9817E10445C Success
Type
CONTRACT
Timestamp
Apr 17, 2026 15:27:37 (7 days ago)
Transaction Fee
1 NUG
Movements
0
Content
0 B
Inputs
0
Previous Key: 0001EC75B657F7BFE1BCC2F9D4F7EB0189BCDC8AE6610EF3106C02BDED1A006FE439
Proof of Work: 010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6
Proof of Integrity: 00FF2211B503423FA1BD08538126ADDB4BCB3D7D9DDBE2E083344B958DDCC9DFF0
Coordinator Sig: 5C199BE2095E5A608D3A8F7C17B8604A20CE7B0D3235569311E2BAD6F4AF4D812722F3799478F257CEB9CDFC3FE59053CF1B2ED8078D5272F43D94202D44AD07
Validator #1: 0001CDA69818FED44F7FE98386E43C3991BE756A64835C3CBCAD0B58CE21F625F6D3
Origin Signature: 304502204E2E5F73F19BB833747665BA802F0D65665444C1C89494C787881950FDBC4920022100F3DC17B6B4649A6B1EC75DE2F17F558A38A22FB1516F387133470C76793F3014
Previous Signature: 43D71F116C6D696373FADD7A9DA02F12167E7649A182BB33EE60473814A1647695E41976E7D7966151E35D0B05B7CA2E1C9DDEA06652CC7CCD08FF368D472F05
No transfers
No inputs
From Type Amount Timestamp
00002DEE...445C ATSHI 49,999 NUG Apr 17, 2026 15:27
WASM 33.37 KB Immutable

Functions

Name Type Input Output
add_supported_chain action chainId: u64 evmPool: string -
claim_lock action evmChainId: u64 lockIndex: u64 sig: string -
debug_worker_hash publicFunction workerGenesis: string {"baked":"string","bytecodeLen":"u32","computed":"string","error":"string","match":"bool"}
get_evm_signer_address publicFunction - string
get_pending_evm_txs publicFunction - string
get_signed_lock publicFunction evmChainId: u64 lockIndex: u64 {"amount":"u64","evmSender":"string","found":"bool","reason":"string","recipient":"string","sig":"string","swapId":"string"}
get_state publicFunction - {"htlcTemplateAddress":"string","supportedChains":[{"chainId":"u64","evmPool":"string","lastCheckedIndex":"u64"}]}
lock_for_bridge action chainId: u64 evmRecipient: string token: string -
mark_outbox_completed action evmTxHash: string outboxId: string -
mark_outbox_submitted action evmTxHash: string outboxId: string -
scan_evm_locks action - -
set_htlc_template action htlcTemplateAddress: string -
Raw manifest
{
  "abi": {
    "anstore": {
      "afterData": [],
      "databases": [
        {
          "description": "ATSHI Bridge Pool data",
          "maxTables": 3,
          "name": "bridge_pool"
        }
      ],
      "onData": [],
      "roles": [],
      "tables": [
        {
          "access": {
            "delete": {
              "mode": "none"
            },
            "insert": {
              "mode": "owner_only"
            },
            "read": {
              "mode": "public"
            },
            "update": {
              "mode": "owner_only"
            }
          },
          "database": "bridge_pool",
          "indexes": [
            "status",
            "chainId"
          ],
          "mode": "CHAIN",
          "name": "evm_outbox",
          "schema": {
            "amount": {
              "required": true,
              "type": "INTEGER"
            },
            "atshiHTLCAddress": {
              "type": "STRING"
            },
            "chainId": {
              "required": true,
              "type": "INTEGER"
            },
            "createdAt": {
              "required": true,
              "type": "TIMESTAMP"
            },
            "evmPool": {
              "required": true,
              "type": "STRING"
            },
            "evmRecipient": {
              "required": true,
              "type": "STRING"
            },
            "id": {
              "required": true,
              "type": "STRING",
              "unique": true
            },
            "lockTime": {
              "required": true,
              "type": "INTEGER"
            },
            "secretHash": {
              "required": true,
              "type": "STRING"
            },
            "signatureR": {
              "required": true,
              "type": "STRING"
            },
            "signatureS": {
              "required": true,
              "type": "STRING"
            },
            "signatureV": {
              "required": true,
              "type": "INTEGER"
            },
            "status": {
              "type": "ENUM",
              "values": [
                "ready",
                "submitted",
                "completed",
                "expired"
              ]
            }
          }
        },
        {
          "access": {
            "delete": {
              "mode": "none"
            },
            "insert": {
              "mode": "owner_only"
            },
            "read": {
              "mode": "public"
            },
            "update": {
              "mode": "owner_only"
            }
          },
          "database": "bridge_pool",
          "indexes": [
            "hash"
          ],
          "mode": "CHAIN",
          "name": "processed_locks",
          "schema": {
            "direction": {
              "required": true,
              "type": "STRING"
            },
            "hash": {
              "required": true,
              "type": "STRING",
              "unique": true
            },
            "status": {
              "required": true,
              "type": "STRING"
            },
            "timestamp": {
              "required": true,
              "type": "TIMESTAMP"
            }
          }
        }
      ]
    },
    "functions": {
      "add_supported_chain": {
        "input": {
          "chainId": "u64",
          "evmPool": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      },
      "claim_lock": {
        "input": {
          "evmChainId": "u64",
          "lockIndex": "u64",
          "sig": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      },
      "debug_worker_hash": {
        "input": {
          "workerGenesis": "string"
        },
        "output": {
          "baked": "string",
          "bytecodeLen": "u32",
          "computed": "string",
          "error": "string",
          "match": "bool"
        },
        "type": "publicFunction"
      },
      "get_evm_signer_address": {
        "input": "null",
        "output": "string",
        "type": "publicFunction"
      },
      "get_pending_evm_txs": {
        "input": "null",
        "output": "string",
        "type": "publicFunction"
      },
      "get_signed_lock": {
        "input": {
          "evmChainId": "u64",
          "lockIndex": "u64"
        },
        "output": {
          "amount": "u64",
          "evmSender": "string",
          "found": "bool",
          "reason": "string",
          "recipient": "string",
          "sig": "string",
          "swapId": "string"
        },
        "type": "publicFunction"
      },
      "get_state": {
        "input": "null",
        "output": {
          "htlcTemplateAddress": "string",
          "supportedChains": [
            {
              "chainId": "u64",
              "evmPool": "string",
              "lastCheckedIndex": "u64"
            }
          ]
        },
        "type": "publicFunction"
      },
      "lock_for_bridge": {
        "input": {
          "chainId": "u64",
          "evmRecipient": "string",
          "token": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      },
      "mark_outbox_completed": {
        "input": {
          "evmTxHash": "string",
          "outboxId": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      },
      "mark_outbox_submitted": {
        "input": {
          "evmTxHash": "string",
          "outboxId": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      },
      "scan_evm_locks": {
        "input": "null",
        "triggerArgument": "*/2 * * * *",
        "triggerType": "interval",
        "type": "action"
      },
      "set_htlc_template": {
        "input": {
          "htlcTemplateAddress": "string"
        },
        "triggerType": "transaction",
        "type": "action"
      }
    },
    "state": {
      "htlcTemplateAddress": "string",
      "supportedChains": [
        {
          "chainId": "u64",
          "evmPool": "string",
          "lastCheckedIndex": "u64"
        }
      ]
    }
  }
}

Contract State

{
  "htlcTemplateAddress": "",
  "supportedChains": []
}
Empty