
Every cross-border payment system is built on thousands of technical decisions that look neutral but are not. Which identity verification providers are integrated as defaults? How failure modes are prioritised when a transaction stalls between jurisdictions. Whether the database schema treats a wallet denominated in naira with the same structural care as one denominated in pounds sterling. Which edge cases receive test coverage, and which are left as acceptable risk? Algorithms do not make these choices. They are made by engineers, in rooms, under deadlines. And the composition of those rooms shapes the infrastructure that millions of people depend on to move money across borders.
The most important thing women are changing about financial infrastructure is not the representation statistics. It is the infrastructure itself, because diverse perspectives lead to systems that better serve all users.
There is a persistent myth in software engineering that good architecture is objective, that if you follow the right patterns and optimise for the right metrics, the resulting system will serve everyone equally. In financial infrastructure, this is demonstrably false. The design of a payment system reflects who designed it: their assumptions about the default user, their familiarity with specific regulatory environments, their intuition about which failure scenarios are worth engineering against and which are too unlikely to justify the cost.
Consider cross-border payments between the UK and West Africa, one of the world’s fastest-growing remittance corridors. A team designing this system must decide on KYC verification flows, and those decisions will determine whether a user in Lagos with a national identity number but no utility bill in her name can complete onboarding. They must decide how to handle currency conversion at the API level, and that decision will determine whether the transaction costs are transparent or buried in the exchange rate spread. They must design retry logic for when a local payout provider’s API goes down, and their assumptions about acceptable latency will determine whether a recipient waits 10 minutes or 10 hours for funds promised by morning.
None of these is a diversity question in the conventional sense. They are engineering questions. But the answers are shaped by who is asking them. An engineer who has personally navigated the friction of sending money between two regulatory jurisdictions will design differently from one who has only ever moved money within a single banking system. An engineer who has watched a family member struggle with an identity verification flow designed for a different country’s documentation norms will test for edge cases that would never occur to someone without that experience. This is not sentimentality. It is a different threat model, born from a different set of lived inputs.
Africa’s cross-border payments market is projected to grow from an estimated $329 billion in 2025 to over $1 trillion by 2035. The continent has more than 500 million active mobile money accounts processing over $830 billion annually. Yet nearly 300 million adults remain unbanked, and women face disproportionate barriers to financial access, including lack of identification documents, limited agent proximity and low digital literacy. The infrastructure is growing fast. The question is whether it is growing in the right shape.
Here is the contradiction: the industry building this infrastructure does not look like the people it serves. Women represent less than 13 per cent of fintech leadership globally, as both founders and executive board members, according to IMF research. Only around 4 per cent of fintech companies have a female CEO. Women hold approximately 15 per cent of engineering roles across the sector and just 12 per cent in cloud computing. In venture capital, the pattern compounds: research on over 360 international venture capitalists found that roughly 27 per cent considered women’s participation in founding teams to be overrated, and investor panels routinely frame questions to male founders around upside potential and to female founders around risk mitigation.
The result is a trillion-dollar infrastructure buildout in which the vast majority of architectural decisions are made by teams that do not reflect the users on the other end. It is an engineering problem. Homogeneous teams produce homogeneous threat models, and homogeneous threat models produce systems with blind spots that only become visible when the user who was never in the room finally encounters the product.
The case for diverse engineering teams is often made in aggregate: studies show that a 10 per cent increase in women on executive boards correlates with roughly a 13 per cent increase in revenue. Diverse teams build better products. These findings are real, but they are also abstract enough to be ignored by anyone who has already decided they have a hiring pipeline problem rather than a design problem.
The more compelling argument is specific. When women who have navigated multiple financial systems are involved in architectural decisions, the systems change in concrete, measurable ways. The KYC flow accounts for a wider range of identity documents because someone in the room has seen firsthand what happens when it does not. The wallet infrastructure supports multiple currency denominations at the schema level because someone, from experience, understood that it is the baseline reality for diasporan users. The error handling is more granular because someone pushed back on the assumption that a generic timeout message was acceptable when a user is waiting to know whether her money arrived.
The point is not that women are inherently better engineers, but that diversity results in infrastructure that is more resilient, inclusive, and effective.
The default industry response to these numbers is to talk about the pipeline. Train more women. Fund more bootcamps. Celebrate graduates. This work matters; organisations like She Codes Africa are running serious technical programmes that produce engineers capable of contributing to production systems from day one, covering everything from Linux fundamentals to Kubernetes orchestration. Open source communities offer another entry point: when a woman submits a pull request to a globally used framework, and it gets merged, she is building both the ecosystem and her own undeniable track record. A merged pull request does not ask where you studied or what you look like. It asks whether your implementation is correct.
But the pipeline framing, taken alone, is incomplete to the point of being misleading. It places the burden of change on women to learn more, to train harder, to prove themselves, while leaving the structures they enter largely unexamined. Nearly half of women in technology report facing bias specifically about their technical competence. The informal networks that drive promotions and architectural influence in engineering organisations remain overwhelmingly male. For women building in emerging markets, these barriers compound with infrastructure constraints, limited access to developer tooling, and the persistent assumption that serious innovation only originates from a handful of geographies.
Training women for roles that will not promote them, fund their ideas, or trust their technical judgment is not empowerment. It is a more polished version of the same problem. The industry needs both: a strong pipeline of technically excellent women engineers, and structural change in the organisations they join. Equitable funding. Transparent promotion pathways. The basic recognition that technical credibility need not be proven twice.
I saw this play out at my own company. We were building the recipient verification flow for our UK-to-Nigeria corridor, and the system needed to confirm that the account name returned by the recipient’s bank matched the name the sender had provided. On paper, this is straightforward: call the bank’s name-enquiry API, compare the results, and flag mismatches.
In Nigeria, as in many countries, name changes after marriage don’t always propagate cleanly across records. A woman may adopt a spouse’s surname socially, update it at her bank, but still hold identification documents in her maiden name. Or the reverse: government ID updated, bank account unchanged. Some women retain both surnames in different contexts. Others abbreviate, hyphenate, or drop components depending on space constraints in legacy systems.
A customer might be registered as “Chidinma Okafor” on her BVN but “Chidinma Okafor-Eze” on her bank account after marriage. Her NIN might list her first name differently from her bank, or reverse the order of her middle and surname entirely. Some banks store names in all caps, others in title case, others with extra whitespace. For women, especially, the gap between documents is wider, with married names, maiden names, and different combinations of both appearing across records that were never reconciled.
A strict string comparison would have rejected a significant number of legitimate transactions. A team without direct familiarity with how Nigerian names actually appear across banking systems might have built exactly that, a clean validation that works perfectly on consistent data and fails quietly on the messy, real-world data that characterises millions of accounts. Instead, I built a fuzzy matching layer that accounted for name reordering, hyphenated variations, and formatting inconsistencies, with a confidence threshold that flagged genuinely suspicious mismatches without blocking the woman in Enugu whose married name has not been updated on one of her three forms of identification.
It was a few days of additional work. But it was work that only happened because someone in the room understood the problem from the inside, not from a requirements document, but from the lived experience of how names, identity, and documentation actually work in Nigeria, especially for women. That is what I mean when I say architecture carries the fingerprints of who built it. The fix was not technically complex. The insight that made it necessary was.
In engineering, confidence is not a personality trait. It is a technical discipline. It comes from writing the test that covers the edge case, from implementing the cryptographic signature that authenticates a banking API request, and from watching a system you built handle peak traffic without failing. The “confidence gap” that the industry likes to diagnose in women is not a deficit in ability. It is often a rational response to environments that have not yet earned the trust of the people they are asking to build their most critical systems.
The women I see building in fintech today do not lack confidence. They have built it the hard way, through the work itself. The question is not whether women can code with confidence. It is whether the industry is prepared to let that confidence shape the architecture.
The fintech industry is building infrastructure that will determine how billions of people interact with money for the next generation. Africa’s digital payments market alone is expected to reach nearly $40 billion in domestic payment revenues, and interoperability frameworks like the Pan-African Payment and Settlement System are beginning to connect what has historically been a fragmented continental payments landscape. Globally, embedded finance, real-time settlement, and AI-driven risk platforms are creating demand for engineers who can balance speed with safety and scale with inclusion.
The stakes of who designs these systems have never been higher. Every schema written today, every API contract negotiated, every service boundary drawn will constrain or enable financial access for years to come. These are not decisions that should be made by teams that represent only a fraction of the people they serve.
Women in fintech are not waiting for the structures to change before they build. They are building now in regulated banking integrations, in scaled payment platforms, in open-source codebases, and in classrooms where the next generation of engineers is learning to deploy systems that matter. The industry’s job is to stop treating their presence as a milestone and start treating their architectural perspective as what it is: a competitive advantage it cannot afford to waste.
To every woman writing code in fintech today: code with confidence. Not because the industry has made it easy, but because the infrastructure you are building is better for your being in the room. And in financial infrastructure, “better” is not an abstraction. It is the difference between a system that serves everyone and one that only works for the people who happened to design it.
About the Contributor
Okwuchi Uzoigwe is a Senior Software Engineer and Backend Engineering Lead at Africhange Technologies, a UK-based platform serving users across the UK, Nigeria, Canada, and Australia. With a B.Eng. in Electrical and Electronics Engineering from Federal University of Technology Owerri and a master’s degree in computing with distinction from University of Huddersfield, she has built over five years of experience developing scalable backend systems in banking and fintech.
She previously worked with Fidelity Bank Nigeria and Stanbic IBTC Bank, and has helped scale Africhange’s platform to support over 200,000 users and more than $50 million in monthly transactions. An active member of She Code Africa, she mentors aspiring engineers, contributes to open-source projects, and was recognized with the Nigerian Technology Award for Most Exceptional Software Engineer of the Year.
All Content Rights Reserved by Catalyst.








