Skip to content

Commit

Permalink
Prepare detectProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
arhtudormorar committed Dec 6, 2024
1 parent 8572b26 commit 236f87f
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/core/providers/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
export { getAccountProvider } from './accountProvider';
export * from './helpers/ledger/getLedgerConfiguration';

/*
// TODO: create detectProvider function
(window as any).multiversx = {};
(window as any).multiversx.providers = [
{
name: "PEM",
icon: "",
class: (config) => {
return new PEMProvider(config);
},
},
];
*/

0 comments on commit 236f87f

Please sign in to comment.