aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/schemas/token_pairs_request_opts_schema.ts
blob: bf1caa20d86b897cd020af83347401df1a0e0018 (plain) (blame)
1
2
3
4
5
6
7
8
export const AssetPairsRequestOptsSchema = {
    id: '/AssetPairsRequestOpts',
    type: 'object',
    properties: {
        assetDataA: { $ref: '/Address' },
        assetDataB: { $ref: '/Address' },
    },
};