{"id":44873954,"url":"https://github.com/wharfkit/wallet-plugin-cloudwallet","last_synced_at":"2026-02-17T13:33:58.748Z","repository":{"id":65746557,"uuid":"598705520","full_name":"wharfkit/wallet-plugin-cloudwallet","owner":"wharfkit","description":"WalletPlugin for the Wharf Session Kit. Allow users to login and sign transactions with MyCloudWallet.com.","archived":false,"fork":false,"pushed_at":"2025-12-12T18:28:34.000Z","size":234,"stargazers_count":5,"open_issues_count":2,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-14T08:57:17.459Z","etag":null,"topics":["mycloudwallet","wallet-plugin"],"latest_commit_sha":null,"homepage":"https://wharfkit.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wharfkit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"custom":"https://greymass.com/support-us"}},"created_at":"2023-02-07T16:44:12.000Z","updated_at":"2025-12-12T18:28:39.000Z","dependencies_parsed_at":"2024-01-15T22:11:09.821Z","dependency_job_id":"28961842-44e9-4d2a-b6a7-7af632260aba","html_url":"https://github.com/wharfkit/wallet-plugin-cloudwallet","commit_stats":{"total_commits":34,"total_committers":2,"mean_commits":17.0,"dds":0.02941176470588236,"last_synced_commit":"5f8462c07f0bae0edc4a728a80b5abd5946be526"},"previous_names":["wharfkit/wallet-plugin-wax"],"tags_count":23,"template":false,"template_full_name":"wharfkit/wallet-plugin-template","purl":"pkg:github/wharfkit/wallet-plugin-cloudwallet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fwallet-plugin-cloudwallet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fwallet-plugin-cloudwallet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fwallet-plugin-cloudwallet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fwallet-plugin-cloudwallet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wharfkit","download_url":"https://codeload.github.com/wharfkit/wallet-plugin-cloudwallet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fwallet-plugin-cloudwallet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29545642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T13:00:00.370Z","status":"ssl_error","status_checked_at":"2026-02-17T12:57:14.072Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mycloudwallet","wallet-plugin"],"created_at":"2026-02-17T13:33:58.658Z","updated_at":"2026-02-17T13:33:58.737Z","avatar_url":"https://github.com/wharfkit.png","language":"TypeScript","funding_links":["https://greymass.com/support-us"],"categories":[],"sub_categories":[],"readme":"# @wharfkit/wallet-plugin-cloudwallet\n\nA Session Kit wallet plugin for the [CloudWallet](https://mycloudwallet.com).\n\n## Usage\n\nInclude this wallet plugin while initializing the SessionKit.\n\n**NOTE**: This wallet plugin will only work with the SessionKit and requires a browser-based environment.\n\n```ts\nimport {WalletPluginCloudWallet} from '@wharfkit/wallet-plugin-cloudwallet'\n\nconst kit = new SessionKit({\n    // ... your other options\n    walletPlugins: [new WalletPluginCloudWallet()],\n})\n```\n\nIf you need to modify which chains are supported, modify the URLs being used, or alter the timeout, you can specify one or more of these paramaters during plugin initialization.\n\n```ts\nimport {WalletPluginCloudWallet} from '@wharfkit/wallet-plugin-cloudwallet'\n\nconst kit = new SessionKit({\n    // ... your other options\n    walletPlugins: [\n        new WalletPluginCloudWallet({\n            supportedChains: [\n                '1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4', // WAX (Mainnet)\n            ],\n            url: 'https://www.mycloudwallet.com',\n            autoUrl: 'https://idm-api.mycloudwallet.com/v1/accounts/auto-accept',\n            loginTimeout: 300000, // 5 minutes\n        }),\n    ],\n})\n```\n\n## Direct Connect Feature\n\nThe CloudWallet plugin supports a direct connect feature that allows mobile dapp users to seamlessly login by connecting with the MyCloudWallet app installed on the same device. This eliminates the need for manual account entry and provides a smoother user experience on mobile platforms.\n\nTo enable this feature, configure the `mobileAppConnectConfig` parameter with your dapp's information during plugin initialization:\n\n```ts\nimport {WalletPluginCloudWallet} from '@wharfkit/wallet-plugin-cloudwallet'\n\nconst kit = new SessionKit({\n    // ... your other options\n    walletPlugins: [\n        new WalletPluginCloudWallet({\n            mobileAppConnectConfig: {\n                dappInfo: {\n                    name: 'My Awesome DApp',\n                    description: 'A revolutionary blockchain application',\n                    schema: 'myawesomeapp://',\n                    logoUrl: 'https://myapp.com/logo.png',\n                },\n            },\n            // ... other plugin options\n        }),\n    ],\n})\n```\n\n### Configuration Options\n\nThe `mobileAppConnectConfig.dappInfo` follows the `IDappInfo` interface structure:\n\n- **name** *(optional)*: The display name of your dapp that will be shown to users\n- **logoUrl** *(optional)*: URL to your dapp's logo image that will be displayed during the connection process\n- **schema** *(optional)*: The deep link schema for your dapp (used for redirecting back to your app)\n- **description** *(optional)*: A brief description of your dapp's purpose or functionality\n\n**Note**: All properties in the `IDappInfo` interface are optional and can be omitted if not needed for your use case.\n\nWhen properly configured, users on mobile devices will be able to authenticate directly through the MyCloudWallet app without needing to manually enter their credentials or navigate through web-based login flows. The MyCloudWallet app will display your dapp's information during the authentication process, providing users with clear context about the connection request.\n\n**Note**: The direct connect feature is only available on supported mobile environments. When users are accessing your dapp via web browsers or unsupported mobile browsers, they will automatically fall back to login via the MyCloudWallet web interface.\n\n## Developing\n\nYou need [Make](https://www.gnu.org/software/make/), [node.js](https://nodejs.org/en/) and [yarn](https://classic.yarnpkg.com/en/docs/install) installed.\n\nClone the repository and run `make` to checkout all dependencies and build the project. See the [Makefile](./Makefile) for other useful targets. Before submitting a pull request make sure to run `make lint`.\n\n---\n\nMade with ☕️ \u0026 ❤️ by [Greymass](https://greymass.com), if you find this useful please consider [supporting us](https://greymass.com/support-us).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwharfkit%2Fwallet-plugin-cloudwallet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwharfkit%2Fwallet-plugin-cloudwallet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwharfkit%2Fwallet-plugin-cloudwallet/lists"}