aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-12-21 06:36:58 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-12-21 09:37:18 +0800
commit9ced63584bc93cf6ac82786dec0984b5022346ae (patch)
treeea647fd9c1d55a1404a2684c4f87976e477ba337 /ui/app/components/send
parent5fe3c5aae6756f225edd0f8646ac0a23c264a81c (diff)
downloadtangerine-wallet-browser-9ced63584bc93cf6ac82786dec0984b5022346ae.tar.gz
tangerine-wallet-browser-9ced63584bc93cf6ac82786dec0984b5022346ae.tar.zst
tangerine-wallet-browser-9ced63584bc93cf6ac82786dec0984b5022346ae.zip
Add constanst for token transfer function signature.
Diffstat (limited to 'ui/app/components/send')
-rw-r--r--ui/app/components/send/send-constants.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/app/components/send/send-constants.js b/ui/app/components/send/send-constants.js
index 9c240972f..b3ee0899a 100644
--- a/ui/app/components/send/send-constants.js
+++ b/ui/app/components/send/send-constants.js
@@ -20,6 +20,8 @@ const MIN_GAS_TOTAL = multiplyCurrencies(MIN_GAS_LIMIT_HEX, MIN_GAS_PRICE_HEX, {
multiplierBase: 16,
})
+const TOKEN_TRANSFER_FUNCTION_SIGNATURE = '0xa9059cbb'
+
module.exports = {
MIN_GAS_PRICE_GWEI,
MIN_GAS_PRICE_HEX,
@@ -27,4 +29,5 @@ module.exports = {
MIN_GAS_LIMIT_HEX,
MIN_GAS_LIMIT_DEC,
MIN_GAS_TOTAL,
+ TOKEN_TRANSFER_FUNCTION_SIGNATURE,
}