Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
Timestamp (utc)
2021-03-26 03:10:38
Fee Paid
0.00000605 BSV
(
0.05938682 BSV
-
0.05938077 BSV
)
Fee Rate
429 sat/KB
Version
1
Confirmations
310,529
Size Stats
1,410 B

6 Inputs

Total Input:
0.05938682 BSV
  • Q!)¼jÇ<†ÐÝþfV­ ±‘ª">-„# øšfû¯Q®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 dateCreated = '',\n correspondentBankName = '',\n correspondentBankSwift = '',\n sortCode = '',\n ABA = '',\n accountName = '',\n accountNumber = '',\n beneficiaryBankSwift = '',\n iban = '',\n intermediarySwift = '',\n paymentReference = '',\n referenceNumber = '',\n kycRequirements = [],\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 dateCreated,\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 = 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 this.affiliation = '';\n }\n\n\n addAdmin(publicKey, userId, affiliationId = '', losMaster = '') {\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\n this.admins = [...new Set(this.admins.concat(userId))];\n this.addMember(userId);\n\n if (this.summary.contactPersonId === '') {\n this.setContactPersonId(userId);\n }\n\n if (affiliationId !== '') {\n this.affiliation = affiliationId;\n }\n\n if (losMaster !== '') {\n this.removeAdmin(losMaster)\n }\n }\n\n setContactPersonId(userId) {\n this.summary.contactPersonId = userId;\n }\n\n removeAdmin(id) {\n let index = this.summary._owners.indexOf(id);\n if (index > -1) {\n this.summary._owners.splice(index, 1);\n }\n\n index = this.details._owners.indexOf(id);\n if (index > -1) {\n this.details._owners.splice(index, 1);\n }\n\n index = this.correspondentBank._owners.indexOf(id);\n if (index > -1) {\n this.correspondentBank._owners.splice(index, 1);\n }\n\n index = this.beneficiaryBank._owners.indexOf(id);\n if (index > -1) {\n this.beneficiaryBank._owners.splice(index, 1);\n }\n\n index = this._owners.indexOf(id);\n if (index > -1) {\n this._owners.splice(index, 1);\n }\n }\n\n removeMember(id) {\n const index = this.members.indexOf(id);\n if (index > -1) {\n this.members.splice(index, 1);\n }\n\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 = [...new Set(this.funds.concat(id))];\n }\n\n removeFund(id) {\n const index = this.funds.indexOf(id);\n if (index > -1) {\n this.funds.splice(index, 1);\n }\n\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 setAffiliation(id) {\n this.affiliation = id;\n }\n\n clearKycRequirements() {\n this.kycRequirements = [];\n }\n\n addKycRequirement(req) {\n this.kycRequirements.push(req);\n }\n\n removeKycRequirement(req) {\n const index = this.kycRequirements.indexOf(req);\n if (index > -1) {\n this.kycRequirements.splice(index, 1);\n }\n }\n\n setKycRequirements(reqs) {\n this.kycRequirements = reqs;\n }\n\n addToDqList(fund) {\n this.dqList = [...new Set(this.dqList.concat(fund))];\n }\n\n addOnboardedFund(fundId) {\n this.onboarded = [...new Set(this.onboarded.concat(fundId))];\n }\n\n removeOnboardedFund(fundId) {\n const index = this.onboarded.indexOf(fundId);\n if (index > -1) {\n this.onboarded.splice(index, 1);\n }\n }\n\n addProcessingFund(fundId) {\n this.processing = [...new Set(this.processing.concat(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 isAgent\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 this.isAgent = isAgent;\n }\n}","__index":{"obj":0},"__func":"constructor","__args":[["0329bc6ac70e3cc28604d0ddfe6656ad0ab191aa223e2d84122309f89a669dfbaf"],"Buyer Institution","b","USA","SWIFT","--","USD","--","--",1616418372,"b","b","b","b","b","b","b","b","b","b","b",[],false]}u
    https://whatsonchain.com/tx/undefined
  • Q!)¼jÇ<†ÐÝþfV­ ±‘ª">-„# øšfû¯Q®{}u
    https://whatsonchain.com/tx/undefined
  • Q!)¼jÇ<†ÐÝþfV­ ±‘ª">-„# øšfû¯Q®{}u
    https://whatsonchain.com/tx/undefined
  • Q!)¼jÇ<†ÐÝþfV­ ±‘ª">-„# øšfû¯Q®{}u
    https://whatsonchain.com/tx/undefined
  • Q!)¼jÇ<†ÐÝþfV­ ±‘ª">-„# øšfû¯Q®{}u
    https://whatsonchain.com/tx/undefined
Total Output:
0.05938682 BSV

6 Outputs

Total Output:
0.05938077 BSV
  • Q! QÖe’¹†ŀŠ4?’9¬ñMH6CêXpÊÛNƒþQ®MŠ{"summary":1,"details":2,"correspondentBank":3,"beneficiaryBank":4,"__index":{"obj":0},"__func":"addAdmin","__args":["020b51d66592b9188612c500808a343f9239acf14d48013643ea5870cadb4e83fe","1dade766ac13bbb0c96bb2ce8206ebb798dc8ad729fb7958bf32d06274cbd0bb:0","7eccae82b2f736e4f6868cfb1fc1c412c2e93d65ce835d9da906f0e82199067c:0","0329bc6ac70e3cc28604d0ddfe6656ad0ab191aa223e2d84122309f89a669dfbaf"]}u
    https://whatsonchain.com/tx/10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
  • Q! QÖe’¹†ŀŠ4?’9¬ñMH6CêXpÊÛNƒþQ®{}u
    https://whatsonchain.com/tx/10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
  • Q! QÖe’¹†ŀŠ4?’9¬ñMH6CêXpÊÛNƒþQ®{}u
    https://whatsonchain.com/tx/10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
  • Q! QÖe’¹†ŀŠ4?’9¬ñMH6CêXpÊÛNƒþQ®{}u
    https://whatsonchain.com/tx/10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
  • Q! QÖe’¹†ŀŠ4?’9¬ñMH6CêXpÊÛNƒþQ®{}u
    https://whatsonchain.com/tx/10b5d9cf66573622ad00a9b3906f12372b2108548ea72d17b9df7e825ea652f8
Total Output:
0.05938077 BSV