All Questions
Tagged with server-side express
2 questions
2
votes
1
answer
443
views
How do I listen to Contract Events in my Express App?
I have a Smart Contract rps.
I want my express app to be able to listen to its events.
My express app:
require("dotenv").config();
const express = require("express");
const app = ...
0
votes
1
answer
201
views
How can a server except a signed tx and pay the gas?
I have a contract where users can buy "credits".
With that credit, users can post a message to a server (a route set up in ExpressJS).
I have the buying of credits working.
But my question ...