diff --git a/examples/nextjs/src/components/query/index.tsx b/examples/nextjs/src/components/query/index.tsx index 45a8b3c1..4e63b53d 100644 --- a/examples/nextjs/src/components/query/index.tsx +++ b/examples/nextjs/src/components/query/index.tsx @@ -122,6 +122,25 @@ export const QueryComponent = () => { const { paymentAccounts } = await client.payment.getPaymentAccountsByOwner({ owner: address, }); + console.log('paymentAccounts', paymentAccounts); + const res = await client.payment.paymentAccount({ + addr: paymentAccounts[0], + }); + console.log('res', res); + }} + > + get paymentAccount + + +
  • +