-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
export fuses + export wallet data types
- Loading branch information
Showing
4 changed files
with
59 additions
and
1 deletion.
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 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,85 +1,119 @@ | ||
export { | ||
default as commitName, | ||
type CommitNameDataParameters, | ||
type CommitNameDataReturnType, | ||
type CommitNameParameters, | ||
type CommitNameReturnType, | ||
} from './functions/wallet/commitName.js' | ||
export { | ||
default as createSubname, | ||
type CreateSubnameDataParameters, | ||
type CreateSubnameDataReturnType, | ||
type CreateSubnameParameters, | ||
type CreateSubnameReturnType, | ||
} from './functions/wallet/createSubname.js' | ||
export { | ||
default as deleteSubname, | ||
type DeleteSubnameDataParameters, | ||
type DeleteSubnameDataReturnType, | ||
type DeleteSubnameParameters, | ||
type DeleteSubnameReturnType, | ||
} from './functions/wallet/deleteSubname.js' | ||
export { | ||
default as registerName, | ||
type RegisterNameDataParameters, | ||
type RegisterNameDataReturnType, | ||
type RegisterNameParameters, | ||
type RegisterNameReturnType, | ||
} from './functions/wallet/registerName.js' | ||
export { | ||
default as renewNames, | ||
type RenewNamesDataParameters, | ||
type RenewNamesDataReturnType, | ||
type RenewNamesParameters, | ||
type RenewNamesReturnType, | ||
} from './functions/wallet/renewNames.js' | ||
export { | ||
default as setAbiRecord, | ||
type SetAbiRecordDataParameters, | ||
type SetAbiRecordDataReturnType, | ||
type SetAbiRecordParameters, | ||
type SetAbiRecordReturnType, | ||
} from './functions/wallet/setAbiRecord.js' | ||
export { | ||
default as setAddressRecord, | ||
type SetAddressRecordDataParameters, | ||
type SetAddressRecordDataReturnType, | ||
type SetAddressRecordParameters, | ||
type SetAddressRecordReturnType, | ||
} from './functions/wallet/setAddressRecord.js' | ||
export { | ||
default as setChildFuses, | ||
type SetChildFusesDataParameters, | ||
type SetChildFusesDataReturnType, | ||
type SetChildFusesParameters, | ||
type SetChildFusesReturnType, | ||
} from './functions/wallet/setChildFuses.js' | ||
export { | ||
default as setContentHashRecord, | ||
type SetContentHashRecordDataParameters, | ||
type SetContentHashRecordDataReturnType, | ||
type SetContentHashRecordParameters, | ||
type SetContentHashRecordReturnType, | ||
} from './functions/wallet/setContentHashRecord.js' | ||
export { | ||
default as setFuses, | ||
type SetFusesDataParameters, | ||
type SetFusesDataReturnType, | ||
type SetFusesParameters, | ||
type SetFusesReturnType, | ||
} from './functions/wallet/setFuses.js' | ||
export { | ||
default as setPrimaryName, | ||
type SetPrimaryNameDataParameters, | ||
type SetPrimaryNameDataReturnType, | ||
type SetPrimaryNameParameters, | ||
type SetPrimaryNameReturnType, | ||
} from './functions/wallet/setPrimaryName.js' | ||
export { | ||
default as setRecords, | ||
type SetRecordsDataParameters, | ||
type SetRecordsDataReturnType, | ||
type SetRecordsParameters, | ||
type SetRecordsReturnType, | ||
} from './functions/wallet/setRecords.js' | ||
export { | ||
default as setResolver, | ||
type SetResolverDataParameters, | ||
type SetResolverDataReturnType, | ||
type SetResolverParameters, | ||
type SetResolverReturnType, | ||
} from './functions/wallet/setResolver.js' | ||
export { | ||
default as setTextRecord, | ||
type SetTextRecordDataParameters, | ||
type SetTextRecordDataReturnType, | ||
type SetTextRecordParameters, | ||
type SetTextRecordReturnType, | ||
} from './functions/wallet/setTextRecord.js' | ||
export { | ||
default as transferName, | ||
type TransferNameDataParameters, | ||
type TransferNameDataReturnType, | ||
type TransferNameParameters, | ||
type TransferNameReturnType, | ||
} from './functions/wallet/transferName.js' | ||
export { | ||
default as unwrapName, | ||
type UnwrapNameDataParameters, | ||
type UnwrapNameDataReturnType, | ||
type UnwrapNameParameters, | ||
type UnwrapNameReturnType, | ||
} from './functions/wallet/unwrapName.js' | ||
export { | ||
default as wrapName, | ||
type WrapNameDataParameters, | ||
type WrapNameDataReturnType, | ||
type WrapNameParameters, | ||
type WrapNameReturnType, | ||
} from './functions/wallet/wrapName.js' |