generated from metaplex-foundation/solana-project-template
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix external plugin offsets, better types, new tests (#109)
* Adding anchor types. * Update. * removed audit warning (#108) * better types, new test * Updating Kinobi dependency. * Fixing kinobi reference. * Bumping Kinobi version and fixing clients. * Fixing mpl-utils version. * Immutability plugins (#96) * Add ImmutableMetadata && AddBlocker plugins * Update autogenerated parts * add tests * change the order of enums * update generated part * added tests for ensuring that UA is the only one who can add the plugin * added tests for ensuring that UA is the only one who can add the plugin for collection and nested plugins * update tests * add audit details to readme (#103) * removed audit warning (#108) * regenerated clients * updated tests * updated rust clients * chore: Release mpl-core version 0.6.0 * Modify `update` and `update_plugin` to move external plugin offsets (#112) Notes Also combine asset and collection update functions to use the same processors. Also fix offset calculations when updating external plugins (added test for this case). More advanced refactor: Combine plugin updating into single utility function #113 Note this PR is built upon #109 so that it can be tested with the new tests from that branch. * Deploy JS client v0.4.7 * update ava version, allow assertions on external plugins, check oracles in oracle tests * minor add plugin interface change * add additional test assert, formatting --------- Co-authored-by: blockiosaurus <[email protected]> Co-authored-by: Tony Boyle <[email protected]> Co-authored-by: Kyrylo Stepanov <[email protected]> Co-authored-by: blockiosaurus <[email protected]> Co-authored-by: blockiosaurus <[email protected]> Co-authored-by: Michael Danenberg <[email protected]>
- Loading branch information
1 parent
9443626
commit 204e2f1
Showing
132 changed files
with
3,539 additions
and
1,494 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
{ | ||
"name": "@metaplex-foundation/mpl-core", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"description": "Digital Assets", | ||
"main": "dist/src/index.js", | ||
"types": "dist/src/index.d.ts", | ||
|
@@ -25,21 +25,20 @@ | |
"repository": "https://github.com/metaplex-foundation/mpl-core.git", | ||
"author": "Metaplex Maintainers <[email protected]>", | ||
"license": "Apache-2.0", | ||
"dependencies": {}, | ||
"peerDependencies": { | ||
"@metaplex-foundation/umi": ">=0.8.2 < 1", | ||
"@noble/hashes": "^1.3.1" | ||
}, | ||
"devDependencies": { | ||
"@metaplex-foundation/mpl-toolbox": "^0.8.0", | ||
"@ava/typescript": "^3.0.1", | ||
"@ava/typescript": "^5.0.0", | ||
"@metaplex-foundation/mpl-core-oracle-example": "^0.0.1", | ||
"@metaplex-foundation/mpl-toolbox": "^0.8.0", | ||
"@metaplex-foundation/umi": "^0.8.10", | ||
"@metaplex-foundation/umi-bundle-tests": "^0.8.10", | ||
"@solana/web3.js": "^1.73.0", | ||
"@typescript-eslint/eslint-plugin": "^5.0.0", | ||
"@typescript-eslint/parser": "^5.46.1", | ||
"ava": "^5.1.0", | ||
"ava": "^6.1.3", | ||
"bs58": "5.0.0", | ||
"eslint": "^8.0.1", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
|
Oops, something went wrong.