12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
export const orderTakerSchema = {
|
|
id: '/OrderTaker',
|
|
properties: {
|
|
address: {type: 'string'},
|
|
token: {$ref: '/Token'},
|
|
amount: {type: 'string'},
|
|
feeAmount: {type: 'string'},
|
|
},
|
|
required: ['address', 'token', 'amount', 'feeAmount'],
|
|
type: 'object',
|
|
};
|