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

feat: support market max quantity changes & sft donation treasury #129

Merged
merged 26 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5ddddd7
feat: support market max quantity changes
bucurdavid Apr 9, 2024
536d64f
fix: tests until contract is upgraded
bucurdavid Apr 9, 2024
057a3ab
feat: support for max quantity per address per offer
bucurdavid Apr 17, 2024
be9b0d2
Merge pull request #133 from Itheum/develop
damienen Apr 18, 2024
efcb04d
Merge pull request #134 from Itheum/develop
newbreedofgeek Apr 18, 2024
e9ba21f
version bump
newbreedofgeek Apr 18, 2024
be13b2b
fix: update marketplace abi
bucurdavid Apr 22, 2024
c4a95ea
Merge branch 'main' into d-david
bucurdavid Apr 23, 2024
8391539
Merge branch 'develop' into d-david
bucurdavid Apr 24, 2024
e4e5b68
chore: alpha version bump
bucurdavid Apr 24, 2024
b08238a
test: comment out
bucurdavid Apr 24, 2024
307d8fc
fix: bond proof fix
damienen Apr 29, 2024
f61dd33
fix: bond esdtnft
damienen Apr 29, 2024
d01289a
fix: bond contract methods
bucurdavid Apr 30, 2024
9bef7dc
chore: update alpha version
bucurdavid Apr 30, 2024
c673ca4
fix: refund parse
bucurdavid Apr 30, 2024
1ada886
chore: alpha version bump
bucurdavid Apr 30, 2024
af55796
chore: merge develop
damienen Apr 30, 2024
0f39793
chore: merge d-david
damienen Apr 30, 2024
5eafa2e
feat: media has type
damienen Apr 30, 2024
5eb162a
chore: v up
damienen Apr 30, 2024
b75dc3b
fix: update address refund view
bucurdavid May 3, 2024
d02ed06
chore: alpha version bump
bucurdavid May 3, 2024
c8ddee8
Merge branch 'd-damian' into d-david
bucurdavid May 3, 2024
92cf9c3
fix: async update
bucurdavid May 3, 2024
5eafad5
chore: alpha version bump
bucurdavid May 3, 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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.3.0-alpha.2",
"version": "3.3.0-alpha.8",
"description": "SDK for Itheum's Data NFT Technology on MultiversX Blockchain",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
22 changes: 21 additions & 1 deletion src/abis/core-mx-life-bonding-sc.abi.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,27 @@
],
"outputs": [
{
"type": "Option<tuple<Compensation,Option<Refund>>>"
"type": "Option<Refund>"
}
]
},
{
"name": "getAddressRefundForCompensations",
"mutability": "readonly",
"inputs": [
{
"name": "address",
"type": "Address"
},
{
"name": "compensation_ids",
"type": "variadic<u64>",
"multi_arg": true
}
],
"outputs": [
{
"type": "List<Refund>"
}
]
},
Expand Down
Loading
Loading