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
| Proposal | |
| A 13,500 token grant for adding closeable markets to serum v3. | |
| This PR will allow permissioned markets to be disabled and to redeem the rent exempt Sol used for the event queue, request queue, bid and ask queues. | |
| It’s been a feature long requested by many in the community building on top and serum and we were very happy to be able to make this PR. | |
| https://github.com/project-serum/serum-dex/pull/191 | |
| 3,500 tokens will go to Tom, 10,000 will go to Henry |
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
| from PyQt6.QtWidgets import QApplication, QWidget, QVBoxLayout, QTextEdit, QPushButton | |
| from PyQt6.QtCore import Qt, pyqtSignal | |
| from ib_insync import IB, util | |
| from aiogram import Bot, Dispatcher, types | |
| import asyncio | |
| import threading | |
| # Import logging | |
| import logging | |
| # Setup logging |
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
| import * as anchor from "@coral-xyz/anchor"; | |
| import { PublicKey, Transaction, ComputeBudgetProgram } from "@solana/web3.js"; | |
| import * as token from "@solana/spl-token"; | |
| const provider = anchor.AnchorProvider.env(); | |
| anchor.setProvider(provider); | |
| // Assumes your running with `anchor run closeAux --provider.cluster mainnet --provider.wallet ~/.config/solana/your-key.json` | |
| const payer = provider.wallet["payer"]; |
OlderNewer