Examples
Tron
This page provides examples of policies governing signing.
Note: see the language section for more details.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
This page provides examples of policies governing signing.
{
"policyName": "Enable Tether TRC-20 transfers on the Nile Testnet for the Tether contract address: 'TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf'",
"effect": "EFFECT_ALLOW",
"condition": "tron.tx.contract[0].contract_address == 'TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf' && tron.tx.contract[0].data[0..8] == 'a9059cbb'"
}
{
"policyName": "Allow TRX transfers under 10 TRX",
"effect": "EFFECT_ALLOW",
"condition": "tron.tx.contract[0].amount < 10000000"
}
{
"policyName": "Allow all TRX transfers",
"effect": "EFFECT_ALLOW",
"condition": "tron.tx.contract[0].type == 'TransferContract'"
}
Was this page helpful?