reactor_config.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "contracts": {
  3. "Standard_Token": {
  4. "address": "0xbc72cf3079e08295364510917f92a10d0d54f9d2",
  5. "path": "contracts/Standard_Token.sol",
  6. "template_overlay": false,
  7. "deploy_overlay": false,
  8. "template": {
  9. "coinBalanceOf": {
  10. "button": "Check Balance",
  11. "inputs": {
  12. "_addr": {
  13. "label": "Address",
  14. "default_value": "eg 0xbc72cf3079e08295364510917f92a10d0d54f9d2"
  15. }
  16. }
  17. },
  18. "sendCoin": {
  19. "button": "Send Token",
  20. "inputs": {
  21. "_to": {
  22. "label": "Insert Address",
  23. "default_value": "eg 0xbc72cf3079e08295364510917f92a10d0d54f9d2"
  24. },
  25. "_value": {
  26. "label": "Amount to send",
  27. "default_value": "eg 12"
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }
  34. }