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]
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" } } |
Example whitetlisting the native Ethereum Token
Contract | Action | Description | Sample Transaction |
---|---|---|---|
| transfer | Send ETH | { "from":"$account", "to":"0x....", "value":"0x01" } |
Last modified 11mo ago