Skip to content

Commit ebf8cad

Browse files
committed
feat: add wallet.v4.*
1 parent a447042 commit ebf8cad

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace TonLibDotNet.Types.Wallet
2+
{
3+
[TLSchema("wallet.v4.initialAccountState public_key:string wallet_id:int64 = InitialAccountState")]
4+
public class V4InitialAccountState : InitialAccountState
5+
{
6+
public string PublicKey { get; set; } = string.Empty;
7+
8+
public long WalletId { get; set; }
9+
}
10+
}

0 commit comments

Comments
 (0)