File tree Expand file tree Collapse file tree 4 files changed +37
-9
lines changed
Expand file tree Collapse file tree 4 files changed +37
-9
lines changed Original file line number Diff line number Diff line change 226226 "name" : " _spRegistry" ,
227227 "type" : " address" ,
228228 "internalType" : " address"
229- },
230- {
231- "name" : " _clientSmartContract" ,
232- "type" : " address" ,
233- "internalType" : " address"
234229 }
235230 ],
236231 "outputs" : [],
355350 "outputs" : [],
356351 "stateMutability" : " nonpayable"
357352 },
353+ {
354+ "type" : " function" ,
355+ "name" : " setClientSmartContract" ,
356+ "inputs" : [
357+ {
358+ "name" : " _clientSmartContract" ,
359+ "type" : " address" ,
360+ "internalType" : " address"
361+ }
362+ ],
363+ "outputs" : [],
364+ "stateMutability" : " nonpayable"
365+ },
358366 {
359367 "type" : " function" ,
360368 "name" : " supportsInterface" ,
410418 "outputs" : [],
411419 "stateMutability" : " payable"
412420 },
421+ {
422+ "type" : " event" ,
423+ "name" : " ClientSmartContractUpdated" ,
424+ "inputs" : [
425+ {
426+ "name" : " clientSmartContract" ,
427+ "type" : " address" ,
428+ "indexed" : true ,
429+ "internalType" : " address"
430+ }
431+ ],
432+ "anonymous" : false
433+ },
413434 {
414435 "type" : " event" ,
415436 "name" : " DealAccepted" ,
Original file line number Diff line number Diff line change 219219 "name" : " implementation" ,
220220 "type" : " address" ,
221221 "internalType" : " address"
222- },
222+ }
223+ ],
224+ "outputs" : [],
225+ "stateMutability" : " nonpayable"
226+ },
227+ {
228+ "type" : " function" ,
229+ "name" : " initialize2" ,
230+ "inputs" : [
223231 {
224232 "name" : " _poRepMarket" ,
225233 "type" : " address" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -euo pipefail
55rm -rf abis
66mkdir abis
77
8- for i in $( find src -name ' *.sol' ! -path " */interfaces/*" ) ; do
8+ for i in $( find src -name ' *.sol' ! -path " */interfaces/*" ! -path " */types/* " ) ; do
99 echo " Generating ABI file for $i "
1010 i=" $( basename " $i " ) "
1111 name=" ${i% .sol} "
Original file line number Diff line number Diff line change 22// solhint-disable use-natspec
33pragma solidity = 0.8.25 ;
44
5- import {Script, console} from "forge-std/Script.sol " ;
6- import {ERC1967Proxy } from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol " ;
5+ import {Script} from "forge-std/Script.sol " ;
76import {PoRepMarket} from "../src/PoRepMarket.sol " ;
87import {Validator} from "../src/Validator.sol " ;
98import {ValidatorFactory} from "../src/ValidatorFactory.sol " ;
You can’t perform that action at this time.
0 commit comments