Skip to content

Instantly share code, notes, and snippets.

View Kakulukian's full-sized avatar
🙆‍♂️

Sylvestre Bouchot Kakulukian

🙆‍♂️
View GitHub Profile
@Kakulukian
Kakulukian / CardanoNFTDiscordBot.js
Created May 28, 2023 11:51
Never Miss a Cardano NFT Sale Again: Automating Discord Notifications with JavaScript
const Discord = require('discord.js');
const client = new Discord.Client();
const token = process.env.DISCORD_TOKEN;
const opencnftKey = process.env.OPENCNFT_KEY;
const policy = process.env.POLICY;
let lastTimeSent = undefined;
const opencnftURL = new URL(
`https://api.opencnft.io/2/collection/${policy}/transaction`,
);
@Kakulukian
Kakulukian / ModelSelect.vue
Last active November 1, 2022 08:25
ModelSelect in vue3
<template>
<div
ref="root"
class="ui fluid search selection dropdown"
:class="{
'active visible': showMenu,
error: isError,
disabled: isDisabled,
}"
@click="openOptions"
@Kakulukian
Kakulukian / adahandle-query-help.md
Created January 31, 2022 14:53
Adahandle Interesting Queries Cardano

General queries for adahandle

Retrieve $handle owned by an address

SELECT
	ENCODE(MA.name, 'escape') ada_handle
FROM
	MA_TX_OUT MTX
	INNER JOIN MULTI_ASSET MA ON MA.id = MTX.ident