-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: failing buy IX * fix: failing initialize bid ix * release: 0.0.11 * fix: remove the conversion to SOL in SDK * feat: add methods to withdraw and deposit sol * test: withdraw and deposit methods * chore: update readme and package.json * fix: failing accept bid IX edit bid IX version 0.0.12
- Loading branch information
Showing
7 changed files
with
416 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,42 @@ | ||
{ | ||
"name": "@jimii/soundwork-sdk", | ||
"version": "0.0.11", | ||
"description": "", | ||
"main": "./dist/main.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build:ts": "rm -rf ./dist && tsc", | ||
"update-list-idl": "cp ../market-contracts/target/types/soundwork_list.ts src/soundwork-list/idl", | ||
"update-bid-idl": "cp ../market-contracts/target/types/soundwork_bid.ts src/soundwork-bid/idl", | ||
"update-idl": "pnpm run update-list-idl && pnpm run update-bid-idl", | ||
"test": "jest --runInBand --forceExit --coverage --verbose" | ||
}, | ||
"keywords": [ | ||
"soundwork", | ||
"typescript", | ||
"sdk" | ||
], | ||
"author": "Jimii", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@coral-xyz/anchor": "^0.29.0", | ||
"@project-serum/anchor": "^0.26.0", | ||
"@solana/spl-token": "^0.3.8", | ||
"@solana/web3.js": "^1.87.1" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.5.5", | ||
"jest": "^29.7.0", | ||
"jest-runner-tsc": "^1.6.0", | ||
"ts-jest": "^29.1.1" | ||
} | ||
"name": "@soundwork-oss/soundwork-sdk", | ||
"version": "0.0.12", | ||
"description": "TypeScript client for the soundwork marketplace contracts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SoundWorkLabs/soundwork-sdk.git" | ||
}, | ||
"homepage": "https://github.com/SoundWorkLabs/xnft/soundwork-sdk#readme", | ||
"keywords": [ | ||
"soundwork", | ||
"web3", | ||
"solana", | ||
"typescript", | ||
"sdk" | ||
], | ||
"main": "./dist/main.js", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build:ts": "rm -rf ./dist && tsc", | ||
"update-list-idl": "cp ../market-contracts/target/types/soundwork_list.ts src/soundwork-list/idl", | ||
"update-bid-idl": "cp ../market-contracts/target/types/soundwork_bid.ts src/soundwork-bid/idl", | ||
"update-idl": "pnpm run update-list-idl && pnpm run update-bid-idl", | ||
"test": "jest --runInBand --forceExit --coverage --verbose" | ||
}, | ||
"author": "Jimii <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@coral-xyz/anchor": "^0.29.0", | ||
"@project-serum/anchor": "^0.26.0", | ||
"@solana/spl-token": "^0.3.8", | ||
"@solana/web3.js": "^1.87.1" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.5.5", | ||
"jest": "^29.7.0", | ||
"jest-runner-tsc": "^1.6.0", | ||
"ts-jest": "^29.1.1" | ||
} | ||
} |
Oops, something went wrong.