Blockchain – the power to disrupt traditional financial services (2024)

  • DBS IDEAL,
  • Financial Institutions,
  • Solutions,
  • Cash,
  • Digital Exchange

');*//*$(themeRecentSearchId).append('

Recent SearchesClear History

');*/for(var i = recentSearchData.length - 1; i >= 0; i--){var recentSearchId="recent"+i;var recentSearchValue=recentSearchData[i];$(themeRecentSearchId).find('table tbody').append('

' + recentSearchValue + '

');if(i == recentSearchData.length - recentSuggestLength){break;}}for(var i = recentSearchData.length - 1; i >= 0; i--){var recentSearchId="#recent"+i;var recentSearchValue=recentSearchData[i];/*$(recentSearchId).on("click", { searchKey: recentSearchValue }, routeToResults);*/$(recentSearchId).on("click", { 'recentSearchValue': recentSearchValue }, function(e){$(searchInputId).val(e.data.recentSearchValue);console.log("DEBUG recentSearchLists recentSearchId::", recentSearchId, " recentSearchValue::", recentSearchValue);hideSearchHistory();setTimeout(function() { suggestSearchLists(); }, 300);});if(i == recentSearchData.length - recentSuggestLength){break;}}}else {console.log("DEBUG recentSearchLists no search results");/*$(themeRecentSearchId).append('

');*//*$(themeRecentSearchId).append('

Recent SearchesClear History

');*/$(".popular-searches").css("display","none");$(themeRecentSearchId).find('table tbody').append('

Your search history is empty.

');}}/*}*/}function suggestSearchLists(){if(enablePredictiveSearch === "true"){/*$(themeSuggestedSearchId).empty();$(themeSuggestedSearchId).hide();*/var inputValue=A.one(searchInputId).val();var searchKeywordLength= $(searchInputId).val().replace(/\s/g,'').length;if(searchKeywordLength > 0){var siteName = 'corporate-id-en';console.log("SiteName" + siteName);recentSuggestAjaxURL = recentSuggestAjaxURL.replace("web/"+siteName+"/" , "");// addSearchHistory(inputValue);A.io.request(recentSuggestAjaxURL,{dataType: 'json',sync:true,method:'POST',data:{_corporateportalsearch_searchKey:inputValue,_corporateportalsearch_cmd:"suggest"},on: {success:function(){var data=this.get('responseData');autoCompleteData=data;console.log("suggestSearchValue::"+JSON.stringify(autoCompleteData)); $(themeSuggestedSearchId).empty();$(".popular-searches").show(); if(autoCompleteData){$(themeSuggestedSearchId).append('

');console.log("suggestions::"+autoCompleteData);for(var i = 0; i < autoCompleteData.length; i++){var suggestSearchValue=autoCompleteData[i].resultTitle;var suggestSearchId="suggest"+i;$(".popular-searches").css("display","none");if(autoCompleteData[i].resultDesc && autoCompleteData[i].resultDesc.length > 0) {$(themeSuggestedSearchListId).append('

\

'+ suggestSearchValue +'

\

'+[autoCompleteData[i].resultDesc]+'

\

    ' + categoryStringToAppend(autoCompleteData[i].resultCategory) +'

\

');} else {$(themeSuggestedSearchListId).append('

\

'+ suggestSearchValue +'

\

    ' + categoryStringToAppend(autoCompleteData[i].resultCategory) +'

\

');} if(i == searchSuggestLength){ break; }}if (autoCompleteData.length) {$(themeSuggestedSearchId).append('');A.one(themeSearchViewAll).on('click',function(){validateAndSubmitSearch();});}for(var i = 0; i < autoCompleteData.length; i++){ var suggestSearchId="#suggest"+i; var suggestSearchValue=autoCompleteData[i].resultTitle; $(suggestSearchId).on("click", { searchKey: suggestSearchValue, actionType: 'Suggested' }, routeToResults); if(i == searchSuggestLength){ break; }}$("#suggested-results").show();}}}});}}}function initialRecentSearchClick() {if ($(searchInputId).val().length > 0) {$(searchInputId).val('');$(searchInputId).focus();$(themeSuggestedSearchId).empty();$(themeSuggestedSearchId).hide();$(".popular-searches").show();$('.search-field.web-search ~ .btn-close-history i').attr("class", "icon ico-clock-3-line");$('.search-field.web-search ~ .btn-search i').attr("class", "icon ico-search");$(themeRecentSearchButton).css("color", "silver");} else {setTimeout(function() { recentSearchLists(); }, 300);}}$(themeDesktopSearchBtnCloseHistory).on('click',function(){initialRecentSearchClick();}); $(searchInputId).keypress(function(e) { var searchKeyword=$(searchInputId).val(); if(e.which == 13) { if(validateSearchKeyword(searchKeyword)){// addSearchHistory(searchKeyword); var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword); window.location.href = redirectUrl; } } });function routeToResults(event){var searchKeyword=event.data.searchKey;var actionType=event.data.actionType; matomoSearchList(actionType,searchKeyword);var searchKeywordLength=searchKeyword.length;var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword); window.location.href = redirectUrl;}function validateAndSubmitSearch() {var searchKeyword=$(searchInputId).val();if(validateSearchKeyword(searchKeyword)){// addSearchHistory(searchKeyword);var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword);window.location.href = redirectUrl;}}if($(themeSearchIconSubmitId).length){A.one(themeSearchIconSubmitId).on('click',function(){validateAndSubmitSearch();});}function recentSearchLogic(){setTimeout(function() { recentSearchLists(); }, 300); $(themeSuggestedSearchId).empty(); $(themeSuggestedSearchId).hide();$(".popular-searches").show();$(themeRecentSearchId).show();}function suggestSearchLogic(){$(themeRecentSearchId).empty(); /*$(themeRecentSearchId).hide();*/hideSearchHistory(); /* $(themeSuggestedSearchId).show(); */setTimeout(function() { suggestSearchLists(); }, 300);}/* Adding the history item while the user stops typing */var typingTimer; //timer identifiervar doneTypingInterval = 500; //time in ms, 500 ms //on keyup, start the countdown$(searchInputId).on('keyup', function () { clearTimeout(typingTimer); typingTimer = setTimeout(doneTyping, doneTypingInterval);});//on keydown, clear the countdown $(searchInputId).on('keydown', function () { clearTimeout(typingTimer);});function doneTyping() {console.log("inside done typing in search",$(searchInputId).val());if($(searchInputId).val().length>=minQueryLenght){addSearchHistory($(searchInputId).val());}}/* END of the history item while the user stops typing */$('html').not(".search .dropdown-menu.show").click(function() { $(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeRecentSearchId).empty();$(themeSuggestedSearchId).empty();$(searchInputId).val('');$(".popular-searches").show(); }); $("#searchMenuButton").on("click",function() { $(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeSuggestedSearchId).empty();$(searchInputId).val('');$(".popular-searches").show(); });$(searchInputId).on('paste', function(e) { var copied = ""; if (isIE()) { copied = window.clipboardData.getData('text'); } else { copied = e.originalEvent.clipboardData.getData('text/plain'); } var searchCopyLength=copied.length; if(searchCopyLength >= minQueryLenght){ suggestSearchLogic(); }});function isIE() { var ua = window.navigator.userAgent; return ua.indexOf('MSIE ') > 0 || ua.indexOf('Trident/') > 0 || ua.indexOf('Edge/') > 0}/* A.one(themeSearchIconClose).on('click',function(){$(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeRecentSearchId).empty();$(themeSuggestedSearchId).empty();$(searchInputId).val('');}); */window.cutEventSearches = function(){ var searchKeyword=$(searchInputId).val(); var searchKeywordLength=searchKeyword.length; if(searchKeywordLength >= minQueryLenght){ suggestSearchLogic(); }}$(searchInputId).on('keyup', function(e) { var searchKeyword=$(searchInputId).val(); var searchKeywordLength=searchKeyword.length; if(searchKeywordLength >= minQueryLenght){ suggestSearchLogic(); } else {$(themeSuggestedSearchId).hide();$(".popular-searches").show(); }});var userRecentSearches = getSearchHistory();var userRecentSearchesKey = 'q';var themeRecentSearchButton = "#nav-bar .nav-bar-inner .header-navigation ul.header-menu li .search .dropdown-menu .search-group .btn-close-history .icon";var themeRecentSearchId = "#recent-results";var searchInputId="#search-input-field";function addSearchHistory(searchKeyword) {console.log("DEBUG addSearchHistory userRecentSearches before:: ", userRecentSearches);console.log("searchKeyword before adding to history",searchKeyword);var searchKeywordVar = searchKeyword;if(searchKeywordVar){console.log("inside if searchKeywordVar",searchKeywordVar);for( var i = userRecentSearches.length-1; i>=0; i--){if(userRecentSearches[i] ===searchKeywordVar){ console.log("userRecentSearches[i]:searchKeywordVar: ", userRecentSearches[i],searchKeywordVar);userRecentSearches.splice(i,1);}} userRecentSearches.push(searchKeyword); localStorage.setItem(userRecentSearchesKey, JSON.stringify(userRecentSearches)); console.log("DEBUG addSearchHistory userRecentSearches after:: ", searchKeyword,userRecentSearches);}}function hideSearchHistory() { $(themeRecentSearchId).hide(); $(themeRecentSearchButton).css('color', 'silver');if($(searchInputId).val().length <1){ console.log("hide history - popular show"); $(".popular-searches").show(); }}function getUnique(array){ var userRecentSearchestemp = []; // Loop through array values for(i=0; i < array.length; i++){ if(userRecentSearchestemp.indexOf(array[i]) === -1) { userRecentSearchestemp.push(array[i]); } else {}console.log("userRecentSearchestemp list values",userRecentSearchestemp); } return userRecentSearchestemp; }function getSearchHistory() { console.log("getting user search history"); try { // userRecentSearches = JSON.parse(localStorage.getItem(userRecentSearchesKey)); console.log(JSON.parse(localStorage.getItem(userRecentSearchesKey)));a = JSON.parse(localStorage.getItem(userRecentSearchesKey));console.log("a list values",a);console.log("a list values",a);userRecentSearches = getUnique(a);// adding the removing duplicate search history// userRecentSearches.filter((value,index)=> userRecentSearches.indexOf(value) != index);// end of adding itconsole.log("After removing duplicates",userRecentSearches); if (userRecentSearches == null) { userRecentSearches = []; } else if (userRecentSearches.length) { console.log("setting search history to existing local storage..."); for (var i = 0; i < userRecentSearches.length; i++) { userRecentSearches[i] = userRecentSearches[i].replace(/[^a-zA-Z0-9\u3000\u3400-\u4DBF\u4E00-\u9FFF\s]/g, "").replace(/\s{2,}/g, " ").trim(); } } } catch(e) { console.log("unable to set search history to existing local storage, reset"); userRecentSearches = []; } console.log("user recent searches:", userRecentSearches); // localStorage.setItem(userRecentSearchesKey, JSON.stringify(userRecentSearches)); return userRecentSearches;}function deleteSearchHistory() {$("#recent-results").hide(); console.log("Search history in search page removed"); localStorage.removeItem(userRecentSearchesKey); userRecentSearches = []; hideSearchHistory();}});function matomoSearchList(actionType,searchKeyword){var employee1bankId= $('#employeeScreenName').val();var employeeSelectedCountryCode= $('#empCountrySelected').val();var employeeLocationCountryCode= $('#empCountryLocation').val();var employeeDepartmentVal= $('#employeeDepartment').val();/*var employeeDetails = employeeDepartmentVal+'_'+employee1bankId+'_'+employeeLocationCountryCode;*/var employeeDetails = employeeDepartmentVal+'_'+employeeLocationCountryCode;var actionName = searchKeyword;console.log ('Recent Searches');var _paq = _paq || [];_paq.push(['trackEvent', 'Search', 'Search_'+actionType+'_'+employeeSelectedCountryCode+'_'+actionName+'_Clicked', 'Search_'+actionType+'_'+employeeSelectedCountryCode+'_'+actionName+'_'+employeeDetails, 'EventValue', {dimension3: 'SEARCH_ACTIONS',dimension7: 'SEARCH_VISITS'}]);}// ]]>

Blockchain – the power to disrupt traditional financial services (2024)

FAQs

Blockchain – the power to disrupt traditional financial services? ›

By providing a ledger that nobody administers, a blockchain could provide specific financial services — like payments, or securitization — without using a middleman, like a bank.

How blockchain technology can disrupt financial services? ›

Blockchain reduces processing times to sanction payment or value transfers and can also distribute the validation and guarantee of title transfers associated with consumption, commercial transactions or investments.

How does blockchain affect traditional finance? ›

Blockchain has the ability to improve the efficiency and speed of financial transactions dramatically. Cross-border payments, settlements, and clearing in traditional systems can need many intermediaries, resulting in delays and expensive costs.

What is the role of blockchain in financial services? ›

Blockchain has the potential to transform capital markets by eliminating operational hazards, reducing counterparty risks, and enhancing overall security. This transformative impact addresses operational vulnerabilities linked to fraud, human error, and regulatory concerns in the financial landscape.

How blockchain is disrupting the industry? ›

Blockchain technology's potential for disrupting industries is vast and far-reaching. From finance and banking to supply chain management, healthcare, and intellectual property rights, blockchain offers solutions to long-standing challenges while introducing new levels of efficiency, transparency, and security.

Will blockchain replace banking? ›

Blockchain is expected to revolutionize the banking business, and it's no surprise that it is changing how customers conduct transactions. It replaces and streamlines the traditional banking processes with innovative approaches that are more secure, efficient, cost-effective, and transparent.

What area of banking disrupted by blockchain technology? ›

Here are some ways in which blockchain technology could disrupt the banking industry: Transparency and efficiency: The use of blockchain technology in banking would improve transparency and efficiency by reducing the need for intermediaries such as clearinghouses, auditors, and reconciliation agents.

What is the difference between traditional banking and blockchain? ›

Blockchain significantly enhances security in banking by encrypting and decentralizing transactions, reducing fraud and cyber threat risks. It offers unparalleled transparency, with every transaction recorded on a public ledger, allowing investors to easily track and understand their money flows.

What are the disadvantages of blockchain in FinTech? ›

  • Private keys.
  • Possibility of disruption of network security.
  • High costs of implementation.
  • Inefficient mining process.
  • Environmental impacts.
  • Storage problems.
  • Anonymity.
  • Immutability.
Jun 7, 2024

How has blockchain changed finance? ›

Second, stablecoins on blockchain networks enable value-exchange that is nearly instant, nearly free and global in scale. Beyond the obvious commercial applications, we are already seeing stablecoins creating an immense impact for people who lack access to traditional brick-and-mortar finance.

What is the future of blockchain in financial services? ›

A fuelling chain reaction began when financial companies started working on their blockchain-based solutions to stay on top of this innovation. As a result, the fintech blockchain market size is expected to reach USD 31.84 billion by 2029, at a CAGR of 46.92% during the forecast period of 2024 to 2029.

What are three important impacts blockchain is making on financial technology and why are they important? ›

What are the benefits of blockchain? The benefits of blockchain are increasing trust, security and transparency among member organizations by improving the traceability of data shared across a business network, plus delivering cost savings through new efficiencies.

How can blockchain make a difference in the financial market? ›

Financial service providers find blockchain technology useful to enhance authenticity, security, and risk management. Several institutions are adopting blockchain in trade and finance systems to build smart contracts between participants, improve efficiency and transparency, and open up newer revenue opportunities.

How will blockchain disrupt financial services? ›

Blockchain is creating new financial solutions that scale faster and are cheaper, more secure and more accessible to even ordinary men on the street. It has removed the barriers to enjoying financial services, enforced security, removed middlemen and enhanced transparency.

What is the biggest problem in blockchain? ›

Security issues
  • 51% attacks. Blockchain technology designs, for example, differ in architecture. ...
  • Flash loan attacks. The other security problem that blockchain networks face is flash loan attacks. ...
  • Coding loopholes. ...
  • Centralization of information. ...
  • Side-chains: A solution to blockchain's scalability issue.

Why is the blockchain considered to be a disruptive technology? ›

Blockchain is considered disruptive technology because it radically changes how people and organizations manage data and conduct transactions.

How does blockchain affect financial performance? ›

Fintech's integration of blockchain technology enhances revenue, reduces costs, and augments competitiveness. Key findings reveal revenue growth through asset tokenization and efficient cross-border payments. Cost savings arise from intermediary removal and smart contract automation.

What are the limitations of blockchain in finance? ›

What Are The Disadvantages Of Blockchain Technology ?
  • Private keys. The blockchain network maintains its high level of security through private keys. ...
  • Possibility of disruption of network security. ...
  • High costs of implementation. ...
  • Inefficient mining process. ...
  • Environmental impacts. ...
  • Storage problems. ...
  • Anonymity. ...
  • Immutability.
Jun 7, 2024

How blockchain will affect financial reporting? ›

Blockchain technology holds the potential to significantly enhance the reliability and trustworthiness of financial information in the Malaysian accounting industry, but it's still in its early stages of adoption, and some limitations remain. Contributions to Reliability and Trustworthiness: Immutability. Transparency.

Will blockchain disrupt accounting? ›

Blockchain accounting is not intended to replace traditional accounting. Instead, it affects the performance and record keeping of conventional accounting, and there will be many jobs in which blockchain cannot wholly replace traditional accounting. Blockchain in accounting is also significant for audits.

Top Articles
Understanding Taxes in Dubai for US Expats | US Expat Tax Service
How To See a List of People In a Course in Moodle – Lexicon
NOAA: National Oceanic &amp; Atmospheric Administration hiring NOAA Commissioned Officer: Inter-Service Transfer in Spokane Valley, WA | LinkedIn
Skylar Vox Bra Size
Kathleen Hixson Leaked
Pnct Terminal Camera
Lamb Funeral Home Obituaries Columbus Ga
Breaded Mushrooms
Fort Carson Cif Phone Number
Practical Magic 123Movies
Canelo Vs Ryder Directv
Weather Annapolis 10 Day
Housing Intranet Unt
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Cooking Fever Wiki
R/Afkarena
New Stores Coming To Canton Ohio 2022
Diamond Piers Menards
Osborn-Checkliste: Ideen finden mit System
Abby's Caribbean Cafe
Kountry Pumpkin 29
Dulce
Red8 Data Entry Job
Understanding Gestalt Principles: Definition and Examples
Foodsmart Jonesboro Ar Weekly Ad
Geico Car Insurance Review 2024
Doctors of Optometry - Westchester Mall | Trusted Eye Doctors in White Plains, NY
Tom Thumb Direct2Hr
10-Day Weather Forecast for Santa Cruz, CA - The Weather Channel | weather.com
Obituaries, 2001 | El Paso County, TXGenWeb
Ordensfrau: Der Tod ist die Geburt in ein Leben bei Gott
Stouffville Tribune (Stouffville, ON), March 27, 1947, p. 1
Ezstub Cross Country
Elanco Rebates.com 2022
Citibank Branch Locations In Orlando Florida
Kltv Com Big Red Box
Ljw Obits
Kelly Ripa Necklace 2022
Toth Boer Goats
Wilson Tattoo Shops
Setx Sports
Pekin Soccer Tournament
Gregory (Five Nights at Freddy's)
Lucyave Boutique Reviews
Lady Nagant Funko Pop
Hillsborough County Florida Recorder Of Deeds
Automatic Vehicle Accident Detection and Messageing System – IJERT
Makes A Successful Catch Maybe Crossword Clue
Gear Bicycle Sales Butler Pa
Haunted Mansion Showtimes Near The Grand 14 - Ambassador
Sunset On November 5 2023
Latest Posts
Article information

Author: Sen. Emmett Berge

Last Updated:

Views: 5752

Rating: 5 / 5 (80 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Sen. Emmett Berge

Birthday: 1993-06-17

Address: 787 Elvis Divide, Port Brice, OH 24507-6802

Phone: +9779049645255

Job: Senior Healthcare Specialist

Hobby: Cycling, Model building, Kitesurfing, Origami, Lapidary, Dance, Basketball

Introduction: My name is Sen. Emmett Berge, I am a funny, vast, charming, courageous, enthusiastic, jolly, famous person who loves writing and wants to share my knowledge and understanding with you.