ORE ID
Search
K

Sample Entries

Action Whitelist Examples
Whitelisting a blockchain action requires a few pieces of information:
  1. 1.
    Nickname -> Short name to call this action
  2. 2.
    Contract -> The smart contract of the action
  3. 3.
    Action -> The chain action to be performed
  4. 4.
    Chain -> Drop down selection
  5. 5.
    Description For User -> Statement of the actions functionality
  6. 6.
    Transaction Rules [Optional]
  7. 7.
    Sample Transaction [JSON object] -> Used for testing purposes
  8. 8.
    Permission Name -> default is "active"
  9. 9.
    Parent Contract [Optional]
  10. 10.
    Parent Action [Optional]

Algorand

EOS/TELOS/WAX/UX

Example whitelisting the native WAX token
Contract
Action
Description
Sample 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
Contract
Action
Description
Sample Transaction
transfer
Send ETH
{
"from":"$account",
"to":"0x....",
"value":"0x01"
}