aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/contract_templates/partials/return_type.mustache
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-08 22:58:54 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-14 22:47:02 +0800
commit02e7354b5324b80f1e5a6a2968d05de44820498c (patch)
tree83dd425b01afa2eddcb36456da40ae721953020b /packages/0x.js/contract_templates/partials/return_type.mustache
parent0a0d3503c0cdf16c0630dabc9eefba6e7b0a42fe (diff)
downloaddexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.gz
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.bz2
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.lz
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.xz
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.zst
dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.zip
Move 0x.js temnplates to 0x.js instead of having them as a separate package
Diffstat (limited to 'packages/0x.js/contract_templates/partials/return_type.mustache')
-rw-r--r--packages/0x.js/contract_templates/partials/return_type.mustache6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/0x.js/contract_templates/partials/return_type.mustache b/packages/0x.js/contract_templates/partials/return_type.mustache
new file mode 100644
index 000000000..383961a40
--- /dev/null
+++ b/packages/0x.js/contract_templates/partials/return_type.mustache
@@ -0,0 +1,6 @@
+{{#singleReturnValue}}
+{{#returnType outputs.0.type}}{{/returnType}}
+{{/singleReturnValue}}
+{{^singleReturnValue}}
+[{{#each outputs}}{{#returnType type}}{{/returnType}}{{#unless @last}}, {{/unless}}{{/each}}]
+{{/singleReturnValue}}