mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 03:28:07 +00:00
10 lines
134 B
JavaScript
10 lines
134 B
JavaScript
|
|
||
|
|
||
|
var Settings = function () {
|
||
|
this.defaultBlock = 'latest';
|
||
|
this.defaultAccount = undefined;
|
||
|
};
|
||
|
|
||
|
module.exports = Settings;
|
||
|
|