File tree Expand file tree Collapse file tree 16 files changed +21
-21
lines changed
examples/developer-hub-solidity Expand file tree Collapse file tree 16 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ contract AddressValidity {
722722 function isAddressValidityProofValid(
723723 IAddressValidity.Proof calldata transaction
724724 ) public view returns (bool) {
725- // Use the library to get the verifier contract and verify that this transaction was proved by the state connector
725+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
726726 IFdcVerification fdc = ContractRegistry.getFdcVerification();
727727 console.log("transaction: %s\n", FdcStrings.toJsonString(transaction));
728728 // return true;
Original file line number Diff line number Diff line change @@ -904,7 +904,7 @@ contract TransferEventListener is ITransferEventListener {
904904 function isEVMTransactionProofValid(
905905 IEVMTransaction.Proof calldata transaction
906906 ) public view returns (bool) {
907- // Use the library to get the verifier contract and verify that this transaction was proved by state connector
907+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
908908 IFdcVerification fdc = ContractRegistry.getFdcVerification();
909909 console.log("transaction: %s\n", FdcStrings.toJsonString(transaction));
910910 return true;
Original file line number Diff line number Diff line change @@ -765,7 +765,7 @@ contract PaymentRegistry is IPaymentRegistry {
765765 function isPaymentProofValid(
766766 IPayment.Proof calldata transaction
767767 ) public view returns (bool) {
768- // Use the library to get the verifier contract and verify that this transaction was proved by state connector
768+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
769769 IFdcVerification fdc = ContractRegistry.getFdcVerification();
770770 console.log("transaction: %s\n", FdcStrings.toJsonString(transaction));
771771 // return true;
Original file line number Diff line number Diff line change @@ -598,7 +598,7 @@ contract AddressRegistry is IAddressRegistry {
598598 string[] public verifiedAddresses;
599599
600600 function isAddressValidityProofValid(IAddressValidity.Proof memory transaction) public view returns (bool) {
601- // Use the library to get the verifier contract and verify that this transaction was proved by state connector
601+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
602602 IFdcVerification fdc = ContractRegistry.getFdcVerification();
603603 return fdc.verifyAddressValidity(transaction);
604604 }
Original file line number Diff line number Diff line change @@ -742,7 +742,7 @@ contract TransferEventListener is ITransferEventListener {
742742 function isEVMTransactionProofValid(
743743 IEVMTransaction.Proof calldata transaction
744744 ) public view returns (bool) {
745- // Use the library to get the verifier contract and verify that this transaction was proved by state connector
745+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
746746 IFdcVerification fdc = ContractRegistry.getFdcVerification();
747747 console.log("transaction: %s\n", FdcStrings.toJsonString(transaction));
748748 return true;
Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ contract PaymentRegistry is IPaymentRegistry {
633633 function isPaymentProofValid(
634634 IPayment.Proof calldata transaction
635635 ) public view returns (bool) {
636- // Use the library to get the verifier contract and verify that this transaction was proved by state connector
636+ // Use the library to get the verifier contract and verify that this transaction was proved by the FDC
637637 IFdcVerification fdc = ContractRegistry.getFdcVerification();
638638 console.log("transaction: %s\n", FdcStrings.toJsonString(transaction));
639639 // return true;
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ struct Response {
6464
6565- ` attestationType ` : Extracted from the request
6666- ` sourceId ` : Extracted from the request
67- - ` votingRound ` : The ID of the State Connector round in which the request was considered
67+ - ` votingRound ` : The ID of the FDC round in which the request was considered
6868- ` lowestUsedTimestamp ` : The lowest timestamp used to generate the response
6969- ` requestBody ` : Extracted from the request
7070- ` responseBody ` : Data defining the response
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ interface IBalanceDecreasingTransaction {
116116 * @notice Toplevel response
117117 * @param attestationType Extracted from the request.
118118 * @param sourceId Extracted from the request.
119- * @param votingRound The ID of the State Connector round in which the request was considered.
119+ * @param votingRound The ID of the FDC round in which the request was considered.
120120 * This is a security measure to prevent a collision of attestation hashes.
121121 * @param lowestUsedTimestamp The lowest timestamp used to generate the response.
122122 * @param requestBody Extracted from the request.
@@ -191,7 +191,7 @@ Toplevel response structure.
191191
192192- ` attestationType ` : Extracted from the request
193193- ` sourceId ` : Extracted from the request
194- - ` votingRound ` : The ID of the State Connector round in which the request was considered
194+ - ` votingRound ` : The ID of the FDC round in which the request was considered
195195- ` lowestUsedTimestamp ` : The lowest timestamp used to generate the response
196196- ` requestBody ` : Extracted from the request
197197- ` responseBody ` : Data defining the response
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ interface IConfirmedBlockHeightExists {
8282 * @notice Toplevel response
8383 * @param attestationType Extracted from the request.
8484 * @param sourceId Extracted from the request.
85- * @param votingRound The ID of the State Connector round in which the request was considered.
85+ * @param votingRound The ID of the FDC round in which the request was considered.
8686 * @param lowestUsedTimestamp The lowest timestamp used to generate the response.
8787 * @param requestBody Extracted from the request.
8888 * @param responseBody Data defining the response. The verification rules for the construction of the
@@ -158,7 +158,7 @@ Toplevel response structure.
158158
159159- ` attestationType ` : Extracted from the request
160160- ` sourceId ` : Extracted from the request
161- - ` votingRound ` : The ID of the State Connector round in which the request was considered
161+ - ` votingRound ` : The ID of the FDC round in which the request was considered
162162- ` lowestUsedTimestamp ` : The lowest timestamp used to generate the response
163163- ` requestBody ` : Extracted from the request
164164- ` responseBody ` : Data defining the response
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ interface IEVMTransaction {
6262 * @notice Toplevel response
6363 * @param attestationType Extracted from the request.
6464 * @param sourceId Extracted from the request.
65- * @param votingRound The ID of the State Connector round in which the request was considered.
65+ * @param votingRound The ID of the FDC round in which the request was considered.
6666 * @param lowestUsedTimestamp The lowest timestamp used to generate the response.
6767 * @param requestBody Extracted from the request.
6868 * @param responseBody Data defining the response. The verification rules for the construction
@@ -181,7 +181,7 @@ Toplevel response structure.
181181
182182- ` attestationType ` : Extracted from the request
183183- ` sourceId ` : Extracted from the request
184- - ` votingRound ` : The ID of the State Connector round in which the request was considered
184+ - ` votingRound ` : The ID of the FDC round in which the request was considered
185185- ` lowestUsedTimestamp ` : The lowest timestamp used to generate the response
186186- ` requestBody ` : Extracted from the request
187187- ` responseBody ` : Data defining the response
You can’t perform that action at this time.
0 commit comments