Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.75 KB | None | 0 0
  1. SocketManager: 0xb36eb75da393dbb2d32532aa64991dda1f7e3c08
  2. ABI:
  3. ```
  4. "abi": [
  5.     {
  6.       "constant": true,
  7.       "inputs": [],
  8.       "name": "owner",
  9.       "outputs": [
  10.         {
  11.           "name": "",
  12.           "type": "address"
  13.         }
  14.       ],
  15.       "payable": false,
  16.       "stateMutability": "view",
  17.       "type": "function"
  18.     },
  19.     {
  20.       "constant": false,
  21.       "inputs": [
  22.         {
  23.           "name": "newOwner",
  24.           "type": "address"
  25.         }
  26.       ],
  27.       "name": "transferOwnership",
  28.       "outputs": [],
  29.       "payable": false,
  30.       "stateMutability": "nonpayable",
  31.       "type": "function"
  32.     },
  33.     {
  34.       "inputs": [
  35.         {
  36.           "name": "manager",
  37.           "type": "address"
  38.         },
  39.         {
  40.           "name": "socketName",
  41.           "type": "bytes32"
  42.         },
  43.         {
  44.           "name": "initialCurrency",
  45.           "type": "address"
  46.         },
  47.         {
  48.           "name": "initialPrice",
  49.           "type": "uint256"
  50.         }
  51.       ],
  52.       "payable": false,
  53.       "stateMutability": "nonpayable",
  54.       "type": "constructor"
  55.     },
  56.     {
  57.       "anonymous": false,
  58.       "inputs": [
  59.         {
  60.           "indexed": true,
  61.           "name": "previousOwner",
  62.           "type": "address"
  63.         },
  64.         {
  65.           "indexed": true,
  66.           "name": "newOwner",
  67.           "type": "address"
  68.         }
  69.       ],
  70.       "name": "OwnershipTransferred",
  71.       "type": "event"
  72.     },
  73.     {
  74.       "constant": true,
  75.       "inputs": [
  76.         {
  77.           "name": "currency",
  78.           "type": "address"
  79.         }
  80.       ],
  81.       "name": "getPrice",
  82.       "outputs": [
  83.         {
  84.           "name": "",
  85.           "type": "uint256"
  86.         }
  87.       ],
  88.       "payable": false,
  89.       "stateMutability": "view",
  90.       "type": "function"
  91.     },
  92.     {
  93.       "constant": true,
  94.       "inputs": [],
  95.       "name": "getName",
  96.       "outputs": [
  97.         {
  98.           "name": "",
  99.           "type": "bytes32"
  100.         }
  101.       ],
  102.       "payable": false,
  103.       "stateMutability": "view",
  104.       "type": "function"
  105.     },
  106.     {
  107.       "constant": false,
  108.       "inputs": [
  109.         {
  110.           "name": "newName",
  111.           "type": "bytes32"
  112.         }
  113.       ],
  114.       "name": "changeName",
  115.       "outputs": [],
  116.       "payable": false,
  117.       "stateMutability": "nonpayable",
  118.       "type": "function"
  119.     },
  120.     {
  121.       "constant": false,
  122.       "inputs": [
  123.         {
  124.           "name": "currency",
  125.           "type": "address"
  126.         },
  127.         {
  128.           "name": "price",
  129.           "type": "uint256"
  130.         }
  131.       ],
  132.       "name": "changePrice",
  133.       "outputs": [],
  134.       "payable": false,
  135.       "stateMutability": "nonpayable",
  136.       "type": "function"
  137.     }
  138.   ]
  139. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement