Transaction Details

Hash 000048E29B850254AECEB6832F1DE424C03F62C93BE3EF5782DA9F24C7289543B422 Success
Type
CONTRACT
Timestamp
Apr 17, 2026 14:42:11 (15 days ago)
Transaction Fee
1 NUG
Movements
0
Content
0 B
Inputs
0
Previous Key: 0001598D5664ADC398B1A2B800F756B08A8AEF9F4893C6E23B57B101144BCF797A1D
Proof of Work: 010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6
Proof of Integrity: 003D51291671CBBAD70516902E8A669110D715F60E88C634F71FB18CE489AC6A30
Coordinator Sig: BD704A8B6705C28ACA56FA3ACDDE71F665E9CF65ADE3ADAAACB732182A65A12B998386A2819F12CF66061C0FA339AABAF35D55344BCBD4AB508F353FA2C0690A
Validator #1: 0001CDA69818FED44F7FE98386E43C3991BE756A64835C3CBCAD0B58CE21F625F6D3
Origin Signature: 3044022050F46576BB0F1E2222A1F572D098A45A224848BF19FC1804313A6543F5D83269022059A1E829035B74F0220ECE0FE18C80480260F8BEF0437806601F5B688A1CC2CA
Previous Signature: B76DC78047E4B7A78A1B7D897E9C7AFAADD0762628B23FB091ECE7632D15272955672ACF8F1750096B1C2A36FC4E525B232A38DFC69AAB6A33BAC035BA077607
No transfers
No inputs
From Type Amount Timestamp
000048E2...B422 ATSHI 49,999 NUG Apr 17, 2026 14:42
WASM 33.35 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