@rango-dev/wallets-core 0.53.1-next.0 → 0.53.1-next.2

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.
Files changed (35) hide show
  1. package/dist/hub/store/mod.js +1 -1
  2. package/dist/hub/store/mod.js.map +2 -2
  3. package/dist/hub/store/namespaces.d.ts +1 -0
  4. package/dist/hub/store/namespaces.d.ts.map +1 -1
  5. package/dist/mod.js +1 -1
  6. package/dist/mod.js.map +2 -2
  7. package/dist/namespaces/common/actions.d.ts.map +1 -1
  8. package/dist/namespaces/common/hooks/changeAccountSubscriber.d.ts +3 -3
  9. package/dist/namespaces/common/hooks/changeAccountSubscriber.d.ts.map +1 -1
  10. package/dist/namespaces/common/mod.js +1 -1
  11. package/dist/namespaces/common/mod.js.map +2 -2
  12. package/dist/namespaces/evm/actions.d.ts.map +1 -1
  13. package/dist/namespaces/evm/builders.d.ts +1 -1
  14. package/dist/namespaces/evm/builders.d.ts.map +1 -1
  15. package/dist/namespaces/evm/mod.js +1 -1
  16. package/dist/namespaces/evm/mod.js.map +3 -3
  17. package/dist/namespaces/solana/builders.d.ts +1 -1
  18. package/dist/namespaces/solana/builders.d.ts.map +1 -1
  19. package/dist/namespaces/solana/mod.js +1 -1
  20. package/dist/namespaces/solana/mod.js.map +2 -2
  21. package/dist/namespaces/sui/builders.d.ts +1 -1
  22. package/dist/namespaces/sui/builders.d.ts.map +1 -1
  23. package/dist/namespaces/sui/mod.js.map +2 -2
  24. package/dist/namespaces/utxo/mod.js +1 -1
  25. package/dist/namespaces/utxo/mod.js.map +2 -2
  26. package/dist/wallets-core.build.json +1 -1
  27. package/package.json +1 -1
  28. package/src/hub/store/namespaces.ts +3 -0
  29. package/src/namespaces/common/actions.ts +1 -0
  30. package/src/namespaces/common/hooks/changeAccountSubscriber.test.ts +8 -1
  31. package/src/namespaces/common/hooks/changeAccountSubscriber.ts +9 -14
  32. package/src/namespaces/evm/actions.ts +4 -1
  33. package/src/namespaces/evm/builders.ts +1 -1
  34. package/src/namespaces/solana/builders.ts +1 -1
  35. package/src/namespaces/sui/builders.ts +2 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/namespaces/common/actions.ts", "../../../src/namespaces/common/builders.ts", "../../../src/hub/store/store.ts", "../../../src/hub/store/namespaces.ts", "../../../src/hub/store/providers.ts", "../../../src/builders/action.ts", "../../../src/utils/mod.ts", "../../../src/namespaces/common/utils.ts", "../../../src/namespaces/common/or.ts", "../../../src/namespaces/common/after.ts", "../../../src/namespaces/common/hooks/changeAccountSubscriber.ts", "../../../src/namespaces/common/helpers.ts", "../../../src/namespaces/common/and.ts", "../../../src/namespaces/common/before.ts"],
4
- "sourcesContent": ["import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function disconnect(context: Context): void {\n const [, setState] = context.state();\n setState('network', null);\n setState('accounts', null);\n setState('connected', false);\n setState('connecting', false);\n}\n\nexport const recommended = [['disconnect', disconnect] as const];\n", "import type { AutoImplementedActionsByRecommended } from './types.js';\nimport type { Actions } from '../../hub/namespaces/types.js';\n\nimport { ActionBuilder } from '../../mod.js';\n\nimport { disconnect as disconnectAction } from './actions.js';\n\nexport const disconnect = <\n T extends Actions<T> &\n Record<'disconnect', AutoImplementedActionsByRecommended['disconnect']>\n>() =>\n new ActionBuilder<AutoImplementedActionsByRecommended, 'disconnect'>(\n 'disconnect'\n ).action(disconnectAction) as unknown as ActionBuilder<T, 'disconnect'>;\n", "import type { StoreApi } from 'zustand/vanilla';\n\nimport { createStore as createZustandStore } from 'zustand/vanilla';\n\nimport { extend, type Store } from './extend.js';\nimport { hubStore, type HubStore } from './hub.js';\nimport { namespacesStore, type NamespaceStore } from './namespaces.js';\nimport { providersStore, type ProviderStore } from './providers.js';\n\n/************ State ************/\n\nexport interface State {\n hub: HubStore;\n providers: ProviderStore;\n namespaces: NamespaceStore;\n}\n\nexport type RawStore = StoreApi<State>;\n\nexport const createStore = (): Store => {\n const store = createZustandStore<State>((...api) => {\n return {\n hub: hubStore(...api),\n providers: providersStore(...api),\n namespaces: namespacesStore(...api),\n };\n });\n\n return extend(store);\n};\n", "/************ Namespace ************/\n\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport {\n ConsumableEvents,\n type NamespaceConnectedEvent,\n type NamespaceDisconnectedEvent,\n type NamespaceSwitchedAccountEvent,\n type NamespaceSwitchedNetworkEvent,\n} from './events.js';\nimport { namespaceStateSelector, type State } from './mod.js';\n\n// Currently, namespace doesn't has any config.\nexport type NamespaceConfig = object;\n\nexport interface NamespaceData {\n accounts: null | string[];\n network: null | string;\n connected: boolean;\n connecting: boolean;\n}\n\ninterface NamespaceInfo {\n providerId: string;\n namespaceId: string;\n}\n\ninterface NamespaceItem {\n info: NamespaceInfo;\n data: NamespaceData;\n error: unknown;\n}\n\ntype NamespaceState = {\n events: InstanceType<typeof ConsumableEvents>;\n list: Record<string, NamespaceItem>;\n};\n\ninterface NamespaceActions {\n addNamespace: (id: string, config: NamespaceInfo) => void;\n updateStatus: <K extends keyof NamespaceData>(\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof NamespaceData>(\n namespace: NamespaceItem,\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n}\ninterface NamespaceSelectors {\n getNamespaceData(storeId: string): NamespaceData;\n}\n\nexport type NamespaceStore = NamespaceState &\n NamespaceActions &\n NamespaceSelectors;\ntype NamespaceStateCreator = StateCreator<State, [], [], NamespaceStore>;\n\nconst namespacesStore: NamespaceStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addNamespace: (id, info) => {\n const data: NamespaceData = {\n accounts: null,\n network: null,\n connected: false,\n connecting: false,\n };\n\n const item = {\n data,\n error: '',\n info,\n };\n\n set(\n produce((state: State) => {\n state.namespaces.list[id] = item;\n })\n );\n },\n updateStatus: (id, key, value) => {\n const ns = get().namespaces.list[id];\n if (!ns) {\n throw new Error(`No namespace with '${id}' found.`);\n }\n\n get().namespaces._produceEventsWhenUpdatingStatus(ns, id, key, value);\n\n // Updating state\n set(\n produce((state: State) => {\n state.namespaces.list[id].data[key] = value;\n })\n );\n },\n getNamespaceData(storeId) {\n return namespaceStateSelector(get(), storeId);\n },\n\n _produceEventsWhenUpdatingStatus: (namespace, id, key, value) => {\n if (key === 'accounts') {\n // check for both null and empty array\n const isAccountsEmpty =\n Object.is(value, null) || (Array.isArray(value) && value.length === 0);\n\n if (isAccountsEmpty) {\n const currentConnectedStatus = get().namespaces.list[id].data.connected;\n if (currentConnectedStatus) {\n const event: NamespaceDisconnectedEvent = {\n type: 'namespace_disconnected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n };\n\n get().namespaces.events.push(event);\n }\n // Skip emitting disconnect event, if the `connected` is false\n } else {\n const currentAccounts = get().namespaces.list[id].data.accounts;\n\n if (!currentAccounts) {\n const event: NamespaceConnectedEvent = {\n type: 'namespace_connected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n } else {\n const areSameAccounts =\n // Clone the object from the Zustand store, as it's immutable, to avoid errors during sorting.\n [...currentAccounts].sort().toString() ===\n (value as string[]).sort().toString();\n\n if (!areSameAccounts) {\n const event: NamespaceSwitchedAccountEvent = {\n type: 'namespace_account_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n previousAccounts: currentAccounts,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n }\n }\n }\n } else if (key === 'network') {\n const currentNetwork = get().namespaces.list[id].data.network;\n\n const event: NamespaceSwitchedNetworkEvent = {\n type: 'namespace_network_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n network: value as string,\n previousNetwork: currentNetwork,\n };\n\n get().namespaces.events.push(event);\n }\n },\n});\n\nexport { namespacesStore };\n", "import type { Namespace } from '../../namespaces/common/types.js';\nimport type { State as InternalProviderState } from '../provider/mod.js';\nimport type { BlockchainMeta, SignerFactory } from 'rango-types';\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport { ConsumableEvents, type ProviderDetectedEvent } from './events.js';\nimport { guessProviderStateSelector, type State } from './mod.js';\n\ntype Browsers = 'firefox' | 'chrome' | 'edge' | 'brave' | 'homepage';\ntype Property<N extends string, V> = { name: N; value: V };\n\ntype NamespacesProperty = Property<\n 'namespaces',\n {\n selection: 'single' | 'multiple';\n data: {\n label: string;\n id: string;\n value: Namespace;\n unsupported?: boolean;\n getSupportedChains: (chains: BlockchainMeta[]) => BlockchainMeta[];\n }[];\n }\n>;\ntype DerivationPathProperty = Property<\n 'derivationPath',\n {\n data: {\n id: string;\n label: string;\n namespace: Namespace;\n generateDerivationPath: (index: string) => string;\n }[];\n }\n>;\ntype DetailsProperty = Property<\n 'details',\n {\n mobileWallet?: boolean;\n showOnMobile?: boolean;\n isContractWallet?: boolean;\n }\n>;\ntype SignersProperty = Property<\n 'signers',\n {\n getSigners: () => Promise<SignerFactory>;\n }\n>;\n\nexport type ProviderMetadata = {\n name: string;\n icon: string;\n extensions: Partial<Record<Browsers, string>>;\n properties?: Array<\n | NamespacesProperty\n | DerivationPathProperty\n | DetailsProperty\n | SignersProperty\n >;\n};\n\nexport interface ProviderConfig {\n metadata: ProviderMetadata;\n}\n\nexport type ProviderInfo = ProviderConfig;\n\ninterface ProviderData {\n installed: boolean;\n}\n\ninterface ProviderItem {\n config: ProviderConfig;\n data: ProviderData;\n error: unknown;\n}\n\ntype ProviderState = {\n events: ConsumableEvents;\n list: Record<string, ProviderItem>;\n};\ninterface ProviderActions {\n addProvider: (id: string, config: ProviderConfig) => void;\n removeProvider: (id: string) => void;\n updateStatus: <K extends keyof ProviderData>(\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof ProviderData>(\n provider: ProviderItem,\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n}\n\ninterface ProviderSelectors {\n /**\n * Provider has a limited state to itself, to be compatible with legacy, we try to produce same object as legacy\n * which includes namespace state as well.\n */\n guessNamespacesState: (id: string) => InternalProviderState;\n}\n\nexport type ProviderStore = ProviderState & ProviderActions & ProviderSelectors;\ntype ProvidersStateCreator = StateCreator<State, [], [], ProviderStore>;\n\nconst providersStore: ProvidersStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addProvider: (id, config) => {\n const item = {\n data: {\n installed: false,\n },\n error: '',\n config,\n };\n\n set(\n produce((state: State) => {\n state.providers.list[id] = item;\n })\n );\n },\n removeProvider: (id) => {\n set(\n produce((state: State) => {\n delete state.providers.list[id];\n })\n );\n },\n updateStatus: (id, key, value) => {\n const provider = get().providers.list[id];\n if (!provider) {\n throw new Error(`No namespace namespace with '${id}' found.`);\n }\n\n get().providers._produceEventsWhenUpdatingStatus(provider, id, key, value);\n\n set(\n produce((state: State) => {\n state.providers.list[id].data[key] = value;\n })\n );\n },\n guessNamespacesState: (providerId: string): InternalProviderState => {\n return guessProviderStateSelector(get(), providerId);\n },\n\n _produceEventsWhenUpdatingStatus: (_provider, id, key, _value) => {\n if (key === 'installed') {\n const event: ProviderDetectedEvent = {\n type: 'provider_detected',\n provider: id,\n };\n\n get().providers.events.push(event);\n }\n },\n});\n\nexport { providersStore };\n", "import type { Actions, Context, Operators } from '../hub/namespaces/types.js';\nimport type { AnyFunction, FunctionWithContext } from '../types/actions.js';\n\nexport interface ActionByBuilder<T, Context> {\n actionName: keyof T;\n and: Operators<T>;\n or: Operators<T>;\n after: Operators<T>;\n before: Operators<T>;\n action: FunctionWithContext<T[keyof T], Context>;\n}\n\n/*\n * TODO:\n * Currently, to use this builder you will write something like this:\n * new ActionBuilder<EvmActions, 'disconnect'>('disconnect').after(....)\n *\n * I couldn't figure it out to be able typescript infer the constructor value as key of actions.\n * Ideal usage:\n * new ActionBuilder<EvmActions>('disconnect').after(....)\n *\n */\nexport class ActionBuilder<T extends Actions<T>, K extends keyof T> {\n readonly name: K;\n #and: Operators<T> = new Map();\n #or: Operators<T> = new Map();\n #after: Operators<T> = new Map();\n #before: Operators<T> = new Map();\n #action: FunctionWithContext<T[keyof T], Context<T>> | undefined;\n\n constructor(name: K) {\n this.name = name;\n }\n\n public and(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#and.has(this.name)) {\n this.#and.set(this.name, []);\n }\n this.#and.get(this.name)?.push(action);\n return this;\n }\n\n public or(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#or.has(this.name)) {\n this.#or.set(this.name, []);\n }\n this.#or.get(this.name)?.push(action);\n return this;\n }\n\n public before(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#before.has(this.name)) {\n this.#before.set(this.name, []);\n }\n this.#before.get(this.name)?.push(action);\n return this;\n }\n\n public after(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#after.has(this.name)) {\n this.#after.set(this.name, []);\n }\n this.#after.get(this.name)?.push(action);\n return this;\n }\n\n public action(action: FunctionWithContext<T[keyof T], Context<T>>) {\n this.#action = action;\n return this;\n }\n\n public build(): ActionByBuilder<T, Context<T>> {\n if (!this.#action) {\n throw new Error('Your action builder should includes an action.');\n }\n\n return {\n actionName: this.name,\n action: this.#action,\n before: this.#before,\n after: this.#after,\n and: this.#and,\n or: this.#or,\n };\n }\n}\n", "/*\n * It is not a good idea to re-export all of CAIP because if they have a breaking change, we will break as well.\n * It would be better to create an abstraction over them and export our own interface to ensure it is under our control.\n */\nexport * as CAIP from 'caip';\n\nexport { generateStoreId } from '../hub/helpers.js';\nexport * from './versions.js';\n", "/**\n * Standardizes an unknown error into an Error object and throws it.\n * If the input is already an Error, it's thrown directly.\n * Otherwise, a new Error is created with the input's message or string representation.\n *\n * @param e - The unknown error object.\n * @throws {Error} - The standardized Error object.\n */\nexport function parseErrorAndThrowStandardizeError(e: unknown): never {\n if (e instanceof Error) {\n throw e;\n }\n\n let errorMessage: string;\n if (\n typeof e === 'object' &&\n e !== null &&\n 'message' in e &&\n typeof e.message === 'string'\n ) {\n errorMessage = e.message;\n } else if (typeof e === 'string') {\n errorMessage = e;\n } else {\n errorMessage = String(e);\n }\n\n const err = new Error(errorMessage) as Error & {\n code?: unknown;\n data?: unknown;\n };\n\n if (typeof e === 'object' && e !== null) {\n if ('code' in e) {\n err.code = e.code;\n }\n if ('data' in e) {\n err.data = e.data;\n }\n }\n\n throw err;\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nimport { parseErrorAndThrowStandardizeError } from './utils.js';\n\n/**\n * Standardizes an unknown error into an Error object and throws it.\n * If the input is already an Error, it's thrown directly.\n * Otherwise, a new Error is created with the input's message or string representation.\n * Note: The parseErrorAndThrowStandardizeError function is defined as a separate function, so that it can be used independently.\n *\n * @param _context - The context.\n * @param e - The unknown error object.\n * @throws {Error} - The standardized Error object.\n */\nexport function standardizeAndThrowError(_context: Context, e: unknown): never {\n parseErrorAndThrowStandardizeError(e);\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnectionFinished(context: Context) {\n const [, setState] = context.state();\n setState('connecting', false);\n}\n\nexport const recommended = [['connect', intoConnectionFinished] as const];\n", "import type {\n Actions,\n Context,\n SubscriberCleanUp,\n} from '../../../hub/namespaces/types.js';\nimport type { Subscriber } from '../../../mod.js';\nimport type { AutoImplementedActionsByRecommended } from '../types.js';\n\ntype OnSwitchAccountEvent<EventType> = {\n payload: EventType;\n preventDefault: () => void;\n};\n\nexport class ChangeAccountSubscriberBuilder<EventType, ProviderAPI> {\n #getInstance: (() => ProviderAPI) | null = null;\n #format:\n | ((instance: ProviderAPI, event: EventType) => Promise<string[]>)\n | null = null;\n #onSwitchAccount:\n | (<\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void)\n | null = null;\n\n #addEventListener:\n | ((\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void)\n | null = null;\n #removeEventListener:\n | ((instance: ProviderAPI, callback: (event: EventType) => void) => void)\n | null = null;\n\n /**\n * Sets the function that provides the provider API instance.\n *\n * @param operator - Function that returns the provider API instance\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.getInstance(() => window.ethereum)\n * ```\n */\n public getInstance(operator: () => ProviderAPI) {\n this.#getInstance = operator;\n return this;\n }\n\n /**\n * Sets the formatter function that converts provider events to account strings.\n *\n * @param operator - Function that takes a provider instance and event, returns array of account strings\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.format(async (instance, event) => event.accounts || [])\n * ```\n */\n public format(\n operator: (instance: ProviderAPI, event: EventType) => Promise<string[]>\n ) {\n this.#format = operator;\n return this;\n }\n\n /**\n * Set a handler that runs whenever a **switch-account** event occurs.\n *\n * The provided operator is called with:\n * - `event`: An object containing:\n * - `payload`: The event payload associated with the account switch.\n * - `preventDefault`: A function that prevents the default switch-account\n * behavior (e.g., updating the active accounts list).\n * - `context`: The execution context of the current flow or action.\n *\n * Calling `event.preventDefault()` inside the handler cancels the built-in\n * account switching logic.\n *\n * @param operator - A function invoked on each switch-account event.\n * It receives `(event, context)` and can call `event.preventDefault()` to\n * stop the default behavior.\n *\n * @returns The builder instance for method chaining.\n *\n * @example\n * ```ts\n * builder.onSwitchAccount((event, context) => {\n * if (!event.payload.userConfirmed) {\n * event.preventDefault(); // cancel default account switch\n * }\n *\n * console.log(\"Switching account:\", event.payload.accountId);\n * });\n * ```\n */\n public onSwitchAccount(\n operator: <\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void\n ) {\n this.#onSwitchAccount = operator;\n return this;\n }\n\n /**\n * Sets the event listener attachment function.\n *\n * @param operator - Function that attaches an event listener and optionally returns a cleanup function\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.addEventListener((instance, callback) => {\n * return instance.on('accountsChanged', callback);\n * })\n * ```\n */\n public addEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void\n ) {\n this.#addEventListener = operator;\n return this;\n }\n\n /**\n * Sets the event listener removal function.\n *\n * @param operator - Function that removes an event listener from the provider\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.removeEventListener((instance, callback) => instance.off('accountsChanged', callback))\n * ```\n */\n public removeEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => void\n ) {\n this.#removeEventListener = operator;\n return this;\n }\n public build<\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(): [Subscriber<ActionsType>, SubscriberCleanUp<ActionsType>] {\n if (this.#getInstance === null) {\n throw new Error(this.#getErrorMessage('getInstance'));\n }\n if (this.#format === null) {\n throw new Error(this.#getErrorMessage('format'));\n }\n if (this.#addEventListener === null) {\n throw new Error(this.#getErrorMessage('addEventListener'));\n }\n if (this.#removeEventListener === null) {\n throw new Error(this.#getErrorMessage('removeEventListener'));\n }\n\n /**\n * Capture current operator state at build time to ensure immutability.\n *\n * This creates a snapshot of all operators, preventing the built subscriber\n * from being affected by subsequent changes to the builder instance.\n * Each call to build() gets its own isolated set of operators, allowing\n * the builder to be reused for creating multiple independent subscribers.\n */\n const getInstance = this.#getInstance;\n const format = this.#format;\n const addEventListener = this.#addEventListener;\n const removeEventListener = this.#removeEventListener;\n const onSwitchAccount = this.#onSwitchAccount;\n\n let subscriber: (event: EventType) => void;\n let unsubscribe: (() => void) | void;\n return [\n async (context) => {\n const [, setState] = context.state();\n const instance = getInstance();\n\n if (!instance) {\n throw new Error(\n 'Trying to subscribe to your wallet, but seems its instance is not available.'\n );\n }\n subscriber = async (event) => {\n let shouldProceedWithDefault = true;\n\n onSwitchAccount?.(\n {\n payload: event,\n preventDefault: () => {\n shouldProceedWithDefault = false;\n },\n },\n context\n );\n if (!shouldProceedWithDefault) {\n return;\n }\n setState('accounts', await format(instance, event));\n };\n unsubscribe = addEventListener(instance, subscriber);\n },\n (_, err) => {\n /**\n * Call the cleanup function if addEventListener returned one.\n * This handles providers that return an unsubscribe function from their event listeners.\n */\n if (unsubscribe && typeof unsubscribe === 'function') {\n unsubscribe();\n }\n const instance = getInstance();\n\n /**\n * Always call removeEventListener as well to handle the on/off pattern.\n * This ensures cleanup works regardless of which pattern the provider uses.\n */\n removeEventListener(instance, subscriber);\n\n // subscriber can be passed to `or`, it will get the error and should rethrow error to pass the error to next `or` or throw error.\n return err;\n },\n ];\n }\n #getErrorMessage(operatorName: string) {\n return `Required \"${operatorName}\" operation has not been set for \"changeAccountSubscriber\"`;\n }\n}\n", "import { AccountId } from 'caip';\n\nexport function isValidCaipAddress(address: string): boolean {\n try {\n AccountId.parse(address);\n return true;\n } catch {\n return false;\n }\n}\n", "import type {\n Accounts,\n AccountsWithActiveChain,\n} from './../../types/accounts.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\n\nimport { isValidCaipAddress } from './helpers.js';\n\nexport function connectAndUpdateStateForSingleNetwork(\n context: Context,\n accounts: Accounts\n) {\n if (!accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts);\n setState('connected', true);\n return accounts;\n}\n\nexport function connectAndUpdateStateForMultiNetworks(\n context: Context,\n accounts: AccountsWithActiveChain\n) {\n if (!accounts.accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts.accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts.accounts);\n setState('network', accounts.network);\n setState('connected', true);\n return accounts;\n}\n\nexport const recommended = [];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnecting(context: Context) {\n const [, setState] = context.state();\n setState('connecting', true);\n}\n\n// Please consider if you are going to add something here, make sure it works on all namespaces.\nexport const recommended = [['connect', intoConnecting] as const];\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function disconnect(context: Context): void {\n const [, setState] = context.state();\n setState('network', null);\n setState('accounts', null);\n setState('connected', false);\n setState('connecting', false);\n setState('connectArgs', null);\n}\n\nexport const recommended = [['disconnect', disconnect] as const];\n", "import type { AutoImplementedActionsByRecommended } from './types.js';\nimport type { Actions } from '../../hub/namespaces/types.js';\n\nimport { ActionBuilder } from '../../mod.js';\n\nimport { disconnect as disconnectAction } from './actions.js';\n\nexport const disconnect = <\n T extends Actions<T> &\n Record<'disconnect', AutoImplementedActionsByRecommended['disconnect']>\n>() =>\n new ActionBuilder<AutoImplementedActionsByRecommended, 'disconnect'>(\n 'disconnect'\n ).action(disconnectAction) as unknown as ActionBuilder<T, 'disconnect'>;\n", "import type { StoreApi } from 'zustand/vanilla';\n\nimport { createStore as createZustandStore } from 'zustand/vanilla';\n\nimport { extend, type Store } from './extend.js';\nimport { hubStore, type HubStore } from './hub.js';\nimport { namespacesStore, type NamespaceStore } from './namespaces.js';\nimport { providersStore, type ProviderStore } from './providers.js';\n\n/************ State ************/\n\nexport interface State {\n hub: HubStore;\n providers: ProviderStore;\n namespaces: NamespaceStore;\n}\n\nexport type RawStore = StoreApi<State>;\n\nexport const createStore = (): Store => {\n const store = createZustandStore<State>((...api) => {\n return {\n hub: hubStore(...api),\n providers: providersStore(...api),\n namespaces: namespacesStore(...api),\n };\n });\n\n return extend(store);\n};\n", "/************ Namespace ************/\n\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport {\n ConsumableEvents,\n type NamespaceConnectedEvent,\n type NamespaceDisconnectedEvent,\n type NamespaceSwitchedAccountEvent,\n type NamespaceSwitchedNetworkEvent,\n} from './events.js';\nimport { namespaceStateSelector, type State } from './mod.js';\n\n// Currently, namespace doesn't has any config.\nexport type NamespaceConfig = object;\n\nexport interface NamespaceData {\n accounts: null | string[];\n network: null | string;\n connected: boolean;\n connecting: boolean;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n connectArgs: Record<string, any> | null;\n}\n\ninterface NamespaceInfo {\n providerId: string;\n namespaceId: string;\n}\n\ninterface NamespaceItem {\n info: NamespaceInfo;\n data: NamespaceData;\n error: unknown;\n}\n\ntype NamespaceState = {\n events: InstanceType<typeof ConsumableEvents>;\n list: Record<string, NamespaceItem>;\n};\n\ninterface NamespaceActions {\n addNamespace: (id: string, config: NamespaceInfo) => void;\n updateStatus: <K extends keyof NamespaceData>(\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof NamespaceData>(\n namespace: NamespaceItem,\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n}\ninterface NamespaceSelectors {\n getNamespaceData(storeId: string): NamespaceData;\n}\n\nexport type NamespaceStore = NamespaceState &\n NamespaceActions &\n NamespaceSelectors;\ntype NamespaceStateCreator = StateCreator<State, [], [], NamespaceStore>;\n\nconst namespacesStore: NamespaceStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addNamespace: (id, info) => {\n const data: NamespaceData = {\n accounts: null,\n network: null,\n connected: false,\n connecting: false,\n connectArgs: null,\n };\n\n const item = {\n data,\n error: '',\n info,\n };\n\n set(\n produce((state: State) => {\n state.namespaces.list[id] = item;\n })\n );\n },\n updateStatus: (id, key, value) => {\n const ns = get().namespaces.list[id];\n if (!ns) {\n throw new Error(`No namespace with '${id}' found.`);\n }\n\n get().namespaces._produceEventsWhenUpdatingStatus(ns, id, key, value);\n\n // Updating state\n set(\n produce((state: State) => {\n state.namespaces.list[id].data[key] = value;\n })\n );\n },\n getNamespaceData(storeId) {\n return namespaceStateSelector(get(), storeId);\n },\n\n _produceEventsWhenUpdatingStatus: (namespace, id, key, value) => {\n if (key === 'accounts') {\n // check for both null and empty array\n const isAccountsEmpty =\n Object.is(value, null) || (Array.isArray(value) && value.length === 0);\n\n if (isAccountsEmpty) {\n const currentConnectedStatus = get().namespaces.list[id].data.connected;\n if (currentConnectedStatus) {\n const event: NamespaceDisconnectedEvent = {\n type: 'namespace_disconnected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n };\n\n get().namespaces.events.push(event);\n }\n // Skip emitting disconnect event, if the `connected` is false\n } else {\n const currentAccounts = get().namespaces.list[id].data.accounts;\n\n if (!currentAccounts) {\n const event: NamespaceConnectedEvent = {\n type: 'namespace_connected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n } else {\n const areSameAccounts =\n // Clone the object from the Zustand store, as it's immutable, to avoid errors during sorting.\n [...currentAccounts].sort().toString() ===\n (value as string[]).sort().toString();\n\n if (!areSameAccounts) {\n const event: NamespaceSwitchedAccountEvent = {\n type: 'namespace_account_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n previousAccounts: currentAccounts,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n }\n }\n }\n } else if (key === 'network') {\n const currentNetwork = get().namespaces.list[id].data.network;\n\n const event: NamespaceSwitchedNetworkEvent = {\n type: 'namespace_network_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n network: value as string,\n previousNetwork: currentNetwork,\n };\n\n get().namespaces.events.push(event);\n }\n },\n});\n\nexport { namespacesStore };\n", "import type { Namespace } from '../../namespaces/common/types.js';\nimport type { State as InternalProviderState } from '../provider/mod.js';\nimport type { BlockchainMeta, SignerFactory } from 'rango-types';\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport { ConsumableEvents, type ProviderDetectedEvent } from './events.js';\nimport { guessProviderStateSelector, type State } from './mod.js';\n\ntype Browsers = 'firefox' | 'chrome' | 'edge' | 'brave' | 'homepage';\ntype Property<N extends string, V> = { name: N; value: V };\n\ntype NamespacesProperty = Property<\n 'namespaces',\n {\n selection: 'single' | 'multiple';\n data: {\n label: string;\n id: string;\n value: Namespace;\n unsupported?: boolean;\n getSupportedChains: (chains: BlockchainMeta[]) => BlockchainMeta[];\n }[];\n }\n>;\ntype DerivationPathProperty = Property<\n 'derivationPath',\n {\n data: {\n id: string;\n label: string;\n namespace: Namespace;\n generateDerivationPath: (index: string) => string;\n }[];\n }\n>;\ntype DetailsProperty = Property<\n 'details',\n {\n mobileWallet?: boolean;\n showOnMobile?: boolean;\n isContractWallet?: boolean;\n }\n>;\ntype SignersProperty = Property<\n 'signers',\n {\n getSigners: () => Promise<SignerFactory>;\n }\n>;\n\nexport type ProviderMetadata = {\n name: string;\n icon: string;\n extensions: Partial<Record<Browsers, string>>;\n properties?: Array<\n | NamespacesProperty\n | DerivationPathProperty\n | DetailsProperty\n | SignersProperty\n >;\n};\n\nexport interface ProviderConfig {\n metadata: ProviderMetadata;\n}\n\nexport type ProviderInfo = ProviderConfig;\n\ninterface ProviderData {\n installed: boolean;\n}\n\ninterface ProviderItem {\n config: ProviderConfig;\n data: ProviderData;\n error: unknown;\n}\n\ntype ProviderState = {\n events: ConsumableEvents;\n list: Record<string, ProviderItem>;\n};\ninterface ProviderActions {\n addProvider: (id: string, config: ProviderConfig) => void;\n removeProvider: (id: string) => void;\n updateStatus: <K extends keyof ProviderData>(\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof ProviderData>(\n provider: ProviderItem,\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n}\n\ninterface ProviderSelectors {\n /**\n * Provider has a limited state to itself, to be compatible with legacy, we try to produce same object as legacy\n * which includes namespace state as well.\n */\n guessNamespacesState: (id: string) => InternalProviderState;\n}\n\nexport type ProviderStore = ProviderState & ProviderActions & ProviderSelectors;\ntype ProvidersStateCreator = StateCreator<State, [], [], ProviderStore>;\n\nconst providersStore: ProvidersStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addProvider: (id, config) => {\n const item = {\n data: {\n installed: false,\n },\n error: '',\n config,\n };\n\n set(\n produce((state: State) => {\n state.providers.list[id] = item;\n })\n );\n },\n removeProvider: (id) => {\n set(\n produce((state: State) => {\n delete state.providers.list[id];\n })\n );\n },\n updateStatus: (id, key, value) => {\n const provider = get().providers.list[id];\n if (!provider) {\n throw new Error(`No namespace namespace with '${id}' found.`);\n }\n\n get().providers._produceEventsWhenUpdatingStatus(provider, id, key, value);\n\n set(\n produce((state: State) => {\n state.providers.list[id].data[key] = value;\n })\n );\n },\n guessNamespacesState: (providerId: string): InternalProviderState => {\n return guessProviderStateSelector(get(), providerId);\n },\n\n _produceEventsWhenUpdatingStatus: (_provider, id, key, _value) => {\n if (key === 'installed') {\n const event: ProviderDetectedEvent = {\n type: 'provider_detected',\n provider: id,\n };\n\n get().providers.events.push(event);\n }\n },\n});\n\nexport { providersStore };\n", "import type { Actions, Context, Operators } from '../hub/namespaces/types.js';\nimport type { AnyFunction, FunctionWithContext } from '../types/actions.js';\n\nexport interface ActionByBuilder<T, Context> {\n actionName: keyof T;\n and: Operators<T>;\n or: Operators<T>;\n after: Operators<T>;\n before: Operators<T>;\n action: FunctionWithContext<T[keyof T], Context>;\n}\n\n/*\n * TODO:\n * Currently, to use this builder you will write something like this:\n * new ActionBuilder<EvmActions, 'disconnect'>('disconnect').after(....)\n *\n * I couldn't figure it out to be able typescript infer the constructor value as key of actions.\n * Ideal usage:\n * new ActionBuilder<EvmActions>('disconnect').after(....)\n *\n */\nexport class ActionBuilder<T extends Actions<T>, K extends keyof T> {\n readonly name: K;\n #and: Operators<T> = new Map();\n #or: Operators<T> = new Map();\n #after: Operators<T> = new Map();\n #before: Operators<T> = new Map();\n #action: FunctionWithContext<T[keyof T], Context<T>> | undefined;\n\n constructor(name: K) {\n this.name = name;\n }\n\n public and(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#and.has(this.name)) {\n this.#and.set(this.name, []);\n }\n this.#and.get(this.name)?.push(action);\n return this;\n }\n\n public or(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#or.has(this.name)) {\n this.#or.set(this.name, []);\n }\n this.#or.get(this.name)?.push(action);\n return this;\n }\n\n public before(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#before.has(this.name)) {\n this.#before.set(this.name, []);\n }\n this.#before.get(this.name)?.push(action);\n return this;\n }\n\n public after(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#after.has(this.name)) {\n this.#after.set(this.name, []);\n }\n this.#after.get(this.name)?.push(action);\n return this;\n }\n\n public action(action: FunctionWithContext<T[keyof T], Context<T>>) {\n this.#action = action;\n return this;\n }\n\n public build(): ActionByBuilder<T, Context<T>> {\n if (!this.#action) {\n throw new Error('Your action builder should includes an action.');\n }\n\n return {\n actionName: this.name,\n action: this.#action,\n before: this.#before,\n after: this.#after,\n and: this.#and,\n or: this.#or,\n };\n }\n}\n", "/*\n * It is not a good idea to re-export all of CAIP because if they have a breaking change, we will break as well.\n * It would be better to create an abstraction over them and export our own interface to ensure it is under our control.\n */\nexport * as CAIP from 'caip';\n\nexport { generateStoreId } from '../hub/helpers.js';\nexport * from './versions.js';\n", "/**\n * Standardizes an unknown error into an Error object and throws it.\n * If the input is already an Error, it's thrown directly.\n * Otherwise, a new Error is created with the input's message or string representation.\n *\n * @param e - The unknown error object.\n * @throws {Error} - The standardized Error object.\n */\nexport function parseErrorAndThrowStandardizeError(e: unknown): never {\n if (e instanceof Error) {\n throw e;\n }\n\n let errorMessage: string;\n if (\n typeof e === 'object' &&\n e !== null &&\n 'message' in e &&\n typeof e.message === 'string'\n ) {\n errorMessage = e.message;\n } else if (typeof e === 'string') {\n errorMessage = e;\n } else {\n errorMessage = String(e);\n }\n\n const err = new Error(errorMessage) as Error & {\n code?: unknown;\n data?: unknown;\n };\n\n if (typeof e === 'object' && e !== null) {\n if ('code' in e) {\n err.code = e.code;\n }\n if ('data' in e) {\n err.data = e.data;\n }\n }\n\n throw err;\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nimport { parseErrorAndThrowStandardizeError } from './utils.js';\n\n/**\n * Standardizes an unknown error into an Error object and throws it.\n * If the input is already an Error, it's thrown directly.\n * Otherwise, a new Error is created with the input's message or string representation.\n * Note: The parseErrorAndThrowStandardizeError function is defined as a separate function, so that it can be used independently.\n *\n * @param _context - The context.\n * @param e - The unknown error object.\n * @throws {Error} - The standardized Error object.\n */\nexport function standardizeAndThrowError(_context: Context, e: unknown): never {\n parseErrorAndThrowStandardizeError(e);\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnectionFinished(context: Context) {\n const [, setState] = context.state();\n setState('connecting', false);\n}\n\nexport const recommended = [['connect', intoConnectionFinished] as const];\n", "import type {\n Actions,\n Context,\n SubscriberCleanUp,\n} from '../../../hub/namespaces/types.js';\nimport type { Subscriber } from '../../../mod.js';\nimport type { AutoImplementedActionsByRecommended } from '../types.js';\n\ntype OnSwitchAccountEvent<EventType> = {\n payload: EventType;\n preventDefault: () => void;\n};\n\nexport class ChangeAccountSubscriberBuilder<\n EventType,\n ProviderAPI,\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n> {\n #getInstance: (() => ProviderAPI) | null = null;\n #format:\n | ((instance: ProviderAPI, event: EventType) => Promise<string[]>)\n | null = null;\n #onSwitchAccount:\n | ((\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void)\n | null = null;\n\n #addEventListener:\n | ((\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void)\n | null = null;\n #removeEventListener:\n | ((instance: ProviderAPI, callback: (event: EventType) => void) => void)\n | null = null;\n\n /**\n * Sets the function that provides the provider API instance.\n *\n * @param operator - Function that returns the provider API instance\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.getInstance(() => window.ethereum)\n * ```\n */\n public getInstance(operator: () => ProviderAPI) {\n this.#getInstance = operator;\n return this;\n }\n\n /**\n * Sets the formatter function that converts provider events to account strings.\n *\n * @param operator - Function that takes a provider instance and event, returns array of account strings\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.format(async (instance, event) => event.accounts || [])\n * ```\n */\n public format(\n operator: (instance: ProviderAPI, event: EventType) => Promise<string[]>\n ) {\n this.#format = operator;\n return this;\n }\n\n /**\n * Set a handler that runs whenever a **switch-account** event occurs.\n *\n * The provided operator is called with:\n * - `event`: An object containing:\n * - `payload`: The event payload associated with the account switch.\n * - `preventDefault`: A function that prevents the default switch-account\n * behavior (e.g., updating the active accounts list).\n * - `context`: The execution context of the current flow or action.\n *\n * Calling `event.preventDefault()` inside the handler cancels the built-in\n * account switching logic.\n *\n * @param operator - A function invoked on each switch-account event.\n * It receives `(event, context)` and can call `event.preventDefault()` to\n * stop the default behavior.\n *\n * @returns The builder instance for method chaining.\n *\n * @example\n * ```ts\n * builder.onSwitchAccount((event, context) => {\n * if (!event.payload.userConfirmed) {\n * event.preventDefault(); // cancel default account switch\n * }\n *\n * console.log(\"Switching account:\", event.payload.accountId);\n * });\n * ```\n */\n public onSwitchAccount(\n operator: (\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void\n ) {\n this.#onSwitchAccount = operator;\n return this;\n }\n\n /**\n * Sets the event listener attachment function.\n *\n * @param operator - Function that attaches an event listener and optionally returns a cleanup function\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.addEventListener((instance, callback) => {\n * return instance.on('accountsChanged', callback);\n * })\n * ```\n */\n public addEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void\n ) {\n this.#addEventListener = operator;\n return this;\n }\n\n /**\n * Sets the event listener removal function.\n *\n * @param operator - Function that removes an event listener from the provider\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.removeEventListener((instance, callback) => instance.off('accountsChanged', callback))\n * ```\n */\n public removeEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => void\n ) {\n this.#removeEventListener = operator;\n return this;\n }\n public build(): [Subscriber<ActionsType>, SubscriberCleanUp<ActionsType>] {\n if (this.#getInstance === null) {\n throw new Error(this.#getErrorMessage('getInstance'));\n }\n if (this.#format === null) {\n throw new Error(this.#getErrorMessage('format'));\n }\n if (this.#addEventListener === null) {\n throw new Error(this.#getErrorMessage('addEventListener'));\n }\n if (this.#removeEventListener === null) {\n throw new Error(this.#getErrorMessage('removeEventListener'));\n }\n\n /**\n * Capture current operator state at build time to ensure immutability.\n *\n * This creates a snapshot of all operators, preventing the built subscriber\n * from being affected by subsequent changes to the builder instance.\n * Each call to build() gets its own isolated set of operators, allowing\n * the builder to be reused for creating multiple independent subscribers.\n */\n const getInstance = this.#getInstance;\n const format = this.#format;\n const addEventListener = this.#addEventListener;\n const removeEventListener = this.#removeEventListener;\n const onSwitchAccount = this.#onSwitchAccount;\n\n let subscriber: (event: EventType) => void;\n let unsubscribe: (() => void) | void;\n return [\n async (context) => {\n const [, setState] = context.state();\n const instance = getInstance();\n\n if (!instance) {\n throw new Error(\n 'Trying to subscribe to your wallet, but seems its instance is not available.'\n );\n }\n subscriber = async (event) => {\n let shouldProceedWithDefault = true;\n onSwitchAccount?.(\n {\n payload: event,\n preventDefault: () => {\n shouldProceedWithDefault = false;\n },\n },\n context\n );\n if (!shouldProceedWithDefault) {\n return;\n }\n setState('accounts', await format(instance, event));\n };\n unsubscribe = addEventListener(instance, subscriber);\n },\n (_, err) => {\n /**\n * Call the cleanup function if addEventListener returned one.\n * This handles providers that return an unsubscribe function from their event listeners.\n */\n if (unsubscribe && typeof unsubscribe === 'function') {\n unsubscribe();\n }\n const instance = getInstance();\n\n /**\n * Always call removeEventListener as well to handle the on/off pattern.\n * This ensures cleanup works regardless of which pattern the provider uses.\n */\n removeEventListener(instance, subscriber);\n\n // subscriber can be passed to `or`, it will get the error and should rethrow error to pass the error to next `or` or throw error.\n return err;\n },\n ];\n }\n #getErrorMessage(operatorName: string) {\n return `Required \"${operatorName}\" operation has not been set for \"changeAccountSubscriber\"`;\n }\n}\n", "import { AccountId } from 'caip';\n\nexport function isValidCaipAddress(address: string): boolean {\n try {\n AccountId.parse(address);\n return true;\n } catch {\n return false;\n }\n}\n", "import type {\n Accounts,\n AccountsWithActiveChain,\n} from './../../types/accounts.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\n\nimport { isValidCaipAddress } from './helpers.js';\n\nexport function connectAndUpdateStateForSingleNetwork(\n context: Context,\n accounts: Accounts\n) {\n if (!accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts);\n setState('connected', true);\n return accounts;\n}\n\nexport function connectAndUpdateStateForMultiNetworks(\n context: Context,\n accounts: AccountsWithActiveChain\n) {\n if (!accounts.accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts.accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts.accounts);\n setState('network', accounts.network);\n setState('connected', true);\n return accounts;\n}\n\nexport const recommended = [];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnecting(context: Context) {\n const [, setState] = context.state();\n setState('connecting', true);\n}\n\n// Please consider if you are going to add something here, make sure it works on all namespaces.\nexport const recommended = [['connect', intoConnecting] as const];\n"],
5
+ "mappings": "6IAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,gBAAAC,IAEO,SAASC,EAAWC,EAAwB,CACjD,GAAM,CAAC,CAAEC,CAAQ,EAAID,EAAQ,MAAM,EACnCC,EAAS,UAAW,IAAI,EACxBA,EAAS,WAAY,IAAI,EACzBA,EAAS,YAAa,EAAK,EAC3BA,EAAS,aAAc,EAAK,EAC5BA,EAAS,cAAe,IAAI,CAC9B,CAPgBC,EAAAH,EAAA,cAST,IAAMI,EAAc,CAAC,CAAC,aAAcJ,CAAU,CAAU,ECX/D,IAAAK,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,ICEA,OAAS,eAAeC,OAA0B,kBCElD,OAAS,WAAAC,OAAe,QCCxB,OAAS,WAAAC,OAAe,QCiBjB,IAAMC,EAAN,KAA6D,CAtBpE,MAsBoE,CAAAC,EAAA,sBACzD,KACTC,GAAqB,IAAI,IACzBC,GAAoB,IAAI,IACxBC,GAAuB,IAAI,IAC3BC,GAAwB,IAAI,IAC5BC,GAEA,YAAYC,EAAS,CACnB,KAAK,KAAOA,CACd,CAEO,IAAIC,EAAsD,CAC/D,OAAK,KAAKN,GAAK,IAAI,KAAK,IAAI,GAC1B,KAAKA,GAAK,IAAI,KAAK,KAAM,CAAC,CAAC,EAE7B,KAAKA,GAAK,IAAI,KAAK,IAAI,GAAG,KAAKM,CAAM,EAC9B,IACT,CAEO,GAAGA,EAAsD,CAC9D,OAAK,KAAKL,GAAI,IAAI,KAAK,IAAI,GACzB,KAAKA,GAAI,IAAI,KAAK,KAAM,CAAC,CAAC,EAE5B,KAAKA,GAAI,IAAI,KAAK,IAAI,GAAG,KAAKK,CAAM,EAC7B,IACT,CAEO,OAAOA,EAAsD,CAClE,OAAK,KAAKH,GAAQ,IAAI,KAAK,IAAI,GAC7B,KAAKA,GAAQ,IAAI,KAAK,KAAM,CAAC,CAAC,EAEhC,KAAKA,GAAQ,IAAI,KAAK,IAAI,GAAG,KAAKG,CAAM,EACjC,IACT,CAEO,MAAMA,EAAsD,CACjE,OAAK,KAAKJ,GAAO,IAAI,KAAK,IAAI,GAC5B,KAAKA,GAAO,IAAI,KAAK,KAAM,CAAC,CAAC,EAE/B,KAAKA,GAAO,IAAI,KAAK,IAAI,GAAG,KAAKI,CAAM,EAChC,IACT,CAEO,OAAOA,EAAqD,CACjE,YAAKF,GAAUE,EACR,IACT,CAEO,OAAwC,CAC7C,GAAI,CAAC,KAAKF,GACR,MAAM,IAAI,MAAM,gDAAgD,EAGlE,MAAO,CACL,WAAY,KAAK,KACjB,OAAQ,KAAKA,GACb,OAAQ,KAAKD,GACb,MAAO,KAAKD,GACZ,IAAK,KAAKF,GACV,GAAI,KAAKC,EACX,CACF,CACF,ECjFA,UAAYM,OAAU,OLGf,IAAMC,EAAaC,EAAA,IAIxB,IAAIC,EACF,YACF,EAAE,OAAOF,CAAgB,EAND,cMCnB,SAASG,EAAmCC,EAAmB,CACpE,GAAIA,aAAa,MACf,MAAMA,EAGR,IAAIC,EAEF,OAAOD,GAAM,UACbA,IAAM,MACN,YAAaA,GACb,OAAOA,EAAE,SAAY,SAErBC,EAAeD,EAAE,QACR,OAAOA,GAAM,SACtBC,EAAeD,EAEfC,EAAe,OAAOD,CAAC,EAGzB,IAAME,EAAM,IAAI,MAAMD,CAAY,EAKlC,MAAI,OAAOD,GAAM,UAAYA,IAAM,OAC7B,SAAUA,IACZE,EAAI,KAAOF,EAAE,MAEX,SAAUA,IACZE,EAAI,KAAOF,EAAE,OAIXE,CACR,CAlCgBC,EAAAJ,EAAA,sCCMT,SAASK,EAAyBC,EAAmB,EAAmB,CAC7EC,EAAmC,CAAC,CACtC,CAFgBC,EAAAH,EAAA,4BCZT,SAASI,EAAuBC,EAAkB,CACvD,GAAM,CAAC,CAAEC,CAAQ,EAAID,EAAQ,MAAM,EACnCC,EAAS,aAAc,EAAK,CAC9B,CAHgBC,EAAAH,EAAA,0BAKT,IAAMI,EAAc,CAAC,CAAC,UAAWJ,CAAsB,CAAU,ECMjE,IAAMK,EAAN,KAKL,CAlBF,MAkBE,CAAAC,EAAA,uCACAC,GAA2C,KAC3CC,GAEW,KACXC,GAKW,KAEXC,GAKW,KACXC,GAEW,KAYJ,YAAYC,EAA6B,CAC9C,YAAKL,GAAeK,EACb,IACT,CAYO,OACLA,EACA,CACA,YAAKJ,GAAUI,EACR,IACT,CAgCO,gBACLA,EAIA,CACA,YAAKH,GAAmBG,EACjB,IACT,CAcO,iBACLA,EAIA,CACA,YAAKF,GAAoBE,EAClB,IACT,CAYO,oBACLA,EAIA,CACA,YAAKD,GAAuBC,EACrB,IACT,CACO,OAAmE,CACxE,GAAI,KAAKL,KAAiB,KACxB,MAAM,IAAI,MAAM,KAAKM,GAAiB,aAAa,CAAC,EAEtD,GAAI,KAAKL,KAAY,KACnB,MAAM,IAAI,MAAM,KAAKK,GAAiB,QAAQ,CAAC,EAEjD,GAAI,KAAKH,KAAsB,KAC7B,MAAM,IAAI,MAAM,KAAKG,GAAiB,kBAAkB,CAAC,EAE3D,GAAI,KAAKF,KAAyB,KAChC,MAAM,IAAI,MAAM,KAAKE,GAAiB,qBAAqB,CAAC,EAW9D,IAAMC,EAAc,KAAKP,GACnBQ,EAAS,KAAKP,GACdQ,EAAmB,KAAKN,GACxBO,EAAsB,KAAKN,GAC3BO,EAAkB,KAAKT,GAEzBU,EACAC,EACJ,MAAO,CACL,MAAOC,GAAY,CACjB,GAAM,CAAC,CAAEC,CAAQ,EAAID,EAAQ,MAAM,EAC7BE,EAAWT,EAAY,EAE7B,GAAI,CAACS,EACH,MAAM,IAAI,MACR,8EACF,EAEFJ,EAAab,EAAA,MAAOkB,GAAU,CAC5B,IAAIC,EAA2B,GAC/BP,IACE,CACE,QAASM,EACT,eAAgB,IAAM,CACpBC,EAA2B,EAC7B,CACF,EACAJ,CACF,EACKI,GAGLH,EAAS,WAAY,MAAMP,EAAOQ,EAAUC,CAAK,CAAC,CACpD,EAfa,cAgBbJ,EAAcJ,EAAiBO,EAAUJ,CAAU,CACrD,EACA,CAACO,EAAGC,IAAQ,CAKNP,GAAe,OAAOA,GAAgB,YACxCA,EAAY,EAEd,IAAMG,EAAWT,EAAY,EAM7B,OAAAG,EAAoBM,EAAUJ,CAAU,EAGjCQ,CACT,CACF,CACF,CACAd,GAAiBe,EAAsB,CACrC,MAAO,aAAaA,CAAY,4DAClC,CACF,EC3OA,OAAS,aAAAC,MAAiB,OAEnB,SAASC,EAAmBC,EAA0B,CAC3D,GAAI,CACF,OAAAC,EAAU,MAAMD,CAAO,EAChB,EACT,MAAQ,CACN,MAAO,EACT,CACF,CAPgBE,EAAAH,EAAA,sBCMT,SAASI,EACdC,EACAC,EACA,CACA,GAAI,CAACA,EAAS,MAAMC,CAAkB,EACpC,MAAM,IAAI,MACR,4FAA4FD,CAAQ,EACtG,EAGF,GAAM,CAAC,CAAEE,CAAQ,EAAIH,EAAQ,MAAM,EACnC,OAAAG,EAAS,WAAYF,CAAQ,EAC7BE,EAAS,YAAa,EAAI,EACnBF,CACT,CAdgBG,EAAAL,EAAA,yCAgBT,SAASM,EACdL,EACAC,EACA,CACA,GAAI,CAACA,EAAS,SAAS,MAAMC,CAAkB,EAC7C,MAAM,IAAI,MACR,4FAA4FD,EAAS,QAAQ,EAC/G,EAGF,GAAM,CAAC,CAAEE,CAAQ,EAAIH,EAAQ,MAAM,EACnC,OAAAG,EAAS,WAAYF,EAAS,QAAQ,EACtCE,EAAS,UAAWF,EAAS,OAAO,EACpCE,EAAS,YAAa,EAAI,EACnBF,CACT,CAfgBG,EAAAC,EAAA,yCAiBT,IAAMC,EAAc,CAAC,ECvCrB,SAASC,EAAeC,EAAkB,CAC/C,GAAM,CAAC,CAAEC,CAAQ,EAAID,EAAQ,MAAM,EACnCC,EAAS,aAAc,EAAI,CAC7B,CAHgBC,EAAAH,EAAA,kBAMT,IAAMI,EAAc,CAAC,CAAC,UAAWJ,CAAc,CAAU",
6
6
  "names": ["actions_exports", "__export", "disconnect", "recommended", "disconnect", "context", "setState", "__name", "recommended", "builders_exports", "__export", "disconnect", "createZustandStore", "produce", "produce", "ActionBuilder", "__name", "#and", "#or", "#after", "#before", "#action", "name", "action", "CAIP", "disconnect", "__name", "ActionBuilder", "parseErrorAndThrowStandardizeError", "e", "errorMessage", "err", "__name", "standardizeAndThrowError", "_context", "parseErrorAndThrowStandardizeError", "__name", "intoConnectionFinished", "context", "setState", "__name", "recommended", "ChangeAccountSubscriberBuilder", "__name", "#getInstance", "#format", "#onSwitchAccount", "#addEventListener", "#removeEventListener", "operator", "#getErrorMessage", "getInstance", "format", "addEventListener", "removeEventListener", "onSwitchAccount", "subscriber", "unsubscribe", "context", "setState", "instance", "event", "shouldProceedWithDefault", "_", "err", "operatorName", "AccountId", "isValidCaipAddress", "address", "AccountId", "__name", "connectAndUpdateStateForSingleNetwork", "context", "accounts", "isValidCaipAddress", "setState", "__name", "connectAndUpdateStateForMultiNetworks", "recommended", "intoConnecting", "context", "setState", "__name", "recommended"]
7
7
  }
@@ -1 +1 @@
1
- {"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/namespaces/evm/actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAWlE,eAAO,MAAM,WAAW,+EAAyB,CAAC;AAClD,wBAAgB,OAAO,CACrB,QAAQ,EAAE,MAAM,WAAW,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,mBAAmB,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,CA8CrD;AAED,wBAAgB,eAAe,CAC7B,QAAQ,EAAE,MAAM,WAAW,GAAG,SAAS,GACtC,eAAe,CAAC,UAAU,CAAC,CAsB7B;AACD,wBAAgB,gBAAgB,IAAI,mBAAmB,CACrD,UAAU,CAAC,kBAAkB,CAAC,EAC9B,OAAO,CACR,CAKA;AAED,wBAAgB,UAAU,CACxB,QAAQ,EAAE,MAAM,WAAW,GAAG,SAAS,GACtC,mBAAmB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,OAAO,CAAC,CAYxD"}
1
+ {"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/namespaces/evm/actions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAWlE,eAAO,MAAM,WAAW,+EAAyB,CAAC;AAClD,wBAAgB,OAAO,CACrB,QAAQ,EAAE,MAAM,WAAW,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,mBAAmB,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,CAiDrD;AAED,wBAAgB,eAAe,CAC7B,QAAQ,EAAE,MAAM,WAAW,GAAG,SAAS,GACtC,eAAe,CAAC,UAAU,CAAC,CAsB7B;AACD,wBAAgB,gBAAgB,IAAI,mBAAmB,CACrD,UAAU,CAAC,kBAAkB,CAAC,EAC9B,OAAO,CACR,CAKA;AAED,wBAAgB,UAAU,CACxB,QAAQ,EAAE,MAAM,WAAW,GAAG,SAAS,GACtC,mBAAmB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,OAAO,CAAC,CAYxD"}
@@ -4,6 +4,6 @@ import { ChangeAccountSubscriberBuilder } from '../common/hooks/changeAccountSub
4
4
  export declare const connect: () => ActionBuilder<EvmActions, "connect">;
5
5
  export declare const canEagerConnect: () => ActionBuilder<EvmActions, "canEagerConnect">;
6
6
  export declare const canSwitchNetwork: () => ActionBuilder<EvmActions, "canSwitchNetwork">;
7
- export declare const changeAccountSubscriber: (getInstance: () => ProviderAPI) => ChangeAccountSubscriberBuilder<string[], import("./eip1193.js").EIP1193Provider>;
7
+ export declare const changeAccountSubscriber: (getInstance: () => ProviderAPI) => ChangeAccountSubscriberBuilder<string[], import("./eip1193.js").EIP1193Provider, EvmActions>;
8
8
  export declare const getChainId: () => ActionBuilder<EvmActions, "getChainId">;
9
9
  //# sourceMappingURL=builders.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"builders.d.ts","sourceRoot":"","sources":["../../../src/namespaces/evm/builders.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAU5F,eAAO,MAAM,OAAO,4CAIc,CAAC;AAEnC,eAAO,MAAM,eAAe,oDACyC,CAAC;AACtE,eAAO,MAAM,gBAAgB,qDAC0C,CAAC;AAGxE,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAW,qFAuBhE,CAAC;AAEP,eAAO,MAAM,UAAU,+CACoC,CAAC"}
1
+ {"version":3,"file":"builders.d.ts","sourceRoot":"","sources":["../../../src/namespaces/evm/builders.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAU5F,eAAO,MAAM,OAAO,4CAIc,CAAC;AAEnC,eAAO,MAAM,eAAe,oDACyC,CAAC;AACtE,eAAO,MAAM,gBAAgB,qDAC0C,CAAC;AAGxE,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAW,iGAuBhE,CAAC;AAEP,eAAO,MAAM,UAAU,+CACoC,CAAC"}
@@ -1,2 +1,2 @@
1
- var _=Object.defineProperty;var t=(o,e)=>_(o,"name",{value:e,configurable:!0});var c=(o,e)=>{for(var r in e)_(o,r,{get:e[r],enumerable:!0})};var M={};c(M,{canEagerConnect:()=>te,canSwitchNetwork:()=>oe,connect:()=>ee,getChainId:()=>re,recommended:()=>Z});function O(o){let[,e]=o.state();e("network",null),e("accounts",null),e("connected",!1),e("connecting",!1)}t(O,"disconnect");var j=[["disconnect",O]];var V={};c(V,{filterAndGetEvmBlockchainNames:()=>C,formatAccountsToCAIP:()=>p,getAccounts:()=>b,isUserRejectionError:()=>X,suggestNetwork:()=>K,switchNetwork:()=>D,switchOrAddNetwork:()=>w});import{AccountId as G}from"caip";import{evmBlockchains as J}from"rango-types";var A="eip155",z="1";var Q=16;async function b(o){let[e,r]=await Promise.all([o.request({method:"eth_requestAccounts"}),o.request({method:"eth_chainId"})]),n=r;return typeof n=="number"&&(n=`0x${Number(r).toString(Q)}`),{accounts:e,chainId:n}}t(b,"getAccounts");async function K(o,e){return await o.request({method:"wallet_addEthereumChain",params:[e]})}t(K,"suggestNetwork");async function D(o,e){return await o.request({method:"wallet_switchEthereumChain",params:[{chainId:e}]})}t(D,"switchNetwork");function C(o){return J(o).map(e=>e.name)}t(C,"filterAndGetEvmBlockchainNames");async function w(o,e){try{let r=typeof e=="string"?e:e.chainId;await D(o,r)}catch(r){let n=r;if(typeof e!="string"&&(n.code===4902||!n.code)){await K(o,e);return}throw r}}t(w,"switchOrAddNetwork");var F=4001;function X(o){if(typeof o=="object"&&o!==null){let e=o.code,r=o.cause?.code;return e===F||r===F}return!1}t(X,"isUserRejectionError");function p(o,e){return o.map(r=>G.format({address:r,chainId:{namespace:A,reference:e}}))}t(p,"formatAccountsToCAIP");var Z=[...j];function ee(o,e){return async(r,n)=>{let i=o();if(!i)throw new Error("Do your wallet injected correctly and is evm compatible?");n&&(e?.switchOrAddNetwork?await e.switchOrAddNetwork(i,n):await w(i,n));let a=await b(i);if(!a.accounts||!a.accounts.length)throw new Error("No accounts were returned by the provider. Please make sure your wallet has an active EVM-compatible account selected.");return{accounts:p(a.accounts,a.chainId),network:a.chainId}}}t(ee,"connect");function te(o){return async()=>{let e=o();if(!e)throw new Error("Trying to eagerly connect to your EVM wallet, but seems its instance is not available.");try{return!!(await e.request({method:"eth_accounts"})).length}catch{return!1}}}t(te,"canEagerConnect");function oe(){return(o,e)=>{let{network:r,supportedChains:n}=e;return C(n).includes(r)}}t(oe,"canSwitchNetwork");function re(o){return async()=>{let e=o();if(!e)throw new Error("Trying to get chain id from your EVM wallet, but instance is not available.");return e.request({method:"eth_chainId"})}}t(re,"getChainId");var W={};c(W,{changeAccountSubscriber:()=>ne,changeChainSubscriber:()=>se});function ne(o){return l.changeAccountSubscriber(o).build()}t(ne,"changeAccountSubscriber");function se(o){let e;return[r=>{let n=o();if(!n)throw new Error("Trying to subscribe to your EVM wallet, but seems its instance is not available.");let[,i]=r.state();e=t(async a=>{i("network",a)},"eventCallback"),n.on("chainChanged",e)},()=>{let r=o();e&&r&&r.removeListener("chainChanged",e)}]}t(se,"changeChainSubscriber");var U={};c(U,{recommended:()=>ie});function v(o){let[,e]=o.state();e("connecting",!1)}t(v,"intoConnectionFinished");var E=[["connect",v]];var ie=[...E];var $={};c($,{recommended:()=>he});import{createStore as Tt}from"zustand/vanilla";import{produce as ft}from"immer";import{produce as xt}from"immer";var s=class{static{t(this,"ActionBuilder")}name;#e=new Map;#t=new Map;#r=new Map;#o=new Map;#n;constructor(e){this.name=e}and(e){return this.#e.has(this.name)||this.#e.set(this.name,[]),this.#e.get(this.name)?.push(e),this}or(e){return this.#t.has(this.name)||this.#t.set(this.name,[]),this.#t.get(this.name)?.push(e),this}before(e){return this.#o.has(this.name)||this.#o.set(this.name,[]),this.#o.get(this.name)?.push(e),this}after(e){return this.#r.has(this.name)||this.#r.set(this.name,[]),this.#r.get(this.name)?.push(e),this}action(e){return this.#n=e,this}build(){if(!this.#n)throw new Error("Your action builder should includes an action.");return{actionName:this.name,action:this.#n,before:this.#o,after:this.#r,and:this.#e,or:this.#t}}};import*as io from"caip";var u=class{static{t(this,"ChangeAccountSubscriberBuilder")}#e=null;#t=null;#r=null;#o=null;#n=null;getInstance(e){return this.#e=e,this}format(e){return this.#t=e,this}onSwitchAccount(e){return this.#r=e,this}addEventListener(e){return this.#o=e,this}removeEventListener(e){return this.#n=e,this}build(){if(this.#e===null)throw new Error(this.#s("getInstance"));if(this.#t===null)throw new Error(this.#s("format"));if(this.#o===null)throw new Error(this.#s("addEventListener"));if(this.#n===null)throw new Error(this.#s("removeEventListener"));let e=this.#e,r=this.#t,n=this.#o,i=this.#n,a=this.#r,f,h;return[async x=>{let[,S]=x.state(),d=e();if(!d)throw new Error("Trying to subscribe to your wallet, but seems its instance is not available.");f=t(async k=>{let R=!0;a?.({payload:k,preventDefault:()=>{R=!1}},x),R&&S("accounts",await r(d,k))},"subscriber"),h=n(d,f)},(x,S)=>{h&&typeof h=="function"&&h();let d=e();return i(d,f),S}]}#s(e){return`Required "${e}" operation has not been set for "changeAccountSubscriber"`}};import{AccountId as fe}from"caip";function L(o){try{return fe.parse(o),!0}catch{return!1}}t(L,"isValidCaipAddress");function m(o,e){if(!e.accounts.every(L))throw new Error(`Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${e.accounts}`);let[,r]=o.state();return r("accounts",e.accounts),r("network",e.network),r("connected",!0),e}t(m,"connectAndUpdateStateForMultiNetworks");function g(o){let[,e]=o.state();e("connecting",!0)}t(g,"intoConnecting");var T=[["connect",g]];var he=[["connect",m]];var Y={};c(Y,{recommended:()=>le});var le=[...T];var l={};c(l,{canEagerConnect:()=>ye,canSwitchNetwork:()=>ge,changeAccountSubscriber:()=>xe,connect:()=>ve,getChainId:()=>Se});var ve=t(()=>new s("connect").and(m).before(g).after(v),"connect"),ye=t(()=>new s("canEagerConnect"),"canEagerConnect"),ge=t(()=>new s("canSwitchNetwork"),"canSwitchNetwork"),xe=t(o=>new u().getInstance(o).onSwitchAccount((e,r)=>{(!e.payload||!e.payload.length)&&(r.action("disconnect"),e.preventDefault())}).format(async(e,r)=>{let n=await e.request({method:"eth_chainId"});return p(r,n)}).addEventListener((e,r)=>{e.on("accountsChanged",r)}).removeEventListener((e,r)=>{e.removeListener?.("accountsChanged",r)}),"changeAccountSubscriber"),Se=t(()=>new s("getChainId"),"getChainId");export{z as CAIP_ETHEREUM_CHAIN_ID,A as CAIP_NAMESPACE,M as actions,U as after,$ as and,Y as before,l as builders,W as hooks,V as utils};
1
+ var _=Object.defineProperty;var t=(o,e)=>_(o,"name",{value:e,configurable:!0});var c=(o,e)=>{for(var r in e)_(o,r,{get:e[r],enumerable:!0})};var M={};c(M,{canEagerConnect:()=>te,canSwitchNetwork:()=>oe,connect:()=>ee,getChainId:()=>re,recommended:()=>Z});function O(o){let[,e]=o.state();e("network",null),e("accounts",null),e("connected",!1),e("connecting",!1),e("connectArgs",null)}t(O,"disconnect");var j=[["disconnect",O]];var V={};c(V,{filterAndGetEvmBlockchainNames:()=>C,formatAccountsToCAIP:()=>m,getAccounts:()=>b,isUserRejectionError:()=>X,suggestNetwork:()=>K,switchNetwork:()=>D,switchOrAddNetwork:()=>w});import{AccountId as G}from"caip";import{evmBlockchains as J}from"rango-types";var A="eip155",z="1";var Q=16;async function b(o){let[e,r]=await Promise.all([o.request({method:"eth_requestAccounts"}),o.request({method:"eth_chainId"})]),n=r;return typeof n=="number"&&(n=`0x${Number(r).toString(Q)}`),{accounts:e,chainId:n}}t(b,"getAccounts");async function K(o,e){return await o.request({method:"wallet_addEthereumChain",params:[e]})}t(K,"suggestNetwork");async function D(o,e){return await o.request({method:"wallet_switchEthereumChain",params:[{chainId:e}]})}t(D,"switchNetwork");function C(o){return J(o).map(e=>e.name)}t(C,"filterAndGetEvmBlockchainNames");async function w(o,e){try{let r=typeof e=="string"?e:e.chainId;await D(o,r)}catch(r){let n=r;if(typeof e!="string"&&(n.code===4902||!n.code)){await K(o,e);return}throw r}}t(w,"switchOrAddNetwork");var F=4001;function X(o){if(typeof o=="object"&&o!==null){let e=o.code,r=o.cause?.code;return e===F||r===F}return!1}t(X,"isUserRejectionError");function m(o,e){return o.map(r=>G.format({address:r,chainId:{namespace:A,reference:e}}))}t(m,"formatAccountsToCAIP");var Z=[...j];function ee(o,e){return async(r,n)=>{let[,d]=r.state();d("connectArgs",{chain:n});let a=o();if(!a)throw new Error("Do your wallet injected correctly and is evm compatible?");n&&(e?.switchOrAddNetwork?await e.switchOrAddNetwork(a,n):await w(a,n));let i=await b(a);if(!i.accounts||!i.accounts.length)throw new Error("No accounts were returned by the provider. Please make sure your wallet has an active EVM-compatible account selected.");return{accounts:m(i.accounts,i.chainId),network:i.chainId}}}t(ee,"connect");function te(o){return async()=>{let e=o();if(!e)throw new Error("Trying to eagerly connect to your EVM wallet, but seems its instance is not available.");try{return!!(await e.request({method:"eth_accounts"})).length}catch{return!1}}}t(te,"canEagerConnect");function oe(){return(o,e)=>{let{network:r,supportedChains:n}=e;return C(n).includes(r)}}t(oe,"canSwitchNetwork");function re(o){return async()=>{let e=o();if(!e)throw new Error("Trying to get chain id from your EVM wallet, but instance is not available.");return e.request({method:"eth_chainId"})}}t(re,"getChainId");var W={};c(W,{changeAccountSubscriber:()=>ne,changeChainSubscriber:()=>se});function ne(o){return l.changeAccountSubscriber(o).build()}t(ne,"changeAccountSubscriber");function se(o){let e;return[r=>{let n=o();if(!n)throw new Error("Trying to subscribe to your EVM wallet, but seems its instance is not available.");let[,d]=r.state();e=t(async a=>{d("network",a)},"eventCallback"),n.on("chainChanged",e)},()=>{let r=o();e&&r&&r.removeListener("chainChanged",e)}]}t(se,"changeChainSubscriber");var U={};c(U,{recommended:()=>ie});function v(o){let[,e]=o.state();e("connecting",!1)}t(v,"intoConnectionFinished");var E=[["connect",v]];var ie=[...E];var $={};c($,{recommended:()=>he});import{createStore as Tt}from"zustand/vanilla";import{produce as ft}from"immer";import{produce as xt}from"immer";var s=class{static{t(this,"ActionBuilder")}name;#e=new Map;#t=new Map;#r=new Map;#o=new Map;#n;constructor(e){this.name=e}and(e){return this.#e.has(this.name)||this.#e.set(this.name,[]),this.#e.get(this.name)?.push(e),this}or(e){return this.#t.has(this.name)||this.#t.set(this.name,[]),this.#t.get(this.name)?.push(e),this}before(e){return this.#o.has(this.name)||this.#o.set(this.name,[]),this.#o.get(this.name)?.push(e),this}after(e){return this.#r.has(this.name)||this.#r.set(this.name,[]),this.#r.get(this.name)?.push(e),this}action(e){return this.#n=e,this}build(){if(!this.#n)throw new Error("Your action builder should includes an action.");return{actionName:this.name,action:this.#n,before:this.#o,after:this.#r,and:this.#e,or:this.#t}}};import*as io from"caip";var f=class{static{t(this,"ChangeAccountSubscriberBuilder")}#e=null;#t=null;#r=null;#o=null;#n=null;getInstance(e){return this.#e=e,this}format(e){return this.#t=e,this}onSwitchAccount(e){return this.#r=e,this}addEventListener(e){return this.#o=e,this}removeEventListener(e){return this.#n=e,this}build(){if(this.#e===null)throw new Error(this.#s("getInstance"));if(this.#t===null)throw new Error(this.#s("format"));if(this.#o===null)throw new Error(this.#s("addEventListener"));if(this.#n===null)throw new Error(this.#s("removeEventListener"));let e=this.#e,r=this.#t,n=this.#o,d=this.#n,a=this.#r,i,p;return[async x=>{let[,S]=x.state(),u=e();if(!u)throw new Error("Trying to subscribe to your wallet, but seems its instance is not available.");i=t(async k=>{let R=!0;a?.({payload:k,preventDefault:()=>{R=!1}},x),R&&S("accounts",await r(u,k))},"subscriber"),p=n(u,i)},(x,S)=>{p&&typeof p=="function"&&p();let u=e();return d(u,i),S}]}#s(e){return`Required "${e}" operation has not been set for "changeAccountSubscriber"`}};import{AccountId as fe}from"caip";function L(o){try{return fe.parse(o),!0}catch{return!1}}t(L,"isValidCaipAddress");function h(o,e){if(!e.accounts.every(L))throw new Error(`Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${e.accounts}`);let[,r]=o.state();return r("accounts",e.accounts),r("network",e.network),r("connected",!0),e}t(h,"connectAndUpdateStateForMultiNetworks");function g(o){let[,e]=o.state();e("connecting",!0)}t(g,"intoConnecting");var T=[["connect",g]];var he=[["connect",h]];var Y={};c(Y,{recommended:()=>le});var le=[...T];var l={};c(l,{canEagerConnect:()=>ye,canSwitchNetwork:()=>ge,changeAccountSubscriber:()=>xe,connect:()=>ve,getChainId:()=>Se});var ve=t(()=>new s("connect").and(h).before(g).after(v),"connect"),ye=t(()=>new s("canEagerConnect"),"canEagerConnect"),ge=t(()=>new s("canSwitchNetwork"),"canSwitchNetwork"),xe=t(o=>new f().getInstance(o).onSwitchAccount((e,r)=>{(!e.payload||!e.payload.length)&&(r.action("disconnect"),e.preventDefault())}).format(async(e,r)=>{let n=await e.request({method:"eth_chainId"});return m(r,n)}).addEventListener((e,r)=>{e.on("accountsChanged",r)}).removeEventListener((e,r)=>{e.removeListener?.("accountsChanged",r)}),"changeAccountSubscriber"),Se=t(()=>new s("getChainId"),"getChainId");export{z as CAIP_ETHEREUM_CHAIN_ID,A as CAIP_NAMESPACE,M as actions,U as after,$ as and,Y as before,l as builders,W as hooks,V as utils};
2
2
  //# sourceMappingURL=mod.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/namespaces/evm/actions.ts", "../../../src/namespaces/common/actions.ts", "../../../src/namespaces/evm/utils.ts", "../../../src/namespaces/evm/constants.ts", "../../../src/namespaces/evm/hooks.ts", "../../../src/namespaces/evm/after.ts", "../../../src/namespaces/common/after.ts", "../../../src/namespaces/evm/and.ts", "../../../src/hub/store/store.ts", "../../../src/hub/store/namespaces.ts", "../../../src/hub/store/providers.ts", "../../../src/builders/action.ts", "../../../src/utils/mod.ts", "../../../src/namespaces/common/hooks/changeAccountSubscriber.ts", "../../../src/namespaces/common/helpers.ts", "../../../src/namespaces/common/and.ts", "../../../src/namespaces/common/before.ts", "../../../src/namespaces/evm/before.ts", "../../../src/namespaces/evm/builders.ts"],
4
- "sourcesContent": ["import type { ConnectOptions, EvmActions, ProviderAPI } from './types.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\nimport type { CanEagerConnect } from '../../hub/namespaces/types.js';\nimport type { FunctionWithContext } from '../../types/actions.js';\n\nimport { recommended as commonRecommended } from '../common/actions.js';\n\nimport {\n filterAndGetEvmBlockchainNames,\n formatAccountsToCAIP,\n getAccounts,\n switchOrAddNetwork,\n} from './utils.js';\n\nexport const recommended = [...commonRecommended];\nexport function connect(\n instance: () => ProviderAPI,\n options?: ConnectOptions\n): FunctionWithContext<EvmActions['connect'], Context> {\n return async (_context, chain) => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Do your wallet injected correctly and is evm compatible?'\n );\n }\n\n if (chain) {\n /*\n * The `switchOrAddNetwork` function can be optionally provided through `options`\n * to handle network switching or addition in a way that is compatible with the specific wallet provider.\n * This approach is necessary because not all providers follow the same conventions\u2014\n * for example, Rabby uses a different error code for \"chain not found\".\n */\n if (options?.switchOrAddNetwork) {\n await options.switchOrAddNetwork(evmInstance, chain);\n } else {\n await switchOrAddNetwork(evmInstance, chain);\n }\n }\n\n const providerAccounts = await getAccounts(evmInstance);\n\n /*\n * Ensure that the provider returns at least one valid account before proceeding.\n * This prevents cases (e.g., MetaMask bug) where a user connects with an account\n * that has no associated EVM address, leaving the dApp without any usable accounts.\n */\n if (!providerAccounts.accounts || !providerAccounts.accounts.length) {\n throw new Error(\n 'No accounts were returned by the provider. Please make sure your wallet has an active EVM-compatible account selected.'\n );\n }\n const formattedAccounts = formatAccountsToCAIP(\n providerAccounts.accounts,\n providerAccounts.chainId\n );\n\n return {\n accounts: formattedAccounts,\n network: providerAccounts.chainId,\n };\n };\n}\n\nexport function canEagerConnect(\n instance: () => ProviderAPI | undefined\n): CanEagerConnect<EvmActions> {\n return async () => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to eagerly connect to your EVM wallet, but seems its instance is not available.'\n );\n }\n\n try {\n const accounts: string[] = await evmInstance.request({\n method: 'eth_accounts',\n });\n if (accounts.length) {\n return true;\n }\n return false;\n } catch {\n return false;\n }\n };\n}\nexport function canSwitchNetwork(): FunctionWithContext<\n EvmActions['canSwitchNetwork'],\n Context\n> {\n return (context, params) => {\n const { network, supportedChains } = params;\n return filterAndGetEvmBlockchainNames(supportedChains).includes(network);\n };\n}\n\nexport function getChainId(\n instance: () => ProviderAPI | undefined\n): FunctionWithContext<EvmActions['getChainId'], Context> {\n return async () => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to get chain id from your EVM wallet, but instance is not available.'\n );\n }\n\n return evmInstance.request({ method: 'eth_chainId' });\n };\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function disconnect(context: Context): void {\n const [, setState] = context.state();\n setState('network', null);\n setState('accounts', null);\n setState('connected', false);\n setState('connecting', false);\n}\n\nexport const recommended = [['disconnect', disconnect] as const];\n", "import type { Chain, ChainId, ProviderAPI } from './types.js';\nimport type { CaipAccount } from '../../types/accounts.js';\n\nimport { AccountId } from 'caip';\nimport { type BlockchainMeta, evmBlockchains } from 'rango-types';\n\nimport { CAIP_NAMESPACE } from './constants.js';\n\nconst CHAIN_ID_RADIX = 16;\n\nexport async function getAccounts(provider: ProviderAPI) {\n const [accounts, chainId] = await Promise.all([\n provider.request({ method: 'eth_requestAccounts' }),\n provider.request({ method: 'eth_chainId' }),\n ]);\n /*\n * Trust Wallet Compatibility Fix:\n * Trust Wallet's in-app browser has been observed to return the `chainId` as a\n * number (e.g., 1) rather than the standard hexadecimal string (e.g., \"0x1\").\n * This code block standardizes the `chainId` to the required hex format to\n * prevent downstream errors.\n */\n let standardChainId = chainId;\n if (typeof standardChainId === 'number') {\n standardChainId = `0x${Number(chainId).toString(CHAIN_ID_RADIX)}`;\n }\n\n return {\n accounts,\n chainId: standardChainId,\n };\n}\n\nexport async function suggestNetwork(instance: ProviderAPI, chain: Chain) {\n return await instance.request({\n method: 'wallet_addEthereumChain',\n params: [chain],\n });\n}\n\nexport async function switchNetwork(instance: ProviderAPI, chainId: ChainId) {\n return await instance.request({\n method: 'wallet_switchEthereumChain',\n params: [{ chainId: chainId }],\n });\n}\nexport function filterAndGetEvmBlockchainNames(meta: BlockchainMeta[]) {\n return evmBlockchains(meta).map((blockchain) => blockchain.name);\n}\nexport async function switchOrAddNetwork(\n instance: ProviderAPI,\n chain: ChainId | Chain\n) {\n try {\n const chainId = typeof chain === 'string' ? chain : chain.chainId;\n await switchNetwork(instance, chainId);\n } catch (switchError) {\n const error = switchError as { code: number };\n\n /*\n * Error code 4902 is used by MetaMask to indicate that the requested chain has not been added to the wallet.\n * This code is not part of the official EIP-1193 spec (https://eips.ethereum.org/EIPS/eip-1193#supported-rpc-methods),\n * so other providers may use a different code or behavior for the same condition.\n */\n const NOT_FOUND_CHAIN_ERROR_CODE = 4902;\n if (\n typeof chain !== 'string' &&\n (error.code === NOT_FOUND_CHAIN_ERROR_CODE || !error.code)\n ) {\n /*\n * Note: on WalletConnect `code` is undefined so we have to use !switchError.code as fallback.\n * This error code indicates that the chain has not been added to wallet.\n */\n await suggestNetwork(instance, chain);\n return;\n }\n throw switchError;\n }\n}\n\nconst EIP_1193_USER_REJECTION_ERROR_CODE = 4001;\nexport function isUserRejectionError(error: unknown): boolean {\n // EIP-1193 user rejection error can be in error.code or error.cause.code\n if (typeof error === 'object' && error !== null) {\n const code = (error as { code?: number }).code;\n const causeCode = (error as { cause?: { code?: number } }).cause?.code;\n return (\n code === EIP_1193_USER_REJECTION_ERROR_CODE ||\n causeCode === EIP_1193_USER_REJECTION_ERROR_CODE\n );\n }\n return false;\n}\n\nexport function formatAccountsToCAIP(accounts: string[], chainId: string) {\n return accounts.map(\n (account) =>\n AccountId.format({\n address: account,\n chainId: {\n namespace: CAIP_NAMESPACE,\n reference: chainId,\n },\n }) as CaipAccount\n );\n}\n", "export const CAIP_NAMESPACE = 'eip155';\nexport const CAIP_ETHEREUM_CHAIN_ID = '1';\n", "import type { EIP1193EventMap } from './eip1193.js';\nimport type { EvmActions, ProviderAPI } from './types.js';\nimport type { Subscriber, SubscriberCleanUp } from '../../mod.js';\n\nimport { builders } from './mod.js';\n\nexport function changeAccountSubscriber(\n instance: () => ProviderAPI\n): [Subscriber<EvmActions>, SubscriberCleanUp<EvmActions>] {\n return builders.changeAccountSubscriber(instance).build();\n}\n\nexport function changeChainSubscriber(\n instance: () => ProviderAPI\n): [Subscriber<EvmActions>, SubscriberCleanUp<EvmActions>] {\n let eventCallback: EIP1193EventMap['chainChanged'];\n\n return [\n (context) => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to subscribe to your EVM wallet, but seems its instance is not available.'\n );\n }\n\n const [, setState] = context.state();\n\n eventCallback = async (chainId: string) => {\n setState('network', chainId);\n };\n evmInstance.on('chainChanged', eventCallback);\n },\n () => {\n const evmInstance = instance();\n\n if (eventCallback && evmInstance) {\n evmInstance.removeListener('chainChanged', eventCallback);\n }\n },\n ];\n}\n", "import { recommended as commonRecommended } from '../common/after.js';\n\nexport const recommended = [...commonRecommended];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnectionFinished(context: Context) {\n const [, setState] = context.state();\n setState('connecting', false);\n}\n\nexport const recommended = [['connect', intoConnectionFinished] as const];\n", "import { connectAndUpdateStateForMultiNetworks } from '../common/mod.js';\n\nexport const recommended = [\n ['connect', connectAndUpdateStateForMultiNetworks] as const,\n];\n", "import type { StoreApi } from 'zustand/vanilla';\n\nimport { createStore as createZustandStore } from 'zustand/vanilla';\n\nimport { extend, type Store } from './extend.js';\nimport { hubStore, type HubStore } from './hub.js';\nimport { namespacesStore, type NamespaceStore } from './namespaces.js';\nimport { providersStore, type ProviderStore } from './providers.js';\n\n/************ State ************/\n\nexport interface State {\n hub: HubStore;\n providers: ProviderStore;\n namespaces: NamespaceStore;\n}\n\nexport type RawStore = StoreApi<State>;\n\nexport const createStore = (): Store => {\n const store = createZustandStore<State>((...api) => {\n return {\n hub: hubStore(...api),\n providers: providersStore(...api),\n namespaces: namespacesStore(...api),\n };\n });\n\n return extend(store);\n};\n", "/************ Namespace ************/\n\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport {\n ConsumableEvents,\n type NamespaceConnectedEvent,\n type NamespaceDisconnectedEvent,\n type NamespaceSwitchedAccountEvent,\n type NamespaceSwitchedNetworkEvent,\n} from './events.js';\nimport { namespaceStateSelector, type State } from './mod.js';\n\n// Currently, namespace doesn't has any config.\nexport type NamespaceConfig = object;\n\nexport interface NamespaceData {\n accounts: null | string[];\n network: null | string;\n connected: boolean;\n connecting: boolean;\n}\n\ninterface NamespaceInfo {\n providerId: string;\n namespaceId: string;\n}\n\ninterface NamespaceItem {\n info: NamespaceInfo;\n data: NamespaceData;\n error: unknown;\n}\n\ntype NamespaceState = {\n events: InstanceType<typeof ConsumableEvents>;\n list: Record<string, NamespaceItem>;\n};\n\ninterface NamespaceActions {\n addNamespace: (id: string, config: NamespaceInfo) => void;\n updateStatus: <K extends keyof NamespaceData>(\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof NamespaceData>(\n namespace: NamespaceItem,\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n}\ninterface NamespaceSelectors {\n getNamespaceData(storeId: string): NamespaceData;\n}\n\nexport type NamespaceStore = NamespaceState &\n NamespaceActions &\n NamespaceSelectors;\ntype NamespaceStateCreator = StateCreator<State, [], [], NamespaceStore>;\n\nconst namespacesStore: NamespaceStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addNamespace: (id, info) => {\n const data: NamespaceData = {\n accounts: null,\n network: null,\n connected: false,\n connecting: false,\n };\n\n const item = {\n data,\n error: '',\n info,\n };\n\n set(\n produce((state: State) => {\n state.namespaces.list[id] = item;\n })\n );\n },\n updateStatus: (id, key, value) => {\n const ns = get().namespaces.list[id];\n if (!ns) {\n throw new Error(`No namespace with '${id}' found.`);\n }\n\n get().namespaces._produceEventsWhenUpdatingStatus(ns, id, key, value);\n\n // Updating state\n set(\n produce((state: State) => {\n state.namespaces.list[id].data[key] = value;\n })\n );\n },\n getNamespaceData(storeId) {\n return namespaceStateSelector(get(), storeId);\n },\n\n _produceEventsWhenUpdatingStatus: (namespace, id, key, value) => {\n if (key === 'accounts') {\n // check for both null and empty array\n const isAccountsEmpty =\n Object.is(value, null) || (Array.isArray(value) && value.length === 0);\n\n if (isAccountsEmpty) {\n const currentConnectedStatus = get().namespaces.list[id].data.connected;\n if (currentConnectedStatus) {\n const event: NamespaceDisconnectedEvent = {\n type: 'namespace_disconnected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n };\n\n get().namespaces.events.push(event);\n }\n // Skip emitting disconnect event, if the `connected` is false\n } else {\n const currentAccounts = get().namespaces.list[id].data.accounts;\n\n if (!currentAccounts) {\n const event: NamespaceConnectedEvent = {\n type: 'namespace_connected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n } else {\n const areSameAccounts =\n // Clone the object from the Zustand store, as it's immutable, to avoid errors during sorting.\n [...currentAccounts].sort().toString() ===\n (value as string[]).sort().toString();\n\n if (!areSameAccounts) {\n const event: NamespaceSwitchedAccountEvent = {\n type: 'namespace_account_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n previousAccounts: currentAccounts,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n }\n }\n }\n } else if (key === 'network') {\n const currentNetwork = get().namespaces.list[id].data.network;\n\n const event: NamespaceSwitchedNetworkEvent = {\n type: 'namespace_network_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n network: value as string,\n previousNetwork: currentNetwork,\n };\n\n get().namespaces.events.push(event);\n }\n },\n});\n\nexport { namespacesStore };\n", "import type { Namespace } from '../../namespaces/common/types.js';\nimport type { State as InternalProviderState } from '../provider/mod.js';\nimport type { BlockchainMeta, SignerFactory } from 'rango-types';\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport { ConsumableEvents, type ProviderDetectedEvent } from './events.js';\nimport { guessProviderStateSelector, type State } from './mod.js';\n\ntype Browsers = 'firefox' | 'chrome' | 'edge' | 'brave' | 'homepage';\ntype Property<N extends string, V> = { name: N; value: V };\n\ntype NamespacesProperty = Property<\n 'namespaces',\n {\n selection: 'single' | 'multiple';\n data: {\n label: string;\n id: string;\n value: Namespace;\n unsupported?: boolean;\n getSupportedChains: (chains: BlockchainMeta[]) => BlockchainMeta[];\n }[];\n }\n>;\ntype DerivationPathProperty = Property<\n 'derivationPath',\n {\n data: {\n id: string;\n label: string;\n namespace: Namespace;\n generateDerivationPath: (index: string) => string;\n }[];\n }\n>;\ntype DetailsProperty = Property<\n 'details',\n {\n mobileWallet?: boolean;\n showOnMobile?: boolean;\n isContractWallet?: boolean;\n }\n>;\ntype SignersProperty = Property<\n 'signers',\n {\n getSigners: () => Promise<SignerFactory>;\n }\n>;\n\nexport type ProviderMetadata = {\n name: string;\n icon: string;\n extensions: Partial<Record<Browsers, string>>;\n properties?: Array<\n | NamespacesProperty\n | DerivationPathProperty\n | DetailsProperty\n | SignersProperty\n >;\n};\n\nexport interface ProviderConfig {\n metadata: ProviderMetadata;\n}\n\nexport type ProviderInfo = ProviderConfig;\n\ninterface ProviderData {\n installed: boolean;\n}\n\ninterface ProviderItem {\n config: ProviderConfig;\n data: ProviderData;\n error: unknown;\n}\n\ntype ProviderState = {\n events: ConsumableEvents;\n list: Record<string, ProviderItem>;\n};\ninterface ProviderActions {\n addProvider: (id: string, config: ProviderConfig) => void;\n removeProvider: (id: string) => void;\n updateStatus: <K extends keyof ProviderData>(\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof ProviderData>(\n provider: ProviderItem,\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n}\n\ninterface ProviderSelectors {\n /**\n * Provider has a limited state to itself, to be compatible with legacy, we try to produce same object as legacy\n * which includes namespace state as well.\n */\n guessNamespacesState: (id: string) => InternalProviderState;\n}\n\nexport type ProviderStore = ProviderState & ProviderActions & ProviderSelectors;\ntype ProvidersStateCreator = StateCreator<State, [], [], ProviderStore>;\n\nconst providersStore: ProvidersStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addProvider: (id, config) => {\n const item = {\n data: {\n installed: false,\n },\n error: '',\n config,\n };\n\n set(\n produce((state: State) => {\n state.providers.list[id] = item;\n })\n );\n },\n removeProvider: (id) => {\n set(\n produce((state: State) => {\n delete state.providers.list[id];\n })\n );\n },\n updateStatus: (id, key, value) => {\n const provider = get().providers.list[id];\n if (!provider) {\n throw new Error(`No namespace namespace with '${id}' found.`);\n }\n\n get().providers._produceEventsWhenUpdatingStatus(provider, id, key, value);\n\n set(\n produce((state: State) => {\n state.providers.list[id].data[key] = value;\n })\n );\n },\n guessNamespacesState: (providerId: string): InternalProviderState => {\n return guessProviderStateSelector(get(), providerId);\n },\n\n _produceEventsWhenUpdatingStatus: (_provider, id, key, _value) => {\n if (key === 'installed') {\n const event: ProviderDetectedEvent = {\n type: 'provider_detected',\n provider: id,\n };\n\n get().providers.events.push(event);\n }\n },\n});\n\nexport { providersStore };\n", "import type { Actions, Context, Operators } from '../hub/namespaces/types.js';\nimport type { AnyFunction, FunctionWithContext } from '../types/actions.js';\n\nexport interface ActionByBuilder<T, Context> {\n actionName: keyof T;\n and: Operators<T>;\n or: Operators<T>;\n after: Operators<T>;\n before: Operators<T>;\n action: FunctionWithContext<T[keyof T], Context>;\n}\n\n/*\n * TODO:\n * Currently, to use this builder you will write something like this:\n * new ActionBuilder<EvmActions, 'disconnect'>('disconnect').after(....)\n *\n * I couldn't figure it out to be able typescript infer the constructor value as key of actions.\n * Ideal usage:\n * new ActionBuilder<EvmActions>('disconnect').after(....)\n *\n */\nexport class ActionBuilder<T extends Actions<T>, K extends keyof T> {\n readonly name: K;\n #and: Operators<T> = new Map();\n #or: Operators<T> = new Map();\n #after: Operators<T> = new Map();\n #before: Operators<T> = new Map();\n #action: FunctionWithContext<T[keyof T], Context<T>> | undefined;\n\n constructor(name: K) {\n this.name = name;\n }\n\n public and(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#and.has(this.name)) {\n this.#and.set(this.name, []);\n }\n this.#and.get(this.name)?.push(action);\n return this;\n }\n\n public or(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#or.has(this.name)) {\n this.#or.set(this.name, []);\n }\n this.#or.get(this.name)?.push(action);\n return this;\n }\n\n public before(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#before.has(this.name)) {\n this.#before.set(this.name, []);\n }\n this.#before.get(this.name)?.push(action);\n return this;\n }\n\n public after(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#after.has(this.name)) {\n this.#after.set(this.name, []);\n }\n this.#after.get(this.name)?.push(action);\n return this;\n }\n\n public action(action: FunctionWithContext<T[keyof T], Context<T>>) {\n this.#action = action;\n return this;\n }\n\n public build(): ActionByBuilder<T, Context<T>> {\n if (!this.#action) {\n throw new Error('Your action builder should includes an action.');\n }\n\n return {\n actionName: this.name,\n action: this.#action,\n before: this.#before,\n after: this.#after,\n and: this.#and,\n or: this.#or,\n };\n }\n}\n", "/*\n * It is not a good idea to re-export all of CAIP because if they have a breaking change, we will break as well.\n * It would be better to create an abstraction over them and export our own interface to ensure it is under our control.\n */\nexport * as CAIP from 'caip';\n\nexport { generateStoreId } from '../hub/helpers.js';\nexport * from './versions.js';\n", "import type {\n Actions,\n Context,\n SubscriberCleanUp,\n} from '../../../hub/namespaces/types.js';\nimport type { Subscriber } from '../../../mod.js';\nimport type { AutoImplementedActionsByRecommended } from '../types.js';\n\ntype OnSwitchAccountEvent<EventType> = {\n payload: EventType;\n preventDefault: () => void;\n};\n\nexport class ChangeAccountSubscriberBuilder<EventType, ProviderAPI> {\n #getInstance: (() => ProviderAPI) | null = null;\n #format:\n | ((instance: ProviderAPI, event: EventType) => Promise<string[]>)\n | null = null;\n #onSwitchAccount:\n | (<\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void)\n | null = null;\n\n #addEventListener:\n | ((\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void)\n | null = null;\n #removeEventListener:\n | ((instance: ProviderAPI, callback: (event: EventType) => void) => void)\n | null = null;\n\n /**\n * Sets the function that provides the provider API instance.\n *\n * @param operator - Function that returns the provider API instance\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.getInstance(() => window.ethereum)\n * ```\n */\n public getInstance(operator: () => ProviderAPI) {\n this.#getInstance = operator;\n return this;\n }\n\n /**\n * Sets the formatter function that converts provider events to account strings.\n *\n * @param operator - Function that takes a provider instance and event, returns array of account strings\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.format(async (instance, event) => event.accounts || [])\n * ```\n */\n public format(\n operator: (instance: ProviderAPI, event: EventType) => Promise<string[]>\n ) {\n this.#format = operator;\n return this;\n }\n\n /**\n * Set a handler that runs whenever a **switch-account** event occurs.\n *\n * The provided operator is called with:\n * - `event`: An object containing:\n * - `payload`: The event payload associated with the account switch.\n * - `preventDefault`: A function that prevents the default switch-account\n * behavior (e.g., updating the active accounts list).\n * - `context`: The execution context of the current flow or action.\n *\n * Calling `event.preventDefault()` inside the handler cancels the built-in\n * account switching logic.\n *\n * @param operator - A function invoked on each switch-account event.\n * It receives `(event, context)` and can call `event.preventDefault()` to\n * stop the default behavior.\n *\n * @returns The builder instance for method chaining.\n *\n * @example\n * ```ts\n * builder.onSwitchAccount((event, context) => {\n * if (!event.payload.userConfirmed) {\n * event.preventDefault(); // cancel default account switch\n * }\n *\n * console.log(\"Switching account:\", event.payload.accountId);\n * });\n * ```\n */\n public onSwitchAccount(\n operator: <\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void\n ) {\n this.#onSwitchAccount = operator;\n return this;\n }\n\n /**\n * Sets the event listener attachment function.\n *\n * @param operator - Function that attaches an event listener and optionally returns a cleanup function\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.addEventListener((instance, callback) => {\n * return instance.on('accountsChanged', callback);\n * })\n * ```\n */\n public addEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void\n ) {\n this.#addEventListener = operator;\n return this;\n }\n\n /**\n * Sets the event listener removal function.\n *\n * @param operator - Function that removes an event listener from the provider\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.removeEventListener((instance, callback) => instance.off('accountsChanged', callback))\n * ```\n */\n public removeEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => void\n ) {\n this.#removeEventListener = operator;\n return this;\n }\n public build<\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n >(): [Subscriber<ActionsType>, SubscriberCleanUp<ActionsType>] {\n if (this.#getInstance === null) {\n throw new Error(this.#getErrorMessage('getInstance'));\n }\n if (this.#format === null) {\n throw new Error(this.#getErrorMessage('format'));\n }\n if (this.#addEventListener === null) {\n throw new Error(this.#getErrorMessage('addEventListener'));\n }\n if (this.#removeEventListener === null) {\n throw new Error(this.#getErrorMessage('removeEventListener'));\n }\n\n /**\n * Capture current operator state at build time to ensure immutability.\n *\n * This creates a snapshot of all operators, preventing the built subscriber\n * from being affected by subsequent changes to the builder instance.\n * Each call to build() gets its own isolated set of operators, allowing\n * the builder to be reused for creating multiple independent subscribers.\n */\n const getInstance = this.#getInstance;\n const format = this.#format;\n const addEventListener = this.#addEventListener;\n const removeEventListener = this.#removeEventListener;\n const onSwitchAccount = this.#onSwitchAccount;\n\n let subscriber: (event: EventType) => void;\n let unsubscribe: (() => void) | void;\n return [\n async (context) => {\n const [, setState] = context.state();\n const instance = getInstance();\n\n if (!instance) {\n throw new Error(\n 'Trying to subscribe to your wallet, but seems its instance is not available.'\n );\n }\n subscriber = async (event) => {\n let shouldProceedWithDefault = true;\n\n onSwitchAccount?.(\n {\n payload: event,\n preventDefault: () => {\n shouldProceedWithDefault = false;\n },\n },\n context\n );\n if (!shouldProceedWithDefault) {\n return;\n }\n setState('accounts', await format(instance, event));\n };\n unsubscribe = addEventListener(instance, subscriber);\n },\n (_, err) => {\n /**\n * Call the cleanup function if addEventListener returned one.\n * This handles providers that return an unsubscribe function from their event listeners.\n */\n if (unsubscribe && typeof unsubscribe === 'function') {\n unsubscribe();\n }\n const instance = getInstance();\n\n /**\n * Always call removeEventListener as well to handle the on/off pattern.\n * This ensures cleanup works regardless of which pattern the provider uses.\n */\n removeEventListener(instance, subscriber);\n\n // subscriber can be passed to `or`, it will get the error and should rethrow error to pass the error to next `or` or throw error.\n return err;\n },\n ];\n }\n #getErrorMessage(operatorName: string) {\n return `Required \"${operatorName}\" operation has not been set for \"changeAccountSubscriber\"`;\n }\n}\n", "import { AccountId } from 'caip';\n\nexport function isValidCaipAddress(address: string): boolean {\n try {\n AccountId.parse(address);\n return true;\n } catch {\n return false;\n }\n}\n", "import type {\n Accounts,\n AccountsWithActiveChain,\n} from './../../types/accounts.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\n\nimport { isValidCaipAddress } from './helpers.js';\n\nexport function connectAndUpdateStateForSingleNetwork(\n context: Context,\n accounts: Accounts\n) {\n if (!accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts);\n setState('connected', true);\n return accounts;\n}\n\nexport function connectAndUpdateStateForMultiNetworks(\n context: Context,\n accounts: AccountsWithActiveChain\n) {\n if (!accounts.accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts.accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts.accounts);\n setState('network', accounts.network);\n setState('connected', true);\n return accounts;\n}\n\nexport const recommended = [];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnecting(context: Context) {\n const [, setState] = context.state();\n setState('connecting', true);\n}\n\n// Please consider if you are going to add something here, make sure it works on all namespaces.\nexport const recommended = [['connect', intoConnecting] as const];\n", "import { beforeRecommended } from '../common/mod.js';\n\nexport const recommended = [...beforeRecommended];\n", "import type { EvmActions, ProviderAPI } from './types.js';\n\nimport { ActionBuilder } from '../../mod.js';\nimport { ChangeAccountSubscriberBuilder } from '../common/hooks/changeAccountSubscriber.js';\nimport {\n connectAndUpdateStateForMultiNetworks,\n intoConnecting,\n intoConnectionFinished,\n} from '../common/mod.js';\n\nimport { formatAccountsToCAIP } from './utils.js';\n\n// Actions\nexport const connect = () =>\n new ActionBuilder<EvmActions, 'connect'>('connect')\n .and(connectAndUpdateStateForMultiNetworks)\n .before(intoConnecting)\n .after(intoConnectionFinished);\n\nexport const canEagerConnect = () =>\n new ActionBuilder<EvmActions, 'canEagerConnect'>('canEagerConnect');\nexport const canSwitchNetwork = () =>\n new ActionBuilder<EvmActions, 'canSwitchNetwork'>('canSwitchNetwork');\n\n// Hooks\nexport const changeAccountSubscriber = (getInstance: () => ProviderAPI) =>\n new ChangeAccountSubscriberBuilder<string[], ProviderAPI>()\n .getInstance(getInstance)\n /*\n * In some wallets, when a user switches to an account not yet connected to the dApp, it returns null.\n * A null value indicates no access to the account, requiring a disconnect and user reconnection.\n * This behavior may vary across different wallets, and if so, a different approach may be needed.\n */\n .onSwitchAccount((event, context) => {\n if (!event.payload || !event.payload.length) {\n context.action('disconnect');\n event.preventDefault();\n }\n })\n .format(async (instance, accounts) => {\n const chainId = await instance.request({ method: 'eth_chainId' });\n return formatAccountsToCAIP(accounts, chainId);\n })\n .addEventListener((instance, callback) => {\n instance.on('accountsChanged', callback);\n })\n .removeEventListener((instance, callback) => {\n instance.removeListener?.('accountsChanged', callback);\n });\n\nexport const getChainId = () =>\n new ActionBuilder<EvmActions, 'getChainId'>('getChainId');\n"],
5
- "mappings": "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",
6
- "names": ["actions_exports", "__export", "canEagerConnect", "canSwitchNetwork", "connect", "getChainId", "recommended", "disconnect", "context", "setState", "__name", "recommended", "utils_exports", "__export", "filterAndGetEvmBlockchainNames", "formatAccountsToCAIP", "getAccounts", "isUserRejectionError", "suggestNetwork", "switchNetwork", "switchOrAddNetwork", "AccountId", "evmBlockchains", "CAIP_NAMESPACE", "CAIP_ETHEREUM_CHAIN_ID", "CHAIN_ID_RADIX", "getAccounts", "provider", "accounts", "chainId", "standardChainId", "__name", "suggestNetwork", "instance", "chain", "switchNetwork", "filterAndGetEvmBlockchainNames", "meta", "evmBlockchains", "blockchain", "switchOrAddNetwork", "switchError", "error", "EIP_1193_USER_REJECTION_ERROR_CODE", "isUserRejectionError", "code", "causeCode", "formatAccountsToCAIP", "account", "AccountId", "CAIP_NAMESPACE", "recommended", "connect", "instance", "options", "_context", "chain", "evmInstance", "switchOrAddNetwork", "providerAccounts", "getAccounts", "formatAccountsToCAIP", "__name", "canEagerConnect", "canSwitchNetwork", "context", "params", "network", "supportedChains", "filterAndGetEvmBlockchainNames", "getChainId", "hooks_exports", "__export", "changeAccountSubscriber", "changeChainSubscriber", "changeAccountSubscriber", "instance", "builders_exports", "__name", "changeChainSubscriber", "eventCallback", "context", "evmInstance", "setState", "chainId", "after_exports", "__export", "recommended", "intoConnectionFinished", "context", "setState", "__name", "recommended", "recommended", "and_exports", "__export", "recommended", "createZustandStore", "produce", "produce", "ActionBuilder", "__name", "#and", "#or", "#after", "#before", "#action", "name", "action", "CAIP", "ChangeAccountSubscriberBuilder", "__name", "#getInstance", "#format", "#onSwitchAccount", "#addEventListener", "#removeEventListener", "operator", "#getErrorMessage", "getInstance", "format", "addEventListener", "removeEventListener", "onSwitchAccount", "subscriber", "unsubscribe", "context", "setState", "instance", "event", "shouldProceedWithDefault", "_", "err", "operatorName", "AccountId", "isValidCaipAddress", "address", "AccountId", "__name", "connectAndUpdateStateForMultiNetworks", "context", "accounts", "isValidCaipAddress", "setState", "__name", "intoConnecting", "context", "setState", "__name", "recommended", "recommended", "connectAndUpdateStateForMultiNetworks", "before_exports", "__export", "recommended", "recommended", "builders_exports", "__export", "canEagerConnect", "canSwitchNetwork", "changeAccountSubscriber", "connect", "getChainId", "connect", "__name", "ActionBuilder", "connectAndUpdateStateForMultiNetworks", "intoConnecting", "intoConnectionFinished", "canEagerConnect", "canSwitchNetwork", "changeAccountSubscriber", "getInstance", "ChangeAccountSubscriberBuilder", "event", "context", "instance", "accounts", "chainId", "formatAccountsToCAIP", "callback", "getChainId"]
4
+ "sourcesContent": ["import type { ConnectOptions, EvmActions, ProviderAPI } from './types.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\nimport type { CanEagerConnect } from '../../hub/namespaces/types.js';\nimport type { FunctionWithContext } from '../../types/actions.js';\n\nimport { recommended as commonRecommended } from '../common/actions.js';\n\nimport {\n filterAndGetEvmBlockchainNames,\n formatAccountsToCAIP,\n getAccounts,\n switchOrAddNetwork,\n} from './utils.js';\n\nexport const recommended = [...commonRecommended];\nexport function connect(\n instance: () => ProviderAPI,\n options?: ConnectOptions\n): FunctionWithContext<EvmActions['connect'], Context> {\n return async (context, chain) => {\n // Setting connect args to be used on other actions\n const [, setState] = context.state();\n setState('connectArgs', { chain });\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Do your wallet injected correctly and is evm compatible?'\n );\n }\n\n if (chain) {\n /*\n * The `switchOrAddNetwork` function can be optionally provided through `options`\n * to handle network switching or addition in a way that is compatible with the specific wallet provider.\n * This approach is necessary because not all providers follow the same conventions\u2014\n * for example, Rabby uses a different error code for \"chain not found\".\n */\n if (options?.switchOrAddNetwork) {\n await options.switchOrAddNetwork(evmInstance, chain);\n } else {\n await switchOrAddNetwork(evmInstance, chain);\n }\n }\n\n const providerAccounts = await getAccounts(evmInstance);\n\n /*\n * Ensure that the provider returns at least one valid account before proceeding.\n * This prevents cases (e.g., MetaMask bug) where a user connects with an account\n * that has no associated EVM address, leaving the dApp without any usable accounts.\n */\n if (!providerAccounts.accounts || !providerAccounts.accounts.length) {\n throw new Error(\n 'No accounts were returned by the provider. Please make sure your wallet has an active EVM-compatible account selected.'\n );\n }\n const formattedAccounts = formatAccountsToCAIP(\n providerAccounts.accounts,\n providerAccounts.chainId\n );\n\n return {\n accounts: formattedAccounts,\n network: providerAccounts.chainId,\n };\n };\n}\n\nexport function canEagerConnect(\n instance: () => ProviderAPI | undefined\n): CanEagerConnect<EvmActions> {\n return async () => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to eagerly connect to your EVM wallet, but seems its instance is not available.'\n );\n }\n\n try {\n const accounts: string[] = await evmInstance.request({\n method: 'eth_accounts',\n });\n if (accounts.length) {\n return true;\n }\n return false;\n } catch {\n return false;\n }\n };\n}\nexport function canSwitchNetwork(): FunctionWithContext<\n EvmActions['canSwitchNetwork'],\n Context\n> {\n return (context, params) => {\n const { network, supportedChains } = params;\n return filterAndGetEvmBlockchainNames(supportedChains).includes(network);\n };\n}\n\nexport function getChainId(\n instance: () => ProviderAPI | undefined\n): FunctionWithContext<EvmActions['getChainId'], Context> {\n return async () => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to get chain id from your EVM wallet, but instance is not available.'\n );\n }\n\n return evmInstance.request({ method: 'eth_chainId' });\n };\n}\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function disconnect(context: Context): void {\n const [, setState] = context.state();\n setState('network', null);\n setState('accounts', null);\n setState('connected', false);\n setState('connecting', false);\n setState('connectArgs', null);\n}\n\nexport const recommended = [['disconnect', disconnect] as const];\n", "import type { Chain, ChainId, ProviderAPI } from './types.js';\nimport type { CaipAccount } from '../../types/accounts.js';\n\nimport { AccountId } from 'caip';\nimport { type BlockchainMeta, evmBlockchains } from 'rango-types';\n\nimport { CAIP_NAMESPACE } from './constants.js';\n\nconst CHAIN_ID_RADIX = 16;\n\nexport async function getAccounts(provider: ProviderAPI) {\n const [accounts, chainId] = await Promise.all([\n provider.request({ method: 'eth_requestAccounts' }),\n provider.request({ method: 'eth_chainId' }),\n ]);\n /*\n * Trust Wallet Compatibility Fix:\n * Trust Wallet's in-app browser has been observed to return the `chainId` as a\n * number (e.g., 1) rather than the standard hexadecimal string (e.g., \"0x1\").\n * This code block standardizes the `chainId` to the required hex format to\n * prevent downstream errors.\n */\n let standardChainId = chainId;\n if (typeof standardChainId === 'number') {\n standardChainId = `0x${Number(chainId).toString(CHAIN_ID_RADIX)}`;\n }\n\n return {\n accounts,\n chainId: standardChainId,\n };\n}\n\nexport async function suggestNetwork(instance: ProviderAPI, chain: Chain) {\n return await instance.request({\n method: 'wallet_addEthereumChain',\n params: [chain],\n });\n}\n\nexport async function switchNetwork(instance: ProviderAPI, chainId: ChainId) {\n return await instance.request({\n method: 'wallet_switchEthereumChain',\n params: [{ chainId: chainId }],\n });\n}\nexport function filterAndGetEvmBlockchainNames(meta: BlockchainMeta[]) {\n return evmBlockchains(meta).map((blockchain) => blockchain.name);\n}\nexport async function switchOrAddNetwork(\n instance: ProviderAPI,\n chain: ChainId | Chain\n) {\n try {\n const chainId = typeof chain === 'string' ? chain : chain.chainId;\n await switchNetwork(instance, chainId);\n } catch (switchError) {\n const error = switchError as { code: number };\n\n /*\n * Error code 4902 is used by MetaMask to indicate that the requested chain has not been added to the wallet.\n * This code is not part of the official EIP-1193 spec (https://eips.ethereum.org/EIPS/eip-1193#supported-rpc-methods),\n * so other providers may use a different code or behavior for the same condition.\n */\n const NOT_FOUND_CHAIN_ERROR_CODE = 4902;\n if (\n typeof chain !== 'string' &&\n (error.code === NOT_FOUND_CHAIN_ERROR_CODE || !error.code)\n ) {\n /*\n * Note: on WalletConnect `code` is undefined so we have to use !switchError.code as fallback.\n * This error code indicates that the chain has not been added to wallet.\n */\n await suggestNetwork(instance, chain);\n return;\n }\n throw switchError;\n }\n}\n\nconst EIP_1193_USER_REJECTION_ERROR_CODE = 4001;\nexport function isUserRejectionError(error: unknown): boolean {\n // EIP-1193 user rejection error can be in error.code or error.cause.code\n if (typeof error === 'object' && error !== null) {\n const code = (error as { code?: number }).code;\n const causeCode = (error as { cause?: { code?: number } }).cause?.code;\n return (\n code === EIP_1193_USER_REJECTION_ERROR_CODE ||\n causeCode === EIP_1193_USER_REJECTION_ERROR_CODE\n );\n }\n return false;\n}\n\nexport function formatAccountsToCAIP(accounts: string[], chainId: string) {\n return accounts.map(\n (account) =>\n AccountId.format({\n address: account,\n chainId: {\n namespace: CAIP_NAMESPACE,\n reference: chainId,\n },\n }) as CaipAccount\n );\n}\n", "export const CAIP_NAMESPACE = 'eip155';\nexport const CAIP_ETHEREUM_CHAIN_ID = '1';\n", "import type { EIP1193EventMap } from './eip1193.js';\nimport type { EvmActions, ProviderAPI } from './types.js';\nimport type { Subscriber, SubscriberCleanUp } from '../../mod.js';\n\nimport { builders } from './mod.js';\n\nexport function changeAccountSubscriber(\n instance: () => ProviderAPI\n): [Subscriber<EvmActions>, SubscriberCleanUp<EvmActions>] {\n return builders.changeAccountSubscriber(instance).build();\n}\n\nexport function changeChainSubscriber(\n instance: () => ProviderAPI\n): [Subscriber<EvmActions>, SubscriberCleanUp<EvmActions>] {\n let eventCallback: EIP1193EventMap['chainChanged'];\n\n return [\n (context) => {\n const evmInstance = instance();\n\n if (!evmInstance) {\n throw new Error(\n 'Trying to subscribe to your EVM wallet, but seems its instance is not available.'\n );\n }\n\n const [, setState] = context.state();\n\n eventCallback = async (chainId: string) => {\n setState('network', chainId);\n };\n evmInstance.on('chainChanged', eventCallback);\n },\n () => {\n const evmInstance = instance();\n\n if (eventCallback && evmInstance) {\n evmInstance.removeListener('chainChanged', eventCallback);\n }\n },\n ];\n}\n", "import { recommended as commonRecommended } from '../common/after.js';\n\nexport const recommended = [...commonRecommended];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnectionFinished(context: Context) {\n const [, setState] = context.state();\n setState('connecting', false);\n}\n\nexport const recommended = [['connect', intoConnectionFinished] as const];\n", "import { connectAndUpdateStateForMultiNetworks } from '../common/mod.js';\n\nexport const recommended = [\n ['connect', connectAndUpdateStateForMultiNetworks] as const,\n];\n", "import type { StoreApi } from 'zustand/vanilla';\n\nimport { createStore as createZustandStore } from 'zustand/vanilla';\n\nimport { extend, type Store } from './extend.js';\nimport { hubStore, type HubStore } from './hub.js';\nimport { namespacesStore, type NamespaceStore } from './namespaces.js';\nimport { providersStore, type ProviderStore } from './providers.js';\n\n/************ State ************/\n\nexport interface State {\n hub: HubStore;\n providers: ProviderStore;\n namespaces: NamespaceStore;\n}\n\nexport type RawStore = StoreApi<State>;\n\nexport const createStore = (): Store => {\n const store = createZustandStore<State>((...api) => {\n return {\n hub: hubStore(...api),\n providers: providersStore(...api),\n namespaces: namespacesStore(...api),\n };\n });\n\n return extend(store);\n};\n", "/************ Namespace ************/\n\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport {\n ConsumableEvents,\n type NamespaceConnectedEvent,\n type NamespaceDisconnectedEvent,\n type NamespaceSwitchedAccountEvent,\n type NamespaceSwitchedNetworkEvent,\n} from './events.js';\nimport { namespaceStateSelector, type State } from './mod.js';\n\n// Currently, namespace doesn't has any config.\nexport type NamespaceConfig = object;\n\nexport interface NamespaceData {\n accounts: null | string[];\n network: null | string;\n connected: boolean;\n connecting: boolean;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n connectArgs: Record<string, any> | null;\n}\n\ninterface NamespaceInfo {\n providerId: string;\n namespaceId: string;\n}\n\ninterface NamespaceItem {\n info: NamespaceInfo;\n data: NamespaceData;\n error: unknown;\n}\n\ntype NamespaceState = {\n events: InstanceType<typeof ConsumableEvents>;\n list: Record<string, NamespaceItem>;\n};\n\ninterface NamespaceActions {\n addNamespace: (id: string, config: NamespaceInfo) => void;\n updateStatus: <K extends keyof NamespaceData>(\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof NamespaceData>(\n namespace: NamespaceItem,\n id: string,\n key: K,\n value: NamespaceData[K]\n ) => void;\n}\ninterface NamespaceSelectors {\n getNamespaceData(storeId: string): NamespaceData;\n}\n\nexport type NamespaceStore = NamespaceState &\n NamespaceActions &\n NamespaceSelectors;\ntype NamespaceStateCreator = StateCreator<State, [], [], NamespaceStore>;\n\nconst namespacesStore: NamespaceStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addNamespace: (id, info) => {\n const data: NamespaceData = {\n accounts: null,\n network: null,\n connected: false,\n connecting: false,\n connectArgs: null,\n };\n\n const item = {\n data,\n error: '',\n info,\n };\n\n set(\n produce((state: State) => {\n state.namespaces.list[id] = item;\n })\n );\n },\n updateStatus: (id, key, value) => {\n const ns = get().namespaces.list[id];\n if (!ns) {\n throw new Error(`No namespace with '${id}' found.`);\n }\n\n get().namespaces._produceEventsWhenUpdatingStatus(ns, id, key, value);\n\n // Updating state\n set(\n produce((state: State) => {\n state.namespaces.list[id].data[key] = value;\n })\n );\n },\n getNamespaceData(storeId) {\n return namespaceStateSelector(get(), storeId);\n },\n\n _produceEventsWhenUpdatingStatus: (namespace, id, key, value) => {\n if (key === 'accounts') {\n // check for both null and empty array\n const isAccountsEmpty =\n Object.is(value, null) || (Array.isArray(value) && value.length === 0);\n\n if (isAccountsEmpty) {\n const currentConnectedStatus = get().namespaces.list[id].data.connected;\n if (currentConnectedStatus) {\n const event: NamespaceDisconnectedEvent = {\n type: 'namespace_disconnected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n };\n\n get().namespaces.events.push(event);\n }\n // Skip emitting disconnect event, if the `connected` is false\n } else {\n const currentAccounts = get().namespaces.list[id].data.accounts;\n\n if (!currentAccounts) {\n const event: NamespaceConnectedEvent = {\n type: 'namespace_connected',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n } else {\n const areSameAccounts =\n // Clone the object from the Zustand store, as it's immutable, to avoid errors during sorting.\n [...currentAccounts].sort().toString() ===\n (value as string[]).sort().toString();\n\n if (!areSameAccounts) {\n const event: NamespaceSwitchedAccountEvent = {\n type: 'namespace_account_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n previousAccounts: currentAccounts,\n accounts: value as string[],\n };\n\n get().namespaces.events.push(event);\n }\n }\n }\n } else if (key === 'network') {\n const currentNetwork = get().namespaces.list[id].data.network;\n\n const event: NamespaceSwitchedNetworkEvent = {\n type: 'namespace_network_switched',\n provider: namespace.info.providerId,\n namespace: namespace.info.namespaceId,\n network: value as string,\n previousNetwork: currentNetwork,\n };\n\n get().namespaces.events.push(event);\n }\n },\n});\n\nexport { namespacesStore };\n", "import type { Namespace } from '../../namespaces/common/types.js';\nimport type { State as InternalProviderState } from '../provider/mod.js';\nimport type { BlockchainMeta, SignerFactory } from 'rango-types';\nimport type { StateCreator } from 'zustand';\n\nimport { produce } from 'immer';\n\nimport { ConsumableEvents, type ProviderDetectedEvent } from './events.js';\nimport { guessProviderStateSelector, type State } from './mod.js';\n\ntype Browsers = 'firefox' | 'chrome' | 'edge' | 'brave' | 'homepage';\ntype Property<N extends string, V> = { name: N; value: V };\n\ntype NamespacesProperty = Property<\n 'namespaces',\n {\n selection: 'single' | 'multiple';\n data: {\n label: string;\n id: string;\n value: Namespace;\n unsupported?: boolean;\n getSupportedChains: (chains: BlockchainMeta[]) => BlockchainMeta[];\n }[];\n }\n>;\ntype DerivationPathProperty = Property<\n 'derivationPath',\n {\n data: {\n id: string;\n label: string;\n namespace: Namespace;\n generateDerivationPath: (index: string) => string;\n }[];\n }\n>;\ntype DetailsProperty = Property<\n 'details',\n {\n mobileWallet?: boolean;\n showOnMobile?: boolean;\n isContractWallet?: boolean;\n }\n>;\ntype SignersProperty = Property<\n 'signers',\n {\n getSigners: () => Promise<SignerFactory>;\n }\n>;\n\nexport type ProviderMetadata = {\n name: string;\n icon: string;\n extensions: Partial<Record<Browsers, string>>;\n properties?: Array<\n | NamespacesProperty\n | DerivationPathProperty\n | DetailsProperty\n | SignersProperty\n >;\n};\n\nexport interface ProviderConfig {\n metadata: ProviderMetadata;\n}\n\nexport type ProviderInfo = ProviderConfig;\n\ninterface ProviderData {\n installed: boolean;\n}\n\ninterface ProviderItem {\n config: ProviderConfig;\n data: ProviderData;\n error: unknown;\n}\n\ntype ProviderState = {\n events: ConsumableEvents;\n list: Record<string, ProviderItem>;\n};\ninterface ProviderActions {\n addProvider: (id: string, config: ProviderConfig) => void;\n removeProvider: (id: string) => void;\n updateStatus: <K extends keyof ProviderData>(\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n\n _produceEventsWhenUpdatingStatus: <K extends keyof ProviderData>(\n provider: ProviderItem,\n id: string,\n key: K,\n value: ProviderData[K]\n ) => void;\n}\n\ninterface ProviderSelectors {\n /**\n * Provider has a limited state to itself, to be compatible with legacy, we try to produce same object as legacy\n * which includes namespace state as well.\n */\n guessNamespacesState: (id: string) => InternalProviderState;\n}\n\nexport type ProviderStore = ProviderState & ProviderActions & ProviderSelectors;\ntype ProvidersStateCreator = StateCreator<State, [], [], ProviderStore>;\n\nconst providersStore: ProvidersStateCreator = (set, get) => ({\n events: new ConsumableEvents(),\n\n list: {},\n addProvider: (id, config) => {\n const item = {\n data: {\n installed: false,\n },\n error: '',\n config,\n };\n\n set(\n produce((state: State) => {\n state.providers.list[id] = item;\n })\n );\n },\n removeProvider: (id) => {\n set(\n produce((state: State) => {\n delete state.providers.list[id];\n })\n );\n },\n updateStatus: (id, key, value) => {\n const provider = get().providers.list[id];\n if (!provider) {\n throw new Error(`No namespace namespace with '${id}' found.`);\n }\n\n get().providers._produceEventsWhenUpdatingStatus(provider, id, key, value);\n\n set(\n produce((state: State) => {\n state.providers.list[id].data[key] = value;\n })\n );\n },\n guessNamespacesState: (providerId: string): InternalProviderState => {\n return guessProviderStateSelector(get(), providerId);\n },\n\n _produceEventsWhenUpdatingStatus: (_provider, id, key, _value) => {\n if (key === 'installed') {\n const event: ProviderDetectedEvent = {\n type: 'provider_detected',\n provider: id,\n };\n\n get().providers.events.push(event);\n }\n },\n});\n\nexport { providersStore };\n", "import type { Actions, Context, Operators } from '../hub/namespaces/types.js';\nimport type { AnyFunction, FunctionWithContext } from '../types/actions.js';\n\nexport interface ActionByBuilder<T, Context> {\n actionName: keyof T;\n and: Operators<T>;\n or: Operators<T>;\n after: Operators<T>;\n before: Operators<T>;\n action: FunctionWithContext<T[keyof T], Context>;\n}\n\n/*\n * TODO:\n * Currently, to use this builder you will write something like this:\n * new ActionBuilder<EvmActions, 'disconnect'>('disconnect').after(....)\n *\n * I couldn't figure it out to be able typescript infer the constructor value as key of actions.\n * Ideal usage:\n * new ActionBuilder<EvmActions>('disconnect').after(....)\n *\n */\nexport class ActionBuilder<T extends Actions<T>, K extends keyof T> {\n readonly name: K;\n #and: Operators<T> = new Map();\n #or: Operators<T> = new Map();\n #after: Operators<T> = new Map();\n #before: Operators<T> = new Map();\n #action: FunctionWithContext<T[keyof T], Context<T>> | undefined;\n\n constructor(name: K) {\n this.name = name;\n }\n\n public and(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#and.has(this.name)) {\n this.#and.set(this.name, []);\n }\n this.#and.get(this.name)?.push(action);\n return this;\n }\n\n public or(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#or.has(this.name)) {\n this.#or.set(this.name, []);\n }\n this.#or.get(this.name)?.push(action);\n return this;\n }\n\n public before(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#before.has(this.name)) {\n this.#before.set(this.name, []);\n }\n this.#before.get(this.name)?.push(action);\n return this;\n }\n\n public after(action: FunctionWithContext<AnyFunction, Context<T>>) {\n if (!this.#after.has(this.name)) {\n this.#after.set(this.name, []);\n }\n this.#after.get(this.name)?.push(action);\n return this;\n }\n\n public action(action: FunctionWithContext<T[keyof T], Context<T>>) {\n this.#action = action;\n return this;\n }\n\n public build(): ActionByBuilder<T, Context<T>> {\n if (!this.#action) {\n throw new Error('Your action builder should includes an action.');\n }\n\n return {\n actionName: this.name,\n action: this.#action,\n before: this.#before,\n after: this.#after,\n and: this.#and,\n or: this.#or,\n };\n }\n}\n", "/*\n * It is not a good idea to re-export all of CAIP because if they have a breaking change, we will break as well.\n * It would be better to create an abstraction over them and export our own interface to ensure it is under our control.\n */\nexport * as CAIP from 'caip';\n\nexport { generateStoreId } from '../hub/helpers.js';\nexport * from './versions.js';\n", "import type {\n Actions,\n Context,\n SubscriberCleanUp,\n} from '../../../hub/namespaces/types.js';\nimport type { Subscriber } from '../../../mod.js';\nimport type { AutoImplementedActionsByRecommended } from '../types.js';\n\ntype OnSwitchAccountEvent<EventType> = {\n payload: EventType;\n preventDefault: () => void;\n};\n\nexport class ChangeAccountSubscriberBuilder<\n EventType,\n ProviderAPI,\n ActionsType extends Actions<ActionsType> &\n Actions<AutoImplementedActionsByRecommended>\n> {\n #getInstance: (() => ProviderAPI) | null = null;\n #format:\n | ((instance: ProviderAPI, event: EventType) => Promise<string[]>)\n | null = null;\n #onSwitchAccount:\n | ((\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void)\n | null = null;\n\n #addEventListener:\n | ((\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void)\n | null = null;\n #removeEventListener:\n | ((instance: ProviderAPI, callback: (event: EventType) => void) => void)\n | null = null;\n\n /**\n * Sets the function that provides the provider API instance.\n *\n * @param operator - Function that returns the provider API instance\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.getInstance(() => window.ethereum)\n * ```\n */\n public getInstance(operator: () => ProviderAPI) {\n this.#getInstance = operator;\n return this;\n }\n\n /**\n * Sets the formatter function that converts provider events to account strings.\n *\n * @param operator - Function that takes a provider instance and event, returns array of account strings\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.format(async (instance, event) => event.accounts || [])\n * ```\n */\n public format(\n operator: (instance: ProviderAPI, event: EventType) => Promise<string[]>\n ) {\n this.#format = operator;\n return this;\n }\n\n /**\n * Set a handler that runs whenever a **switch-account** event occurs.\n *\n * The provided operator is called with:\n * - `event`: An object containing:\n * - `payload`: The event payload associated with the account switch.\n * - `preventDefault`: A function that prevents the default switch-account\n * behavior (e.g., updating the active accounts list).\n * - `context`: The execution context of the current flow or action.\n *\n * Calling `event.preventDefault()` inside the handler cancels the built-in\n * account switching logic.\n *\n * @param operator - A function invoked on each switch-account event.\n * It receives `(event, context)` and can call `event.preventDefault()` to\n * stop the default behavior.\n *\n * @returns The builder instance for method chaining.\n *\n * @example\n * ```ts\n * builder.onSwitchAccount((event, context) => {\n * if (!event.payload.userConfirmed) {\n * event.preventDefault(); // cancel default account switch\n * }\n *\n * console.log(\"Switching account:\", event.payload.accountId);\n * });\n * ```\n */\n public onSwitchAccount(\n operator: (\n event: OnSwitchAccountEvent<EventType>,\n context: Context<ActionsType>\n ) => void\n ) {\n this.#onSwitchAccount = operator;\n return this;\n }\n\n /**\n * Sets the event listener attachment function.\n *\n * @param operator - Function that attaches an event listener and optionally returns a cleanup function\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.addEventListener((instance, callback) => {\n * return instance.on('accountsChanged', callback);\n * })\n * ```\n */\n public addEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => (() => void) | void\n ) {\n this.#addEventListener = operator;\n return this;\n }\n\n /**\n * Sets the event listener removal function.\n *\n * @param operator - Function that removes an event listener from the provider\n * @returns The builder instance for method chaining\n * @example\n * ```typescript\n * builder.removeEventListener((instance, callback) => instance.off('accountsChanged', callback))\n * ```\n */\n public removeEventListener(\n operator: (\n instance: ProviderAPI,\n callback: (event: EventType) => void\n ) => void\n ) {\n this.#removeEventListener = operator;\n return this;\n }\n public build(): [Subscriber<ActionsType>, SubscriberCleanUp<ActionsType>] {\n if (this.#getInstance === null) {\n throw new Error(this.#getErrorMessage('getInstance'));\n }\n if (this.#format === null) {\n throw new Error(this.#getErrorMessage('format'));\n }\n if (this.#addEventListener === null) {\n throw new Error(this.#getErrorMessage('addEventListener'));\n }\n if (this.#removeEventListener === null) {\n throw new Error(this.#getErrorMessage('removeEventListener'));\n }\n\n /**\n * Capture current operator state at build time to ensure immutability.\n *\n * This creates a snapshot of all operators, preventing the built subscriber\n * from being affected by subsequent changes to the builder instance.\n * Each call to build() gets its own isolated set of operators, allowing\n * the builder to be reused for creating multiple independent subscribers.\n */\n const getInstance = this.#getInstance;\n const format = this.#format;\n const addEventListener = this.#addEventListener;\n const removeEventListener = this.#removeEventListener;\n const onSwitchAccount = this.#onSwitchAccount;\n\n let subscriber: (event: EventType) => void;\n let unsubscribe: (() => void) | void;\n return [\n async (context) => {\n const [, setState] = context.state();\n const instance = getInstance();\n\n if (!instance) {\n throw new Error(\n 'Trying to subscribe to your wallet, but seems its instance is not available.'\n );\n }\n subscriber = async (event) => {\n let shouldProceedWithDefault = true;\n onSwitchAccount?.(\n {\n payload: event,\n preventDefault: () => {\n shouldProceedWithDefault = false;\n },\n },\n context\n );\n if (!shouldProceedWithDefault) {\n return;\n }\n setState('accounts', await format(instance, event));\n };\n unsubscribe = addEventListener(instance, subscriber);\n },\n (_, err) => {\n /**\n * Call the cleanup function if addEventListener returned one.\n * This handles providers that return an unsubscribe function from their event listeners.\n */\n if (unsubscribe && typeof unsubscribe === 'function') {\n unsubscribe();\n }\n const instance = getInstance();\n\n /**\n * Always call removeEventListener as well to handle the on/off pattern.\n * This ensures cleanup works regardless of which pattern the provider uses.\n */\n removeEventListener(instance, subscriber);\n\n // subscriber can be passed to `or`, it will get the error and should rethrow error to pass the error to next `or` or throw error.\n return err;\n },\n ];\n }\n #getErrorMessage(operatorName: string) {\n return `Required \"${operatorName}\" operation has not been set for \"changeAccountSubscriber\"`;\n }\n}\n", "import { AccountId } from 'caip';\n\nexport function isValidCaipAddress(address: string): boolean {\n try {\n AccountId.parse(address);\n return true;\n } catch {\n return false;\n }\n}\n", "import type {\n Accounts,\n AccountsWithActiveChain,\n} from './../../types/accounts.js';\nimport type { Context } from '../../hub/namespaces/mod.js';\n\nimport { isValidCaipAddress } from './helpers.js';\n\nexport function connectAndUpdateStateForSingleNetwork(\n context: Context,\n accounts: Accounts\n) {\n if (!accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts);\n setState('connected', true);\n return accounts;\n}\n\nexport function connectAndUpdateStateForMultiNetworks(\n context: Context,\n accounts: AccountsWithActiveChain\n) {\n if (!accounts.accounts.every(isValidCaipAddress)) {\n throw new Error(\n `Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${accounts.accounts}`\n );\n }\n\n const [, setState] = context.state();\n setState('accounts', accounts.accounts);\n setState('network', accounts.network);\n setState('connected', true);\n return accounts;\n}\n\nexport const recommended = [];\n", "import type { Context } from '../../hub/namespaces/mod.js';\n\nexport function intoConnecting(context: Context) {\n const [, setState] = context.state();\n setState('connecting', true);\n}\n\n// Please consider if you are going to add something here, make sure it works on all namespaces.\nexport const recommended = [['connect', intoConnecting] as const];\n", "import { beforeRecommended } from '../common/mod.js';\n\nexport const recommended = [...beforeRecommended];\n", "import type { EvmActions, ProviderAPI } from './types.js';\n\nimport { ActionBuilder } from '../../mod.js';\nimport { ChangeAccountSubscriberBuilder } from '../common/hooks/changeAccountSubscriber.js';\nimport {\n connectAndUpdateStateForMultiNetworks,\n intoConnecting,\n intoConnectionFinished,\n} from '../common/mod.js';\n\nimport { formatAccountsToCAIP } from './utils.js';\n\n// Actions\nexport const connect = () =>\n new ActionBuilder<EvmActions, 'connect'>('connect')\n .and(connectAndUpdateStateForMultiNetworks)\n .before(intoConnecting)\n .after(intoConnectionFinished);\n\nexport const canEagerConnect = () =>\n new ActionBuilder<EvmActions, 'canEagerConnect'>('canEagerConnect');\nexport const canSwitchNetwork = () =>\n new ActionBuilder<EvmActions, 'canSwitchNetwork'>('canSwitchNetwork');\n\n// Hooks\nexport const changeAccountSubscriber = (getInstance: () => ProviderAPI) =>\n new ChangeAccountSubscriberBuilder<string[], ProviderAPI, EvmActions>()\n .getInstance(getInstance)\n /*\n * In some wallets, when a user switches to an account not yet connected to the dApp, it returns null.\n * A null value indicates no access to the account, requiring a disconnect and user reconnection.\n * This behavior may vary across different wallets, and if so, a different approach may be needed.\n */\n .onSwitchAccount((event, context) => {\n if (!event.payload || !event.payload.length) {\n context.action('disconnect');\n event.preventDefault();\n }\n })\n .format(async (instance, accounts) => {\n const chainId = await instance.request({ method: 'eth_chainId' });\n return formatAccountsToCAIP(accounts, chainId);\n })\n .addEventListener((instance, callback) => {\n instance.on('accountsChanged', callback);\n })\n .removeEventListener((instance, callback) => {\n instance.removeListener?.('accountsChanged', callback);\n });\n\nexport const getChainId = () =>\n new ActionBuilder<EvmActions, 'getChainId'>('getChainId');\n"],
5
+ "mappings": "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",
6
+ "names": ["actions_exports", "__export", "canEagerConnect", "canSwitchNetwork", "connect", "getChainId", "recommended", "disconnect", "context", "setState", "__name", "recommended", "utils_exports", "__export", "filterAndGetEvmBlockchainNames", "formatAccountsToCAIP", "getAccounts", "isUserRejectionError", "suggestNetwork", "switchNetwork", "switchOrAddNetwork", "AccountId", "evmBlockchains", "CAIP_NAMESPACE", "CAIP_ETHEREUM_CHAIN_ID", "CHAIN_ID_RADIX", "getAccounts", "provider", "accounts", "chainId", "standardChainId", "__name", "suggestNetwork", "instance", "chain", "switchNetwork", "filterAndGetEvmBlockchainNames", "meta", "evmBlockchains", "blockchain", "switchOrAddNetwork", "switchError", "error", "EIP_1193_USER_REJECTION_ERROR_CODE", "isUserRejectionError", "code", "causeCode", "formatAccountsToCAIP", "account", "AccountId", "CAIP_NAMESPACE", "recommended", "connect", "instance", "options", "context", "chain", "setState", "evmInstance", "switchOrAddNetwork", "providerAccounts", "getAccounts", "formatAccountsToCAIP", "__name", "canEagerConnect", "canSwitchNetwork", "params", "network", "supportedChains", "filterAndGetEvmBlockchainNames", "getChainId", "hooks_exports", "__export", "changeAccountSubscriber", "changeChainSubscriber", "changeAccountSubscriber", "instance", "builders_exports", "__name", "changeChainSubscriber", "eventCallback", "context", "evmInstance", "setState", "chainId", "after_exports", "__export", "recommended", "intoConnectionFinished", "context", "setState", "__name", "recommended", "recommended", "and_exports", "__export", "recommended", "createZustandStore", "produce", "produce", "ActionBuilder", "__name", "#and", "#or", "#after", "#before", "#action", "name", "action", "CAIP", "ChangeAccountSubscriberBuilder", "__name", "#getInstance", "#format", "#onSwitchAccount", "#addEventListener", "#removeEventListener", "operator", "#getErrorMessage", "getInstance", "format", "addEventListener", "removeEventListener", "onSwitchAccount", "subscriber", "unsubscribe", "context", "setState", "instance", "event", "shouldProceedWithDefault", "_", "err", "operatorName", "AccountId", "isValidCaipAddress", "address", "AccountId", "__name", "connectAndUpdateStateForMultiNetworks", "context", "accounts", "isValidCaipAddress", "setState", "__name", "intoConnecting", "context", "setState", "__name", "recommended", "recommended", "connectAndUpdateStateForMultiNetworks", "before_exports", "__export", "recommended", "recommended", "builders_exports", "__export", "canEagerConnect", "canSwitchNetwork", "changeAccountSubscriber", "connect", "getChainId", "connect", "__name", "ActionBuilder", "connectAndUpdateStateForMultiNetworks", "intoConnecting", "intoConnectionFinished", "canEagerConnect", "canSwitchNetwork", "changeAccountSubscriber", "getInstance", "ChangeAccountSubscriberBuilder", "event", "context", "instance", "accounts", "chainId", "formatAccountsToCAIP", "callback", "getChainId"]
7
7
  }
@@ -2,5 +2,5 @@ import type { ProviderAPI, SolanaActions } from './types.js';
2
2
  import { ActionBuilder } from '../../mod.js';
3
3
  import { ChangeAccountSubscriberBuilder } from '../common/hooks/changeAccountSubscriber.js';
4
4
  export declare const connect: () => ActionBuilder<SolanaActions, "connect">;
5
- export declare const changeAccountSubscriber: (getInstance: () => ProviderAPI) => ChangeAccountSubscriberBuilder<string, ProviderAPI>;
5
+ export declare const changeAccountSubscriber: (getInstance: () => ProviderAPI) => ChangeAccountSubscriberBuilder<string, ProviderAPI, SolanaActions>;
6
6
  //# sourceMappingURL=builders.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"builders.d.ts","sourceRoot":"","sources":["../../../src/namespaces/solana/builders.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE7D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAU5F,eAAO,MAAM,OAAO,+CAIc,CAAC;AAGnC,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAW,wDAmBhE,CAAC"}
1
+ {"version":3,"file":"builders.d.ts","sourceRoot":"","sources":["../../../src/namespaces/solana/builders.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE7D,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,4CAA4C,CAAC;AAU5F,eAAO,MAAM,OAAO,+CAIc,CAAC;AAGnC,eAAO,MAAM,uBAAuB,gBAAiB,MAAM,WAAW,uEAmBhE,CAAC"}
@@ -1,2 +1,2 @@
1
- var T=Object.defineProperty;var t=(n,e)=>T(n,"name",{value:e,configurable:!0});var r=(n,e)=>{for(var o in e)T(n,o,{get:e[o],enumerable:!0})};var M={};r(M,{canEagerConnect:()=>q,connect:()=>X,recommended:()=>J});function k(n){let[,e]=n.state();e("network",null),e("accounts",null),e("connected",!1),e("connecting",!1)}t(k,"disconnect");var O=[["disconnect",k]];var R={};r(R,{formatAccountsToCAIP:()=>a,getAccounts:()=>x});import{AccountId as z}from"caip";var S="solana",A="5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp";async function x(n){let e=await n.connect();return{accounts:[e?e.publicKey.toString():n.publicKey.toString()],chainId:"SOLANA"}}t(x,"getAccounts");function a(n){return n.map(e=>z.format({address:e.toString(),chainId:{namespace:S,reference:A}}))}t(a,"formatAccountsToCAIP");var J=[...O];function X(n){return async()=>{let e=n(),o=await x(e);if(Array.isArray(o))throw new Error("Expecting solana response to be a single value, not an array.");return a(o.accounts)}}t(X,"connect");function q(n){return async()=>{let e=n();if(!e)throw new Error("Trying to eagerly connect to your Solana wallet, but seems its instance is not available.");try{return!!await e.connect({onlyIfTrusted:!0})}catch{return!1}}}t(q,"canEagerConnect");var B={};r(B,{changeAccountSubscriber:()=>Z});function Z(n){return u.changeAccountSubscriber(n).build()}t(Z,"changeAccountSubscriber");var F={};r(F,{recommended:()=>Q});function m(n){let[,e]=n.state();e("connecting",!1)}t(m,"intoConnectionFinished");var C=[["connect",m]];var Q=[...C];var K={};r(K,{recommended:()=>ae});import{createStore as Gt}from"zustand/vanilla";import{produce as Tt}from"immer";import{produce as Ft}from"immer";var s=class{static{t(this,"ActionBuilder")}name;#e=new Map;#t=new Map;#o=new Map;#n=new Map;#r;constructor(e){this.name=e}and(e){return this.#e.has(this.name)||this.#e.set(this.name,[]),this.#e.get(this.name)?.push(e),this}or(e){return this.#t.has(this.name)||this.#t.set(this.name,[]),this.#t.get(this.name)?.push(e),this}before(e){return this.#n.has(this.name)||this.#n.set(this.name,[]),this.#n.get(this.name)?.push(e),this}after(e){return this.#o.has(this.name)||this.#o.set(this.name,[]),this.#o.get(this.name)?.push(e),this}action(e){return this.#r=e,this}build(){if(!this.#r)throw new Error("Your action builder should includes an action.");return{actionName:this.name,action:this.#r,before:this.#n,after:this.#o,and:this.#e,or:this.#t}}};import*as In from"caip";var c=class{static{t(this,"ChangeAccountSubscriberBuilder")}#e=null;#t=null;#o=null;#n=null;#r=null;getInstance(e){return this.#e=e,this}format(e){return this.#t=e,this}onSwitchAccount(e){return this.#o=e,this}addEventListener(e){return this.#n=e,this}removeEventListener(e){return this.#r=e,this}build(){if(this.#e===null)throw new Error(this.#s("getInstance"));if(this.#t===null)throw new Error(this.#s("format"));if(this.#n===null)throw new Error(this.#s("addEventListener"));if(this.#r===null)throw new Error(this.#s("removeEventListener"));let e=this.#e,o=this.#t,L=this.#n,H=this.#r,U=this.#o,f,d;return[async v=>{let[,y]=v.state(),i=e();if(!i)throw new Error("Trying to subscribe to your wallet, but seems its instance is not available.");f=t(async N=>{let P=!0;U?.({payload:N,preventDefault:()=>{P=!1}},v),P&&y("accounts",await o(i,N))},"subscriber"),d=L(i,f)},(v,y)=>{d&&typeof d=="function"&&d();let i=e();return H(i,f),y}]}#s(e){return`Required "${e}" operation has not been set for "changeAccountSubscriber"`}};import{AccountId as ie}from"caip";function j(n){try{return ie.parse(n),!0}catch{return!1}}t(j,"isValidCaipAddress");function p(n,e){if(!e.every(j))throw new Error(`Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${e}`);let[,o]=n.state();return o("accounts",e),o("connected",!0),e}t(p,"connectAndUpdateStateForSingleNetwork");function h(n){let[,e]=n.state();e("connecting",!0)}t(h,"intoConnecting");var w=[["connect",h]];var ae=[["connect",p]];var _={};r(_,{recommended:()=>ce});var ce=[...w];var u={};r(u,{changeAccountSubscriber:()=>de,connect:()=>pe});var pe=t(()=>new s("connect").and(p).before(h).after(m),"connect"),de=t(n=>new c().getInstance(n).onSwitchAccount((e,o)=>{e.payload||(o.action("disconnect"),e.preventDefault())}).format(async(e,o)=>a([o])).addEventListener((e,o)=>{e.on("accountChanged",o)}).removeEventListener((e,o)=>{e.off("accountChanged",o)}),"changeAccountSubscriber");export{S as CAIP_NAMESPACE,A as CAIP_SOLANA_CHAIN_ID,M as actions,F as after,K as and,_ as before,u as builders,B as hooks,R as utils};
1
+ var T=Object.defineProperty;var t=(n,e)=>T(n,"name",{value:e,configurable:!0});var r=(n,e)=>{for(var o in e)T(n,o,{get:e[o],enumerable:!0})};var M={};r(M,{canEagerConnect:()=>q,connect:()=>X,recommended:()=>J});function k(n){let[,e]=n.state();e("network",null),e("accounts",null),e("connected",!1),e("connecting",!1),e("connectArgs",null)}t(k,"disconnect");var O=[["disconnect",k]];var R={};r(R,{formatAccountsToCAIP:()=>a,getAccounts:()=>x});import{AccountId as z}from"caip";var S="solana",A="5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp";async function x(n){let e=await n.connect();return{accounts:[e?e.publicKey.toString():n.publicKey.toString()],chainId:"SOLANA"}}t(x,"getAccounts");function a(n){return n.map(e=>z.format({address:e.toString(),chainId:{namespace:S,reference:A}}))}t(a,"formatAccountsToCAIP");var J=[...O];function X(n){return async()=>{let e=n(),o=await x(e);if(Array.isArray(o))throw new Error("Expecting solana response to be a single value, not an array.");return a(o.accounts)}}t(X,"connect");function q(n){return async()=>{let e=n();if(!e)throw new Error("Trying to eagerly connect to your Solana wallet, but seems its instance is not available.");try{return!!await e.connect({onlyIfTrusted:!0})}catch{return!1}}}t(q,"canEagerConnect");var F={};r(F,{changeAccountSubscriber:()=>Z});function Z(n){return u.changeAccountSubscriber(n).build()}t(Z,"changeAccountSubscriber");var B={};r(B,{recommended:()=>Q});function l(n){let[,e]=n.state();e("connecting",!1)}t(l,"intoConnectionFinished");var C=[["connect",l]];var Q=[...C];var K={};r(K,{recommended:()=>ae});import{createStore as Gt}from"zustand/vanilla";import{produce as Tt}from"immer";import{produce as Bt}from"immer";var s=class{static{t(this,"ActionBuilder")}name;#e=new Map;#t=new Map;#o=new Map;#n=new Map;#r;constructor(e){this.name=e}and(e){return this.#e.has(this.name)||this.#e.set(this.name,[]),this.#e.get(this.name)?.push(e),this}or(e){return this.#t.has(this.name)||this.#t.set(this.name,[]),this.#t.get(this.name)?.push(e),this}before(e){return this.#n.has(this.name)||this.#n.set(this.name,[]),this.#n.get(this.name)?.push(e),this}after(e){return this.#o.has(this.name)||this.#o.set(this.name,[]),this.#o.get(this.name)?.push(e),this}action(e){return this.#r=e,this}build(){if(!this.#r)throw new Error("Your action builder should includes an action.");return{actionName:this.name,action:this.#r,before:this.#n,after:this.#o,and:this.#e,or:this.#t}}};import*as En from"caip";var c=class{static{t(this,"ChangeAccountSubscriberBuilder")}#e=null;#t=null;#o=null;#n=null;#r=null;getInstance(e){return this.#e=e,this}format(e){return this.#t=e,this}onSwitchAccount(e){return this.#o=e,this}addEventListener(e){return this.#n=e,this}removeEventListener(e){return this.#r=e,this}build(){if(this.#e===null)throw new Error(this.#s("getInstance"));if(this.#t===null)throw new Error(this.#s("format"));if(this.#n===null)throw new Error(this.#s("addEventListener"));if(this.#r===null)throw new Error(this.#s("removeEventListener"));let e=this.#e,o=this.#t,L=this.#n,H=this.#r,U=this.#o,f,d;return[async v=>{let[,y]=v.state(),i=e();if(!i)throw new Error("Trying to subscribe to your wallet, but seems its instance is not available.");f=t(async N=>{let P=!0;U?.({payload:N,preventDefault:()=>{P=!1}},v),P&&y("accounts",await o(i,N))},"subscriber"),d=L(i,f)},(v,y)=>{d&&typeof d=="function"&&d();let i=e();return H(i,f),y}]}#s(e){return`Required "${e}" operation has not been set for "changeAccountSubscriber"`}};import{AccountId as ie}from"caip";function j(n){try{return ie.parse(n),!0}catch{return!1}}t(j,"isValidCaipAddress");function p(n,e){if(!e.every(j))throw new Error(`Your provider should format account addresses in CAIP-10 format. Your provided accounts: ${e}`);let[,o]=n.state();return o("accounts",e),o("connected",!0),e}t(p,"connectAndUpdateStateForSingleNetwork");function h(n){let[,e]=n.state();e("connecting",!0)}t(h,"intoConnecting");var w=[["connect",h]];var ae=[["connect",p]];var _={};r(_,{recommended:()=>ce});var ce=[...w];var u={};r(u,{changeAccountSubscriber:()=>de,connect:()=>pe});var pe=t(()=>new s("connect").and(p).before(h).after(l),"connect"),de=t(n=>new c().getInstance(n).onSwitchAccount((e,o)=>{e.payload||(o.action("disconnect"),e.preventDefault())}).format(async(e,o)=>a([o])).addEventListener((e,o)=>{e.on("accountChanged",o)}).removeEventListener((e,o)=>{e.off("accountChanged",o)}),"changeAccountSubscriber");export{S as CAIP_NAMESPACE,A as CAIP_SOLANA_CHAIN_ID,M as actions,B as after,K as and,_ as before,u as builders,F as hooks,R as utils};
2
2
  //# sourceMappingURL=mod.js.map