Skip to content

Commit 3f3bc2c

Browse files
authored
feat: expose utilityWalletAddress and refillingWallets in /wallets response (#17)
* feat: expose utilityWalletAddress and refillingWallets in /wallets response The inventory manager already reads these fields to display bundler config in the dashboard. This sends them from the server config. * chore: format --------- Co-authored-by: SahilVasava <24778390+SahilVasava@users.noreply.github.com>
1 parent a526e11 commit 3f3bc2c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/rpc/server.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ export class Server {
186186
)
187187
await reply.status(200).send({
188188
wallets,
189-
chainId: this.config.chainId
189+
chainId: this.config.chainId,
190+
utilityWalletAddress: this.config.utilityWalletAddress,
191+
refillingWallets: this.config.refillingWallets
190192
})
191193
} catch {
192194
await reply

0 commit comments

Comments
 (0)