Skip to content

Commit

Permalink
updates abis
Browse files Browse the repository at this point in the history
Signed-off-by: stadolf <[email protected]>
  • Loading branch information
elmariachi111 committed Oct 27, 2023
1 parent 81282ce commit 84add23
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 5 deletions.
112 changes: 112 additions & 0 deletions subgraph/abis/CrowdSale.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "AlreadyClaimed",
Expand Down Expand Up @@ -40,6 +45,11 @@
"name": "BidTooLow",
"type": "error"
},
{
"inputs": [],
"name": "FeesTooHigh",
"type": "error"
},
{
"inputs": [],
"name": "SaleAlreadyActive",
Expand Down Expand Up @@ -161,6 +171,38 @@
"name": "Failed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint16",
"name": "feeBp",
"type": "uint16"
}
],
"name": "FeesUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -243,6 +285,12 @@
"internalType": "struct Sale",
"name": "sale",
"type": "tuple"
},
{
"indexed": false,
"internalType": "uint16",
"name": "percentageFee",
"type": "uint16"
}
],
"name": "Started",
Expand Down Expand Up @@ -314,6 +362,19 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "currentFeeBp",
"outputs": [
{
"internalType": "uint16",
"name": "",
"type": "uint16"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -374,6 +435,11 @@
"internalType": "bool",
"name": "claimed",
"type": "bool"
},
{
"internalType": "uint16",
"name": "feeBp",
"type": "uint16"
}
],
"internalType": "struct SaleInfo",
Expand All @@ -384,6 +450,19 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand All @@ -407,6 +486,26 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint16",
"name": "newFeeBp",
"type": "uint16"
}
],
"name": "setCurrentFeesBp",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -475,5 +574,18 @@
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
60 changes: 55 additions & 5 deletions subgraph/abis/StakedLockingCrowdSale.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
[
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "AlreadyClaimed",
Expand Down Expand Up @@ -50,6 +45,11 @@
"name": "BidTooLow",
"type": "error"
},
{
"inputs": [],
"name": "FeesTooHigh",
"type": "error"
},
{
"inputs": [],
"name": "IncompatibleVestingContract",
Expand Down Expand Up @@ -227,6 +227,19 @@
"name": "Failed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint16",
"name": "feeBp",
"type": "uint16"
}
],
"name": "FeesUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
Expand Down Expand Up @@ -555,6 +568,12 @@
"internalType": "struct Sale",
"name": "sale",
"type": "tuple"
},
{
"indexed": false,
"internalType": "uint16",
"name": "percentageFee",
"type": "uint16"
}
],
"name": "Started",
Expand Down Expand Up @@ -664,6 +683,19 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "currentFeeBp",
"outputs": [
{
"internalType": "uint16",
"name": "",
"type": "uint16"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
Expand Down Expand Up @@ -753,6 +785,11 @@
"internalType": "bool",
"name": "claimed",
"type": "bool"
},
{
"internalType": "uint16",
"name": "feeBp",
"type": "uint16"
}
],
"internalType": "struct SaleInfo",
Expand Down Expand Up @@ -873,6 +910,19 @@
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint16",
"name": "newFeeBp",
"type": "uint16"
}
],
"name": "setCurrentFeesBp",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
Expand Down

0 comments on commit 84add23

Please sign in to comment.