@etherplay/connect 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import type { AlchemyMechanism, OriginAccount } from '@etherplay/alchemy';
2
2
  import type { EIP1193WindowWalletProvider } from 'eip-1193';
3
3
  import { fromEntropyKeyToMnemonic } from '@etherplay/alchemy';
4
4
  export { fromEntropyKeyToMnemonic };
5
+ export type { OriginAccount };
5
6
  export type PopupSettings = {
6
7
  walletHost: string;
7
8
  mechanism: AlchemyMechanism;
package/dist/index.js CHANGED
@@ -165,7 +165,7 @@ export function createConnection(settings) {
165
165
  origin,
166
166
  address: originAccount.address,
167
167
  privateKey: originAccount.privateKey,
168
- mnemomicKey: originKey
168
+ mnemonicKey: originKey
169
169
  },
170
170
  metadata: {},
171
171
  mechanismUsed: $connection.mechanism
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etherplay/connect",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -52,7 +52,7 @@
52
52
  "@scure/bip32": "^1.6.2",
53
53
  "@scure/bip39": "^1.5.4",
54
54
  "zustand": "^5.0.3",
55
- "@etherplay/alchemy": "0.0.1"
55
+ "@etherplay/alchemy": "0.0.2"
56
56
  },
57
57
  "scripts": {
58
58
  "dev": "vite dev --host --port 60002",