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
| { | |
| "version": "0.1.0", | |
| "name": "sol_wrapping_contract", | |
| "instructions": [ | |
| { | |
| "name": "wrap", | |
| "accounts": [ | |
| { | |
| "name": "owner", | |
| "isMut": true, |
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
| #!/bin/bash | |
| ####################################################################### | |
| # | |
| # ██████ ██ ██████ █████ ██ ██ ██████ ██████ ███████ ██ ██ | |
| # ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
| # ██ ██ ██ ██ ███████ █████ ██ ██ ██ ██ █████ ██ ██ | |
| # ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ | |
| # ██████ ███████ ██████ ██ ██ ██ ██ ██████ ██████ ███████ ████ | |
| # |
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
| { | |
| "version": "0.1.0", | |
| "name": "pump", | |
| "instructions": [ | |
| { | |
| "name": "initialize", | |
| "docs": [ | |
| "Creates the global state." | |
| ], | |
| "accounts": [ |
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
| type PostgresService struct { | |
| db *gorm.DB | |
| username string | |
| password string | |
| database string | |
| host string | |
| port string | |
| } |
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
| { | |
| "version": "0.1.1", | |
| "name": "solana_tribes", | |
| "instructions": [ | |
| { | |
| "name": "mintTokens", | |
| "accounts": [ | |
| { | |
| "name": "world", | |
| "isMut": false, |
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
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "github.com/google/uuid" | |
| "log" | |
| "math/rand" | |
| "net/http" | |
| "time" |
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 { | |
| createAssociatedTokenAccountInstruction, | |
| createInitializeMint2Instruction, | |
| createSyncNativeInstruction, | |
| createTransferCheckedInstruction, | |
| getAssociatedTokenAddressSync, | |
| getMinimumBalanceForRentExemptMint, | |
| MINT_SIZE, | |
| TOKEN_2022_PROGRAM_ID | |
| } from "@solana/spl-token"; |
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
| { | |
| "version": "1.0.0", | |
| "name": "fluxbeam", | |
| "instructions": [ | |
| { | |
| "name": "initialize", | |
| "accounts": [ | |
| { | |
| "name": "swap", | |
| "isMut": true, |
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
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "github.com/alphabatem/fluxbot/helius" | |
| "github.com/gagliardetto/solana-go" | |
| "github.com/gagliardetto/solana-go/rpc" | |
| "github.com/joho/godotenv" | |
| "github.com/rs/zerolog/log" |
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
| package main | |
| import ( | |
| "encoding/csv" | |
| "encoding/json" | |
| "errors" | |
| "flag" | |
| "fmt" | |
| "io" | |
| "log" |
NewerOlder