Applies caller-supplied rename and numeric scale/offset rules to scalar attribut
Applies caller-supplied rename and numeric scale/offset rules to scalar attributes, optionally retaining unmapped fields, then hashes the canonical mapped payload. It does not transfer ownership, call a chain, validate either game, preserve semantics, or authorize asset use.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.004listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://gaming.halowerk.com/v1/cross-game-bridge
| Category | Everything else |
|---|---|
| Provider host | gaming.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"asset_id": "blade-42",
"attributes": [
{
"key": "damage",
"value": 80
},
{
"key": "element",
"value": "water"
},
{
"key": "rarity",
"value": "rare"
}
],
"mappings": [
{
"numeric_offset": 5,
"numeric_scale": 0.5,
"source_key": "damage",
"target_key": "power"
},
{
"source_key": "element",
"target_key": "affinity"
}
],
"retain_unmapped": false,
"source_game": "HarborQuest",
"target_game": "SkyFrontier"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"asset_id": {
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"attributes": {
"items": {
"additionalProperties": false,
"properties": {
"key": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"value": {
"type": [
"string",
"number",
"boolean",
"null"
]
}
},
"required": [
"key",
"value"
],
"type": "object"
},
"maxItems": 1000,
"type": "array"
},
"mappings": {
"items": {
"additionalProperties": false,
"properties": {
"numeric_offset": {
"maximum": 1000000000000,
"minimum": -1000000000000,
"type": "number"
},
"numeric_scale": {
"maximum": 1000000000,
"minimum": -1000000000,
"type": "number"
},
"source_key": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"target_key": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"source_key",
"target_key"
],
"type": "object"
},
"maxItems": 1000,
"type": "array"
},
"retain_unmapped": {
"type": "boolean"
},
"source_game": {
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"target_game": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"source_game",
"target_game",
"asset_id",
"attributes",
"mappings",
"retain_unmapped"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}