diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/finance.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/finance.js b/lib/finance.js index 87a89411..41cae3b1 100644 --- a/lib/finance.js +++ b/lib/finance.js @@ -151,6 +151,17 @@ var Finance = function (faker) { }; /** + * ethereumAddress + * + * @method faker.finance.ethereumAddress + */ + self.ethereumAddress = function () { + var address = faker.random.hexaDecimal(40); + + return address; + }; + + /** * iban * * @method faker.finance.iban |
