generated from CareBoo/UPMTemplate-2020
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(kmd): ✨ implement
SignTransactionRequest
- Loading branch information
1 parent
9045af3
commit 38ec667
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...nity-algorand-sdk/CareBoo.AlgoSdk/AlgoApi/Kmd/Models/Signatures/SignTransactionRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System; | ||
using AlgoSdk.Crypto; | ||
using Unity.Collections; | ||
|
||
namespace AlgoSdk | ||
{ | ||
[AlgoApiObject] | ||
public struct SignTransactionRequest | ||
: IEquatable<SignTransactionRequest> | ||
{ | ||
[AlgoApiField("public_key", null)] | ||
public Ed25519.PublicKey PublicKey; | ||
|
||
[AlgoApiField("transaction", null)] | ||
public byte[] Transaction; | ||
|
||
[AlgoApiField("wallet_handle_token", null)] | ||
public FixedString128Bytes WalletHandleToken; | ||
|
||
[AlgoApiField("wallet_password", null)] | ||
public FixedString128Bytes WalletPassword; | ||
|
||
public bool Equals(SignTransactionRequest other) | ||
{ | ||
return PublicKey.Equals(other.PublicKey) | ||
&& ArrayComparer.Equals(Transaction, other.Transaction) | ||
&& WalletHandleToken.Equals(other.WalletHandleToken) | ||
&& WalletPassword.Equals(other.WalletPassword) | ||
; | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...algorand-sdk/CareBoo.AlgoSdk/AlgoApi/Kmd/Models/Signatures/SignTransactionRequest.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.