aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts
blob: 9eead52396450c9483f20a5539f99e13d5bb5603 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export const relayerApiAssetDataPairsResponse = {
    total: 43,
    page: 1,
    perPage: 100,
    records: [
        {
            assetDataA: {
                minAmount: '0',
                maxAmount: '10000000000000000000',
                precision: 5,
                assetData: '0xf47261b04c32345ced77393b3530b1eed0f346429d',
            },
            assetDataB: {
                minAmount: '0',
                maxAmount: '50000000000000000000',
                precision: 5,
                assetData: '0x0257179264389b814a946f3e92105513705ca6b990',
            },
        },
    ],
};