github.com/status-im/status-go@v1.1.0/eth-node/types/wrapped.go (about) 1 package types 2 3 // Wrapped tells that a given object has an underlying representation 4 // and this representation can be accessed using `Unwrap` method. 5 type Wrapped interface { 6 Unwrap() interface{} 7 }