Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Feb 22, 2023
1 parent c6d5fed commit 1464d3f
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions src/utils/abi/decodeAbiParameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,7 @@ import {
import { Hex } from '../../types'
import { checksumAddress } from '../address'
import { size, slice, trim } from '../data'
import {
hexToBigInt,
hexToBool,
hexToBytes,
hexToNumber,
hexToString,
} from '../encoding'
import { hexToBigInt, hexToBool, hexToNumber, hexToString } from '../encoding'
import { getArrayComponents } from './encodeAbiParameters'

export type DecodeAbiParametersResponse<
Expand Down Expand Up @@ -49,10 +43,7 @@ type TupleAbiParameter = AbiParameter & { components: readonly AbiParameter[] }
function decodeParams<TParams extends readonly AbiParameter[]>({
data,
params,
}: {
data: Hex
params: TParams
}) {
}: { data: Hex; params: TParams }) {
let decodedValues: unknown[] = []
let position = 0

Expand Down

0 comments on commit 1464d3f

Please sign in to comment.