mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
edf2cc41cb
* adds code fencing * MMI adds mmi-controller * MMI prettier * chore: create keyring builder for CustodyKeyrings * updates code fence to build-mmi * adds dependencies * fix import and prettier * lint * clean up * clean up * removes old methods and adds new * comment for now * adds two missing methods * runs yarn dedupe * adds missing import * bump target values * lavamoat policy update * bump values in coverage targets * prettier import order * coverage report update * clean up * yarn update * yarn dedupe * ran lavamoat:auto * adds zlib entry to storybook/main.js * adds browserify-zlib * clean up * clean up * prettier * prettier * eslint fix * fix paths * fix prettier * fix file name for mocha * adds to config * rename * adds file to configs * test lavamoat clean up * run dedupe * sets value in storybook main.js as false * runs lavamoat auto * updates mmi packages to lighter versions * updates mmi packages * lavamoat auto * adds finalized tx status * lavamoat auto * yarn dedupe * clean up * moving stuff into mmi controller * clean up * updates tresholds * yarn lock review * updates the mmi controller --------- Co-authored-by: Shane Terence Odlum <shane.odlum@consensys.net>
18 lines
564 B
JavaScript
18 lines
564 B
JavaScript
/**
|
|
* Get builder function for MMI keyrings which require an additional `opts`
|
|
* parameter, used to pass MMI configuration.
|
|
*
|
|
* Returns a builder function for `Keyring` with a `type` property.
|
|
*
|
|
* @param {Keyring} Keyring - The Keyring class for the builder.
|
|
* @param {Keyring} opts - Optional parameters to be passed to the builder.
|
|
* @returns {Function} A builder function for the given Keyring.
|
|
*/
|
|
export function mmiKeyringBuilderFactory(Keyring, opts) {
|
|
const builder = () => new Keyring(opts);
|
|
|
|
builder.type = Keyring.type;
|
|
|
|
return builder;
|
|
}
|