Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
Timestamp (utc)
2021-03-26 03:10:38
Fee Paid
0.00000570 BSV
(
0.09943577 BSV
-
0.09943007 BSV
)
Fee Rate
425.2 sat/KB
Version
1
Confirmations
310,224
Size Stats
1,340 B

6 Inputs

Total Input:
0.09943577 BSV
  • Q!O¨‚jޑŒBˆ±îü&é†3£ø¸§~½·´E›u-JiQ®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, 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 (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":[["024f07a8826ade918c420488b1eefc26e98633a3f8b8a77ebdb7b4459b752d4a69"],"Test Institution","123 Main St","USA","SWIFT","--","USD","--","--",1616164433,"Bank","123","123","123","Account","123","123","123","123","123","123",[],false]}u
    https://whatsonchain.com/tx/undefined
  • Q!O¨‚jޑŒBˆ±îü&é†3£ø¸§~½·´E›u-JiQ®{}u
    https://whatsonchain.com/tx/undefined
  • Q!O¨‚jޑŒBˆ±îü&é†3£ø¸§~½·´E›u-JiQ®{}u
    https://whatsonchain.com/tx/undefined
  • Q!O¨‚jޑŒBˆ±îü&é†3£ø¸§~½·´E›u-JiQ®{}u
    https://whatsonchain.com/tx/undefined
  • Q!O¨‚jޑŒBˆ±îü&é†3£ø¸§~½·´E›u-JiQ®{}u
    https://whatsonchain.com/tx/undefined
Total Output:
0.09943577 BSV

6 Outputs

Total Output:
0.09943007 BSV
  • Q!v¢òxby_Ïà7 :ԇp»†Ê‹øVÝ]5Äqh/Q®ME{"summary":1,"details":2,"correspondentBank":3,"beneficiaryBank":4,"__index":{"obj":0},"__func":"addAdmin","__args":["0376a2f27862795fcfe0370d3a031dd4877002bb86ca8b10f856dd5d35c471682f","453ae5472840bd29cd805d20369f2325ef2c7f98ee4b6f72d7090b0374ccbaa1:0","024f07a8826ade918c420488b1eefc26e98633a3f8b8a77ebdb7b4459b752d4a69"]}u
    https://whatsonchain.com/tx/3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
  • Q!v¢òxby_Ïà7 :ԇp»†Ê‹øVÝ]5Äqh/Q®{}u
    https://whatsonchain.com/tx/3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
  • Q!v¢òxby_Ïà7 :ԇp»†Ê‹øVÝ]5Äqh/Q®{}u
    https://whatsonchain.com/tx/3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
  • Q!v¢òxby_Ïà7 :ԇp»†Ê‹øVÝ]5Äqh/Q®{}u
    https://whatsonchain.com/tx/3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
  • Q!v¢òxby_Ïà7 :ԇp»†Ê‹øVÝ]5Äqh/Q®{}u
    https://whatsonchain.com/tx/3ebdb7bfa098fef7fb4decdca556c474c7bb6d8f3b600a0277bc77bd2338473f
Total Output:
0.09943007 BSV