Here is a short list of problems to solve in "any" Fintech
- KYC
- Ledger
- Scaling
- Reliability
- Latency
- Security
- Data Consistency
- Integration with many external systems
Here is a short list of problems to solve in "any" Fintech
// tsx seed.ts | |
import { faker } from '@faker-js/faker'; | |
import { pgTable, text, varchar, timestamp } from 'drizzle-orm/pg-core'; | |
import { drizzle, PostgresJsDatabase } from 'drizzle-orm/postgres-js'; | |
import { createInsertSchema } from 'drizzle-zod'; | |
import { customAlphabet } from 'nanoid'; | |
import postgres from 'postgres'; | |
import { z } from 'zod'; |
Os requisitos desse projeto não são especificos de nenhuma linguagem nem framework, as integrações podem acontecer tanto no frontend quanto no backend. O foco principal é na usabilidade do projeto pelo usuário. A base da aplicação é baseada em 3 etapas:
import type { FetchOptions } from 'ohmyfetch'; | |
import { useApiMethod } from '@/enums/composables/useApi'; | |
/** | |
* Custom hook that makes an HTTP request to the API endpoint. | |
*/ | |
export async function useApi<T>( | |
path: string, | |
opts?: FetchOptions, | |
prefix = 'api', |
Ler e entender um pouco desse artigo. https://wiki.c2.com/?FeynmanAlgorithm
(* The syntax of our calculus. Notice that types are represented in the same way | |
as terms, which is the essence of CoC. *) | |
type term = | |
| Var of string | |
| Appl of term * term | |
| Binder of binder * string * term * term | |
| Star | |
| Box | |
and binder = Lam | Pi |
Credit Circle People for old skins