Skip to content

Commit

Permalink
fix: update abi (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
nachomazzara authored Oct 25, 2019
1 parent 097776c commit 8207f61
Showing 1 changed file with 105 additions and 33 deletions.
138 changes: 105 additions & 33 deletions src/contracts/artifacts/ERC721Collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,29 +104,34 @@
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
"constant": false,
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
"internalType": "address[]",
"name": "_beneficiaries",
"type": "address[]"
},
{
"internalType": "bytes32[]",
"name": "_wearableIds",
"type": "bytes32[]"
}
],
"name": "issueTokens",
"outputs": [],
"payable": false,
"stateMutability": "view",
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "allowed",
"name": "totalSupply",
"outputs": [
{
"internalType": "address",
"internalType": "uint256",
"name": "",
"type": "address"
"type": "uint256"
}
],
"payable": false,
Expand Down Expand Up @@ -214,6 +219,26 @@
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"internalType": "string",
"name": "_wearableId",
"type": "string"
},
{
"internalType": "uint256",
"name": "_maxIssuance",
"type": "uint256"
}
],
"name": "addWearable",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
Expand Down Expand Up @@ -259,6 +284,26 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"internalType": "address",
"name": "_operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_allowed",
"type": "bool"
}
],
"name": "setAllowed",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
Expand Down Expand Up @@ -381,6 +426,27 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"internalType": "string",
"name": "_wearableId",
"type": "string"
}
],
"name": "getWearableKey",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"payable": false,
"stateMutability": "pure",
"type": "function"
},
{
"constant": true,
"inputs": [],
Expand Down Expand Up @@ -497,21 +563,6 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"internalType": "address",
"name": "_allowed",
"type": "address"
}
],
"name": "setAllowed",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
Expand Down Expand Up @@ -554,6 +605,27 @@
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowed",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
Expand Down Expand Up @@ -670,7 +742,7 @@
},
{
"internalType": "address",
"name": "_allowed",
"name": "_operator",
"type": "address"
},
{
Expand Down Expand Up @@ -708,14 +780,14 @@
{
"indexed": true,
"internalType": "address",
"name": "_oldAllowed",
"name": "_operator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "_newAllowed",
"type": "address"
"indexed": false,
"internalType": "bool",
"name": "_allowed",
"type": "bool"
}
],
"name": "Allowed",
Expand Down Expand Up @@ -878,4 +950,4 @@
"type": "event"
}
]
}
}

0 comments on commit 8207f61

Please sign in to comment.