🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@circle-fin/developer-controlled-wallets

Package Overview
Dependencies
Maintainers
6
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@circle-fin/developer-controlled-wallets

This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in NodeJS. For the API reference, see the [Circle Web3 API docs](https://developers.circle.com/api-reference/w3s/common/ping).

8.0.0
latest
npm
Version published
Weekly downloads
3.3K
-22.13%
Maintainers
6
Weekly downloads
 
Created
Source

Circle's Developer Controlled Wallets NodeJS SDK

This SDK provides convenient access to Circle's Developer Controlled Wallets APIs for applications written in NodeJS. For the API reference, see the Circle Web3 API docs.

Installation

Install the package with:

npm install @circle-fin/developer-controlled-wallets --save

or

yarn add @circle-fin/developer-controlled-wallets

Usage

  • Generate an API key, if you haven't already, in the Web3 Services Console. This API key will be used for authentication and authorization when making requests to Circle's APIs.

  • Generate a new entity secret by using the helper function in the SDK. This will print a new entity secret to the console which you can copy and use it in step 3 to register the secret.

    const { generateEntitySecret } = require('@circle-fin/developer-controlled-wallets')
    
    generateEntitySecret()
    

    or

    import { generateEntitySecret } from '@circle-fin/developer-controlled-wallets'
    
    generateEntitySecret()
    

[!IMPORTANT] Protect your Entity Secret as you would protect your house key. Losing it or sharing it with others can have serious consequences. As the name suggests, the Entity Secret is sensitive information. Store it securely and treat it with the highest level of confidentiality to prevent unauthorized access or use.

  • Register the entity secret either by using the SDK or by following Circle's Developer-Controlled QuickStart. This step ensures that your account is correctly set up to interact with Circle's APIs.

    const { registerEntitySecretCiphertext } = require('@circle-fin/developer-controlled-wallets')
    
    const response = await registerEntitySecretCiphertext({
       apiKey: '<api-key>',
       entitySecret: '<new-entity-secret>'
     })
    console.log(response.data?.recoveryFile)
    

    or

    import { registerEntitySecretCiphertext } from '@circle-fin/developer-controlled-wallets'
    
    const response = await registerEntitySecretCiphertext({
       apiKey: '<api-key>',
       entitySecret: '<new-entity-secret>'
    })
    console.log(response.data?.recoveryFile)
    

[!IMPORTANT] The registerEntitySecretCiphertext function downloads a recovery file named recovery_file_<timestamp>.dat. This file should be stored securely, similar to the entity secret. Additionally, the function returns the content of the recovery file as a JSON response.

  • In your code, import the factory initiateDeveloperControlledWalletsClient from the SDK and initialize the client using your API key and entity secret:

    const { initiateDeveloperControlledWalletsClient } = require('@circle-fin/developer-controlled-wallets')
    
    const client = initiateDeveloperControlledWalletsClient({
      apiKey: '<your-api-key>',
      entitySecret: '<your-entity-secret>',
    })
    

    or

    import { initiateDeveloperControlledWalletsClient } from '@circle-fin/developer-controlled-wallets'
    
    const client = initiateDeveloperControlledWalletsClient({
      apiKey: '<your-api-key>',
      entitySecret: '<your-entity-secret>',
    })
    
  • Interact with the client:

    const walletSetResponse = await client.createWalletSet({
      name: 'WalletSet 1',
    })
    
    console.log('Created WalletSet', walletSetResponse.data?.walletSet)
    
    const walletsResponse = await client.createWallets({
      blockchains: ['MATIC-AMOY'],
      count: 2,
      walletSetId: walletSetResponse.data?.walletSet?.id ?? '',
    })
    
    console.log('Created Wallets', walletsResponse.data?.wallets)
    

    We recommend reading through the official documentation and QuickStart guides mentioned above to ensure a smooth setup and usage experience.

Configuration

The client accepts the following configuration parameters:

OptionRequiredDescription
apiKey[x]Api Key that is used to authenticate against Circle APIs.
entitySecret[x]Your configured entity secret. You can follow the QuickStart to set it up.
baseUrl[ ]Optional base URL to override the default: https://api.circle.com.
storage[ ]Optional custom storage solution for persisting data. We will fallback to InMemoryStorage if none was provided.
userAgent[ ]Optional custom user agent request header. We will prepend it to default user agent header if provided.

Need help or have questions?

Here are some helpful links, if you encounter any issues or have questions about this SDK:

Happy coding!

FAQs

Package last updated on 18 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts