-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: representing TxHash
as Fr
#10954
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
"auditability", | ||
"authwit", | ||
"authwits", | ||
"authwitness", | ||
"Automine", | ||
"autonat", | ||
"autorun", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
"build": "yarn clean && tsc -b", | ||
"start": "node --no-warnings ./dest/bin", | ||
"start:debug": "node --inspect=0.0.0.0:9221 --no-warnings ./dest/bin", | ||
"start:sandbox": "ETHEREUM_HOST=http://0.0.0.0:8545/ && yarn start start --sandbox", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sneaked this in because of this discussion on slack. |
||
"clean": "rm -rf ./dest .tsbuildinfo", | ||
"formatting": "run -T prettier --check ./src && run -T eslint ./src", | ||
"formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { AztecAddress, Fr } from '@aztec/circuits.js'; | ||
import { NoteSelector } from '@aztec/foundation/abi'; | ||
import { schemas } from '@aztec/foundation/schemas'; | ||
import { BufferReader } from '@aztec/foundation/serialize'; | ||
import { BufferReader, serializeToBuffer } from '@aztec/foundation/serialize'; | ||
import { bufferToHex, hexToBuffer } from '@aztec/foundation/string'; | ||
|
||
import { z } from 'zod'; | ||
|
@@ -29,25 +29,25 @@ export class ExtendedNote { | |
) {} | ||
|
||
toBuffer(): Buffer { | ||
return Buffer.concat([ | ||
this.note.toBuffer(), | ||
this.owner.toBuffer(), | ||
this.contractAddress.toBuffer(), | ||
this.storageSlot.toBuffer(), | ||
this.noteTypeId.toBuffer(), | ||
this.txHash.buffer, | ||
return serializeToBuffer([ | ||
this.note, | ||
this.owner, | ||
this.contractAddress, | ||
this.storageSlot, | ||
this.noteTypeId, | ||
this.txHash, | ||
]); | ||
} | ||
|
||
static fromBuffer(buffer: Buffer | BufferReader) { | ||
const reader = BufferReader.asReader(buffer); | ||
|
||
const note = Note.fromBuffer(reader); | ||
const owner = AztecAddress.fromBuffer(reader); | ||
const contractAddress = AztecAddress.fromBuffer(reader); | ||
const storageSlot = Fr.fromBuffer(reader); | ||
const note = reader.readObject(Note); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unnecessary change but I thought it will make it cuter |
||
const owner = reader.readObject(AztecAddress); | ||
const contractAddress = reader.readObject(AztecAddress); | ||
const storageSlot = reader.readObject(Fr); | ||
const noteTypeId = reader.readObject(NoteSelector); | ||
const txHash = new TxHash(reader.readBytes(TxHash.SIZE)); | ||
const txHash = reader.readObject(TxHash); | ||
|
||
return new this(note, owner, contractAddress, storageSlot, noteTypeId, txHash); | ||
} | ||
|
@@ -124,14 +124,14 @@ export class UniqueNote extends ExtendedNote { | |
} | ||
|
||
override toBuffer(): Buffer { | ||
return Buffer.concat([ | ||
this.note.toBuffer(), | ||
this.owner.toBuffer(), | ||
this.contractAddress.toBuffer(), | ||
this.storageSlot.toBuffer(), | ||
this.noteTypeId.toBuffer(), | ||
this.txHash.buffer, | ||
this.nonce.toBuffer(), | ||
return serializeToBuffer([ | ||
this.note, | ||
this.owner, | ||
this.contractAddress, | ||
this.storageSlot, | ||
this.noteTypeId, | ||
this.txHash, | ||
this.nonce, | ||
]); | ||
} | ||
|
||
|
@@ -150,13 +150,13 @@ export class UniqueNote extends ExtendedNote { | |
static override fromBuffer(buffer: Buffer | BufferReader) { | ||
const reader = BufferReader.asReader(buffer); | ||
|
||
const note = Note.fromBuffer(reader); | ||
const owner = AztecAddress.fromBuffer(reader); | ||
const contractAddress = AztecAddress.fromBuffer(reader); | ||
const storageSlot = Fr.fromBuffer(reader); | ||
const note = reader.readObject(Note); | ||
const owner = reader.readObject(AztecAddress); | ||
const contractAddress = reader.readObject(AztecAddress); | ||
const storageSlot = reader.readObject(Fr); | ||
const noteTypeId = reader.readObject(NoteSelector); | ||
const txHash = new TxHash(reader.readBytes(TxHash.SIZE)); | ||
const nonce = Fr.fromBuffer(reader); | ||
const txHash = reader.readObject(TxHash); | ||
const nonce = reader.readObject(Fr); | ||
|
||
return new this(note, owner, contractAddress, storageSlot, noteTypeId, txHash, nonce); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This typo was in a lot of places and it bothered me. Sorry for the messy diff