2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-31 19:48:43 +00:00
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
package tusd
|
2018-08-31 19:48:43 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/examples/generic/event_triggered"
|
2018-09-19 17:22:05 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared"
|
2018-08-31 19:48:43 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
2018-11-07 21:50:43 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/constants"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/omni/helpers"
|
2018-08-31 19:48:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Converter converts a raw event log into its corresponding entity
|
|
|
|
// and can subsequently convert the entity into a model
|
|
|
|
|
|
|
|
type GenericConverterInterface interface {
|
|
|
|
ToBurnEntity(watchedEvent core.WatchedEvent) (*BurnEntity, error)
|
2018-09-19 03:15:49 +00:00
|
|
|
ToBurnModel(entity *BurnEntity) *event_triggered.BurnModel
|
2018-08-31 19:48:43 +00:00
|
|
|
ToMintEntity(watchedEvent core.WatchedEvent) (*MintEntity, error)
|
2018-09-19 03:15:49 +00:00
|
|
|
ToMintModel(entity *MintEntity) *event_triggered.MintModel
|
2018-08-31 19:48:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type GenericConverter struct {
|
2018-09-19 17:22:05 +00:00
|
|
|
config shared.ContractConfig
|
2018-08-31 19:48:43 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 17:22:05 +00:00
|
|
|
func NewGenericConverter(config shared.ContractConfig) (*GenericConverter, error) {
|
2018-08-31 19:48:43 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
config.ParsedAbi, err = geth.ParseAbi(config.Abi)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
converter := &GenericConverter{
|
|
|
|
config: config,
|
|
|
|
}
|
|
|
|
|
|
|
|
return converter, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c GenericConverter) ToBurnEntity(watchedEvent core.WatchedEvent) (*BurnEntity, error) {
|
|
|
|
result := &BurnEntity{}
|
|
|
|
contract := bind.NewBoundContract(common.HexToAddress(c.config.Address), c.config.ParsedAbi, nil, nil, nil)
|
|
|
|
event := helpers.ConvertToLog(watchedEvent)
|
|
|
|
err := contract.UnpackLog(result, constants.BurnEvent.String(), event)
|
|
|
|
if err != nil {
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
result.TokenName = c.config.Name
|
|
|
|
result.TokenAddress = common.HexToAddress(c.config.Address)
|
|
|
|
result.Block = watchedEvent.BlockNumber
|
|
|
|
result.TxHash = watchedEvent.TxHash
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
func (c GenericConverter) ToBurnModel(entity *BurnEntity) *event_triggered.BurnModel {
|
2018-08-31 19:48:43 +00:00
|
|
|
burner := entity.Burner.String()
|
|
|
|
tokens := entity.Value.String()
|
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
return &event_triggered.BurnModel{
|
2018-08-31 19:48:43 +00:00
|
|
|
TokenName: c.config.Name,
|
|
|
|
TokenAddress: c.config.Address,
|
|
|
|
Burner: burner,
|
|
|
|
Tokens: tokens,
|
|
|
|
Block: entity.Block,
|
|
|
|
TxHash: entity.TxHash,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c GenericConverter) ToMintEntity(watchedEvent core.WatchedEvent) (*MintEntity, error) {
|
|
|
|
result := &MintEntity{}
|
|
|
|
contract := bind.NewBoundContract(common.HexToAddress(c.config.Address), c.config.ParsedAbi, nil, nil, nil)
|
|
|
|
event := helpers.ConvertToLog(watchedEvent)
|
|
|
|
err := contract.UnpackLog(result, constants.MintEvent.String(), event)
|
|
|
|
if err != nil {
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
result.TokenName = c.config.Name
|
|
|
|
result.TokenAddress = common.HexToAddress(c.config.Address)
|
|
|
|
result.Block = watchedEvent.BlockNumber
|
|
|
|
result.TxHash = watchedEvent.TxHash
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
func (c GenericConverter) ToMintModel(entity *MintEntity) *event_triggered.MintModel {
|
2018-08-31 19:48:43 +00:00
|
|
|
mintee := entity.To.String()
|
|
|
|
minter := c.config.Owner
|
|
|
|
tokens := entity.Amount.String()
|
|
|
|
|
2018-09-19 03:15:49 +00:00
|
|
|
return &event_triggered.MintModel{
|
2018-08-31 19:48:43 +00:00
|
|
|
TokenName: c.config.Name,
|
|
|
|
TokenAddress: c.config.Address,
|
|
|
|
Mintee: mintee,
|
|
|
|
Minter: minter,
|
|
|
|
Tokens: tokens,
|
|
|
|
Block: entity.Block,
|
|
|
|
TxHash: entity.TxHash,
|
|
|
|
}
|
|
|
|
}
|