This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| mono escrow integration for a marketplace flow | |
| User pays → held in escrow → creator delivers → released | |
| Non-custodial: funds never touch the platform's books | |
| """ | |
| import os | |
| from monospay import MonoClient | |
| mono = MonoClient(api_key=os.environ["MONO_API_KEY"]) |