diff --git a/packages/blockchain-link/src/workers/blockfrost/index.ts b/packages/blockchain-link/src/workers/blockfrost/index.ts index b240f472249..b6ca8ce2b58 100644 --- a/packages/blockchain-link/src/workers/blockfrost/index.ts +++ b/packages/blockchain-link/src/workers/blockfrost/index.ts @@ -91,7 +91,8 @@ const pushTransaction = async (request: Request) = const getAccountInfo = async (request: Request) => { const api = await request.connect(); - const info = await api.getAccountInfo(request.payload); + const { details = 'basic', ...rest } = request.payload; + const info = await api.getAccountInfo({ details, ...rest }); return { type: RESPONSES.GET_ACCOUNT_INFO,