diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-24 02:56:08 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-24 08:30:20 +0800 |
commit | d603d8da4786e34d4d63ef4283d4ba8d841d3f39 (patch) | |
tree | 599696a0d52af011873b685ed967753c996b8a44 /packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts | |
parent | 2c660e62d34bc59957c04a52fb43975470f009e7 (diff) | |
download | dexon-0x-contracts-d603d8da4786e34d4d63ef4283d4ba8d841d3f39.tar.gz dexon-0x-contracts-d603d8da4786e34d4d63ef4283d4ba8d841d3f39.tar.zst dexon-0x-contracts-d603d8da4786e34d4d63ef4283d4ba8d841d3f39.zip |
Rename sra-api to sra-spec
Diffstat (limited to 'packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts')
-rw-r--r-- | packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts b/packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts new file mode 100644 index 000000000..9eead5239 --- /dev/null +++ b/packages/sra-spec/src/examples/relayerApiAssetDataPairsResponse.ts @@ -0,0 +1,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', + }, + }, + ], +}; |