2020-05-18 07:42:44 +00:00
|
|
|
/*
|
|
|
|
Package contract provides functions to work with contracts.
|
|
|
|
*/
|
2018-08-21 10:57:48 +00:00
|
|
|
package contract
|
|
|
|
|
2020-05-18 07:42:44 +00:00
|
|
|
// Contract represents a Neo contract and is used in interop functions. It's
|
2020-07-15 11:39:20 +00:00
|
|
|
// a data structure that you can manipulate with using functions from
|
2020-05-18 07:42:44 +00:00
|
|
|
// this package. It's similar in function to the Contract class in the Neo .net
|
|
|
|
// framework.
|
2020-07-15 11:39:20 +00:00
|
|
|
type Contract struct {
|
|
|
|
Script []byte
|
|
|
|
Manifest []byte
|
|
|
|
HasStorage bool
|
|
|
|
IsPayable bool
|
|
|
|
}
|
2018-08-21 10:57:48 +00:00
|
|
|
|
2020-05-18 07:42:44 +00:00
|
|
|
// Create creates a new contract using a set of input parameters:
|
|
|
|
// script contract's bytecode (limited in length by 1M)
|
2020-06-09 09:12:56 +00:00
|
|
|
// manifest contract's manifest (limited in length by 2 KiB)
|
2020-05-18 07:42:44 +00:00
|
|
|
// It returns this new created Contract when successful (and fails transaction
|
2020-06-10 11:07:26 +00:00
|
|
|
// if not). It uses `System.Contract.Create` syscall.
|
2020-06-09 09:12:56 +00:00
|
|
|
func Create(script []byte, manifest []byte) Contract {
|
2020-05-18 07:42:44 +00:00
|
|
|
return Contract{}
|
2018-08-22 07:51:35 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 11:07:26 +00:00
|
|
|
// Update updates script and manifest of the calling contract (that is the one that calls Update)
|
|
|
|
// to the new ones. Its parameters have exactly the same semantics as for
|
2020-05-18 07:42:44 +00:00
|
|
|
// Create. The old contract will be deleted by this call, if it has any storage
|
|
|
|
// associated it will be migrated to the new contract. New contract is returned.
|
2020-06-10 11:07:26 +00:00
|
|
|
// This function uses `System.Contract.Update` syscall.
|
|
|
|
func Update(script []byte, manifest []byte) Contract {
|
2020-05-18 07:42:44 +00:00
|
|
|
return Contract{}
|
2018-08-22 07:51:35 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 07:42:44 +00:00
|
|
|
// Destroy deletes calling contract (the one that calls Destroy) from the
|
|
|
|
// blockchain, so it's only possible to do that from the contract itself and
|
|
|
|
// not by any outside code. When contract is deleted all associated storage
|
2020-06-10 11:07:26 +00:00
|
|
|
// items are deleted too. This function uses `System.Contract.Destroy` syscall.
|
2020-05-18 07:42:44 +00:00
|
|
|
func Destroy() {}
|
2020-06-17 08:38:32 +00:00
|
|
|
|
|
|
|
// IsStandard checks if contract with provided hash is a standard signature/multisig contract.
|
|
|
|
// This function uses `System.Contract.IsStandard` syscall.
|
|
|
|
func IsStandard(h []byte) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateStandardAccount calculates script hash of a given public key.
|
|
|
|
// This function uses `System.Contract.CreateStandardAccount` syscall.
|
|
|
|
func CreateStandardAccount(pub []byte) []byte {
|
|
|
|
return nil
|
|
|
|
}
|