transferred sdk package to 0xbow namespace

This commit is contained in:
Artem
2025-02-18 22:06:27 +07:00
parent 6ae88dbe5d
commit 370e82d41b
3 changed files with 8 additions and 9 deletions

1
.gitignore vendored
View File

@@ -3,6 +3,7 @@ yarn-error.log
node_modules
.DS_STORE
.vscode
.idea
# Config files
.env

View File

@@ -4,12 +4,13 @@ A TypeScript SDK for interacting with the Privacy Pool protocol. This SDK provid
## Installation
```bash
npm install @defi-wonderland/privacy-pool-core-sdk
npm install @0xbow/privacy-pool-core-sdk
# or
yarn add @defi-wonderland/privacy-pool-core-sdk
yarn add @0xbow/privacy-pool-core-sdk
# or
pnpm add @defi-wonderland/privacy-pool-core-sdk
pnpm add @0xbow/privacy-pool-core-sdk
```
## Setup
@@ -35,7 +36,7 @@ pnpm add @defi-wonderland/privacy-pool-core-sdk
## Usage
```typescript
import { PrivacyPoolSDK } from '@defi-wonderland/privacy-pool-core-sdk';
import { PrivacyPoolSDK } from '@0xbow/privacy-pool-core-sdk';
// Initialize the SDK
const sdk = new PrivacyPoolSDK({

View File

@@ -1,17 +1,14 @@
{
"name": "@defi-wonderland/privacy-pool-core-sdk",
"name": "@0xbow/privacy-pools-core-sdk",
"version": "0.1.0",
"description": "Typescript SDK for the Privacy Pool protocol",
"repository": "https://github.com/defi-wonderland/privacy-pool-core",
"repository": "https://github.com/0xbow-io/privacy-pools-core",
"license": "Apache-2.0",
"author": "Wonderland",
"type": "module",
"main": "./dist/node/index.mjs",
"module": "./dist/esm/index.mjs",
"browser": "./dist/esm/index.mjs",
"publishConfig": {
"@defi-wonderland:registry": "https://npm.pkg.github.com"
},
"types": {
"import": "./dist/index.d.mts"
},