Settings

Blockchain
Network
Unit
Language
Theme
Sound New Block

Transaction

698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
Timestamp (utc)
2021-02-18 12:54:11
Fee Paid
0.00003856 BSV
(
0.00092588 BSV
-
0.00088732 BSV
)
Fee Rate
500.1 sat/KB
Version
1
Confirmations
315,938
Size Stats
7,710 B

6 Outputs

Total Output:
0.00088732 BSV
  • Q!<yºÚuu™UI«½ÓÜéLÐIF¯‹Q²}ñ)ö~fªQ®Mc{"summary":1,"details":2,"correspondentBank":3,"beneficiaryBank":4,"__cls":"class InstitutionSC {\r\n constructor(\r\n admins = [],\r\n name = '',\r\n address = '',\r\n country = '',\r\n usPayIdType = 'SWIFT',\r\n defaultFund = '',\r\n currency = 'USD',\r\n trusteeId = 'None',\r\n complianceId = 'None',\r\n dateCreated = new Date(),\r\n correspondentBankName = '',\r\n correspondentBankSwift = '',\r\n sortCode = '',\r\n ABA = '',\r\n accountName = '',\r\n accountNumber = '',\r\n beneficiaryBankSwift = '',\r\n iban = '',\r\n intermediarySwift = '',\r\n paymentReference = '',\r\n referenceNumber = '',\r\n isAgent = false,\r\n ) {\r\n this._owners = admins;\r\n\r\n this.summary = {\r\n _owners: admins,\r\n name,\r\n address,\r\n country,\r\n contactPersonId: '',\r\n };\r\n\r\n this.details = {\r\n _owners: admins,\r\n usPayIdType,\r\n defaultFund,\r\n currency,\r\n trusteeId,\r\n complianceId,\r\n dateCreated,\r\n };\r\n\r\n this.correspondentBank = {\r\n _owners: admins,\r\n correspondentBankName,\r\n correspondentBankSwift,\r\n sortCode,\r\n ABA,\r\n };\r\n\r\n this.beneficiaryBank = {\r\n _owners: admins,\r\n accountName,\r\n accountNumber,\r\n beneficiaryBankSwift,\r\n iban,\r\n intermediarySwift,\r\n paymentReference,\r\n referenceNumber,\r\n };\r\n\r\n this.isAgent = isAgent;\r\n\r\n this.kycRequirements = [];\r\n this.admins = [];\r\n this.dqList = [];\r\n this.funds = [];\r\n this.members = [];\r\n\r\n this.onboarded = [];\r\n this.processing = [];\r\n this.files = [];\r\n\r\n this.affiliation = '';\r\n }\r\n\r\n addAdmin(publicKey, userId) {\r\n this._owners = [...new Set(this._owners.concat(publicKey))];\r\n this.summary._owners = [...new Set(this.summary._owners.concat(publicKey))];\r\n this.details._owners = [...new Set(this.details._owners.concat(publicKey))];\r\n this.correspondentBank._owners = [...new Set(this.correspondentBank._owners.concat(publicKey))];\r\n this.beneficiaryBank._owners = [...new Set(this.beneficiaryBank._owners.concat(publicKey))];\r\n this.admins = [...new Set(this.admins.concat(userId))];\r\n this.addMember(userId);\r\n }\r\n\r\n setContactPersonId(userId) {\r\n this.summary.contactPersonId = userId;\r\n }\r\n\r\n removeAdmin(id) {\r\n let index = this._owners.indexOf(id);\r\n if (index > -1) {\r\n this._owners.splice(index, 1);\r\n }\r\n\r\n index = this.summary._owners.indexOf(id);\r\n if (index > -1) {\r\n this.summary._owners.splice(index, 1);\r\n }\r\n\r\n index = this.details._owners.indexOf(id);\r\n if (index > -1) {\r\n this.details._owners.splice(index, 1);\r\n }\r\n\r\n index = this.correspondentBank._owners.indexOf(id);\r\n if (index > -1) {\r\n this.correspondentBank._owners.splice(index, 1);\r\n }\r\n\r\n index = this.beneficiaryBank._owners.indexOf(id);\r\n if (index > -1) {\r\n this.beneficiaryBank._owners.splice(index, 1);\r\n }\r\n }\r\n\r\n removeMember(id) {\r\n const index = this.members.indexOf(id);\r\n if (index > -1) {\r\n this.members.splice(index, 1);\r\n }\r\n\r\n this.removeAdmin(id);\r\n }\r\n\r\n addMember(id) {\r\n this.members = [...new Set(this.members.concat(id))];\r\n }\r\n\r\n addFund(id) {\r\n this.funds = [...new Set(this.funds.concat(id))];\r\n }\r\n\r\n removeFund(id) {\r\n const index = this.funds.indexOf(id);\r\n if (index > -1) {\r\n this.funds.splice(index, 1);\r\n }\r\n\r\n if (this.defaultFund === id) {\r\n this.defaultFund = null;\r\n }\r\n }\r\n\r\n setDefaultFund(id) {\r\n this.details.defaultFund = id;\r\n }\r\n\r\n setName(value) {\r\n this.summary.name = value;\r\n }\r\n\r\n setAddress(value) {\r\n this.summary.address = value;\r\n }\r\n\r\n setCountry(value) {\r\n this.summary.country = value;\r\n }\r\n\r\n setUsPayIdType(value) {\r\n this.details.usPayIdType = value;\r\n }\r\n\r\n setAffiliation(id) {\r\n this.affiliation = id;\r\n }\r\n\r\n clearKycRequirements() {\r\n this.kycRequirements = [];\r\n }\r\n\r\n addKycRequirement(req) {\r\n this.kycRequirements.push(req);\r\n }\r\n\r\n removeKycRequirement(req) {\r\n const index = this.kycRequirements.indexOf(req);\r\n if (index > -1) {\r\n this.kycRequirements.splice(index, 1);\r\n }\r\n }\r\n\r\n setKycRequirements(reqs) {\r\n this.kycRequirements = reqs;\r\n }\r\n\r\n addToDqList(fund) {\r\n this.dqList = [...new Set(this.dqList.concat(fund))];\r\n }\r\n\r\n addOnboardedFund(fundId) {\r\n this.onboarded = [...new Set(this.onboarded.concat(fundId))];\r\n }\r\n\r\n removeOnboardedFund(fundId) {\r\n const index = this.onboarded.indexOf(fundId);\r\n if (index > -1) {\r\n this.onboarded.splice(index, 1);\r\n }\r\n }\r\n\r\n addProcessingFund(fundId) {\r\n this.processing = [...new Set(this.processing.concat(fundId))];\r\n }\r\n\r\n setTrusteeId(trusteeId) {\r\n this.details.trusteeId = trusteeId;\r\n }\r\n\r\n setComplianceId(complianceId) {\r\n this.details.complianceId = complianceId;\r\n }\r\n\r\n edit(\r\n name,\r\n address,\r\n country,\r\n usPayIdType,\r\n defaultFund,\r\n currency,\r\n trusteeId,\r\n complianceId,\r\n correspondentBankName,\r\n correspondentBankSwift,\r\n sortCode,\r\n ABA,\r\n accountName,\r\n accountNumber,\r\n beneficiaryBankSwift,\r\n iban,\r\n intermediarySwift,\r\n paymentReference,\r\n referenceNumber,\r\n isAgent\r\n ) {\r\n this.summary.name = name;\r\n this.summary.address = address;\r\n this.summary.country = country;\r\n this.details.usPayIdType = usPayIdType;\r\n this.details.defaultFund = defaultFund;\r\n this.details.currency = currency;\r\n this.details.trusteeId = trusteeId;\r\n this.details.complianceId = complianceId;\r\n this.correspondentBank.correspondentBankName = correspondentBankName;\r\n this.correspondentBank.correspondentBankSwift = correspondentBankSwift;\r\n this.correspondentBank.sortCode = sortCode;\r\n this.correspondentBank.ABA = ABA;\r\n this.beneficiaryBank.accountName = accountName;\r\n this.beneficiaryBank.accountNumber = accountNumber;\r\n this.beneficiaryBank.beneficiaryBankSwift = beneficiaryBankSwift;\r\n this.beneficiaryBank.iban = iban;\r\n this.beneficiaryBank.intermediarySwift = intermediarySwift;\r\n this.beneficiaryBank.paymentReference = paymentReference;\r\n this.beneficiaryBank.referenceNumber = referenceNumber;\r\n this.isAgent = isAgent;\r\n }\r\n}","__index":{"obj":0},"__func":"constructor","__args":[["023c79bada7575995549abbdd3dce90e4cd04946af8b5115b27df129f67e0066aa"],"First msg PR test","First msg PR test","USA","SWIFT","--","USD","--","--","Thu Feb 18 2021 16:44:42 GMT+0400","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test","First msg PR test",false]}u
    https://whatsonchain.com/tx/698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
  • Q!<yºÚuu™UI«½ÓÜéLÐIF¯‹Q²}ñ)ö~fªQ®{}u
    https://whatsonchain.com/tx/698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
  • Q!<yºÚuu™UI«½ÓÜéLÐIF¯‹Q²}ñ)ö~fªQ®{}u
    https://whatsonchain.com/tx/698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
  • Q!<yºÚuu™UI«½ÓÜéLÐIF¯‹Q²}ñ)ö~fªQ®{}u
    https://whatsonchain.com/tx/698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
  • Q!<yºÚuu™UI«½ÓÜéLÐIF¯‹Q²}ñ)ö~fªQ®{}u
    https://whatsonchain.com/tx/698c07f69205ce80a2802beebef125baf85f06ee34f5783079af58e8e2ebbd94
Total Output:
0.00088732 BSV