aboutsummaryrefslogtreecommitdiffstats
path: root/dist/ethereum.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-16 17:47:43 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-16 17:47:43 +0800
commitfbcc6d0d25d1a9e9eed5be22874e559a2bf49911 (patch)
tree6056a32c84529a56ec64dec7d5e2318066bcee9c /dist/ethereum.js
parentec74fc05d438806ece64fe34b0f28c8f45f5167e (diff)
downloadgo-tangerine-fbcc6d0d25d1a9e9eed5be22874e559a2bf49911.tar.gz
go-tangerine-fbcc6d0d25d1a9e9eed5be22874e559a2bf49911.tar.zst
go-tangerine-fbcc6d0d25d1a9e9eed5be22874e559a2bf49911.zip
BigNumber support
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r--dist/ethereum.js28
1 files changed, 16 insertions, 12 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js
index f4e0e6eac..b69f51c75 100644
--- a/dist/ethereum.js
+++ b/dist/ethereum.js
@@ -27,6 +27,8 @@ if ("build" !== 'build') {/*
var web3 = require('./web3'); // jshint ignore:line
*/}
+var BigNumber = require('bignumber.js');
+
// TODO: make these be actually accurate instead of falling back onto JS's doubles.
var hexToDec = function (hex) {
return parseInt(hex, 16).toString();
@@ -85,24 +87,26 @@ var namedType = function (name) {
var setupInputTypes = function () {
/// Formats input value to byte representation of int
+ /// If value is negative, return it's two's complement
/// @returns right-aligned byte representation of int
var formatInt = function (value) {
var padding = 32 * 2;
- if (typeof value === 'number') {
- if (value < 0) {
-
- // two's complement
- // TODO: fix big numbers support
- value = ((value) >>> 0).toString(16);
- return padLeft(value, padding, 'f');
- }
- value = value.toString(16);
-
+ if (value instanceof BigNumber) {
+ if (value.lessThan(0))
+ value = new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).plus(value).plus(1).toString(16);
+ else
+ value = value.toString(16);
+ }
+ else if (typeof value === 'number') {
+ if (value < 0)
+ value = new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).plus(value).plus(1).toString(16);
+ else
+ value = new BigNumber(value).toString(16);
}
else if (value.indexOf('0x') === 0)
value = value.substr(2);
else if (typeof value === 'string')
- value = value.toHex(value);
+ value = new BigNumber(value).toString(16);
else
value = (+value).toString(16);
return padLeft(value, padding);
@@ -295,7 +299,7 @@ module.exports = {
};
-},{}],2:[function(require,module,exports){
+},{"bignumber.js":undefined}],2:[function(require,module,exports){
/*
This file is part of ethereum.js.