Browse Source

usability improvements

cl-refactor
arkpar 10 years ago
parent
commit
6df3687132
  1. 15
      mix/ClientModel.cpp
  2. 2
      mix/CodeModel.cpp
  3. 2
      mix/CodeModel.h
  4. 1
      mix/Exceptions.h
  5. 1
      mix/MachineStates.h
  6. 31
      mix/MixClient.cpp
  7. 5
      mix/MixClient.h
  8. 4
      mix/qml/CodeEditorView.qml
  9. 63
      mix/qml/DebugInfoList.qml
  10. 42
      mix/qml/StateListModel.qml
  11. 6
      mix/qml/TransactionLog.qml
  12. 9
      mix/qml/WebCodeEditor.qml
  13. 2
      mix/qml/js/ProjectModel.js
  14. 5
      mix/qml/js/TransactionHelper.js

15
mix/ClientModel.cpp

@ -221,9 +221,11 @@ void ClientModel::executeSequence(std::vector<TransactionSettings> const& _seque
{ {
//std contract //std contract
dev::bytes const& stdContractCode = m_context->codeModel()->getStdContractCode(transaction.contractId, transaction.stdContractUrl); dev::bytes const& stdContractCode = m_context->codeModel()->getStdContractCode(transaction.contractId, transaction.stdContractUrl);
Address address = deployContract(stdContractCode, transaction); TransactionSettings stdTransaction = transaction;
m_stdContractAddresses[transaction.contractId] = address; stdTransaction.gas = 500000;// TODO: get this from std contracts library
m_stdContractNames[address] = transaction.contractId; Address address = deployContract(stdContractCode, stdTransaction);
m_stdContractAddresses[stdTransaction.contractId] = address;
m_stdContractNames[address] = stdTransaction.contractId;
} }
else else
{ {
@ -296,7 +298,7 @@ void ClientModel::executeSequence(std::vector<TransactionSettings> const& _seque
void ClientModel::showDebugger() void ClientModel::showDebugger()
{ {
ExecutionResult const& last = m_client->lastExecution(); ExecutionResult last = m_client->lastExecution();
showDebuggerForTransaction(last); showDebuggerForTransaction(last);
} }
@ -433,7 +435,7 @@ void ClientModel::emptyRecord()
void ClientModel::debugRecord(unsigned _index) void ClientModel::debugRecord(unsigned _index)
{ {
ExecutionResult const& e = m_client->executions().at(_index); ExecutionResult e = m_client->execution(_index);
showDebuggerForTransaction(e); showDebuggerForTransaction(e);
} }
@ -479,7 +481,7 @@ void ClientModel::onNewTransaction()
{ {
ExecutionResult const& tr = m_client->lastExecution(); ExecutionResult const& tr = m_client->lastExecution();
unsigned block = m_client->number() + 1; unsigned block = m_client->number() + 1;
unsigned recordIndex = m_client->executions().size() - 1; unsigned recordIndex = tr.executonIndex;
QString transactionIndex = tr.isCall() ? QObject::tr("Call") : QString("%1:%2").arg(block).arg(tr.transactionIndex); QString transactionIndex = tr.isCall() ? QObject::tr("Call") : QString("%1:%2").arg(block).arg(tr.transactionIndex);
QString address = QString::fromStdString(toJS(tr.address)); QString address = QString::fromStdString(toJS(tr.address));
QString value = QString::fromStdString(dev::toString(tr.value)); QString value = QString::fromStdString(dev::toString(tr.value));
@ -503,6 +505,7 @@ void ClientModel::onNewTransaction()
} }
else else
function = QObject::tr("Constructor"); function = QObject::tr("Constructor");
address = QObject::tr("(Create contract)");
} }
else else
{ {

2
mix/CodeModel.cpp

@ -262,6 +262,8 @@ void CodeModel::runCompilationJob(int _jobId)
CompiledContract* prevContract = m_contractMap.value(name); CompiledContract* prevContract = m_contractMap.value(name);
if (prevContract != nullptr && prevContract->contractInterface() != result[name]->contractInterface()) if (prevContract != nullptr && prevContract->contractInterface() != result[name]->contractInterface())
emit contractInterfaceChanged(name); emit contractInterfaceChanged(name);
if (prevContract == nullptr)
emit newContractCompiled(name);
} }
releaseContracts(); releaseContracts();
m_contractMap.swap(result); m_contractMap.swap(result);

2
mix/CodeModel.h

@ -163,6 +163,8 @@ signals:
void codeChanged(); void codeChanged();
/// Emitted if there are any changes in the contract interface /// Emitted if there are any changes in the contract interface
void contractInterfaceChanged(QString _documentId); void contractInterfaceChanged(QString _documentId);
/// Emitted if there is a new contract compiled for the first time
void newContractCompiled(QString _documentId);
public slots: public slots:
/// Update code model on source code change /// Update code model on source code change

1
mix/Exceptions.h

@ -39,6 +39,7 @@ struct InvalidBlockException: virtual Exception {};
struct FunctionNotFoundException: virtual Exception {}; struct FunctionNotFoundException: virtual Exception {};
struct ExecutionStateException: virtual Exception {}; struct ExecutionStateException: virtual Exception {};
struct ParameterChangedException: virtual Exception {}; struct ParameterChangedException: virtual Exception {};
struct OutOfGasException: virtual Exception {};
using QmlErrorInfo = boost::error_info<struct tagQmlError, QQmlError>; using QmlErrorInfo = boost::error_info<struct tagQmlError, QQmlError>;
using FileError = boost::error_info<struct tagFileError, std::string>; using FileError = boost::error_info<struct tagFileError, std::string>;

1
mix/MachineStates.h

@ -80,6 +80,7 @@ namespace mix
dev::Address contractAddress; dev::Address contractAddress;
dev::u256 value; dev::u256 value;
unsigned transactionIndex; unsigned transactionIndex;
unsigned executonIndex = 0;
bool isCall() const { return transactionIndex == std::numeric_limits<unsigned>::max(); } bool isCall() const { return transactionIndex == std::numeric_limits<unsigned>::max(); }
bool isConstructor() const { return !isCall() && !address; } bool isConstructor() const { return !isCall() && !address; }

31
mix/MixClient.cpp

@ -104,6 +104,7 @@ void MixClient::resetState(std::map<Secret, u256> _accounts)
m_state = eth::State(genesisState.begin()->first , m_stateDB, BaseState::Empty); m_state = eth::State(genesisState.begin()->first , m_stateDB, BaseState::Empty);
m_state.sync(bc()); m_state.sync(bc());
m_startState = m_state; m_startState = m_state;
WriteGuard lx(x_executions);
m_executions.clear(); m_executions.clear();
} }
@ -186,12 +187,14 @@ void MixClient::executeTransaction(Transaction const& _t, State& _state, bool _c
d.contractAddress = right160(sha3(rlpList(_t.sender(), _t.nonce()))); d.contractAddress = right160(sha3(rlpList(_t.sender(), _t.nonce())));
if (!_call) if (!_call)
d.transactionIndex = m_state.pending().size(); d.transactionIndex = m_state.pending().size();
m_executions.emplace_back(std::move(d)); d.executonIndex = m_executions.size();
// execute on a state // execute on a state
if (!_call) if (!_call)
{ {
_state.execute(lastHashes, rlp, nullptr, true); _state.execute(lastHashes, rlp, nullptr, true);
if (_t.isCreation() && _state.code(d.contractAddress).empty())
BOOST_THROW_EXCEPTION(OutOfGas() << errinfo_comment("Not enough gas for contract deployment"));
// collect watches // collect watches
h256Set changed; h256Set changed;
Guard l(m_filterLock); Guard l(m_filterLock);
@ -211,6 +214,8 @@ void MixClient::executeTransaction(Transaction const& _t, State& _state, bool _c
changed.insert(dev::eth::PendingChangedFilter); changed.insert(dev::eth::PendingChangedFilter);
noteChanged(changed); noteChanged(changed);
} }
WriteGuard l(x_executions);
m_executions.emplace_back(std::move(d));
} }
void MixClient::mine() void MixClient::mine()
@ -226,14 +231,16 @@ void MixClient::mine()
noteChanged(changed); noteChanged(changed);
} }
ExecutionResult const& MixClient::lastExecution() const ExecutionResult MixClient::lastExecution() const
{ {
return m_executions.back(); ReadGuard l(x_executions);
return m_executions.empty() ? ExecutionResult() : m_executions.back();
} }
ExecutionResults const& MixClient::executions() const ExecutionResult MixClient::execution(unsigned _index) const
{ {
return m_executions; ReadGuard l(x_executions);
return m_executions.at(_index);
} }
State MixClient::asOf(int _block) const State MixClient::asOf(int _block) const
@ -441,32 +448,38 @@ LocalisedLogEntries MixClient::checkWatch(unsigned _watchId)
h256 MixClient::hashFromNumber(unsigned _number) const h256 MixClient::hashFromNumber(unsigned _number) const
{ {
ReadGuard l(x_state);
return bc().numberHash(_number); return bc().numberHash(_number);
} }
eth::BlockInfo MixClient::blockInfo(h256 _hash) const eth::BlockInfo MixClient::blockInfo(h256 _hash) const
{ {
ReadGuard l(x_state);
return BlockInfo(bc().block(_hash)); return BlockInfo(bc().block(_hash));
} }
eth::BlockInfo MixClient::blockInfo() const eth::BlockInfo MixClient::blockInfo() const
{ {
ReadGuard l(x_state);
return BlockInfo(bc().block()); return BlockInfo(bc().block());
} }
eth::BlockDetails MixClient::blockDetails(h256 _hash) const eth::BlockDetails MixClient::blockDetails(h256 _hash) const
{ {
ReadGuard l(x_state);
return bc().details(_hash); return bc().details(_hash);
} }
Transaction MixClient::transaction(h256 _transactionHash) const Transaction MixClient::transaction(h256 _transactionHash) const
{ {
ReadGuard l(x_state);
return Transaction(bc().transaction(_transactionHash), CheckSignature::Range); return Transaction(bc().transaction(_transactionHash), CheckSignature::Range);
} }
eth::Transaction MixClient::transaction(h256 _blockHash, unsigned _i) const eth::Transaction MixClient::transaction(h256 _blockHash, unsigned _i) const
{ {
ReadGuard l(x_state);
auto bl = bc().block(_blockHash); auto bl = bc().block(_blockHash);
RLP b(bl); RLP b(bl);
if (_i < b[1].itemCount()) if (_i < b[1].itemCount())
@ -477,6 +490,7 @@ eth::Transaction MixClient::transaction(h256 _blockHash, unsigned _i) const
eth::BlockInfo MixClient::uncle(h256 _blockHash, unsigned _i) const eth::BlockInfo MixClient::uncle(h256 _blockHash, unsigned _i) const
{ {
ReadGuard l(x_state);
auto bl = bc().block(_blockHash); auto bl = bc().block(_blockHash);
RLP b(bl); RLP b(bl);
if (_i < b[2].itemCount()) if (_i < b[2].itemCount())
@ -487,6 +501,7 @@ eth::BlockInfo MixClient::uncle(h256 _blockHash, unsigned _i) const
unsigned MixClient::transactionCount(h256 _blockHash) const unsigned MixClient::transactionCount(h256 _blockHash) const
{ {
ReadGuard l(x_state);
auto bl = bc().block(_blockHash); auto bl = bc().block(_blockHash);
RLP b(bl); RLP b(bl);
return b[1].itemCount(); return b[1].itemCount();
@ -494,6 +509,7 @@ unsigned MixClient::transactionCount(h256 _blockHash) const
unsigned MixClient::uncleCount(h256 _blockHash) const unsigned MixClient::uncleCount(h256 _blockHash) const
{ {
ReadGuard l(x_state);
auto bl = bc().block(_blockHash); auto bl = bc().block(_blockHash);
RLP b(bl); RLP b(bl);
return b[2].itemCount(); return b[2].itemCount();
@ -501,6 +517,7 @@ unsigned MixClient::uncleCount(h256 _blockHash) const
Transactions MixClient::transactions(h256 _blockHash) const Transactions MixClient::transactions(h256 _blockHash) const
{ {
ReadGuard l(x_state);
auto bl = bc().block(_blockHash); auto bl = bc().block(_blockHash);
RLP b(bl); RLP b(bl);
Transactions res; Transactions res;
@ -511,21 +528,25 @@ Transactions MixClient::transactions(h256 _blockHash) const
TransactionHashes MixClient::transactionHashes(h256 _blockHash) const TransactionHashes MixClient::transactionHashes(h256 _blockHash) const
{ {
ReadGuard l(x_state);
return bc().transactionHashes(_blockHash); return bc().transactionHashes(_blockHash);
} }
unsigned MixClient::number() const unsigned MixClient::number() const
{ {
ReadGuard l(x_state);
return bc().number(); return bc().number();
} }
eth::Transactions MixClient::pending() const eth::Transactions MixClient::pending() const
{ {
ReadGuard l(x_state);
return m_state.pending(); return m_state.pending();
} }
eth::StateDiff MixClient::diff(unsigned _txi, h256 _block) const eth::StateDiff MixClient::diff(unsigned _txi, h256 _block) const
{ {
ReadGuard l(x_state);
State st(m_stateDB, bc(), _block); State st(m_stateDB, bc(), _block);
return st.fromPending(_txi).diff(st.fromPending(_txi + 1)); return st.fromPending(_txi).diff(st.fromPending(_txi + 1));
} }

5
mix/MixClient.h

@ -44,8 +44,8 @@ public:
/// Reset state to the empty state with given balance. /// Reset state to the empty state with given balance.
void resetState(std::map<Secret, u256> _accounts); void resetState(std::map<Secret, u256> _accounts);
void mine(); void mine();
ExecutionResult const& lastExecution() const; ExecutionResult lastExecution() const;
ExecutionResults const& executions() const; ExecutionResult execution(unsigned _index) const;
//dev::eth::Interface //dev::eth::Interface
void transact(Secret _secret, u256 _value, Address _dest, bytes const& _data, u256 _gas, u256 _gasPrice) override; void transact(Secret _secret, u256 _value, Address _dest, bytes const& _data, u256 _gas, u256 _gasPrice) override;
@ -108,6 +108,7 @@ private:
OverlayDB m_stateDB; OverlayDB m_stateDB;
std::auto_ptr<MixBlockChain> m_bc; std::auto_ptr<MixBlockChain> m_bc;
mutable boost::shared_mutex x_state; mutable boost::shared_mutex x_state;
mutable boost::shared_mutex x_executions;
mutable std::mutex m_filterLock; mutable std::mutex m_filterLock;
std::map<h256, dev::eth::InstalledFilter> m_filters; std::map<h256, dev::eth::InstalledFilter> m_filters;
std::map<unsigned, dev::eth::ClientWatch> m_watches; std::map<unsigned, dev::eth::ClientWatch> m_watches;

4
mix/qml/CodeEditorView.qml

@ -116,7 +116,9 @@ Item {
for (var i = 0; i < editorListModel.count; i++) for (var i = 0; i < editorListModel.count; i++)
{ {
var doc = editorListModel.get(i); var doc = editorListModel.get(i);
fileIo.writeFile(doc.path, editors.itemAt(i).item.getText()); var editor = editors.itemAt(i).item;
if (editor)
fileIo.writeFile(doc.path, item.getText());
} }
} }

63
mix/qml/DebugInfoList.qml

@ -8,6 +8,7 @@ ColumnLayout {
property string title property string title
property variant listModel; property variant listModel;
property bool collapsible; property bool collapsible;
property bool collapsed;
property bool enableSelection: false; property bool enableSelection: false;
property real storedHeight: 0; property real storedHeight: 0;
property Component itemDelegate property Component itemDelegate
@ -19,18 +20,20 @@ ColumnLayout {
function collapse() function collapse()
{ {
storedHeight = childrenRect.height; storedHeight = childrenRect.height;
storageContainer.state = "collapsed"; storageContainer.collapse();
} }
function show() function show()
{ {
storageContainer.state = ""; storageContainer.expand();
} }
Component.onCompleted: Component.onCompleted:
{ {
if (storageContainer.parent.parent.height === 25) if (storageContainer.parent.parent.height === 25)
storageContainer.state = "collapsed"; storageContainer.collapse();
else
storageContainer.expand();
} }
RowLayout { RowLayout {
@ -59,15 +62,15 @@ ColumnLayout {
onClicked: { onClicked: {
if (collapsible) if (collapsible)
{ {
if (storageContainer.state == "collapsed") if (collapsed)
{ {
storageContainer.state = ""; storageContainer.expand();
storageContainer.parent.parent.height = storedHeight; storageContainer.parent.parent.height = storedHeight;
} }
else else
{ {
storedHeight = root.childrenRect.height; storedHeight = root.childrenRect.height;
storageContainer.state = "collapsed"; storageContainer.collapse();
} }
} }
} }
@ -80,19 +83,19 @@ ColumnLayout {
border.color: "#deddd9" border.color: "#deddd9"
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true Layout.fillHeight: true
states: [
State { function collapse() {
name: "collapsed" storageImgArrow.source = "qrc:/qml/img/closedtriangleindicator.png";
PropertyChanges { if (storageContainer.parent.parent.height > 25)
target: storageImgArrow storageContainer.parent.parent.height = 25;
source: "qrc:/qml/img/closedtriangleindicator.png" collapsed = true;
} }
PropertyChanges {
target: storageContainer.parent.parent function expand() {
height: 25 storageImgArrow.source = "qrc:/qml/img/opentriangleindicator.png";
} collapsed = false;
} }
]
Loader Loader
{ {
id: loader id: loader
@ -102,6 +105,17 @@ ColumnLayout {
anchors.leftMargin: 3 anchors.leftMargin: 3
width: parent.width - 3 width: parent.width - 3
height: parent.height - 6 height: parent.height - 6
onHeightChanged: {
if (height <= 0 && collapsible) {
if (storedHeight <= 0)
storedHeight = 200;
storageContainer.collapse();
}
else if (height > 0 && collapsed) {
storageContainer.expand();
}
}
sourceComponent: componentDelegate ? componentDelegate : table sourceComponent: componentDelegate ? componentDelegate : table
} }
Component Component
@ -116,17 +130,6 @@ ColumnLayout {
selectionMode: enableSelection ? SelectionMode.SingleSelection : SelectionMode.NoSelection selectionMode: enableSelection ? SelectionMode.SingleSelection : SelectionMode.NoSelection
headerDelegate: null headerDelegate: null
itemDelegate: root.itemDelegate itemDelegate: root.itemDelegate
onHeightChanged: {
if (height <= 0 && collapsible) {
if (storedHeight <= 0)
storedHeight = 200;
storageContainer.state = "collapsed";
}
else if (height > 0 && storageContainer.state == "collapsed") {
//TODO: fix increasing size
//storageContainer.state = "";
}
}
onActivated: rowActivated(row); onActivated: rowActivated(row);
Keys.onPressed: { Keys.onPressed: {
if ((event.modifiers & Qt.ControlModifier) && event.key === Qt.Key_C && currentRow >=0 && currentRow < listModel.length) { if ((event.modifiers & Qt.ControlModifier) && event.key === Qt.Key_C && currentRow >=0 && currentRow < listModel.length) {

42
mix/qml/StateListModel.qml

@ -6,12 +6,14 @@ import QtQuick.Window 2.2
import QtQuick.Layouts 1.1 import QtQuick.Layouts 1.1
import org.ethereum.qml.QEther 1.0 import org.ethereum.qml.QEther 1.0
import "js/QEtherHelper.js" as QEtherHelper import "js/QEtherHelper.js" as QEtherHelper
import "js/TransactionHelper.js" as TransactionHelper
Item { Item {
property alias model: stateListModel property alias model: stateListModel
property var stateList: [] property var stateList: []
property string defaultAccount: "cb73d9408c4720e230387d956eb0f829d8a4dd2c1055f96257167e14e7169074" //support for old project property string defaultAccount: "cb73d9408c4720e230387d956eb0f829d8a4dd2c1055f96257167e14e7169074" //support for old project
function fromPlainStateItem(s) { function fromPlainStateItem(s) {
if (!s.accounts) if (!s.accounts)
s.accounts = [stateListModel.newAccount("1000000", QEther.Ether, defaultAccount)]; //support for old project s.accounts = [stateListModel.newAccount("1000000", QEther.Ether, defaultAccount)]; //support for old project
@ -121,6 +123,13 @@ Item {
} }
} }
Connections {
target: codeModel
onNewContractCompiled: {
stateListModel.addNewContracts();
}
}
StateDialog { StateDialog {
id: stateDialog id: stateDialog
onAccepted: { onAccepted: {
@ -154,12 +163,7 @@ Item {
signal stateRun(int index) signal stateRun(int index)
function defaultTransactionItem() { function defaultTransactionItem() {
return { return TransactionHelper.defaultTransaction();
value: QEtherHelper.createEther("100", QEther.Wei),
gas: QEtherHelper.createBigInt("125000"),
gasPrice: QEtherHelper.createEther("10000000000000", QEther.Wei),
stdContract: false
};
} }
function newAccount(_balance, _unit, _secret) function newAccount(_balance, _unit, _secret)
@ -202,6 +206,32 @@ Item {
return item; return item;
} }
function addNewContracts() {
//add new contracts for all states
for(var c in codeModel.contracts) {
for (var s = 0; s < stateListModel.count; s++) {
var state = stateList[s];//toPlainStateItem(stateListModel.get(s));
for (var t = 0; t < state.transactions.length; t++) {
var transaction = state.transactions[t];
if (transaction.functionId === c && transaction.contractId === c)
break;
}
if (t === state.transactions.length) {
//append this contract
var ctorTr = defaultTransactionItem();
ctorTr.functionId = c;
ctorTr.contractId = c;
ctorTr.sender = state.accounts[0].secret;
state.transactions.push(ctorTr);
var item = state;//fromPlainStateItem(state);
stateListModel.set(s, item);
stateList[s] = item;
}
}
}
save();
}
function addState() { function addState() {
var item = createDefaultState(); var item = createDefaultState();
stateDialog.open(stateListModel.count, item, false); stateDialog.open(stateListModel.count, item, false);

6
mix/qml/TransactionLog.qml

@ -125,7 +125,7 @@ Item {
TableViewColumn { TableViewColumn {
role: "transactionIndex" role: "transactionIndex"
title: qsTr("Index") title: qsTr("#")
width: 40 width: 40
} }
TableViewColumn { TableViewColumn {
@ -145,8 +145,8 @@ Item {
} }
TableViewColumn { TableViewColumn {
role: "address" role: "address"
title: qsTr("Address") title: qsTr("Destination")
width: 120 width: 130
} }
TableViewColumn { TableViewColumn {
role: "returned" role: "returned"

9
mix/qml/WebCodeEditor.qml

@ -40,7 +40,8 @@ Item {
} }
function highlightExecution(location) { function highlightExecution(location) {
editorBrowser.runJavaScript("highlightExecution(" + location.start + "," + location.end + ")"); if (initialized)
editorBrowser.runJavaScript("highlightExecution(" + location.start + "," + location.end + ")");
} }
function getBreakpoints() { function getBreakpoints() {
@ -48,11 +49,13 @@ Item {
} }
function toggleBreakpoint() { function toggleBreakpoint() {
editorBrowser.runJavaScript("toggleBreakpoint()"); if (initialized)
editorBrowser.runJavaScript("toggleBreakpoint()");
} }
function changeGeneration() { function changeGeneration() {
editorBrowser.runJavaScript("changeGeneration()", function(result) {}); if (initialized)
editorBrowser.runJavaScript("changeGeneration()", function(result) {});
} }
Connections { Connections {

2
mix/qml/js/ProjectModel.js

@ -64,7 +64,6 @@ function saveProject() {
var projectData = saveProjectFile(); var projectData = saveProjectFile();
if (projectData !== null) if (projectData !== null)
{ {
projectSaving(projectData);
projectSaved(); projectSaved();
} }
} }
@ -86,6 +85,7 @@ function saveProjectFile()
for (var i = 0; i < projectListModel.count; i++) for (var i = 0; i < projectListModel.count; i++)
projectData.files.push(projectListModel.get(i).fileName); projectData.files.push(projectListModel.get(i).fileName);
projectSaving(projectData);
var json = JSON.stringify(projectData, null, "\t"); var json = JSON.stringify(projectData, null, "\t");
var projectFile = projectPath + projectFileName; var projectFile = projectPath + projectFileName;
fileIo.writeFile(projectFile, json); fileIo.writeFile(projectFile, json);

5
mix/qml/js/TransactionHelper.js

@ -5,9 +5,10 @@ function defaultTransaction()
return { return {
value: createEther("0", QEther.Wei), value: createEther("0", QEther.Wei),
functionId: "", functionId: "",
gas: createBigInt("125000"), gas: createBigInt("250000"),
gasPrice: createEther("100000", QEther.Wei), gasPrice: createEther("100000", QEther.Wei),
parameters: {} parameters: {},
stdContract: false
}; };
} }

Loading…
Cancel
Save