Skip to content

Commit f5142ac

Browse files
Merge pull request #6 from RemarkableTools/dev
Dev to main
2 parents 066621f + 7e343c9 commit f5142ac

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,3 +365,4 @@ FodyWeavers.xsd
365365
# other
366366
desktop.ini
367367
TestResults
368+
Console Testing

Mx.NET.SDK.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mx.NET.SDK.Core", "src\Mx.N
2525
EndProject
2626
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mx.NET.SDK.Wallet", "src\Mx.NET.SDK.Wallet\Mx.NET.SDK.Wallet.csproj", "{2FEB9B6A-04A7-4840-8770-BB01B02E41D8}"
2727
EndProject
28+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Console Testing", "tests\Console Testing\Console Testing.csproj", "{66FB4DED-F523-46FE-AEB9-5A4AD284214D}"
29+
EndProject
2830
Global
2931
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3032
Debug|Any CPU = Debug|Any CPU
@@ -47,6 +49,10 @@ Global
4749
{2FEB9B6A-04A7-4840-8770-BB01B02E41D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
4850
{2FEB9B6A-04A7-4840-8770-BB01B02E41D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
4951
{2FEB9B6A-04A7-4840-8770-BB01B02E41D8}.Release|Any CPU.Build.0 = Release|Any CPU
52+
{66FB4DED-F523-46FE-AEB9-5A4AD284214D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
53+
{66FB4DED-F523-46FE-AEB9-5A4AD284214D}.Debug|Any CPU.Build.0 = Debug|Any CPU
54+
{66FB4DED-F523-46FE-AEB9-5A4AD284214D}.Release|Any CPU.ActiveCfg = Release|Any CPU
55+
{66FB4DED-F523-46FE-AEB9-5A4AD284214D}.Release|Any CPU.Build.0 = Release|Any CPU
5056
EndGlobalSection
5157
GlobalSection(SolutionProperties) = preSolution
5258
HideSolutionNode = FALSE
@@ -56,6 +62,7 @@ Global
5662
{149FA3CD-11A5-4402-A923-4F8B87F894A6} = {DF07F928-D972-4F69-9E8C-E6EA16C25BF3}
5763
{DD5C9C0D-E6A7-4327-84F1-9B5021B7F5A2} = {D56A890E-8033-4A93-87CF-586BA916BC07}
5864
{2FEB9B6A-04A7-4840-8770-BB01B02E41D8} = {D56A890E-8033-4A93-87CF-586BA916BC07}
65+
{66FB4DED-F523-46FE-AEB9-5A4AD284214D} = {DF07F928-D972-4F69-9E8C-E6EA16C25BF3}
5966
EndGlobalSection
6067
GlobalSection(ExtensibilityGlobals) = postSolution
6168
SolutionGuid = {9B29FC9F-BF63-432E-8920-99FBCE6DA974}

src/Mx.NET.SDK/Domain/Data/Common/Transaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static Transfer[] From(TransferDto[] transfers)
8585
Decimals = transfer.Decimals,
8686
Identifier = transfer.Identifier is null ? null : ESDTIdentifierValue.From(transfer.Identifier),
8787
Value = ESDTAmount.From(transfer.Value,
88-
ESDT.ESDT_TOKEN(transfer.Type, transfer.Name, transfer.Identifier, transfer.Decimals ?? 0))
88+
ESDT.ESDT_TOKEN(transfer.Type, transfer.Name, transfer.Identifier ?? transfer.Token, transfer.Decimals ?? 0))
8989
}).ToArray();
9090
}
9191
}

src/Mx.NET.SDK/Mx.NET.SDK.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/RemarkableTools/Mx.NET.SDK</RepositoryUrl>
1212
<RepositoryType>GitHub</RepositoryType>
1313
<Company>Remarkable Tools</Company>
14-
<Version>1.0.3</Version>
14+
<Version>1.0.4</Version>
1515
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1616
<Title>RemarkableTools.Mx</Title>
1717
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)