This file contains 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
// ==UserScript== | |
// @name Emojis for old reddit | |
// @namespace mailto:auxermen@gmail.com | |
// @version 1.4 | |
// @description Enables subreddit specific emoji display on old reddit. | |
// @author Auxermen | |
// @match https://old.reddit.com/r/*/comments/* | |
// @match https://www.reddit.com/r/*/comments/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com | |
// @grant none |
This file contains 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 "@project-serum/anchor"; | |
import { MintLayout, TOKEN_PROGRAM_ID, Token } from "@solana/spl-token"; | |
import { | |
SystemProgram, | |
SYSVAR_SLOT_HASHES_PUBKEY, | |
Keypair, | |
} from "@solana/web3.js"; | |
import { sendTransactions, SequenceType } from "./transaction"; |
👀🦄🚀