f4932ce64c
Mueve tipos genéricos (Person, Organization, Location, Email, Phone, Document, Domain, Event, SocialMedia) de cybersecurity a core. Mantiene en cybersecurity solo los específicos de seguridad (CryptoWallet, IPAddress, Malware, Vulnerability). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
331 B
Go
11 lines
331 B
Go
package cybersecurity
|
|
|
|
// CryptoWallet represents a cryptocurrency wallet tracked in an OSINT investigation.
|
|
type CryptoWallet struct {
|
|
Address string `json:"address"`
|
|
Blockchain string `json:"blockchain"`
|
|
Balance float64 `json:"balance"`
|
|
FirstSeen string `json:"first_seen"`
|
|
LastSeen string `json:"last_seen"`
|
|
}
|