We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a447042 commit ebf8cadCopy full SHA for ebf8cad
TonLibDotNet/Types/Wallet/V4AccountState.cs
@@ -0,0 +1,10 @@
1
+namespace TonLibDotNet.Types.Wallet
2
+{
3
+ [TLSchema("wallet.v4.accountState wallet_id:int64 seqno:int32 = AccountState")]
4
+ public class V4AccountState : AccountState
5
+ {
6
+ public long WalletId { get; set; }
7
+
8
+ public int Seqno { get; set; }
9
+ }
10
+}
TonLibDotNet/Types/Wallet/V4InitialAccountState.cs
+ [TLSchema("wallet.v4.initialAccountState public_key:string wallet_id:int64 = InitialAccountState")]
+ public class V4InitialAccountState : InitialAccountState
+ public string PublicKey { get; set; } = string.Empty;
0 commit comments