File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import {PublicAccount} from '../model/account/PublicAccount';
23
23
import { AggregateTransaction } from '../model/transaction/AggregateTransaction' ;
24
24
import { Transaction } from '../model/transaction/Transaction' ;
25
25
import { QueryParams } from './QueryParams' ;
26
+ import { AccountPropertiesInfo } from "../model/account/AccountPropertiesInfo" ;
26
27
27
28
/**
28
29
* Account interface repository.
@@ -45,6 +46,20 @@ export interface AccountRepository {
45
46
*/
46
47
getAccountsInfo ( addresses : Address [ ] ) : Observable < AccountInfo [ ] > ;
47
48
49
+ /**
50
+ * Gets Account property.
51
+ * @param publicAccount public account
52
+ * @returns Observable<AccountProperty>
53
+ */
54
+ getAccountProperty ( publicAccount : PublicAccount ) : Observable < AccountPropertiesInfo > ;
55
+
56
+ /**
57
+ * Gets Account properties.
58
+ * @param address list of addresses
59
+ * @returns Observable<AccountProperty[]>
60
+ */
61
+ getAccountProperties ( addresses : Address [ ] ) : Observable < AccountPropertiesInfo [ ] > ;
62
+
48
63
/**
49
64
* Gets a MultisigAccountInfo for an account.
50
65
* @param address - User address
You can’t perform that action at this time.
0 commit comments