| 47 | * Record type to describe an address of an account. |
| 48 | */ |
| 49 | export interface AccountAddress { |
| 50 | /** |
| 51 | * The address. |
| 52 | */ |
| 53 | 'address' : string, |
| 54 | /** |
| 55 | * The format of the address, eg. icp_account_identifier. |
| 56 | */ |
| 57 | 'format' : string, |
| 58 | } |
| 59 | /** |
| 60 | * Record type to describe an asset of an account. |
| 61 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected