From e9d795da7c4a34396302ff91eed54b522b3d84e1 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Sat, 8 Mar 2025 18:35:13 +0100 Subject: [PATCH] Update lib.go --- accounts/abi/bind/v2/lib.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/accounts/abi/bind/v2/lib.go b/accounts/abi/bind/v2/lib.go index 11b1b4de6f..6cb952c458 100644 --- a/accounts/abi/bind/v2/lib.go +++ b/accounts/abi/bind/v2/lib.go @@ -14,15 +14,15 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . -// Package bind implements utilities for interacting with Solidity contracts -// via their Go bindings generated from the abigen command. It includes -// methods for calling/transacting, filtering chain history for -// specific custom Solidity event types, creating event subscriptions to -// monitor the chain for event occurrences. +// Package bind implements utilities for interacting with Solidity contracts. +// This is the 'runtime' for contract bindings generated with the abigen command. +// It includes methods for calling/transacting, filtering chain history for +// specific custom Solidity event types, and creating event subscriptions to monitor the +// chain for event occurrences. // // Two methods for contract deployment are provided: -// - DeployContract is intended to be used for deployment of a single contract. -// - LinkAndDeploy is intended to be used for the deployment of multiple +// - [DeployContract] is intended to be used for deployment of a single contract. +// - [LinkAndDeploy] is intended for the deployment of multiple // contracts, potentially with library dependencies. package bind