13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import { FeeRecipientsResponse } from '@0x/types';
|
|
|
|
export const feeRecipientsResponse: FeeRecipientsResponse = {
|
|
total: 3,
|
|
page: 1,
|
|
perPage: 10,
|
|
records: [
|
|
'0x6ec92694ea172ebc430c30fa31de87620967a082',
|
|
'0x9e56625509c2f60af937f23b7b532600390e8c8b',
|
|
'0xa2b31dacf30a9c50ca473337c01d8a201ae33e32',
|
|
],
|
|
};
|