2023-02-17 12:56:13 +01:00
|
|
|
import QtQuick 2.15
|
2023-04-11 10:09:01 +02:00
|
|
|
import utils 1.0
|
2022-08-23 10:46:37 +02:00
|
|
|
|
|
|
|
QtObject {
|
2022-11-25 18:35:30 +01:00
|
|
|
id: root
|
|
|
|
|
2023-03-09 11:03:17 +01:00
|
|
|
property var communityTokensModuleInst: communityTokensModule ?? null
|
2023-02-22 18:10:46 +01:00
|
|
|
|
|
|
|
// Network selection properties:
|
|
|
|
property var layer1Networks: networksModule.layer1
|
|
|
|
property var layer2Networks: networksModule.layer2
|
|
|
|
property var testNetworks: networksModule.test
|
|
|
|
property var enabledNetworks: networksModule.enabled
|
2023-03-09 12:12:49 +01:00
|
|
|
property var allNetworks: networksModule.all
|
2023-03-07 12:32:45 +01:00
|
|
|
|
2023-04-13 10:09:06 +02:00
|
|
|
signal deployFeeUpdated(var ethCurrency, var fiatCurrency, int error)
|
|
|
|
signal deploymentStateChanged(string communityId, int status, string url)
|
|
|
|
signal selfDestructFeeUpdated(string value) // TO BE REMOVED
|
2023-03-13 17:32:14 +01:00
|
|
|
|
2023-03-23 14:17:07 +01:00
|
|
|
// Minting tokens:
|
|
|
|
function deployCollectible(communityId, accountAddress, name, symbol, description, supply,
|
|
|
|
infiniteSupply, transferable, selfDestruct, chainId, artworkSource, accountName)
|
|
|
|
{
|
|
|
|
// TODO: Backend needs to create new role `accountName` and update this call accordingly
|
|
|
|
communityTokensModuleInst.deployCollectible(communityId, accountAddress, name, symbol, description, supply,
|
|
|
|
infiniteSupply, transferable, selfDestruct, chainId, artworkSource)
|
|
|
|
}
|
|
|
|
|
2023-04-03 13:29:36 +02:00
|
|
|
readonly property Connections connections: Connections {
|
|
|
|
target: communityTokensModuleInst
|
|
|
|
function onDeployFeeUpdated(ethCurrency, fiatCurrency, errorCode) {
|
|
|
|
root.deployFeeUpdated(ethCurrency, fiatCurrency, errorCode)
|
|
|
|
}
|
2023-04-28 20:48:20 +02:00
|
|
|
function onDeploymentStateChanged(communityId, status, url) {
|
|
|
|
root.deploymentStateChanged(communityId, status, url)
|
2023-04-11 10:09:01 +02:00
|
|
|
}
|
2023-04-03 13:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function computeDeployFee(chainId, accountAddress) {
|
|
|
|
communityTokensModuleInst.computeDeployFee(chainId, accountAddress)
|
2023-03-23 14:17:07 +01:00
|
|
|
}
|
|
|
|
|
2023-03-31 14:52:51 +02:00
|
|
|
function computeSelfDestructFee(chainId) {
|
|
|
|
// TODO BACKEND
|
|
|
|
root.selfDestructFeeUpdated("0,0005 ETH")
|
|
|
|
console.warn("TODO: Compute self-destruct fee backend")
|
|
|
|
}
|
|
|
|
|
2023-04-27 12:12:09 +02:00
|
|
|
function remoteSelfDestructCollectibles(selfDestructTokensList, chainId, accountName, accountAddress) {
|
2023-03-31 14:52:51 +02:00
|
|
|
// TODO BACKEND
|
2023-04-27 12:12:09 +02:00
|
|
|
// selfDestructTokensList is a js array with properties: `walletAddress` and `amount`
|
2023-03-31 14:52:51 +02:00
|
|
|
console.warn("TODO: Remote self-destruct collectible backend")
|
|
|
|
}
|
|
|
|
|
2023-03-13 17:32:14 +01:00
|
|
|
// Airdrop tokens:
|
2023-03-13 11:16:08 +01:00
|
|
|
function airdrop(communityId, airdropTokens, addresses) {
|
2023-04-25 23:24:04 +02:00
|
|
|
communityTokensModuleInst.airdropCollectibles(communityId, JSON.stringify(airdropTokens), JSON.stringify(addresses))
|
2023-03-13 17:32:14 +01:00
|
|
|
}
|
2022-08-23 10:46:37 +02:00
|
|
|
}
|