Skip to content

Instantly share code, notes, and snippets.

@Edoumou
Last active June 11, 2025 23:33
Show Gist options
  • Save Edoumou/4f6492727a71b0fb941f131febca1f21 to your computer and use it in GitHub Desktop.
Save Edoumou/4f6492727a71b0fb941f131febca1f21 to your computer and use it in GitHub Desktop.
PFF - Protocols
import { Router } from 'express';
const router = Router();
// PFF Token Routes
router.post('/pff-token/deploy', (req, res) => {});
// PFF Futures Routes
router.post('/pff-futures/deploy', (req, res) => {});
router.get('/pff-futures/market', (req, res) => {});
router.post('/pff-futures/list', (req, res) => {});
router.post('/pff-futures/unlist', (req, res) => {});
router.post('/pff-futures/withdraw', (req, res) => {});
router.get('/pff-futures/listed', (req, res) => {});
router.post('/platform/register', (req, res) => {});
router.post('/platform/contact', (req, res) => {});
router.get('/protocols/metrics', (req, res) => {});
router.get('/market/metrics', (req, res) => {});
// PFF Redeem Routes
router.post('/pff-redeem/deploy', (req, res) => {});
export default router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment