2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 15:45:07 +00:00
2020-01-06 10:17:23 +01:00

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
}