mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-22 19:18: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;
|
|
|