mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
9 lines
313 B
Go
9 lines
313 B
Go
|
package types
|
||
|
|
||
|
// Account represents an Ethereum account located at a specific location defined
|
||
|
// by the optional URL field.
|
||
|
type Account struct {
|
||
|
Address Address `json:"address"` // Ethereum account address derived from the key
|
||
|
URL string `json:"url"` // Optional resource locator within a backend
|
||
|
}
|