Skip to content

Commit

Permalink
fix: Add CFAReclaimerFacet to abi
Browse files Browse the repository at this point in the history
  • Loading branch information
codynhat committed Sep 15, 2022
1 parent 1b31845 commit 35ca6d4
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,5 +442,55 @@
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "price",
"type": "uint256"
}
],
"name": "LicenseReclaimed",
"type": "event"
},
{
"inputs": [
{
"internalType": "int96",
"name": "newContributionRate",
"type": "int96"
},
{
"internalType": "uint256",
"name": "newForSalePrice",
"type": "uint256"
}
],
"name": "reclaim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "reclaimPrice",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = {
},
{
name: "PCOLicenseDiamond",
include: ["CFABasePCOFacet", "CFAPenaltyBidFacet"],
include: ["CFABasePCOFacet", "CFAPenaltyBidFacet", "CFAReclaimerFacet"],
strict: true,
},
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@geo-web/contracts",
"license": "MIT",
"version": "2.3.0",
"version": "2.3.1",
"description": "GeoWeb solidity contracts, artifacts, & types",
"author": "GeoWebCore",
"homepage": "https://www.geoweb.network/",
Expand Down
50 changes: 50 additions & 0 deletions typechain-types/factories/PCOLicenseDiamond__factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,56 @@ const _abi = [
stateMutability: "nonpayable",
type: "function",
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "address",
name: "to",
type: "address",
},
{
indexed: false,
internalType: "uint256",
name: "price",
type: "uint256",
},
],
name: "LicenseReclaimed",
type: "event",
},
{
inputs: [
{
internalType: "int96",
name: "newContributionRate",
type: "int96",
},
{
internalType: "uint256",
name: "newForSalePrice",
type: "uint256",
},
],
name: "reclaim",
outputs: [],
stateMutability: "nonpayable",
type: "function",
},
{
inputs: [],
name: "reclaimPrice",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
];

export class PCOLicenseDiamond__factory {
Expand Down

0 comments on commit 35ca6d4

Please sign in to comment.