Get Started
The DOSwap SDK provides a straightforward method to create your own ecosystem wallet. It offers a code-splitting environment and essential tools to bring your wallet SDK to life, making the process both easy and efficient.
Video
Requirements
To ensure optimal functionality, your code editor and project must use the same TypeScript version.
TypeScript Version: Ensure you have TypeScript version 5.0.2 or higher installed.
TS Config Setup:
Set the
compilerOptions.moduleResolution
tobundler
.
Enable Code Splitting: Configure your project to support code splitting for enhanced performance.
This setup will help maintain consistency and leverage TypeScript's latest features efficiently.
Install the DOSafe SDK
In your wallet SDK directory, use your preferred package manager to install the latest Ecosystem SDK version:
npm install @dos.me/wallet-sdk
Creating your wallet SDK
Import the SDK
import DOSafeSDK from "@dos.me/wallet-sdk";
Initialize the SDK
Create a new instance of the DOSafe SDK with your configuration parameters:
Configuration parameters
The following table describes the configuration parameters for the DOSafe SDK:
Parameter
Required
Description
appName
Yes
Your application name
appLogoUrl
Yes
URL of your application logo
backendUrl
Yes
DOSafe backend URL for authentication
walletUrl
Yes
DOSafe wallet URL for transactions
ecosystemId
Yes
Your ecosystem ID provided by DOSafe
tokens
Yes
Token configuration by chain
contractNFTs
Yes
List of NFT contracts
chainsSupported
Yes
Array of supported chainIds
policies
Yes
Object containing policy IDs by chainId
webPublicKey
Yes
Your web public key for verification
typeSDK
Yes
SDK type ('sdk' or 'popup')
explorerUrl
No
Blockchain explorer URL
chainDefault
Yes
Default chainId to display first
Environment URLs
Backend URL (backendUrl)
Development: https://beta.dos.me
Production: https://api.dos.me
Wallet URLs (walletUrl)
Development: https://test-of-wallet.doschain.com
Production: https://wallet.doschain.com
Token configuration (tokens)
The tokens
parameter requires a specific JSON structure:
[!IMPORTANT] To obtain policy IDs and register token/NFT contracts in the DOSafe system, contact DOSafe support at hepl@doschain.com.
SDK methods
The following methods are available on the SDK instance:
Open wallet popup
Manually opens the wallet popup interface.
Logout
Disconnects from the wallet and clears the session.
Read from contract
Reads data from a smart contract.
Write to contract
Executes a transaction on a smart contract.
TypeScript support
For TypeScript projects, create a declaration file named dosafe-sdk.d.ts with the following type definitions:
Troubleshooting
Tip: Ensure the
chainDefault
value is part of thechainsSupported
array.
Note: Register ERC-20 token contracts and NFT contracts in the DOSafe system before
Last updated
Was this helpful?