aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils/src/abi_encoder/utils/rules.ts
blob: c8d83c3ba876a12ba5244d028dadc3fcb3ccb56a (plain) (blame)
1
2
3
4
5
6
7
8
export interface DecodingRules {
    shouldConvertStructsToObjects: boolean;
}

export interface EncodingRules {
    shouldOptimize?: boolean;
    shouldAnnotate?: boolean;
}