Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: Solana cNFT based Data NFT Minting and other MISC updates #148

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
025e79f
feature: Intial test build on Solana cNFT minting option
newbreedofgeek Sep 12, 2024
fe60bf3
feature: logic and error handling improvements to CNftSolMinter
newbreedofgeek Sep 13, 2024
507e028
feature: logic and error handling improvements to CNftSolMinter
newbreedofgeek Sep 13, 2024
c506deb
feature: logic and error handling improvements to CNftSolMinter
newbreedofgeek Sep 13, 2024
2786601
feature: add proof as well to CNftSolPostMintMetaType
newbreedofgeek Sep 13, 2024
cc08a3a
feat: cache duration on access request
bucurdavid Sep 26, 2024
4612ff9
chore: alpha version bump
bucurdavid Sep 26, 2024
638fe44
Merge branch 'alpha' into d-david
bucurdavid Sep 26, 2024
75323ef
Merge pull request #150 from Itheum/d-david
bucurdavid Sep 26, 2024
066e848
feature: signatureNonce and solSignature added for CNftSolMinter
newbreedofgeek Oct 10, 2024
8db64c2
fix: increase all mvx timeouts to 20s and upgrade mvx network provide…
newbreedofgeek Nov 8, 2024
aca7fd2
fix: tests that broke based on last update to timeout
newbreedofgeek Nov 8, 2024
f449a5b
fix: remove sdk-network-providers and use sdk-core for everything, fi…
newbreedofgeek Nov 8, 2024
b214ba7
feature: use ITH_GLOBAL_* if available, introduce poc for Simple Cach…
newbreedofgeek Nov 11, 2024
63e731d
feature: allow setNetworkConfig to accept useSpecificApiEndpoint so h…
newbreedofgeek Nov 11, 2024
753990e
chore: add debug
newbreedofgeek Nov 11, 2024
c0ec35c
chore: add debug
newbreedofgeek Nov 11, 2024
614b79a
chore: add debug
newbreedofgeek Nov 11, 2024
5d409d6
chore: add debug
newbreedofgeek Nov 11, 2024
9679af2
feature: upgrade the mvx core sdk
newbreedofgeek Nov 11, 2024
943fb3d
fi: downgrade the mvx core sdk
newbreedofgeek Nov 11, 2024
901eee1
fix: upgrade the mvx core sdk again
newbreedofgeek Nov 11, 2024
1f3b02c
feature: make data nft createManyFromApi and ownedByAddress to be opt…
newbreedofgeek Nov 14, 2024
4141cc6
version bump
newbreedofgeek Nov 14, 2024
0521f53
feature: sol mint aligned to backend service updates
newbreedofgeek Nov 22, 2024
8c2d150
feature: on solana mininting, we allow the user to send their own cus…
newbreedofgeek Nov 27, 2024
3736df3
feature: allow the solana nft mint to support skipGettingMintMeta flag
newbreedofgeek Dec 11, 2024
ecb9828
fix: unit tests
newbreedofgeek Dec 11, 2024
d06e316
feature: for sol mint of cNFT, use the attributes that drip mentioned…
newbreedofgeek Dec 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feature: add proof as well to CNftSolPostMintMetaType
  • Loading branch information
newbreedofgeek committed Sep 13, 2024
commit 27866019eaa8076402d1af015b085ad57e5d6447
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itheum/sdk-mx-data-nft",
"version": "3.7.0-alpha.4",
"version": "3.7.0-alpha.5",
"description": "SDK for Itheum's Data NFT Technology on MultiversX and Solana",
"main": "out/index.js",
"types": "out/index.d.js",
1 change: 1 addition & 0 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
@@ -243,4 +243,5 @@ export type CNftSolPostMintMetaType = {
leafSchema?: any;
index?: number;
root?: any;
proof?: any;
};
Loading