Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
Timestamp (utc)
2021-01-11 01:17:02
Fee Paid
0.00003228 BSV
(
0.05491451 BSV
-
0.05488223 BSV
)
Fee Rate
500 sat/KB
Version
1
Confirmations
329,803
Size Stats
6,455 B

6 Outputs

Total Output:
0.05488223 BSV
  • Q!ωћƧ¼Â`Ï䪗âBn ÿ‰W#‰¦¤omQ®M{{"summary":1,"details":2,"correspondentBank":3,"beneficiaryBank":4,"__cls":"class InstitutionSC {\n constructor(\n admins = [],\n name = '',\n address = '',\n country = '',\n usPayIdType = 'SWIFT',\n defaultFund = '',\n currency = 'USD',\n trusteeId = 'None',\n complianceId = 'None',\n dateFunded = new Date().toLocaleDateString('en-US'),\n correspondentBankName = '',\n correspondentBankSwift = '',\n sortCode = '',\n ABA = '',\n accountName = '',\n accountNumber = '',\n beneficiaryBankSwift = '',\n iban = '',\n intermediarySwift = '',\n paymentReference = '',\n referenceNumber = '',\n isAgent = false\n ) {\n this._owners = admins;\n\n this.summary = {\n _owners: admins,\n name,\n address,\n country,\n contactPersonId: '',\n };\n\n this.details = {\n _owners: admins,\n usPayIdType,\n defaultFund,\n currency,\n trusteeId,\n complianceId,\n dateFunded,\n };\n\n this.correspondentBank = {\n _owners: admins,\n correspondentBankName,\n correspondentBankSwift,\n sortCode,\n ABA,\n };\n\n this.beneficiaryBank = {\n _owners: admins,\n accountName,\n accountNumber,\n beneficiaryBankSwift,\n iban,\n intermediarySwift,\n paymentReference,\n referenceNumber,\n };\n\n this.isAgent = isAgent;\n\n this.kycRequirements = [];\n this.admins = [];\n this.dqList = [];\n this.funds = [];\n this.members = [];\n\n this.onboarded = [];\n this.processing = [];\n this.files = [];\n }\n\n addAdmin(publicKey, userId) {\n this._owners = [...new Set(this._owners.concat(publicKey))];\n this.summary._owners = [...new Set(this.summary._owners.concat(publicKey))];\n this.details._owners = [...new Set(this.details._owners.concat(publicKey))];\n this.correspondentBank._owners = [...new Set(this.correspondentBank._owners.concat(publicKey))];\n this.beneficiaryBank._owners = [...new Set(this.beneficiaryBank._owners.concat(publicKey))];\n this.admins = [...new Set(this.admins.concat(userId))];\n this.addMember(userId);\n }\n\n setContactPersonId(userId) {\n this.summary.contactPersonId = userId;\n }\n\n removeAdmin(id) {\n let index = this._owners.indexOf(id);\n this._owners.splice(index, 1);\n index = this.summary._owners.indexOf(id);\n this.summary._owners.splice(index, 1);\n index = this.details._owners.indexOf(id);\n this.details._owners.splice(index, 1);\n index = this.correspondentBank._owners.indexOf(id);\n this.correspondentBank._owners.splice(index, 1);\n index = this.beneficiaryBank._owners.indexOf(id);\n this.beneficiaryBank._owners.splice(index, 1);\n }\n\n removeMember(id) {\n const index = this.members.indexOf(id);\n this.members.splice(index, 1);\n this.removeAdmin(id);\n }\n\n addMember(id) {\n this.members = [...new Set(this.members.concat(id))];\n }\n\n addFund(id) {\n this.funds.push(id);\n }\n\n removeFund(id) {\n const index = this.funds.indexOf(id);\n this.funds.splice(index, 1);\n if (this.defaultFund === id) {\n this.defaultFund = null;\n }\n }\n\n setDefaultFund(id) {\n this.details.defaultFund = id;\n }\n\n setName(value) {\n this.summary.name = value;\n }\n\n setAddress(value) {\n this.summary.address = value;\n }\n\n setCountry(value) {\n this.summary.country = value;\n }\n\n setUsPayIdType(value) {\n this.details.usPayIdType = value;\n }\n\n clearKycRequirement() {\n this.kycRequirements = [];\n }\n\n addKycRequirement(req) {\n this.kycRequirements.push({ requirementName: req, added: new Date().toLocaleDateString() });\n }\n\n addToDqList(fund) {\n this.dqList.push(fund);\n }\n\n addOnboardedFund(fundId) {\n this.onboarded.push(fundId);\n\n const index = this.processing.indexOf(fundId);\n if (index > -1) {\n this.processing.splice(index, 1);\n }\n }\n\n addProcessingFund(fundId) {\n this.processing.push(fundId);\n }\n\n setTrusteeId(trusteeId) {\n this.details.trusteeId = trusteeId;\n }\n\n setComplianceId(complianceId) {\n this.details.complianceId = complianceId;\n }\n\n edit(\n name,\n address,\n country,\n usPayIdType,\n defaultFund,\n currency,\n trusteeId,\n complianceId,\n correspondentBankName,\n correspondentBankSwift,\n sortCode,\n ABA,\n accountName,\n accountNumber,\n beneficiaryBankSwift,\n iban,\n intermediarySwift,\n paymentReference,\n referenceNumber\n ) {\n this.summary.name = name;\n this.summary.address = address;\n this.summary.country = country;\n this.details.usPayIdType = usPayIdType;\n this.details.defaultFund = defaultFund;\n this.details.currency = currency;\n this.details.trusteeId = trusteeId;\n this.details.complianceId = complianceId;\n this.correspondentBank.correspondentBankName = correspondentBankName;\n this.correspondentBank.correspondentBankSwift = correspondentBankSwift;\n this.correspondentBank.sortCode = sortCode;\n this.correspondentBank.ABA = ABA;\n this.beneficiaryBank.accountName = accountName;\n this.beneficiaryBank.accountNumber = accountNumber;\n this.beneficiaryBank.beneficiaryBankSwift = beneficiaryBankSwift;\n this.beneficiaryBank.iban = iban;\n this.beneficiaryBank.intermediarySwift = intermediarySwift;\n this.beneficiaryBank.paymentReference = paymentReference;\n this.beneficiaryBank.referenceNumber = referenceNumber;\n }\n}","__index":{"obj":0},"__func":"constructor","__args":[["03cf1189d19bc67fa7bcc260cfe401aa971ae2429d6e0bff89572389a6a4086f6d"],"Test Institution","test","test","SWIFT","--","USD","6dca57f44937edc1c157e9eebc9201fff17b0671f430e257eb4dba3de8be361b:0","ed6cf5de5078fc501d5cb3f56ec3745722a61d7afc1d3e8bd5f44ad39639a20a:0","01/10/2021","test","test","test","test","test","test","test","test","test","test","test","true"]}u
    https://whatsonchain.com/tx/cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
  • Q!ωћƧ¼Â`Ï䪗âBn ÿ‰W#‰¦¤omQ®{}u
    https://whatsonchain.com/tx/cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
  • Q!ωћƧ¼Â`Ï䪗âBn ÿ‰W#‰¦¤omQ®{}u
    https://whatsonchain.com/tx/cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
  • Q!ωћƧ¼Â`Ï䪗âBn ÿ‰W#‰¦¤omQ®{}u
    https://whatsonchain.com/tx/cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
  • Q!ωћƧ¼Â`Ï䪗âBn ÿ‰W#‰¦¤omQ®{}u
    https://whatsonchain.com/tx/cd67624370774f0f54c8967ca9efd325049872c52719054604f7dc3054428e1b
Total Output:
0.05488223 BSV