Add GET fee_recipients

This commit is contained in:
fragosti
2018-08-07 17:42:22 -07:00
parent b0a7db81cb
commit 95b656f360
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
export const relayerApiFeeRecipientsResponseSchema = {
id: '/relayerApiFeeRecipientsResponseSchema',
type: 'object',
allOf: [
{ $ref: '/paginatedCollectionSchema' },
{
properties: {
records: { $ref: '/addressSchema' },
},
required: ['records'],
},
],
};