Credit backed by trust
Union works without the need for collateral, credit score, or revealing personal information on a public ledger.
Get startedTrusted by industry leading investors
Become your own bank
- 1Easily manage who you trust and how much you trust them with.
- 2See how much they’ve used from your pool
- 3See when their due date is and adjust their trust as you go along
Your circle of trust
Union is all about trust. Create your own circle of trust where you, your friends and family can borrow funds whenever needed.
Check what you can build with Union
Ability to give your smart contracts credit lines and more.
// Get max credit limit
function getCreditLimit(account) {
return creditLimit
}
// Borrow up to max credit limit
function borrowMax() {
const max = getCreditLimit(account)
borrow(max)
}