mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
Update lib.go
This commit is contained in:
parent
9f5d77bae6
commit
e9d795da7c
1 changed files with 7 additions and 7 deletions
|
|
@ -14,15 +14,15 @@
|
||||||
// You should have received a copy of the GNU Lesser General Public License
|
// You should have received a copy of the GNU Lesser General Public License
|
||||||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
// Package bind implements utilities for interacting with Solidity contracts
|
// Package bind implements utilities for interacting with Solidity contracts.
|
||||||
// via their Go bindings generated from the abigen command. It includes
|
// This is the 'runtime' for contract bindings generated with the abigen command.
|
||||||
// methods for calling/transacting, filtering chain history for
|
// It includes methods for calling/transacting, filtering chain history for
|
||||||
// specific custom Solidity event types, creating event subscriptions to
|
// specific custom Solidity event types, and creating event subscriptions to monitor the
|
||||||
// monitor the chain for event occurrences.
|
// chain for event occurrences.
|
||||||
//
|
//
|
||||||
// Two methods for contract deployment are provided:
|
// Two methods for contract deployment are provided:
|
||||||
// - DeployContract is intended to be used for deployment of a single contract.
|
// - [DeployContract] is intended to be used for deployment of a single contract.
|
||||||
// - LinkAndDeploy is intended to be used for the deployment of multiple
|
// - [LinkAndDeploy] is intended for the deployment of multiple
|
||||||
// contracts, potentially with library dependencies.
|
// contracts, potentially with library dependencies.
|
||||||
package bind
|
package bind
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue