add todo && smartSwap event update

This commit is contained in:
owen05
2020-11-20 11:05:41 +08:00
parent 93c2270076
commit 857e4fc01a
9 changed files with 30 additions and 10 deletions

View File

@@ -39,6 +39,7 @@ contract DVMFactory is Ownable {
_DEFAULT_GAS_PRICE_SOURCE_ = defaultGasPriceSource;
}
function createStandardDODOVendingMachine(
address baseToken,
address quoteToken,
@@ -62,6 +63,9 @@ contract DVMFactory is Ownable {
k
);
//TODO: Create2
//TODO: DVM作为Mapping的字段维护自身属性
//TODO: 创建者索引便于my pool查询
_REGISTRY_[baseToken][quoteToken].push(newVendorMachine);
return newVendorMachine;
}