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