This commit is contained in:
aozhiwei 2024-06-23 13:34:56 +08:00
parent b93520dd62
commit 699034aa75

View File

@ -0,0 +1,19 @@
package spec_transfer721
type goldBullion struct {
}
func (this* goldBullion) onMint(dbIdx int64, netId int32, contractAddress string, tokenId string,
from string, to string) bool {
return true
}
func (this* goldBullion) onLock(dbIdx int64, netId int32, contractAddress string, tokenId string,
from string, to string) bool {
return true
}
func (this *goldBullion) onUnlock(dbIdx int64, netId int32, contractAddress string, tokenId string,
from string, to string) bool {
return true
}