aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-06-09 22:58:52 +0800
committerGitHub <noreply@github.com>2017-06-09 22:58:52 +0800
commit3a9d07c40ce2e26203962487036132d6357ec530 (patch)
tree87a2416fa3c0506ce0fffe2021de05069db4fbc2 /src/schemas
parent389894088d2372e1eb9bf4d39bde2efe8ab38713 (diff)
parentba9a0b0bb9e87e69c818a5fe73183d8d22476948 (diff)
downloaddexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar.gz
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar.bz2
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar.lz
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar.xz
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.tar.zst
dexon-sol-tools-3a9d07c40ce2e26203962487036132d6357ec530.zip
Merge pull request #49 from 0xProject/fillOrderUpToAsync
Implement fillOrderUpToAsync
Diffstat (limited to 'src/schemas')
-rw-r--r--src/schemas/signed_orders_schema.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/schemas/signed_orders_schema.ts b/src/schemas/signed_orders_schema.ts
new file mode 100644
index 000000000..3b3b23649
--- /dev/null
+++ b/src/schemas/signed_orders_schema.ts
@@ -0,0 +1,5 @@
+export const signedOrdersSchema = {
+ id: '/signedOrdersSchema',
+ type: 'array',
+ items: {$ref: '/signedOrderSchema'},
+};