github.com/status-im/status-go@v1.1.0/eth-node/types/account.go (about) 1 package types 2 3 // Account represents an Ethereum account located at a specific location defined 4 // by the optional URL field. 5 type Account struct { 6 Address Address `json:"address"` // Ethereum account address derived from the key 7 URL string `json:"url"` // Optional resource locator within a backend 8 }