2021-02-08 08:07:06 +00:00
|
|
|
package policy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/contract"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Hash represents Policy contract hash.
|
2021-02-15 13:40:44 +00:00
|
|
|
const Hash = "\x7b\xc6\x81\xc0\xa1\xf7\x1d\x54\x34\x57\xb6\x8b\xba\x8d\x5f\x9f\xdd\x4e\x5e\xcc"
|
2021-02-08 08:07:06 +00:00
|
|
|
|
|
|
|
// GetFeePerByte represents `getFeePerByte` method of Policy native contract.
|
|
|
|
func GetFeePerByte() int {
|
|
|
|
return contract.Call(interop.Hash160(Hash), "getFeePerByte", contract.ReadStates).(int)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetFeePerByte represents `setFeePerByte` method of Policy native contract.
|
|
|
|
func SetFeePerByte(value int) {
|
2021-02-25 15:04:46 +00:00
|
|
|
contract.Call(interop.Hash160(Hash), "setFeePerByte", contract.States, value)
|
2021-02-08 08:07:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetExecFeeFactor represents `getExecFeeFactor` method of Policy native contract.
|
|
|
|
func GetExecFeeFactor() int {
|
|
|
|
return contract.Call(interop.Hash160(Hash), "getExecFeeFactor", contract.ReadStates).(int)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetExecFeeFactor represents `setExecFeeFactor` method of Policy native contract.
|
|
|
|
func SetExecFeeFactor(value int) {
|
2021-02-25 15:04:46 +00:00
|
|
|
contract.Call(interop.Hash160(Hash), "setExecFeeFactor", contract.States, value)
|
2021-02-08 08:07:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetStoragePrice represents `getStoragePrice` method of Policy native contract.
|
|
|
|
func GetStoragePrice() int {
|
|
|
|
return contract.Call(interop.Hash160(Hash), "getStoragePrice", contract.ReadStates).(int)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetStoragePrice represents `setStoragePrice` method of Policy native contract.
|
|
|
|
func SetStoragePrice(value int) {
|
2021-02-25 15:04:46 +00:00
|
|
|
contract.Call(interop.Hash160(Hash), "setStoragePrice", contract.States, value)
|
2021-02-08 08:07:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsBlocked represents `isBlocked` method of Policy native contract.
|
|
|
|
func IsBlocked(addr interop.Hash160) bool {
|
|
|
|
return contract.Call(interop.Hash160(Hash), "isBlocked", contract.ReadStates, addr).(bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockAccount represents `blockAccount` method of Policy native contract.
|
|
|
|
func BlockAccount(addr interop.Hash160) bool {
|
2021-02-25 15:04:46 +00:00
|
|
|
return contract.Call(interop.Hash160(Hash), "blockAccount", contract.States, addr).(bool)
|
2021-02-08 08:07:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnblockAccount represents `unblockAccount` method of Policy native contract.
|
|
|
|
func UnblockAccount(addr interop.Hash160) bool {
|
2021-02-25 15:04:46 +00:00
|
|
|
return contract.Call(interop.Hash160(Hash), "unblockAccount", contract.States, addr).(bool)
|
2021-02-08 08:07:06 +00:00
|
|
|
}
|