-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Validate RPC inputs reloaded (#9878)
Second attempt at #9672 after it broke some e2e tests on master.
- Loading branch information
1 parent
80f9cc4
commit 70ab7c4
Showing
271 changed files
with
6,030 additions
and
3,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
export * from './archiver_client.js'; | ||
export * from './archiver_server.js'; | ||
import { type ArchiverApi, ArchiverApiSchema } from '@aztec/circuit-types'; | ||
import { createSafeJsonRpcClient, makeFetch } from '@aztec/foundation/json-rpc/client'; | ||
import { createSafeJsonRpcServer } from '@aztec/foundation/json-rpc/server'; | ||
|
||
export function createArchiverClient(url: string, fetch = makeFetch([1, 2, 3], true)): ArchiverApi { | ||
return createSafeJsonRpcClient<ArchiverApi>(url, ArchiverApiSchema, false, 'archiver', fetch); | ||
} | ||
|
||
export function createArchiverRpcServer(handler: ArchiverApi) { | ||
return createSafeJsonRpcServer(handler, ArchiverApiSchema); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,11 @@ | ||
import { | ||
type AztecNode, | ||
EncryptedL2NoteLog, | ||
EncryptedNoteL2BlockL2Logs, | ||
EpochProofQuote, | ||
ExtendedUnencryptedL2Log, | ||
L2Block, | ||
LogId, | ||
NullifierMembershipWitness, | ||
PublicDataWitness, | ||
PublicSimulationOutput, | ||
SiblingPath, | ||
Tx, | ||
TxEffect, | ||
TxHash, | ||
TxReceipt, | ||
UnencryptedL2BlockL2Logs, | ||
} from '@aztec/circuit-types'; | ||
import { FunctionSelector, Header, PublicKeys } from '@aztec/circuits.js'; | ||
import { NoteSelector } from '@aztec/foundation/abi'; | ||
import { AztecAddress } from '@aztec/foundation/aztec-address'; | ||
import { Buffer32 } from '@aztec/foundation/buffer'; | ||
import { EthAddress } from '@aztec/foundation/eth-address'; | ||
import { Fr } from '@aztec/foundation/fields'; | ||
import { JsonRpcServer } from '@aztec/foundation/json-rpc/server'; | ||
import { type AztecNode, AztecNodeApiSchema } from '@aztec/circuit-types'; | ||
import { createSafeJsonRpcServer } from '@aztec/foundation/json-rpc/server'; | ||
|
||
/** | ||
* Wrap an AztecNode instance with a JSON RPC HTTP server. | ||
* @param node - The AztecNode | ||
* @returns An JSON-RPC HTTP server | ||
*/ | ||
export function createAztecNodeRpcServer(node: AztecNode) { | ||
const rpc = new JsonRpcServer( | ||
node, | ||
{ | ||
AztecAddress, | ||
EthAddress, | ||
ExtendedUnencryptedL2Log, | ||
Fr, | ||
FunctionSelector, | ||
Header, | ||
L2Block, | ||
TxEffect, | ||
LogId, | ||
TxHash, | ||
Buffer32, | ||
PublicDataWitness, | ||
PublicKeys, | ||
SiblingPath, | ||
}, | ||
{ | ||
EncryptedNoteL2BlockL2Logs, | ||
EncryptedL2NoteLog, | ||
NoteSelector, | ||
NullifierMembershipWitness, | ||
PublicSimulationOutput, | ||
Tx, | ||
TxReceipt, | ||
UnencryptedL2BlockL2Logs, | ||
EpochProofQuote, | ||
}, | ||
// disable methods not part of the AztecNode interface | ||
['start', 'stop'], | ||
); | ||
return rpc; | ||
return createSafeJsonRpcServer(node, AztecNodeApiSchema); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,12 @@ | ||
import { | ||
AuthWitness, | ||
CountedNoteLog, | ||
CountedPublicExecutionRequest, | ||
EncryptedL2Log, | ||
EncryptedL2NoteLog, | ||
EncryptedNoteL2BlockL2Logs, | ||
EventMetadata, | ||
ExtendedNote, | ||
ExtendedUnencryptedL2Log, | ||
L2Block, | ||
LogId, | ||
Note, | ||
NullifierMembershipWitness, | ||
type PXE, | ||
PrivateExecutionResult, | ||
SiblingPath, | ||
Tx, | ||
TxEffect, | ||
TxExecutionRequest, | ||
TxHash, | ||
TxProvingResult, | ||
TxReceipt, | ||
TxSimulationResult, | ||
UnencryptedL2BlockL2Logs, | ||
UnencryptedL2Log, | ||
UniqueNote, | ||
} from '@aztec/circuit-types'; | ||
import { | ||
AztecAddress, | ||
CompleteAddress, | ||
EthAddress, | ||
Fr, | ||
FunctionSelector, | ||
GrumpkinScalar, | ||
Point, | ||
PrivateCircuitPublicInputs, | ||
PublicKeys, | ||
} from '@aztec/circuits.js'; | ||
import { EventSelector, NoteSelector } from '@aztec/foundation/abi'; | ||
import { Buffer32 } from '@aztec/foundation/buffer'; | ||
import { createJsonRpcClient, makeFetch } from '@aztec/foundation/json-rpc/client'; | ||
import { type PXE, PXESchema } from '@aztec/circuit-types'; | ||
import { createSafeJsonRpcClient, makeFetch } from '@aztec/foundation/json-rpc/client'; | ||
|
||
/** | ||
* Creates a JSON-RPC client to remotely talk to PXE. | ||
* @param url - The URL of the PXE. | ||
* @param fetch - The fetch implementation to use. | ||
* @returns A JSON-RPC client of PXE. | ||
*/ | ||
export const createPXEClient = (url: string, fetch = makeFetch([1, 2, 3], false)): PXE => | ||
createJsonRpcClient<PXE>( | ||
url, | ||
{ | ||
AuthWitness, | ||
AztecAddress, | ||
CompleteAddress, | ||
FunctionSelector, | ||
EthAddress, | ||
EventSelector, | ||
ExtendedNote, | ||
UniqueNote, | ||
ExtendedUnencryptedL2Log, | ||
Fr, | ||
GrumpkinScalar, | ||
L2Block, | ||
TxEffect, | ||
LogId, | ||
Note, | ||
Point, | ||
PublicKeys, | ||
TxExecutionRequest, | ||
TxHash, | ||
Buffer32, | ||
SiblingPath, | ||
}, | ||
{ | ||
EncryptedNoteL2BlockL2Logs, | ||
EncryptedL2NoteLog, | ||
EncryptedL2Log, | ||
EventMetadata, | ||
UnencryptedL2Log, | ||
NoteSelector, | ||
NullifierMembershipWitness, | ||
TxSimulationResult, | ||
TxProvingResult, | ||
PrivateCircuitPublicInputs, | ||
PrivateExecutionResult, | ||
CountedPublicExecutionRequest, | ||
CountedNoteLog, | ||
Tx, | ||
TxReceipt, | ||
UnencryptedL2BlockL2Logs, | ||
}, | ||
false, | ||
'pxe', | ||
fetch, | ||
) as PXE; | ||
export function createPXEClient(url: string, fetch = makeFetch([1, 2, 3], false)): PXE { | ||
return createSafeJsonRpcClient<PXE>(url, PXESchema, false, 'pxe', fetch); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.