diff --git a/vue-app/src/api/factory.ts b/vue-app/src/api/factory.ts index 933774569..431d7d28f 100644 --- a/vue-app/src/api/factory.ts +++ b/vue-app/src/api/factory.ts @@ -18,6 +18,7 @@ export async function getFactoryInfo() { const nativeTokenDecimals = await nativeToken.decimals() const userRegistryAddress = await factory.userRegistry() + const recipientRegistryAddress = await factory.recipientRegistry() return { fundingRoundAddress: factory.address, @@ -25,5 +26,6 @@ export async function getFactoryInfo() { nativeTokenSymbol, nativeTokenDecimals, userRegistryAddress, + recipientRegistryAddress, } } diff --git a/vue-app/src/views/ProjectList.vue b/vue-app/src/views/ProjectList.vue index 90078e8d8..299b40c80 100644 --- a/vue-app/src/views/ProjectList.vue +++ b/vue-app/src/views/ProjectList.vue @@ -1,5 +1,6 @@