This React modal allows you to easily make a payment on an existing loan.
Usage
import React from "react";
import { MakePaymentModal } from "@niftyapes/sdk";
export default function App() {
return (
<MakePaymentModal
collection={"0x01c7851ae4d42f7b649ce168716c78fc25fe3d16"}
nftId={"60"}
image={
"https://i.seadn.io/gcs/files/c46d41c266c99fc174c57a6984055931.png"
}
tokenName={"Bananaman Abides"}
collectionName={"Bananaman Abides"}
onSuccess={() => {}}
/>
);
}