Skip to content

Instantly share code, notes, and snippets.

@czepluch
Created December 16, 2020 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czepluch/89da17425d226648597f5eed3fceb7c2 to your computer and use it in GitHub Desktop.
Save czepluch/89da17425d226648597f5eed3fceb7c2 to your computer and use it in GitHub Desktop.
Raiden Paywall
from decimal import Decimal
from flask import Flask
from flask_cors import CORS
# import the raiden paywall flask extension from:
# https://github.com/raiden-network/paywall/tree/master/server
from raiden_paywall import RaidenPaywall
app = Flask(__name__)
CORS(app)
paywall = RaidenPaywall(app)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment