2020-09-02 09:20:42 +00:00
|
|
|
package testdata
|
|
|
|
|
2021-05-05 10:22:26 +00:00
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
|
|
)
|
2021-03-02 12:43:09 +00:00
|
|
|
|
2020-09-02 09:20:42 +00:00
|
|
|
func Verify() bool {
|
|
|
|
return true
|
|
|
|
}
|
2020-11-19 15:01:42 +00:00
|
|
|
|
2023-04-03 10:34:24 +00:00
|
|
|
func OnNEP17Payment(from interop.Hash160, amount int, data any) {
|
2020-11-19 15:01:42 +00:00
|
|
|
}
|
2021-05-05 10:22:26 +00:00
|
|
|
|
2021-11-18 13:37:42 +00:00
|
|
|
// OnNEP11Payment notifies about NEP-11 payment. You don't call this method directly,
|
|
|
|
// instead it's called by NEP-11 contract when you transfer funds from your address
|
2021-05-05 10:22:26 +00:00
|
|
|
// to the address of this NFT contract.
|
2023-04-03 10:34:24 +00:00
|
|
|
func OnNEP11Payment(from interop.Hash160, amount int, token []byte, data any) {
|
2021-05-05 10:22:26 +00:00
|
|
|
runtime.Notify("OnNEP11Payment", from, amount, token, data)
|
|
|
|
}
|