Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

de48a8ace389504a845bd23b92f4a2b4bde6604cebf4a94d5e8bb771a0bd38eb
Timestamp (utc)
2021-02-04 14:49:07
Fee Paid
0.00000263 BSV
(
0.08891725 BSV
-
0.08891462 BSV
)
Fee Rate
468.8 sat/KB
Version
1
Confirmations
318,147
Size Stats
561 B

2 Inputs

Total Input:
0.08891725 BSV
  • Q!šg—H# Áÿp ‰¹2¨µI¬T¹]?ц¢_Öò2ÓQ®Me'{"summary":1,"identifiers":2,"keyDates":3,"creditStats":4,"tradingStats":5,"__cls":"class FacilitySC {\r\n constructor(\r\n owners = [],\r\n dealId = '',\r\n name = '',\r\n owningBranch = '',\r\n loanFormat = '',\r\n agentId = '',\r\n facilityTypeName = '',\r\n facilityTypeCode = '',\r\n accrualType = 'Accrual',\r\n ANSI = '',\r\n facilityControlNumber = '',\r\n ISIN = '',\r\n CUSIP = '',\r\n creditAgreementDate = '',\r\n effectiveDate = '',\r\n loanEffectiveDate = '',\r\n breakDate = '',\r\n expiryDate = '',\r\n finalMaturityDate = '',\r\n isMultiCurrency = false,\r\n multiCurrency = '',\r\n fxRate = 0,\r\n globalProposedAmount = 0,\r\n globalOriginationAmount = 0,\r\n repaymentRule = '',\r\n cancelationRule = '',\r\n prepaymentRule = '',\r\n facilityCurrency = '',\r\n ageFactor = 0,\r\n bidAsk = 0,\r\n creditRating = '',\r\n reportingCurrency = '',\r\n maxRate = 0,\r\n minRate = 0,\r\n spread = 0,\r\n maxSpread = 0,\r\n minSpread = 0,\r\n assignmentFeesRequired = false,\r\n assignmentFeeType = '',\r\n assignmentFee = 0,\r\n borrowerConsentRequired = false,\r\n agentConsentRequired = false,\r\n margin = 0,\r\n interestOption = '',\r\n baseRate = '',\r\n baseRateAmount = 0,\r\n creditAgreementName = '',\r\n purchaseRate = 0,\r\n RACRate = 0,\r\n averageLibor = 0,\r\n currentLibor = 0,\r\n exchangeRate = 0,\r\n createdBy = '',\r\n uploaded = '',\r\n lastModified = '',\r\n imported = false\r\n ) {\r\n this._owners = owners;\r\n\r\n this.summary = {\r\n dealId,\r\n name,\r\n owningBranch,\r\n loanFormat,\r\n agentId,\r\n };\r\n\r\n this.identifiers = {\r\n facilityTypeName,\r\n facilityTypeCode,\r\n accrualType,\r\n ANSI,\r\n facilityControlNumber,\r\n ISIN,\r\n CUSIP,\r\n };\r\n\r\n this.keyDates = {\r\n creditAgreementDate,\r\n effectiveDate,\r\n loanEffectiveDate,\r\n breakDate,\r\n expiryDate,\r\n finalMaturityDate\r\n };\r\n\r\n this.creditStats = {\r\n isMultiCurrency,\r\n multiCurrency,\r\n fxRate,\r\n globalProposedAmount,\r\n numberOfShares: 0,\r\n globalOriginationAmount,\r\n amountUnavailable: 0,\r\n repaymentRule,\r\n cancelationRule,\r\n prepaymentRule,\r\n };\r\n\r\n this.tradingStats = {\r\n facilityCurrency,\r\n ageFactor,\r\n bidAsk,\r\n creditRating,\r\n reportingCurrency,\r\n maxRate,\r\n minRate,\r\n spread,\r\n maxSpread,\r\n minSpread,\r\n assignmentFeesRequired,\r\n assignmentFeeType,\r\n assignmentFee,\r\n borrowerConsentRequired,\r\n agentConsentRequired,\r\n margin,\r\n lastTradeAmount: '--',\r\n interestOption,\r\n baseRate,\r\n baseRateAmount,\r\n creditAgreementName,\r\n purchaseRate,\r\n RACRate,\r\n averageLibor,\r\n currentLibor,\r\n exchangeRate\r\n };\r\n\r\n this.createdBy = createdBy;\r\n this.uploaded = uploaded;\r\n this.lastModified = lastModified;\r\n this.lendersOfRecord = [];\r\n this.facilityFees = [];\r\n this.imported = imported;\r\n }\r\n\r\n addShares(num) {\r\n this.creditStats.numberOfShares += num\r\n }\r\n\r\n removeShares(num) {\r\n this.creditStats.numberOfShares -= num\r\n }\r\n\r\n setDealId(dealId) {\r\n this.summary.dealId = dealId;\r\n }\r\n\r\n setImported(imported) {\r\n this.imported = imported;\r\n }\r\n\r\n setLastModified(lastModified) {\r\n this.lastModified = lastModified;\r\n }\r\n\r\n setLendersOfRecord(fundId, numberOfShares, timestamp=Date.now()) {\r\n const prev = this.lendersOfRecord.filter(x => x.fundId === fundId);\r\n const commitmentAmount = numberOfShares;\r\n if (prev.length !== 0) {\r\n prev[0].commitmentAmount += commitmentAmount;\r\n } else {\r\n this.lendersOfRecord.push({ fundId, status: 'Actual', commitmentAmount, timestamp });\r\n }\r\n }\r\n\r\n descreaseLendersOfRecord(fundId, numberOfShares) {\r\n const prev = this.lendersOfRecord.filter(x => x.fundId === fundId);\r\n const commitmentAmount = numberOfShares;\r\n if (!!prev && prev[0].commitmentAmount >= numberOfShares) {\r\n prev[0].commitmentAmount -= commitmentAmount;\r\n } else {\r\n throw new Error('Cannot descrease number of shares')\r\n }\r\n }\r\n\r\n transferPosition(fundFrom, fundTo, numberOfShares, timestamp) {\r\n this.setLendersOfRecord(fundTo, numberOfShares, timestamp)\r\n this.descreaseLendersOfRecord(fundFrom, numberOfShares)\r\n }\r\n\r\n addOwners(publicKeys) {\r\n this._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.tradingStats._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.creditStats._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.keyDates._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.identifiers._owners = [...new Set(this._owners.concat(publicKeys))];\r\n this.summary._owners = [...new Set(this._owners.concat(publicKeys))];\r\n }\r\n\r\n setAmountUnavailable(amountUnavailable) {\r\n this.creditStats.amountUnavailable = amountUnavailable;\r\n }\r\n\r\n setLastTradeAmount(lastTradeAmount) {\r\n this.tradingStats.lastTradeAmount = lastTradeAmount;\r\n }\r\n\r\n addFacilityFee(typeAndFee) {\r\n this.facilityFees.push(typeAndFee);\r\n }\r\n\r\n edit(\r\n dealId,\r\n name,\r\n owningBranch,\r\n loanFormat,\r\n facilityTypeName,\r\n facilityTypeCode,\r\n accrualType,\r\n ANSI,\r\n facilityControlNumber,\r\n ISIN ,\r\n CUSIP,\r\n creditAgreementDate,\r\n effectiveDate,\r\n loanEffectiveDate,\r\n breakDate,\r\n expiryDate,\r\n finalMaturityDate,\r\n isMultiCurrency,\r\n multiCurrency,\r\n fxRate,\r\n globalProposedAmount,\r\n globalOriginationAmount,\r\n repaymentRule,\r\n cancelationRule,\r\n prepaymentRule,\r\n facilityCurrency,\r\n ageFactor,\r\n bidAsk,\r\n creditRating,\r\n reportingCurrency,\r\n maxRate,\r\n minRate,\r\n spread,\r\n maxSpread,\r\n minSpread,\r\n assignmentFeesRequired,\r\n assignmentFeeType,\r\n assignmentFee,\r\n borrowerConsentRequired,\r\n agentConsentRequired,\r\n margin,\r\n interestOption,\r\n baseRate,\r\n baseRateAmount,\r\n creditAgreementName,\r\n purchaseRate,\r\n RACRate,\r\n averageLibor,\r\n currentLibor,\r\n exchangeRate\r\n ) {\r\n this.summary.dealId = dealId;\r\n this.summary.name = name;\r\n this.summary.owningBranch = owningBranch;\r\n this.summary.loanFormat = loanFormat;\r\n this.identifiers.facilityTypeName = facilityTypeName;\r\n this.identifiers.facilityTypeCode = facilityTypeCode;\r\n this.identifiers.accrualType = accrualType;\r\n this.identifiers.ANSI = ANSI;\r\n this.identifiers.facilityControlNumber = facilityControlNumber;\r\n this.identifiers.ISIN = ISIN;\r\n this.identifiers.CUSIP = CUSIP;\r\n this.keyDates.creditAgreementDate = creditAgreementDate;\r\n this.keyDates.effectiveDate = effectiveDate;\r\n this.keyDates.loanEffectiveDate = loanEffectiveDate;\r\n this.keyDates.breakDate = breakDate;\r\n this.keyDates.expiryDate = expiryDate;\r\n this.keyDates.finalMaturityDate = finalMaturityDate;\r\n this.creditStats.isMultiCurrency = isMultiCurrency;\r\n this.creditStats.multiCurrency = multiCurrency;\r\n this.creditStats.fxRate = fxRate;\r\n this.creditStats.globalProposedAmount = globalProposedAmount;\r\n this.creditStats.globalOriginationAmount = globalOriginationAmount;\r\n this.creditStats.repaymentRule = repaymentRule;\r\n this.creditStats.cancelationRule = cancelationRule;\r\n this.creditStats.prepaymentRule = prepaymentRule;\r\n this.tradingStats.facilityCurrency = facilityCurrency;\r\n this.tradingStats.ageFactor = ageFactor;\r\n this.tradingStats.bidAsk = bidAsk;\r\n this.tradingStats.creditRating = creditRating;\r\n this.tradingStats.reportingCurrency = reportingCurrency;\r\n this.tradingStats.maxRate = maxRate;\r\n this.tradingStats.minRate = minRate;\r\n this.tradingStats.spread = spread;\r\n this.tradingStats.maxSpread = maxSpread;\r\n this.tradingStats.minSpread = minSpread;\r\n this.tradingStats.assignmentFeesRequired = assignmentFeesRequired;\r\n this.tradingStats.assignmentFeeType = assignmentFeeType;\r\n this.tradingStats.assignmentFee = assignmentFee;\r\n this.tradingStats.borrowerConsentRequired = borrowerConsentRequired;\r\n this.tradingStats.agentConsentRequired = agentConsentRequired;\r\n this.tradingStats.margin = margin;\r\n this.tradingStats.interestOption = interestOption;\r\n this.tradingStats.baseRate = baseRate;\r\n this.tradingStats.baseRateAmount = baseRateAmount;\r\n this.tradingStats.creditAgreementName = creditAgreementName;\r\n this.tradingStats.purchaseRate = purchaseRate;\r\n this.tradingStats.RACRate = RACRate;\r\n this.tradingStats.averageLibor = averageLibor;\r\n this.tradingStats.currentLibor = currentLibor;\r\n this.tradingStats.exchangeRate = exchangeRate;\r\n }\r\n}","__index":{"obj":0},"__func":"constructor","__args":[["039a6790974804230ac10eff700d89b932a8b549ac54b95d3fd186a25fd6f232d3"],"a33cab2f68014201a2525b057ff1cbc596ea354588f98fa2245c5d65f14f5685:0","Facility 2 Agent 1","00","Revolver","890d5e528f4226a94b96210d1ef6b4ea86ff7815c72d90229f01bc331ba8c0f0:0","00","00","Accrual","EX0000009","0999999","999999999999","999999999","02/23/2021","02/25/2021","02/26/2021","02/27/2021","02/28/2021","03/02/2021",false,"",0,0,0,"FIFO","FIFO","FIFO","USD",0,0,"00","USD",0,0,0,0,0,false,"",0,false,false,0,"LIBOR","00",0,"Agreement",0,0,0,0,0,"890d5e528f4226a94b96210d1ef6b4ea86ff7815c72d90229f01bc331ba8c0f0:0","Thu Feb 04 2021 18:32:23 GMT+0400","Thu Feb 04 2021 18:32:23 GMT+0400",false]}u
    https://whatsonchain.com/tx/undefined

3 Outputs

Total Output:
0.08891462 BSV
  • Q!šg—H# Áÿp ‰¹2¨µI¬T¹]?ц¢_Öò2ÓQ®L{"lendersOfRecord_0":1,"__index":{"obj":0},"__func":"setLendersOfRecord","__args":["a32291fe648c03742af58c59c82fbd9575d22876a33c3baf858dbb02e454b060:0",500]}u
    https://whatsonchain.com/tx/de48a8ace389504a845bd23b92f4a2b4bde6604cebf4a94d5e8bb771a0bd38eb
  • Q!šg—H# Áÿp ‰¹2¨µI¬T¹]?ц¢_Öò2ÓQ®{}u
    https://whatsonchain.com/tx/de48a8ace389504a845bd23b92f4a2b4bde6604cebf4a94d5e8bb771a0bd38eb