Sample Entries

Action Whitelist Examples

Whitelisting a blockchain action requires a few pieces of information:

  1. Nickname -> Short name to call this action

  2. Contract -> The smart contract of the action

  3. Action -> The chain action to be performed

  4. Chain -> Drop down selection

  5. Description For User -> Statement of the actions functionality

  6. Transaction Rules [Optional]

  7. Sample Transaction [JSON object] -> Used for testing purposes

  8. Permission Name -> default is "active"

  9. Parent Contract [Optional]

  10. Parent Action [Optional]

Algorand

EOS/TELOS/WAX/UX

Example whitelisting the native WAX token

ContractActionDescriptionSample Transaction

eosio.token

transfer

Transfer native Currencies

{ "account":"eosio.token",

"name":"transfer",

"authorization": [{

"actor": "$account",

"permission": "$permissions"

}],

"data":{

"from":"$account",

"to": "oreidfunding",

"quantity": "0.00000001 WAX",

"memo":"none"

}

}

Ethereum/Polygon/EVMs

Example whitetlisting the native Ethereum Token

ContractActionDescriptionSample Transaction

transfer

Send ETH

{

"from":"$account",

"to":"0x....",

"value":"0x01"

}

Last updated