Files
explorer-api/api/schemas/get_deltas.js
T
Igor Lins e Silva 11c2aab693 get_deltas wip
2019-03-11 14:20:51 -03:00

27 lines
649 B
JavaScript

exports.GET = {
description: 'get state deltas',
summary: 'get state deltas',
tags: ['history'],
querystring: {
type: 'object',
properties: {
"code": {
description: 'contract account',
type: 'string'
},
"scope": {
description: 'table scope',
type: 'string'
},
"table": {
description: 'table name',
type: 'string'
},
"payer": {
description: 'payer account',
type: 'string'
}
}
}
};