I have a json file that's an ABI for a smart contract. I am building a site in Webflow, but due to the 10000 character custom code limit, I need to host the json for the smart contract elsewhere.
I have it on Github at: https://github.com/learyjk/baddognft/blob/main/ABI.js
What I would like to do is have a variable in the custom code section of Webflow and just be able to call ABI so that I can instantiate a web3 contract. I was able to get it working using gitcdn.link but it's not working anymore for some reason.
Another option I played around with but wasn't able to get working were $.get("link here"). I also tried jsdelivr
but I keep getting "ABI not defined" error.
Thanks!