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

export interface EncodingRules {
    optimize?: boolean;
    annotate?: boolean;
}