(input []byte)
| 47 | // contract. |
| 48 | type PrecompiledContract interface { |
| 49 | RequiredGas(input []byte) uint64 // RequiredPrice calculates the contract gas use |
| 50 | Run(input []byte) ([]byte, error) // Run runs the precompiled contract |
| 51 | Name() string |
| 52 | } |
no outgoing calls