Sui wallet extension
Author: h | 2025-04-24
Overview. Browser wallet for Sui blockchain. Sui Wallet is a Chrome extension self-custody sui wallet extension. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. The Sui Wallet serves as a reference implementation for other potential wallets and
Sui Wallet (SUI) - Trust Wallet
You can add the Sui blockchain to your MetaMask wallet through the Sui MetaMask Snap, which lets you connect to Sui dApps. You can also use the Sui MetaMask Snap to store, send, and stake SUI.Key Takeaways MetaMask Snaps allow non-EVM blockchain account holders to manage their assets from the MetaMask wallet interface. A Snap is a permissioned javascript application that utilizes the MetaMask infrastructure to connect to blockchain accounts and also to decentralized applications. It functions like a browser extension. Thanks to the MetaMask Snap version of the Sui wallet, Sui investors can now manage their assets without installing the traditional Sui wallet, where their MetaMask wallet is used to control approvals on the Sui blockchain. Sui is a non-EVM Layer 1 developed by Mysten Labs with the Move programming language. It runs the delegated Proof of Stake (DPOS) consensus algorithm and claims to offer super-fast transaction processing speed and a relatively low transaction fee. Sui claims up to 125,000 TPS and about $0.001 fee per transaction. According to data from the network explorer, over 8 million unique wallets are active on the network, and over an average of 10 million transactions are executed on the network daily.Despite a few similarities with the Ethereum network, users of the Sui blockchain cannot manage their assets from single-chain EVM wallets like MetaMask. This connection is only possible through a MetaMask Snap. This is the same for other non-EVM networks, like Solana. Snaps are a recent development by MetaMask and are opening interoperability opportunities for MetaMask and the wider crypto space. MetaMask Snaps are currently available for the MetaMask browser extension only. MetaMask snaps extend the functionalities of the MetaMask wallet. They are third-party applications that utilize the MetaMask wallet to function, requiring permission from the wallet owner. Currently, there are three categories of MetaMask Snaps.Transaction analysis Snaps like Tenderly gives users an in-app explanation of the transaction they are about to execute, offering users knowledge of the security and a preview of the result of the transaction.Interoperability Snaps bridge the gap between MetaMask wallet and non-EVM networks. It enables users on. Overview. Browser wallet for Sui blockchain. Sui Wallet is a Chrome extension self-custody sui wallet extension. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. The Sui Wallet serves as a reference implementation for other potential wallets and Sui Wallet is a Chrome extension self-custody sui wallet extension. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. The Sui Wallet serves as a reference implementation for other potential wallets and applications in the Sui ecosystem. Sui Wallet extension is a Chrome extension self-custody wallet. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. The Sui Wallet serves as a reference implementation for other potential wallets and applications in the Sui ecosystem. Add to Chrome. Overview. Browser wallet for Sui blockchain. Sui Wallet is a Chrome extension self-custody sui wallet extension. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. Add to Chrome. Overview. Browser wallet for Sui blockchain. Sui Wallet is a Chrome extension self-custody sui wallet extension. The open-sourced Sui Wallet gives Sui users the ability to create an address, view and manage assets on the Sui network, and interact with dApps. The Sui Wallet serves as a reference implementation for other potential Suiet Wallet Adapter⚠️ Deprecation Announcement: This package will not be maintained, please switch to our wallet-kit instead. Because Sui team has come up with a wallet-standard which introduces a standard way to integrate with wallets on Sui.👋 If you want to know how to install/use suiet, please visit our offical website suiet.appor docsIntegrate your DApp with Suiet Wallet from now on 🥳We've presented an adapter that implemented the interfaceof SUI Wallet Adapter for you✨ With this adapter, yourDApp can easily connect with the Suiet Wallet Extension, which enables DApp to retrieve basic info of user's wallet andlaunch manipulation requests such as transaction signing.1️⃣ First-choice integration guideTry our @suiet/wallet-kit for easy integration with thisadapter🥳@suiet/wallet-kit is an all-in-one wallet connection kit with nice UI components for dapps , which connects your dappwith wallets on SUI andempowers your dapp with awesome wallet abilities🪄2️⃣ Manual integration guideFor React DApps, the Sui team has provided React context provider and React hook in thenpmpackage @mysten/wallet-adapter-react. Therefore we can simply register the Suiet Adapter into the official provider and then make use of them.⚠️ Usage with React ONLY: We only support React DApp right now.🚀 Get StartedEasy Integration with Suiet wallet kit🔗 Quick start in minutes: Integration with SUI official kit⚙️ PrerequisitesA React projectInstall required npm packagesnpm install @mysten/wallet-adapter-react @suiet/wallet-adapter🚢 Use Sui wallet provider & Register Suiet adapter );">// main.jsimport {WalletProvider} from "@mysten/wallet-adapter-react";import {SuietWalletAdapter} from "@suiet/wallet-adapter";const supportedWallets = [ {adapter: new SuietWalletAdapter()},];ReactDOM.createRoot(document.getElementById("root")).render( React.StrictMode> WalletProvider supportedWallets={supportedWallets}> App/> WalletProvider> React.StrictMode>);✅ Retrieve data and launch manipulations { if (!connected || !wallet) return; (async function () { console.log(wallet.adapter.name); const accounts = await getAccounts(); console.log(accounts); })(); }, [connected, wallet]); async function handleExecuteMoveCall() { await executeMoveCall({ packageObjectId: "0x2", module: "devnet_nft", function: "mint", typeArguments: [], arguments: [ "name", "capy", " ], gasBudget: 10000, }); } return ( Current wallet: {wallet ? wallet.adapter.name : 'null'} { if (!connected) { select('Suiet'); } else { disconnect(); } }} > {connecting ? "connecting" : connected ? "Disconnect" : "connect"} )}">// App.jsximport {useEffect} from "react";import {useWallet} from "@mysten/wallet-adapter-react";function App() { const { select, wallet, connected, connecting, disconnect, getAccounts, executeMoveCall, } = useWallet(); useEffect(() => { if (!connected || !wallet) return; (async function () { console.log(wallet.adapter.name); const accounts = await getAccounts(); console.log(accounts); })(); }, [connected, wallet]); async function handleExecuteMoveCall() { await executeMoveCall({ packageObjectId: "0x2", module: "devnet_nft", function: "mint", typeArguments: [], arguments: [ "name", "capy", " ], gasBudget: 10000, }); } return ( div className={'app'}> h1>Current wallet: {wallet ? wallet.adapter.name : 'null'}h1> button onClick={() => { if (!connected) { select('Suiet'); } else { disconnect(); } }} > {connecting ? "connecting" : connected ? "Disconnect" : "connect"} button> div> )}There you go ✅ Go connect with our wallet with custom UI selector!✨ FeaturesSign Message⚠️ Sui official react kit doesn't support this feature right now.You can try our @suiet/wallet-kit which fully support it and alsomany handful features Promise">signMessage: (input: { message: Uint8Array }) => Promise{ signature: Uint8Array; signedMessage: Uint8Array;}>If you are using @suiet/wallet-kit, you can use signMessage function from hooks.If you are using SUI official kit which has not supported this feature, youComments
You can add the Sui blockchain to your MetaMask wallet through the Sui MetaMask Snap, which lets you connect to Sui dApps. You can also use the Sui MetaMask Snap to store, send, and stake SUI.Key Takeaways MetaMask Snaps allow non-EVM blockchain account holders to manage their assets from the MetaMask wallet interface. A Snap is a permissioned javascript application that utilizes the MetaMask infrastructure to connect to blockchain accounts and also to decentralized applications. It functions like a browser extension. Thanks to the MetaMask Snap version of the Sui wallet, Sui investors can now manage their assets without installing the traditional Sui wallet, where their MetaMask wallet is used to control approvals on the Sui blockchain. Sui is a non-EVM Layer 1 developed by Mysten Labs with the Move programming language. It runs the delegated Proof of Stake (DPOS) consensus algorithm and claims to offer super-fast transaction processing speed and a relatively low transaction fee. Sui claims up to 125,000 TPS and about $0.001 fee per transaction. According to data from the network explorer, over 8 million unique wallets are active on the network, and over an average of 10 million transactions are executed on the network daily.Despite a few similarities with the Ethereum network, users of the Sui blockchain cannot manage their assets from single-chain EVM wallets like MetaMask. This connection is only possible through a MetaMask Snap. This is the same for other non-EVM networks, like Solana. Snaps are a recent development by MetaMask and are opening interoperability opportunities for MetaMask and the wider crypto space. MetaMask Snaps are currently available for the MetaMask browser extension only. MetaMask snaps extend the functionalities of the MetaMask wallet. They are third-party applications that utilize the MetaMask wallet to function, requiring permission from the wallet owner. Currently, there are three categories of MetaMask Snaps.Transaction analysis Snaps like Tenderly gives users an in-app explanation of the transaction they are about to execute, offering users knowledge of the security and a preview of the result of the transaction.Interoperability Snaps bridge the gap between MetaMask wallet and non-EVM networks. It enables users on
2025-04-24Suiet Wallet Adapter⚠️ Deprecation Announcement: This package will not be maintained, please switch to our wallet-kit instead. Because Sui team has come up with a wallet-standard which introduces a standard way to integrate with wallets on Sui.👋 If you want to know how to install/use suiet, please visit our offical website suiet.appor docsIntegrate your DApp with Suiet Wallet from now on 🥳We've presented an adapter that implemented the interfaceof SUI Wallet Adapter for you✨ With this adapter, yourDApp can easily connect with the Suiet Wallet Extension, which enables DApp to retrieve basic info of user's wallet andlaunch manipulation requests such as transaction signing.1️⃣ First-choice integration guideTry our @suiet/wallet-kit for easy integration with thisadapter🥳@suiet/wallet-kit is an all-in-one wallet connection kit with nice UI components for dapps , which connects your dappwith wallets on SUI andempowers your dapp with awesome wallet abilities🪄2️⃣ Manual integration guideFor React DApps, the Sui team has provided React context provider and React hook in thenpmpackage @mysten/wallet-adapter-react. Therefore we can simply register the Suiet Adapter into the official provider and then make use of them.⚠️ Usage with React ONLY: We only support React DApp right now.🚀 Get StartedEasy Integration with Suiet wallet kit🔗 Quick start in minutes: Integration with SUI official kit⚙️ PrerequisitesA React projectInstall required npm packagesnpm install @mysten/wallet-adapter-react @suiet/wallet-adapter🚢 Use Sui wallet provider & Register Suiet adapter );">// main.jsimport {WalletProvider} from "@mysten/wallet-adapter-react";import {SuietWalletAdapter} from "@suiet/wallet-adapter";const supportedWallets = [ {adapter: new SuietWalletAdapter()},];ReactDOM.createRoot(document.getElementById("root")).render( React.StrictMode> WalletProvider supportedWallets={supportedWallets}> App/> WalletProvider> React.StrictMode>);✅ Retrieve data and launch manipulations { if (!connected || !wallet) return; (async function () { console.log(wallet.adapter.name); const accounts = await getAccounts(); console.log(accounts); })(); }, [connected, wallet]); async function handleExecuteMoveCall() { await executeMoveCall({ packageObjectId: "0x2", module: "devnet_nft", function: "mint", typeArguments: [], arguments: [ "name", "capy", " ], gasBudget: 10000, }); } return ( Current wallet: {wallet ? wallet.adapter.name : 'null'} { if (!connected) { select('Suiet'); } else { disconnect(); } }} > {connecting ? "connecting" : connected ? "Disconnect" : "connect"} )}">// App.jsximport {useEffect} from "react";import {useWallet} from "@mysten/wallet-adapter-react";function App() { const { select, wallet, connected, connecting, disconnect, getAccounts, executeMoveCall, } = useWallet(); useEffect(() => { if (!connected || !wallet) return; (async function () { console.log(wallet.adapter.name); const accounts = await getAccounts(); console.log(accounts); })(); }, [connected, wallet]); async function handleExecuteMoveCall() { await executeMoveCall({ packageObjectId: "0x2", module: "devnet_nft", function: "mint", typeArguments: [], arguments: [ "name", "capy", " ], gasBudget: 10000, }); } return ( div className={'app'}> h1>Current wallet: {wallet ? wallet.adapter.name : 'null'}h1> button onClick={() => { if (!connected) { select('Suiet'); } else { disconnect(); } }} > {connecting ? "connecting" : connected ? "Disconnect" : "connect"} button> div> )}There you go ✅ Go connect with our wallet with custom UI selector!✨ FeaturesSign Message⚠️ Sui official react kit doesn't support this feature right now.You can try our @suiet/wallet-kit which fully support it and alsomany handful features Promise">signMessage: (input: { message: Uint8Array }) => Promise{ signature: Uint8Array; signedMessage: Uint8Array;}>If you are using @suiet/wallet-kit, you can use signMessage function from hooks.If you are using SUI official kit which has not supported this feature, you
2025-03-28Connect Wallet from the homepage. From the wallet options, select Sui MetaMask Snap. Follow the prompt on your wallet to connect to the platform. Your wallet is now connected to the dApp and you can perform any operation available on the platform. Each operation will request approval from your Snap wallet through the MetaMask interface.Send Tokens With Sui MetaMask SnapTo transfer your asset using the MetaMask Snap; Click the Send button on your Sui Snap Wallet homepage. Enter the recipient's address. Click the caret on the right-hand side of the Asset section to select the asset you wish to send. Enter the amount and click Send. Approve the transaction from the prompt on your MetaMask wallet. The asset will arrive at the recipient's wallet once it is confirmed on the network.Stake Tokens With Sui MetaMask SnapYou can also participate in PoS staking on the Sui network from your Sui Snap Wallet. To do this: Click Stake from the wallet homepage Click Stake SUI to continue On the Staking page select the Validator and enter the amount of tokens you wish to stake. Click Stake Now to continue. From the prompt on your wallet, approve the staking transaction. Once this is done, your asset will be staked to the validator and eligible for rewards as stipulated by the network.Here are some common questions from users about MetaMask Snap versions of non-EVM wallets, including the Sui wallet MetaMask Snap.Can you manage your Sui assets within MetaMask?The interface of the Sui wallet MetaMask Snap is similar to the MetaMask wallet interface, however, just like any other wallet Snap, your assets aren’t managed within the MetaMask wallet. MetaMask only functions as a connectivity medium for your Sui Snap Wallet. Your assets are managed within the Sui wallet, but as a Snap, the connectivity is powered by the MetaMask wallet. To manage your assets, you will need to visit the wallet provider’s platform ( for the featured wallet). Just like browser extensions run on another application (the browser), the wallet Snap runs on the MetaMask wallet.CustodianshipYour Sui wallet MetaMask Snap keys are managed by your
2025-04-09OverzichtNightly - your key to MetaverseNightly Wallet is a multi-chain wallet created to embrace the full potential of blockchain. It includes Nightly Wallet - an extension and mobile wallet working on Solana, Near, Aptos, Sui, Movement and others !Wallets are the beginning of every crypto journey. We provide the best possible integrations on each of these chain. Dive into the world of multichain with Nightly and embrace its true potential.Nightly is built by experienced Web3 degens - we know the problems and struggles of crypto users, so we decided to take problems into our own hands and develop real solutions.Download it now!DetailsVersie1.16.7Geüpdatet12 maart 2025Grootte53.79MiBTalenOntwikkelaarAkudama GmbHDorfplatz 16Urnäsch 9107CH Website E-mail [email protected] handelaarDeze ontwikkelaar heeft zichzelf niet geïdentificeerd als handelaar. Voor consumenten in de Europese Unie geldt dat consumentenrechten niet van toepassing zijn op contracten tussen jou en deze ontwikkelaar.PrivacyDe ontwikkelaar heeft aangegeven dat je gegevens niet worden verzameld of gebruikt. Bekijk het privacybeleid van de ontwikkelaar voor meer informatie.Deze ontwikkelaar verklaart dat je gegevens:Niet worden verkocht aan derden, behalve voor de goedgekeurde toepassingenNiet worden gebruikt of overgedragen voor doeleinden die niet zijn gerelateerd aan de kernfunctionaliteit van het itemNiet worden gebruikt of overgedragen om de kredietwaardigheid te bepalen of voor doeleinden met betrekking tot leningenSupportGerelateerdFuel Wallet2,9(117)The official Fuel WalletFewcha Move Wallet5,0(6K)Non-Custodial Wallet created for Move Ecosystem (Sui/Aptos)Pelagus4,2(44)The community owned and operated Quai Web3 wallet.Taho4,4(71)The community owned and operated Web3 wallet.Petra Aptos Wallet4,9(1,7K)A crypto wallet on Aptos.Backpack4,6(350)A next level crypto wallet for Solana, Ethereum, Arbitrum, Base, Polygon, Optimism, Eclipse, and Sonic.Razor Wallet4,1(44)Your Gateway into Movement EcosystemMyriad Markets4,7(61)Predict, earn, and engage with Myriad Markets — interactive prediction markets on your favorite platforms and news sources.Z3US3,9(19)An open source community centered browser wallet for the Radix DLT network.xdata3,9(37)Collect tweets and earn $Wafer tokenSubWallet - Polkadot Wallet4,6(155)Comprehensive Web3 wallet solution for Polkadot, Substrate & Ethereum ecosystemsBearBy4,2(12)Bearby the massa blockchain wallet, bearby the best way to join massa ecosystem, user friendly ui/ux and faster interfaceFuel Wallet2,9(117)The official Fuel WalletFewcha Move Wallet5,0(6K)Non-Custodial Wallet created for Move Ecosystem (Sui/Aptos)Pelagus4,2(44)The community owned and operated Quai Web3 wallet.Taho4,4(71)The community owned and operated Web3 wallet.Petra Aptos Wallet4,9(1,7K)A crypto wallet on Aptos.Backpack4,6(350)A next level crypto wallet for Solana, Ethereum, Arbitrum, Base, Polygon, Optimism, Eclipse, and Sonic.Razor Wallet4,1(44)Your Gateway into Movement EcosystemMyriad Markets4,7(61)Predict, earn, and engage with Myriad Markets — interactive prediction markets on your favorite platforms and news sources.
2025-03-27Other networks including Bitcoin and blockchains like Sui, Cosmos, and Solana to manage their assets via the MetaMask wallet. Other use cases like transaction notifications can also be developed using MetaMask Snaps.This article discusses the Sui Snap Wallet and how Sui investors can manage their assets using the Snap.The MetaMask Snap directory is the recommended source of MetaMask Snap. Snaps can also be installed from the developer’s platform; however, it is advised to verify the authenticity of the source before installing a Snap from external sources.To install the Sui Snap Wallet: Visit the MetaMask Snaps directory. Search Sui in the search box and select the Sui Snap Wallet by Kuna Labs (or any other Snap you wish to install). From the right-hand side of the Snap’s page, click Add to MetaMask. Follow the prompts from your MetaMask Wallet to complete the installation process. From the prompts, verify the permissions requested by the application and only proceed with the installation if you are ok with them.Your Sui Snap Wallet has now been installed. Follow the instructions and visit the Snap provider’s website to connect your wallet to MetaMask and view your account. Click Connect and follow the prompt on your wallet to complete. Your account is now ready to use. You can find your wallet address at the top of the wallet interface. Click the Copy icon to copy your address.The Sui Snap Wallet is built for diverse use cases, just like the normal wallet. Here are some operations you can carry out with your Sui MetaMask snap;Now, let’s look at how you can use the Sui Snap Wallet to connect to dApps, send tokens, and stake. Connect to a dApp via Sui MetaMask SnapAs a Layer 1 network, Sui supports multiple dApps. It is designed to support DeFi, NFT, and utility applications. You can connect to any of these applications using your Sui Snap Wallet if the application has developed support for Snaps. We will use the Cetus Finance dApp as an example – the procedure is similar for other dApps on the network: Visit the Cetus Finance platform Click
2025-04-22