Abridged guide of getting started with metaplex candy machine and exiled-apes frontend starter.
I wanted to capture this guide so I could quickly skip the boilerplate.
| @BTC_doctor @solcialofficial No, but the founder is a friend. Curious to know what makes you think that? Sep 29, 2021 | |
| @rafafslv Learning through his own mistakes is the best way in my opinion Maybe dont be too focus on the short term, look at trend, make scenarios, have a plan I said maybe bc there are a dozens way to trade. Find yours. GL Sep 28, 2021 | |
| @DiGomorra I reply bc you said "excuse me" but read my feed it's not like I made 10k tweets I take everything into account: TA, onchain data, but today mostly market sentiment and trend Look at this thread https://t.co/unUZP8RDYy Sep 28, 2021 | |
| @rafafslv I dont make "fast" trade anymore and I think it's a waste of time In a bull market: long the fear, tp in euphoria, repeat If the trend is uncertain: stay on the side or "gamble" on the break In a bear market: short any up or even better take vacations Sep 28, 2021 | |
| @BTC_doctor No Sep 28, 2021 | |
| @ConcretCapital Cheers man Sep 28, 2021 | |
| @cryptoaladeen Ahahahah I still have only one that I bought from you :) Sep 2 |
| Guides / Walkthroughs | |
| Intro to Programming on Solana | |
| https://paulx.dev/blog/2021/01/14/programming-on-solana-an-introduction/ | |
| Development Tutorial by Solong | |
| https://solongwallet.medium.com/solana-development-tutorial-things-you-should-know-before-structuring-your-code-807f0e2ee43 | |
| Intro to Anchor Framework | |
| https://project-serum.github.io/anchor/getting-started/introduction.html |
Abridged guide of getting started with metaplex candy machine and exiled-apes frontend starter.
I wanted to capture this guide so I could quickly skip the boilerplate.
| BLESS(8) BSD System Manager's Manual BLESS(8) | |
| NAME | |
| bless -- set volume bootability and startup disk options | |
| SYNOPSIS | |
| bless --help | |
| bless --folder directory [--file file] [--bootinfo [file]] | |
| [--bootefi [file]] [--label name | --labelfile file] [--setBoot] |
Q: Say you upload a whole 10k set ahead of time then realize that you messed one up and want to fix the arweave data. Are you hosed, and just have to re-upload everything with a new CM?
A:
Go to the temp file created by CM.
Find the one is broken.
Change arweave URL to new one which is not broken.
Mark on-chain: true -> false.
Re-run the upload command.
Upload command will find the one is missing and reupload it.
| x86_64-darwin paperless-ng | |
| i686-linux gnome.gnome-panel | |
| x86_64-linux lilypond | |
| x86_64-linux arx-libertatis | |
| aarch64-linux gnome.gnome-applets | |
| aarch64-linux beetsExternalPlugins.extrafiles | |
| x86_64-darwin python39Packages.diagrams | |
| aarch64-linux optar | |
| aarch64-linux solfege | |
| i686-linux imagemagickBig |
| /* | |
| * this file includes both a node.js script for creating a keypair | |
| * as well as the client code for using it | |
| */ | |
| /* createKeypair.js */ | |
| const fs = require('fs') | |
| const anchor = require("@project-serum/anchor"); | |
| const web3 = require('@solana/web3.js') | |
| const account = anchor.web3.Keypair.generate(); |
| curl http://api.mainnet-beta.solana.com -X POST -H "Content-Type: application/json" -d '{ | |
| "jsonrpc": "2.0", | |
| "id": 1, | |
| "method": "getProgramAccounts", | |
| "params": [ | |
| "cndyAnrLdpjq1Ssp1z8xxDsB8dxe7u4HL5Nxi2K5WXZ", | |
| { | |
| "encoding": "jsonParsed", | |
| "filters": [ ] | |
| } |
| interface CaslPermission { | |
| action: PermissionAction; | |
| subject: string; | |
| condition?: PermissionCondition; | |
| } | |
| @Injectable() | |
| export class CaslAbilityFactory { | |
| constructor(private authoService: AuthzService) {} | |
| async createForUser(user: User): Promise<AppAbility> { | |
| const dbPermissions: Permission[] = await this.authoService.findAllPermissionsOfUser(user); |