diff --git a/utils/src/gmxUtils.ts b/utils/src/gmxUtils.ts index cdea513..de48880 100644 --- a/utils/src/gmxUtils.ts +++ b/utils/src/gmxUtils.ts @@ -230,7 +230,7 @@ export const abiParamParseMap = { 'int': BigInt, 'int[]': (x: string[]) => x.map(BigInt), address: viem.getAddress, - 'address[]': (arrx: string[]) => arrx.map(viem.getAddress), + 'address[]': (arrx: string[]) => arrx.map(x => viem.getAddress(x)), bool: Boolean, 'bool[]': (x: boolean[]) => x.map(Boolean), int256: BigInt,