Skip to content

Commit 4b643c2

Browse files
committed
fix: rename mint_price_in_usd -> sale_price_in_usd
1 parent f1df19b commit 4b643c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ new_asset_params = {
202202
"user_uid": "324167489835",
203203
"asset_external_id": "asset_external_id_1",
204204
"collection_uid": "221137489875",
205-
"mint_price_in_usd": 9.99,
205+
"sale_price_in_usd": 9.99,
206206
"data": {
207207
"name": "Dave Starbelly",
208208
"unique_name": True,

original_sdk/tests/e2e/test_async_client_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async def test_create_asset_with_mint_price(self, async_client: OriginalAsyncCli
134134
"unique_name": True,
135135
"image_url": "https://example.com/image.png",
136136
"store_image_on_ipfs": False,
137-
"mint_price_in_usd": 9.99,
137+
"sale_price_in_usd": 9.99,
138138
"attributes": [
139139
{"trait_type": "Eyes", "value": "Green"},
140140
{"trait_type": "Hair", "value": "Black"},

original_sdk/tests/e2e/test_client_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_create_asset_with_mint_price(self, client: OriginalClient):
120120
"unique_name": True,
121121
"image_url": "https://example.com/image.png",
122122
"store_image_on_ipfs": False,
123-
"mint_price_in_usd": 9.99,
123+
"sale_price_in_usd": 9.99,
124124
"attributes": [
125125
{"trait_type": "Eyes", "value": "Green"},
126126
{"trait_type": "Hair", "value": "Black"},

0 commit comments

Comments
 (0)