Skip to content

Commit 22a4ab9

Browse files
authored
Remove newline after inner class toString (#13)
1 parent 5b2f09a commit 22a4ab9

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Assets/Thirdweb/Scripts/Types.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public override string ToString()
4343
{
4444
return
4545
$"NFTMetadataWithSupply:"
46-
+ $"\n>>>>>\n{metadata.ToString()}\n<<<<<\n"
46+
+ $"\n>>>>>\n{metadata.ToString()}\n<<<<<"
4747
+ $"\n>supply: {supply}";
4848
}
4949
}
@@ -61,7 +61,7 @@ public override string ToString()
6161
{
6262
return
6363
$"NFT:"
64-
+ $"\n>>>>>\n{metadata.ToString()}\n<<<<<\n"
64+
+ $"\n>>>>>\n{metadata.ToString()}\n<<<<<"
6565
+ $"\n>owner: {owner}"
6666
+ $"\n>type: {type}"
6767
+ $"\n>supply: {supply}"
@@ -133,11 +133,11 @@ public override string ToString()
133133
+ $"\n>sellerAddress: {sellerAddress}"
134134
+ $"\n>assetContractAddress: {assetContractAddress}"
135135
+ $"\n>tokenId: {tokenId}"
136-
+ $"\n>>>>>\n{asset.ToString()}\n<<<<<\n"
136+
+ $"\n>>>>>\n{asset.ToString()}\n<<<<<"
137137
+ $"\n>quantity: {quantity}"
138138
+ $"\n>currencyContractAddress: {currencyContractAddress}"
139139
+ $"\n>buyoutPrice: {buyoutPrice}"
140-
+ $"\n>>>>>\n{buyoutCurrencyValuePerToken.ToString()}\n<<<<<\n"
140+
+ $"\n>>>>>\n{buyoutCurrencyValuePerToken.ToString()}\n<<<<<"
141141
+ $"\n>type: {type}";
142142
}
143143
}
@@ -152,7 +152,7 @@ public override string ToString()
152152
{
153153
return
154154
$"DirectListing:"
155-
+ $"\n>>>>>\n{base.ToString()}\n<<<<<\n"
155+
+ $"\n>>>>>\n{base.ToString()}\n<<<<<"
156156
+ $"\n>startTimeInSeconds: {startTimeInSeconds}"
157157
+ $"\n>secondsUntilEnd: {secondsUntilEnd}";
158158
}
@@ -170,11 +170,11 @@ public override string ToString()
170170
{
171171
return
172172
$"AuctionListing:"
173-
+ $"\n>>>>>\n{base.ToString()}\n<<<<<\n"
173+
+ $"\n>>>>>\n{base.ToString()}\n<<<<<"
174174
+ $"\n>startTimeInEpochSeconds: {startTimeInEpochSeconds}"
175175
+ $"\n>endTimeInEpochSeconds: {endTimeInEpochSeconds}"
176176
+ $"\n>reservePrice: {reservePrice}"
177-
+ $"\n>>>>>\n{reservePriceCurrencyValuePerToken.ToString()}\n<<<<<\n";
177+
+ $"\n>>>>>\n{reservePriceCurrencyValuePerToken.ToString()}\n<<<<<";
178178
}
179179
}
180180

@@ -221,7 +221,7 @@ public override string ToString()
221221
{
222222
return
223223
$"NewAuctionListing:"
224-
+ $"\n>>>>>\n{base.ToString()}\n<<<<<\n"
224+
+ $"\n>>>>>\n{base.ToString()}\n<<<<<"
225225
+ $"\n>reservePricePerToken: {reservePricePerToken}";
226226
}
227227
}
@@ -238,7 +238,7 @@ public override string ToString()
238238
{
239239
return
240240
$"NewDirectListing:"
241-
+ $"\n>>>>>\n{base.ToString()}\n<<<<<\n";
241+
+ $"\n>>>>>\n{base.ToString()}\n<<<<<";
242242
}
243243
}
244244

@@ -260,7 +260,7 @@ public override string ToString()
260260
+ $"\n>buyerAddress: {buyerAddress}"
261261
+ $"\n>quantityDesired: {quantityDesired}"
262262
+ $"\n>pricePerToken: {pricePerToken}"
263-
+ $"\n>>>>>\n{currencyValue.ToString()}\n<<<<<\n"
263+
+ $"\n>>>>>\n{currencyValue.ToString()}\n<<<<<"
264264
+ $"\n>currencyContractAddress: {currencyContractAddress}";
265265
}
266266
}
@@ -291,7 +291,7 @@ public override string ToString()
291291
{
292292
return
293293
$"MarketplaceFilter:"
294-
+ $"\n>>>>>\n{base.ToString()}\n<<<<<\n"
294+
+ $"\n>>>>>\n{base.ToString()}\n<<<<<"
295295
+ $"\n>seller: {seller}"
296296
+ $"\n>tokenContract: {tokenContract}"
297297
+ $"\n>tokenId: {tokenId}";
@@ -317,7 +317,7 @@ public override string ToString()
317317
$"ClaimConditions:"
318318
+ $"\n>availableSupply: {availableSupply}"
319319
+ $"\n>currentMintSupply: {currentMintSupply}"
320-
+ $"\n>>>>>\n{currencyMetadata.ToString()}\n<<<<<\n"
320+
+ $"\n>>>>>\n{currencyMetadata.ToString()}\n<<<<<"
321321
+ $"\n>currencyAddress: {currencyAddress}"
322322
+ $"\n>maxClaimableSupply: {maxClaimableSupply}"
323323
+ $"\n>maxClaimablePerWallet: {maxClaimablePerWallet}"
@@ -422,7 +422,7 @@ public override string ToString()
422422
{
423423
return
424424
$"LoginPayloadData:"
425-
+ $"\n>>>>>\n{payload.ToString()}\n<<<<<\n"
425+
+ $"\n>>>>>\n{payload.ToString()}\n<<<<<"
426426
+ $"\n>signature: {signature}";
427427
}
428428
}

0 commit comments

Comments
 (0)