Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

e2e05c82a00f0f6e2da8d1025e2da0f6c652ffb205449f22930e32b650fb94f5
Timestamp (utc)
2020-06-24 08:34:51
Fee Paid
0.00002701 BSV
(
0.09426114 BSV
-
0.09423413 BSV
)
Fee Rate
500.1 sat/KB
Version
1
Confirmations
357,657
Size Stats
5,400 B

2 Outputs

Total Output:
0.09423413 BSV
  • Q!ƶh¡ž€SOæÐs 0¾¢s†TvZÛjÛæm´R!%ݏnfúÑÂâë^ª«>%‡ƒ,ftNX¹ãøáˆ!%LÆË9ý§ñ*µx­vhÕ<_ß팏u˜yׁ۵!}ô ?ânŸçÒ7ôR©‚¦Æ;Ê6Z,¸}1KDPíR!œDbV Ƹ„"Œër3‰×ô!—oÉ£±"ä °¢­E U®Mœ{"kind":"script","__func":"constructor","_args":[["03c6b668a19e0080534fe6d0732030060ebea2731c865490765adb6adbe66db452","0325dd8f6e66fad1c2e2eb125e0214aaab3e2587832c66744e58b9e30614f8e188","03254cc6cb39fda7f12ab578ad7f7668d505143c5fdfed8c8f7598791dd781dbb5","037df40c3fe26e9fe7d21b1e37f452a982a616c63bca365a2cb87d314b4450ed52","029c44625609c6b884228ceb723389d7f421976fc9a3b122e41c0c1ab0a2ad45a0"],"test","Sale","test","test","test","test","test 15","test","test","test","test","test","test","test","test","test","test","test","test","test","Primary","test","test","test","test","test","test","No","03c6b668a19e0080534fe6d0732030060ebea2731c865490765adb6adbe66db452","0325dd8f6e66fad1c2e2eb125e0214aaab3e2587832c66744e58b9e30614f8e188","03254cc6cb39fda7f12ab578ad7f7668d505143c5fdfed8c8f7598791dd781dbb5","037df40c3fe26e9fe7d21b1e37f452a982a616c63bca365a2cb87d314b4450ed52","029c44625609c6b884228ceb723389d7f421976fc9a3b122e41c0c1ab0a2ad45a0",1592986807,"34d1eaac9c4fbaf5f657d07958615effab3ad24731b8ec9e8fe6b95432505280:0"],"__index":{"obj":0},"__cls":"class TradeSC {\n constructor(\n publicKeys,\n issuer,\n isPurchaseOrSale,\n lxid,\n fid,\n purchaseType,\n affiliation,\n cusip,\n sellerInstitution,\n buyerInstitution,\n sellerName,\n buyerName,\n weightedAveragePrice,\n totalUpfrontFees,\n commission,\n secFees,\n miscFees,\n ownerEntityName,\n totalCommitment,\n price,\n netAmount,\n agreement,\n accInterest,\n type,\n tranche,\n baseRate,\n spread,\n creditOfficer,\n isStandardDelayed,\n buyerCloserId,\n arrangerCloserId,\n trusteeId,\n agentId,\n complianceId,\n date,\n chatId = '',\n ) {\n this._owners = publicKeys\n this.issuer = issuer\n this.isPurchaseOrSale = isPurchaseOrSale\n this.lxid = lxid\n this.fid = fid\n this.purchaseType = purchaseType\n this.affiliation = affiliation\n this.cusip = cusip\n this.sellerInstitution = sellerInstitution\n this.buyerInstitution = buyerInstitution\n this.sellerName = sellerName\n this.buyerName = buyerName\n this.totalCommitment = totalCommitment\n this.weightedAveragePrice = weightedAveragePrice\n this.totalUpfrontFees = totalUpfrontFees\n this.commission = commission\n this.secFees = secFees\n this.miscFees = miscFees\n this.ownerEntityName = ownerEntityName\n this.price = price\n this.netAmount = netAmount\n this.agreement = agreement\n this.accInterest = accInterest\n this.type = type\n this.tranche = tranche\n this.baseRate = baseRate\n this.spread = spread\n this.creditOfficer = creditOfficer\n this.isStandardDelayed = isStandardDelayed\n this.buyerCloserId = buyerCloserId\n this.arrangerCloserId = arrangerCloserId\n this.trusteeId = trusteeId\n this.agentId = agentId\n this.complianceId = complianceId\n this.date = date\n this.status = 'New'\n this.chatId = chatId\n this.finalized = false\n\n this.state = 'Trade Submitted'\n this.approved = JSON.stringify({\n buyer: false,\n agent: false\n })\n\n this.agentApproved = JSON.stringify({\n agent: false,\n })\n\n this.aaApproved = JSON.stringify({\n buyer: false,\n arranger: false,\n agent: false\n })\n\n this.lstaApproved = JSON.stringify({\n buyer: false,\n arranger: false\n })\n }\n\n setBuyerArrangerApproved(role) {\n const approvedJSON = JSON.parse(this.approved)\n approvedJSON[role] = true\n const fullyApproved = true // ['buyer', 'arranger'].every(role => approvedJSON[role])\n if (fullyApproved && this.state === 'Trade Submitted')\n this.state = 'Buyer Arranger Approved'\n this.approved = JSON.stringify(approvedJSON)\n }\n\n setAgentApproved() {\n const approvedJSON = JSON.parse(this.agentApproved)\n approvedJSON['agent'] = true\n const fullyApproved = true // ['buyer', 'arranger'].every(role => approvedJSON[role])\n if (fullyApproved && this.state === 'Buyer Arranger Approved')\n this.state = 'Trade Approved'\n this.agentApproved = JSON.stringify(approvedJSON)\n }\n\n setAaApproved(role) {\n const approvedJSON = JSON.parse(this.aaApproved)\n approvedJSON[role] = true\n const fullyApproved = true // ['buyer', 'agent', 'arranger'].every(role => approvedJSON[role])\n if (fullyApproved && this.state === 'Trade Approved')\n this.state = 'A&A Approved'\n this.aaApproved = JSON.stringify(approvedJSON)\n }\n\n setLstaApproved(role) {\n const approvedJSON = JSON.parse(this.lstaApproved)\n approvedJSON[role] = true\n const fullyApproved = true // ['buyer', 'arranger'].every(role => approvedJSON[role])\n if (fullyApproved && this.state === 'A&A Approved')\n this.state = 'Lsta Approved'\n this.lstaApproved = JSON.stringify(approvedJSON)\n }\n\n bindChat(chatId) {\n this.chatId = chatId\n }\n\n finalize() {\n this.finalized = true\n this.status = 'Settled'\n }\n}"}u
    https://whatsonchain.com/tx/e2e05c82a00f0f6e2da8d1025e2da0f6c652ffb205449f22930e32b650fb94f5