“Trust” is a key factor for successful transactions between parties. To ensure trust, we involve third party freelancing platforms or middlemen and pay hefty commissions which highly affect the overall profit margins of parties involved in a transaction.
Trustified.network is a smart contract assured Escrow Agreement and Payment platform which helps individuals and businesses to grow globally and increase profit margins in four simple steps:
1) List Products,Services or subscription packages.
2) Create Escrow agreements with personalize terms as per customers.
3) Send/Receive crypto payments in a reliable and secure way without paying hefty commissions to third parties.
4) Trust Score: Rate your experience of working with each other and get rewarded for best Trust Score.
https://neonscan.org/address/0x0424e290a639e7b93eA37861e206B9E05a65b89F
https://github.com/Trustified-Network/Neo-Solana/blob/master/src/network/Network.js
const NEONLABS = {
chainId: '0x245022926',
chainName: "neonlabs",
rpcUrls: ["https://proxy.devnet.neonlabs.org/solana"],
nativeCurrency: {
name: "NEON",
symbol: "NEON",
decimals: 18,
},
blockExplorerUrls: ["https://neonscan.org"],
}
export { NEONLABS };💾 IPFS/Filecoin web3.Storage: We are Using Web3.Storage, to permanently store all the details of user invoices and subscription service on decentralized storage.
https://github.com/Trustified-Network/Neo-Solana/blob/master/src/modal/CreateSubscribtionModal.js
function makeFileObjects(data) {
const blob = new Blob([JSON.stringify(data)], {
type: "application/json",
});
const files = [new File([blob], "subscribtion_Details.json")];
return files;
}
async function onChange(e) {
setUploading(true);
const file = e.target.files[0];
try {
const fileIpfs = await saveFile("trustified", file, { saveIPFS: true });
const moralisFile = new Moralis.File("trustified_subscribtion", file);
setFileUrl(fileIpfs);
toast.success("Image uploaded Successfully!!");
setUploading(false);
} catch (error) {
setUploading(false);
toast.error("Error uploading file!!");
console.log("Error uploading file: ", error);
}
}Web3Auth: Used Web3Auth for seamless user on boarding with it's non-custodial auth infrastructure.
https://github.com/Trustified-Network/Neo-Solana/blob/master/src/context/Web3Context.js
const web3Auth = async () => {
await authenticate({
provider: 'web3Auth',
clientId: 'BBENwjOPTAuM5OJ3bWkmkhpig5Z67iLKCUeDLy-JF6dv4PkYHnwWfL4NQU3S2LscSEV4g-dsUjDj4NgbCgUot4s',
appLogo: '/images/trustifiednetwork-logo.png',
loginMethodsOrder: ["google", "facebook", "twitter", "reddit", "github", "linkedin", "email_passwordless"]
});
navigate("/dashboard/app");
}






