File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 13
13
- <PR-#ISSUE> ...
14
14
15
15
16
+ ## ` 0.3.2 ` - 03/21/2023
17
+
18
+ #### Added
19
+
20
+ - PR- #69 : Patch bad formatting of request
21
+
16
22
## ` 0.3.1 ` - 03/21/2023
17
23
18
24
#### Added
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def start_mint721(
35
35
return self .request (
36
36
'post' ,
37
37
self .v1_start_mint721 ,
38
- params = {
38
+ data = {
39
39
'contract_id' : contract_id ,
40
40
'quantity' : quantity ,
41
41
'destination_address' : destination_address ,
@@ -71,7 +71,7 @@ def start_mint1155(
71
71
return self .request (
72
72
'post' ,
73
73
self .v1_start_mint1155 ,
74
- params = {
74
+ data = {
75
75
'contract_id' : contract_id ,
76
76
'quantity' : quantity ,
77
77
'token_id' : token_id ,
Original file line number Diff line number Diff line change 1
- VERSION = '0.3.1 '
1
+ VERSION = '0.3.2 '
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def test_start_mint721(self):
37
37
self .nft .request .assert_called_once_with (
38
38
'post' ,
39
39
self .nft .v1_start_mint721 ,
40
- params = {
40
+ data = {
41
41
'contract_id' : self .contract_id ,
42
42
'quantity' : self .quantity ,
43
43
'destination_address' : self .destination_address ,
@@ -58,7 +58,7 @@ def test_start_mint1155(self):
58
58
self .nft .request .assert_called_once_with (
59
59
'post' ,
60
60
self .nft .v1_start_mint1155 ,
61
- params = {
61
+ data = {
62
62
'contract_id' : self .contract_id ,
63
63
'quantity' : self .quantity ,
64
64
'token_id' : self .token_id ,
You can’t perform that action at this time.
0 commit comments