Skip to content

Commit 5be6230

Browse files
committed
Added SendMicroAmountUsingBuilder
1 parent 3c6df7c commit 5be6230

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

csharp/IotaWalletNet/IotaWalletNet.Application/Account.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ public async Task<SendAmountResponse> SendAmountAsync(List<AddressWithAmount> ad
180180

181181
public SendAmountBuilder SendAmountUsingBuilder() => new SendAmountBuilder(_mediator, this, Username);
182182

183+
public SendMicroAmountBuilder SendMicroAmountUsingBuilder() => new SendMicroAmountBuilder(_mediator, this, Username);
184+
183185
public async Task<SyncAccountResponse> SyncAccountAsync()
184186
{
185187
return await _mediator.Send(new SyncAccountCommand(this, Username));

csharp/IotaWalletNet/IotaWalletNet.Application/Common/Interfaces/IAccount.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,6 @@ public interface IAccount : IRustBridgeCommunicator
6868
Task<DestroyFoundryResponse> DestroyFoundryAsync(string foundryId);
6969
SendAmountBuilder SendAmountUsingBuilder();
7070
Task<SendMicroAmountResponse> SendMicroAmountAsync(List<AddressWithMicroAmount> addressWithMicroAmounts, TaggedDataPayload? taggedDataPayload = null);
71+
SendMicroAmountBuilder SendMicroAmountUsingBuilder();
7172
}
7273
}

0 commit comments

Comments
 (0)