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)
|
2023-05-05 11:03:59 +00:00
|
|
|
signal selfDestructFeeUpdated(var ethCurrency, var fiatCurrency, int error)
|
2023-06-06 15:32:53 +00:00
|
|
|
signal airdropFeeUpdated(var airdropFees)
|
2023-06-06 12:54:35 +00:00
|
|
|
signal burnFeeUpdated(var ethCurrency, var fiatCurrency, int error)
|
2023-05-05 11:03:59 +00:00
|
|
|
|
2023-04-13 08:09:06 +00:00
|
|
|
signal deploymentStateChanged(string communityId, int status, string url)
|
2023-05-05 11:03:59 +00:00
|
|
|
signal remoteDestructStateChanged(string communityId, string tokenName, int status, string url)
|
2023-06-06 12:54:35 +00:00
|
|
|
signal burnStateChanged(string communityId, string tokenName, int status, string url)
|
|
|
|
signal airdropStateChanged(string communityId, string tokenName, string chainName, int status, string url)
|
2023-05-05 11:03:59 +00:00
|
|
|
|
2023-03-23 13:17:07 +00:00
|
|
|
// Minting tokens:
|
2023-06-01 10:38:56 +00:00
|
|
|
function deployCollectible(communityId, collectibleItem)
|
|
|
|
{
|
2023-03-23 13:17:07 +00:00
|
|
|
// TODO: Backend needs to create new role `accountName` and update this call accordingly
|
2023-06-01 10:38:56 +00:00
|
|
|
// TODO: Backend will need to check if the collectibleItem has a valid tokenKey, so it means a deployment retry,
|
|
|
|
// otherwise, it is a new deployment.
|
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:
|
2023-06-01 10:38:56 +00:00
|
|
|
const jsonArtworkFile = Utils.getImageAndCropInfoJson(collectibleItem.artworkSource, collectibleItem.artworkCropRect)
|
|
|
|
communityTokensModuleInst.deployCollectible(communityId, collectibleItem.accountAddress, collectibleItem.name,
|
|
|
|
collectibleItem.symbol, collectibleItem.description, collectibleItem.supply,
|
|
|
|
collectibleItem.infiniteSupply, collectibleItem.transferable, collectibleItem.remotelyDestruct,
|
|
|
|
collectibleItem.chainId, collectibleItem.artworkSource/*instead: jsonArtworkFile*/)
|
2023-03-23 13:17:07 +00:00
|
|
|
}
|
|
|
|
|
2023-06-01 10:38:56 +00:00
|
|
|
function deployAsset(communityId, assetItem)
|
2023-05-25 10:46:53 +00:00
|
|
|
{
|
|
|
|
// TODO: Backend needs to create new role `accountName` and update this call accordingly
|
2023-06-01 10:38:56 +00:00
|
|
|
// TODO: Backend will need to check if the collectibleItem has a valid tokenKey, so it means a deployment retry,
|
|
|
|
// otherwise, it is a new deployment.
|
2023-05-25 10:46:53 +00:00
|
|
|
// TODO: Backend needs to modify the call to expect an image JSON file with cropped artwork information:
|
2023-06-01 10:38:56 +00:00
|
|
|
const jsonArtworkFile = Utils.getImageAndCropInfoJson(assetItem.artworkSource, assetItem.artworkCropRect)
|
2023-05-25 10:46:53 +00:00
|
|
|
console.log("TODO: Deploy Asset backend!")
|
|
|
|
}
|
|
|
|
|
2023-05-30 15:18:45 +00:00
|
|
|
function deleteToken(communityId, contractUniqueKey) {
|
|
|
|
console.log("TODO: Delete token bakend!")
|
|
|
|
}
|
|
|
|
|
2023-04-03 11:29:36 +00:00
|
|
|
readonly property Connections connections: Connections {
|
2023-06-06 15:32:53 +00:00
|
|
|
target: communityTokensModuleInst
|
|
|
|
|
|
|
|
function onDeployFeeUpdated(ethCurrency, fiatCurrency, errorCode) {
|
|
|
|
root.deployFeeUpdated(ethCurrency, fiatCurrency, errorCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
function onSelfDestructFeeUpdated(ethCurrency, fiatCurrency, errorCode) {
|
|
|
|
root.selfDestructFeeUpdated(ethCurrency, fiatCurrency, errorCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
function onAirdropFeesUpdated(jsonFees) {
|
|
|
|
root.airdropFeeUpdated(JSON.parse(jsonFees))
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDeploymentStateChanged(communityId, status, url) {
|
|
|
|
root.deploymentStateChanged(communityId, status, url)
|
|
|
|
}
|
|
|
|
|
|
|
|
function onRemoteDestructStateChanged(communityId, tokenName, status, url) {
|
|
|
|
root.remoteDestructStateChanged(communityId, tokenName, status, url)
|
|
|
|
}
|
2023-06-06 12:54:35 +00:00
|
|
|
|
|
|
|
function onAirdropStateChanged(communityId, tokenName, chainName, status, url) {
|
|
|
|
root.airdropStateChanged(communityId, tokenName, chainName, status, url)
|
|
|
|
}
|
|
|
|
|
|
|
|
function onBurnStateChanged(communityId, tokenName, status, url) {
|
|
|
|
root.burnStateChanged(communityId, tokenName, status, url)
|
|
|
|
}
|
|
|
|
|
|
|
|
function onBurnFeeUpdated(ethCurrency, fiatCurrency, errorCode) {
|
|
|
|
root.burnFeeUpdated(ethCurrency, fiatCurrency, errorCode)
|
|
|
|
}
|
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-26 15:00:51 +00:00
|
|
|
function computeSelfDestructFee(selfDestructTokensList, tokenKey) {
|
|
|
|
communityTokensModuleInst.computeSelfDestructFee(JSON.stringify(selfDestructTokensList), tokenKey)
|
2023-03-31 12:52:51 +00:00
|
|
|
}
|
|
|
|
|
2023-05-26 15:00:51 +00:00
|
|
|
function remoteSelfDestructCollectibles(communityId, selfDestructTokensList, tokenKey) {
|
|
|
|
communityTokensModuleInst.selfDestructCollectibles(communityId, JSON.stringify(selfDestructTokensList), tokenKey)
|
2023-03-31 12:52:51 +00:00
|
|
|
}
|
|
|
|
|
2023-05-18 15:01:48 +00:00
|
|
|
// Burn:
|
2023-06-06 12:54:35 +00:00
|
|
|
function computeBurnFee(tokenKey, amount) {
|
|
|
|
communityTokensModuleInst.computeBurnFee(tokenKey, amount)
|
2023-05-18 15:01:48 +00:00
|
|
|
}
|
|
|
|
|
2023-06-06 12:54:35 +00:00
|
|
|
function burnToken(communityId, tokenKey, burnAmount) {
|
|
|
|
communityTokensModuleInst.burnCollectibles(communityId, tokenKey, burnAmount)
|
2023-05-18 15:01:48 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2023-05-25 10:00:38 +00:00
|
|
|
|
2023-06-06 15:32:53 +00:00
|
|
|
function computeAirdropFee(communityId, contractKeysAndAmounts, addresses) {
|
|
|
|
communityTokensModuleInst.computeAirdropCollectiblesFee(
|
|
|
|
communityId, JSON.stringify(contractKeysAndAmounts),
|
|
|
|
JSON.stringify(addresses))
|
2023-05-25 10:00:38 +00:00
|
|
|
}
|
2022-08-23 08:46:37 +00:00
|
|
|
}
|