A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
class SwPlatform {
|
|
|
|
/**
|
|
|
|
* Reloads the platform
|
|
|
|
*/
|
|
|
|
reload () {
|
|
|
|
// TODO: you can't actually do this
|
|
|
|
/** @type {any} */ (global).location.reload()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a window
|
|
|
|
* @param {{url: string}} opts - The window options
|
|
|
|
*/
|
|
|
|
openWindow (opts) {
|
|
|
|
// TODO: this doesn't actually work
|
|
|
|
/** @type {any} */ (global).open(opts.url, '_blank')
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the platform version
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
getVersion () {
|
|
|
|
return '<unable to read version>'
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = SwPlatform
|