mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 12:31:21 +00:00
7 lines
160 B
Go
7 lines
160 B
Go
|
package abi
|
||
|
|
||
|
type ABI interface {
|
||
|
Pack(name string, args ...interface{}) ([]byte, error)
|
||
|
UnpackIntoInterface(v interface{}, name string, data []byte) error
|
||
|
}
|