2023-02-17 11:56:13 +00:00
|
|
|
import QtQuick 2.15
|
2023-04-11 08:09:01 +00:00
|
|
|
import utils 1.0
|
2022-08-23 08:46:37 +00:00
|
|
|
|
|
|
|
QtObject {
|
2022-11-25 17:35:30 +00:00
|
|
|
id: root
|
|
|
|
|
2023-03-09 10:03:17 +00:00
|
|
|
property var communityTokensModuleInst: communityTokensModule ?? null
|
2023-02-22 17:10:46 +00: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 11:12:49 +00:00
|
|
|
property var allNetworks: networksModule.all
|
2023-03-07 11:32:45 +00:00
|
|
|
|
2023-04-13 08:09:06 +00: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-05-18 15:01:48 +00:00
|
|
|
signal burnFeeUpdated(string value) // TO BE REMOVED
|
2023-03-13 16:32:14 +00:00
|
|
|
|
2023-03-23 13:17:07 +00:00
|
|
|
// Minting tokens:
|
|
|
|
function deployCollectible(communityId, accountAddress, name, symbol, description, supply,
|
2023-05-08 11:33:49 +00:00
|
|
|
infiniteSupply, transferable, selfDestruct, chainId, artworkSource, accountName, artworkCropRect)
|
2023-03-23 13:17:07 +00:00
|
|
|
{
|
|
|
|
// TODO: Backend needs to create new role `accountName` and update this call accordingly
|
2023-05-08 11:33:49 +00:00
|
|
|
// TODO: Backend needs to modify the call to expect an image JSON file with cropped artwork information:
|
|
|
|
const jsonArtworkFile = Utils.getImageAndCropInfoJson(artworkSource, artworkCropRect)
|
2023-03-23 13:17:07 +00:00
|
|
|
communityTokensModuleInst.deployCollectible(communityId, accountAddress, name, symbol, description, supply,
|
2023-05-08 11:33:49 +00:00
|
|
|
infiniteSupply, transferable, selfDestruct, chainId, artworkSource/*instead: jsonArtworkFile*/)
|
2023-03-23 13:17:07 +00:00
|
|
|
}
|
|
|
|
|
2023-04-03 11:29:36 +00:00
|
|
|
readonly property Connections connections: Connections {
|
|
|
|
target: communityTokensModuleInst
|
|
|
|
function onDeployFeeUpdated(ethCurrency, fiatCurrency, errorCode) {
|
|
|
|
root.deployFeeUpdated(ethCurrency, fiatCurrency, errorCode)
|
|
|
|
}
|
2023-04-28 18:48:20 +00:00
|
|
|
function onDeploymentStateChanged(communityId, status, url) {
|
|
|
|
root.deploymentStateChanged(communityId, status, url)
|
2023-04-11 08:09:01 +00:00
|
|
|
}
|
2023-04-03 11:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function computeDeployFee(chainId, accountAddress) {
|
|
|
|
communityTokensModuleInst.computeDeployFee(chainId, accountAddress)
|
2023-03-23 13:17:07 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 15:01:48 +00:00
|
|
|
// Remotely destruct:
|
2023-03-31 12:52:51 +00:00
|
|
|
function computeSelfDestructFee(chainId) {
|
|
|
|
// TODO BACKEND
|
|
|
|
root.selfDestructFeeUpdated("0,0005 ETH")
|
|
|
|
console.warn("TODO: Compute self-destruct fee backend")
|
|
|
|
}
|
|
|
|
|
2023-04-27 10:12:09 +00:00
|
|
|
function remoteSelfDestructCollectibles(selfDestructTokensList, chainId, accountName, accountAddress) {
|
2023-03-31 12:52:51 +00:00
|
|
|
// TODO BACKEND
|
2023-04-27 10:12:09 +00:00
|
|
|
// selfDestructTokensList is a js array with properties: `walletAddress` and `amount`
|
2023-03-31 12:52:51 +00:00
|
|
|
console.warn("TODO: Remote self-destruct collectible backend")
|
|
|
|
}
|
|
|
|
|
2023-05-18 15:01:48 +00:00
|
|
|
// Burn:
|
|
|
|
function computeBurnFee(chainId) {
|
|
|
|
// TODO BACKEND
|
|
|
|
root.burnFeeUpdated("0,0010 ETH")
|
|
|
|
console.warn("TODO: Compute burn fee backend")
|
|
|
|
}
|
|
|
|
|
|
|
|
function burnCollectibles(tokenKey,burnAmount) {
|
|
|
|
// TODO BACKEND
|
|
|
|
console.warn("TODO: Burn collectible backend")
|
|
|
|
}
|
|
|
|
|
2023-03-13 16:32:14 +00:00
|
|
|
// Airdrop tokens:
|
2023-03-13 10:16:08 +00:00
|
|
|
function airdrop(communityId, airdropTokens, addresses) {
|
2023-04-25 21:24:04 +00:00
|
|
|
communityTokensModuleInst.airdropCollectibles(communityId, JSON.stringify(airdropTokens), JSON.stringify(addresses))
|
2023-03-13 16:32:14 +00:00
|
|
|
}
|
2022-08-23 08:46:37 +00:00
|
|
|
}
|