diff --git a/.changeset/famous-spies-grab.md b/.changeset/famous-spies-grab.md new file mode 100644 index 00000000000..e647f578018 --- /dev/null +++ b/.changeset/famous-spies-grab.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +fix missing partner id when creating ecosystem wallet diff --git a/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts b/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts index 836d4eba141..ee7948619e0 100644 --- a/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts +++ b/packages/thirdweb/src/wallets/in-app/native/ecosystem.ts @@ -76,6 +76,7 @@ export function ecosystemWallet( ...createOptions?.auth, options: [], // controlled by ecosystem }, + partnerId: createOptions?.partnerId, }, connectorFactory: async (client: ThirdwebClient) => { const { InAppNativeConnector } = await import("./native-connector.js"); diff --git a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts index 8bbfda79d77..12cb4e7552f 100644 --- a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts +++ b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts @@ -76,6 +76,7 @@ export function ecosystemWallet( ...createOptions?.auth, options: [], // controlled by ecosystem }, + partnerId: ecosystem.partnerId, }, connectorFactory: async (client: ThirdwebClient) => { const { InAppWebConnector } = await import("./lib/web-connector.js");