-
Notifications
You must be signed in to change notification settings - Fork 75
Open
Description
it checks for UNSET [i.e. NOT 'burnt'] fuse. remember that in the context of the NameWrapper, a SET fuse is a BURNT fuse.
https://github.com/ensdomains/ensjs/blob/main/packages/ensjs/src/utils/fuses.ts#L384-L385
export const checkPccBurned = (fuses: bigint) =>
(fuses & ParentFuses.PARENT_CANNOT_CONTROL) === 0nthis should instead be
export const checkPccBurned = (fuses: bigint) =>
(fuses & ParentFuses.PARENT_CANNOT_CONTROL) === ParentFuses.PARENT_CANNOT_CONTROLReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels