ADVERTISEMENT

Welcome, digital banking

Published Dec 10, 2020 07:00 am

The Bangko Sentral has shown once more its being pro-active in technology, true to its vision of being world-class, when it recently issued the Circular authorizing the setting up of digital banks in the country.  It aims to bridge the gap between banking and the unbanked segment of the economy and thereby, in the words of BSP Governor Benjamin Diokno, “leap-frog our financial inclusiveness agenda”.

The creation of digital banks is an innovation based on the foresight of Congress.  It is not included among the classes of banks enumerated under the General Banking Law.  Banking is however dynamic and, for this reason, the said law authorized the Bangko Sentral to create other types of banks as may be called for under modern times.

Digital banking is mainly technology-based as a digital bank will render banking services that are processed end-to-end through a digital platform with minimum or no reliance at all on physical touchpoints.  It shall operate from only one site and will not be allowed to have branches.  This calls to mind what Bill Gates said then that the brick-and-mortar banks will eventually become the dinosaurs of the future.

A digital bank would still perform the normal services of a bank like acceptance of deposits, the grant of loans, issuance of credit cards, buying and selling of securities, foreign currency trading, and acting as a correspondent bank or as a collection agent.  An existing bank can convert itself into a digital bank subject to compliance with capital and nationality requirements.  The required minimum capital is P1 billion and, if a bank’s present capital is less than that amount, it can program its capital increase within three years.  If the applicant bank also has existing branches, it will be required to dispose or close such branches since these will already be deemed redundant.

The nationality requirement limits foreign ownership up to 40% of the voting stocks.  If an applicant bank has foreign equity in excess of this ceiling, the excess will be allowed, but once it is reduced, it cannot be increased again beyond 40%.  To adapt to all the requirements of a digital bank, an existing bank would have to amend its articles of incorporation and submit it for approval of the SEC.

Branches of foreign banks established in the Philippines may also became digital banks and they will not be required to incorporate as a banking corporation under Philippine law.  This is because their branch license already allows them to perform banking services in the Philippines.  But they would have to comply also with the other requirements for a digital bank.

As a digital bank is technology-driven, the Bangko Sentral may require some members of its board and management to have track records in operating a business in the field of e-commerce or technology.  This is to assure that there is adequate competency within the bank.  It is also understood that a digital bank has to adhere to existing bank policies on corporate governance, risk management, internal controls, anti-money laundering and anti-terrorist financing.

Digital banks would constitute a distinct type of banking.  It means that banking supervisors would have to be attuned to the digital examination of such banks.  Knowing the competencies within the Bangko Sentral, it can be assured that when it enacted the Circular on digital banks, it has already laid down the groundwork for their efficient supervision.

*        *        *

          The above comments are the personal views of the writer. His email address is [email protected]

ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.