We are moving VultiConnect repository into https://github.com/vultisig/vultisig-windows , as a workspace , so vulticonnect and windows application can share some of the code
VultiConnect is a Chrome extension similar to MetaMask but much safer. It does not store any critical information such as private keys or passwords. Instead, it allows you to connect your Vultisig app to DeFi applications, enabling you to interact with them and sign transactions on your devices.
You only need to import public keys and vault information into VultiConnect. Unlike MetaMask, if someone hacks your Chrome or the extension, they cannot execute transactions without your approval on your Vultisig devices, as they only have access to public information.
Before building VultiConnect, ensure you have the following installed:
Node.js
(version 18.10.0 or later)pnpm
(for managing packages)npm
(if you need it for specific tasks)
To build the VultiConnect extension, follow these steps:
- Clone the repository:
git clone https://github.com/vultisig/vulticonnect.git
- Navigate to the project directory:
cd vulticonnect
- Install the necessary dependencies using pnpm:
pnpm install
- Build the project for production:
pnpm run build
- Open Chrome and go to
chrome://extensions
. - Enable
Developer mode
by toggling the switch in the top right corner. - Click on
Load unpacked
and select the dist folder from the VultiConnect project directory. - Your extension should now be installed and ready to use.
For details on integrating VultiConnect with your project, see the Integration Guide.