smartcontract: add Builder, method invocation helpers and doc

Move the last remaining script-related things out of the rpcclient.
This commit is contained in:
Roman Khimov 2022-07-25 20:04:43 +03:00
parent 1b6f4051d8
commit 32ebb4a90d
6 changed files with 145 additions and 20 deletions

8
pkg/smartcontract/doc.go Normal file
View file

@ -0,0 +1,8 @@
/*
Package smartcontract contains functions to deal with widely used scripts.
Neo is all about various executed code, verifications and executions of
transactions need some NeoVM code and this package simplifies creating it
for common tasks like multisignature verification scripts or transaction
entry scripts that call previously deployed contracts.
*/
package smartcontract