aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/schemas/relayer_token_pairs_request_schema.ts
blob: 8013e1454f3894277a8afa4b0370815d0837b445 (plain) (blame)
1
2
3
4
5
6
7
8
export const relayerTokenPairsRequestSchema = {
    id: '/RelayerTokenPairsRequest',
    type: 'object',
    properties: {
        tokenA: {$ref: '/Address'},
        tokenB: {$ref: '/Address'},
    },
};