Introduction
You may wish to completely build your own implementation, or perhaps make some server side calls to check certain properties on your deployed subscription contract. In that case it is probably best to interact directly with the contract.
Some great libraries for help interacting with contracts include:
At Subbi we use Ethers for most interaction with EVM compatible blockchains, but feel free to use whatever you want. As long as you have the Subscription ABI, you can interact with the contract directly with whichever web3 library and whatever UI/UX you wish.
An example with Ethers might look like:
More information on creating Ethers contract instances can be found here.
Last updated