Full game theory analysis of a protocol. Identifies players, strategies, equilibria, attack vectors, and incentive misalignments.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"minLength": 2
},
"context": {
"type": "string"
},
"depth": {
"default": "thorough",
"type": "string",
"enum": [
"quick",
"thorough",
"exhaustive"
]
}
},
"required": [
"protocol",
"depth"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://game-theory-agent-production.up.railway.app/entrypoints/analyze/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocol": "string",
"depth": "quick"
}
}
'
Deep tokenomics audit: supply dynamics, distribution fairness, value accrual, death spiral risk, and long-term sustainability.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 1
},
"supply": {
"type": "object",
"properties": {
"total": {
"type": "string"
},
"circulating": {
"type": "string"
},
"maxSupply": {
"type": "string"
}
},
"additionalProperties": false
},
"distribution": {
"type": "object",
"properties": {
"team": {
"type": "string"
},
"investors": {
"type": "string"
},
"community": {
"type": "string"
},
"treasury": {
"type": "string"
}
},
"additionalProperties": false
},
"mechanisms": {
"type": "array",
"items": {
"type": "string"
}
},
"vestingInfo": {
"type": "string"
},
"context": {
"type": "string"
}
},
"required": [
"token"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://game-theory-agent-production.up.railway.app/entrypoints/tokenomics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"token": "string"
}
}
'
Governance attack analysis: plutocratic capture, flash loan attacks, bribing vectors, voter apathy exploitation, and delegation risks.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"minLength": 2
},
"governanceType": {
"type": "string",
"enum": [
"token-voting",
"multisig",
"optimistic",
"conviction",
"quadratic",
"futarchy",
"other"
]
},
"parameters": {
"type": "object",
"properties": {
"quorum": {
"type": "string"
},
"votingPeriod": {
"type": "string"
},
"timelock": {
"type": "string"
},
"proposalThreshold": {
"type": "string"
}
},
"additionalProperties": false
},
"context": {
"type": "string"
}
},
"required": [
"protocol"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://game-theory-agent-production.up.railway.app/entrypoints/governance/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocol": "string"
}
}
'
MEV exposure analysis: frontrunning risk, sandwich attacks, backrunning opportunities, and transaction ordering games.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"target": {
"type": "string"
},
"transactionType": {
"type": "string",
"enum": [
"swap",
"liquidation",
"nft-mint",
"arbitrage",
"governance-vote",
"staking",
"bridge",
"other"
]
},
"contractCode": {
"type": "string"
},
"context": {
"type": "string"
}
},
"required": [
"target"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://game-theory-agent-production.up.railway.app/entrypoints/mev/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"target": "string"
}
}
'
Mechanism design consultation: design incentive-compatible systems with desired equilibria. Includes implementation recommendations.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"objective": {
"type": "string"
},
"constraints": {
"type": "array",
"items": {
"type": "string"
}
},
"players": {
"type": "array",
"items": {
"type": "string"
}
},
"existingDesign": {
"type": "string"
},
"budget": {
"type": "string"
},
"context": {
"type": "string"
}
},
"required": [
"objective"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://game-theory-agent-production.up.railway.app/entrypoints/design/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"objective": "string"
}
}
'