diff --git a/src/methods/registry.ts b/src/methods/registry.ts index a513237..ff8a772 100644 --- a/src/methods/registry.ts +++ b/src/methods/registry.ts @@ -139,5 +139,9 @@ export async function createEntry( revision, }; - return this.publishEntry(signRegistryEntry(entry)); + const signedEntry = signRegistryEntry(entry); + + await this.publishEntry(signedEntry); + + return signedEntry; }