adding post
This commit is contained in:
parent
e8398f7522
commit
bed463d73c
13 changed files with 558 additions and 27 deletions
|
@ -202,8 +202,19 @@
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
<div class="archive-year">
|
<div class="archive-year">
|
||||||
<h2 class="archive-year-header">2024<sup class="archive-count"> 3</sup>
|
<h2 class="archive-year-header">2024<sup class="archive-count"> 4</sup>
|
||||||
</h2>
|
</h2>
|
||||||
|
<div class="archive-month">
|
||||||
|
<h3 class="archive-month-header">March<sup class="archive-count"> 1</sup></h3>
|
||||||
|
<div class="archive-posts">
|
||||||
|
<div class="archive-entry">
|
||||||
|
<h3 class="archive-entry-title entry-hint-parent">How to create a Solana Token (SPL) from CLI with metadata
|
||||||
|
</h3>
|
||||||
|
<div class="archive-meta"><span title='2024-03-15 00:13:40 +0000 UTC'>March 15, 2024</span> · 5 min · 910 words · Matt</div>
|
||||||
|
<a class="entry-link" aria-label="post link to How to create a Solana Token (SPL) from CLI with metadata" href="https://mafyuh.com/posts/spl-token-cli/"></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="archive-month">
|
<div class="archive-month">
|
||||||
<h3 class="archive-month-header">February<sup class="archive-count"> 3</sup></h3>
|
<h3 class="archive-month-header">February<sup class="archive-count"> 3</sup></h3>
|
||||||
<div class="archive-posts">
|
<div class="archive-posts">
|
||||||
|
|
File diff suppressed because one or more lines are too long
10
index.xml
10
index.xml
|
@ -6,8 +6,16 @@
|
||||||
<description>Recent content on Mafyuh's Blog</description>
|
<description>Recent content on Mafyuh's Blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Fri, 23 Feb 2024 00:13:40 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 15 Mar 2024 00:13:40 +0000</lastBuildDate>
|
||||||
<atom:link href="https://mafyuh.com/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://mafyuh.com/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>How to create a Solana Token (SPL) from CLI with metadata</title>
|
||||||
|
<link>https://mafyuh.com/posts/spl-token-cli/</link>
|
||||||
|
<pubDate>Fri, 15 Mar 2024 00:13:40 +0000</pubDate>
|
||||||
|
<guid>https://mafyuh.com/posts/spl-token-cli/</guid>
|
||||||
|
<description>I wanted to create an SPL token and after looking online I couldn&rsquo;t find an updated guide. So I thought I would learn and share. There are much easier ways to create these tokens but they cost $ and spending more $ than needed is no fun. This guide costs as little SOL as possible as everything is transacted directly on-chain. Everything is done from the CLI.
|
||||||
|
This guide just covers the basics, the tools used are way more powerful than what I use them for, this is just creating a basic token with no taxes or locked supply or anything complex, but these tools do support those options.</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Docker Compose Arr Stack Guide</title>
|
<title>Docker Compose Arr Stack Guide</title>
|
||||||
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
||||||
|
|
|
@ -607,6 +607,11 @@ services:
|
||||||
<li><a href="https://mafyuh.com/tags/homelab/">Homelab</a></li>
|
<li><a href="https://mafyuh.com/tags/homelab/">Homelab</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<nav class="paginav">
|
<nav class="paginav">
|
||||||
|
<a class="prev" href="https://mafyuh.com/posts/spl-token-cli/">
|
||||||
|
<span class="title">« Prev</span>
|
||||||
|
<br>
|
||||||
|
<span>How to create a Solana Token (SPL) from CLI with metadata</span>
|
||||||
|
</a>
|
||||||
<a class="next" href="https://mafyuh.com/posts/selfhosted-game-servers/">
|
<a class="next" href="https://mafyuh.com/posts/selfhosted-game-servers/">
|
||||||
<span class="title">Next »</span>
|
<span class="title">Next »</span>
|
||||||
<br>
|
<br>
|
||||||
|
|
|
@ -161,6 +161,19 @@
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">How to create a Solana Token (SPL) from CLI with metadata
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>I wanted to create an SPL token and after looking online I couldn’t find an updated guide. So I thought I would learn and share. There are much easier ways to create these tokens but they cost $ and spending more $ than needed is no fun. This guide costs as little SOL as possible as everything is transacted directly on-chain. Everything is done from the CLI.
|
||||||
|
This guide just covers the basics, the tools used are way more powerful than what I use them for, this is just creating a basic token with no taxes or locked supply or anything complex, but these tools do support those options....</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2024-03-15 00:13:40 +0000 UTC'>March 15, 2024</span> · 5 min · 910 words · Matt</footer>
|
||||||
|
<a class="entry-link" aria-label="post link to How to create a Solana Token (SPL) from CLI with metadata" href="https://mafyuh.com/posts/spl-token-cli/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Docker Compose Arr Stack Guide
|
<h2 class="entry-hint-parent">Docker Compose Arr Stack Guide
|
||||||
|
@ -283,19 +296,6 @@ reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\Inpro
|
||||||
<footer class="entry-footer"><span title='2023-09-05 23:45:25 +0000 UTC'>September 5, 2023</span> · 1 min · 31 words · Matt</footer>
|
<footer class="entry-footer"><span title='2023-09-05 23:45:25 +0000 UTC'>September 5, 2023</span> · 1 min · 31 words · Matt</footer>
|
||||||
<a class="entry-link" aria-label="post link to How to Show More Options By Default in Windows 11" href="https://mafyuh.com/posts/how-to-show-more-options-by-default-in-windows-11/"></a>
|
<a class="entry-link" aria-label="post link to How to Show More Options By Default in Windows 11" href="https://mafyuh.com/posts/how-to-show-more-options-by-default-in-windows-11/"></a>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<article class="post-entry">
|
|
||||||
<header class="entry-header">
|
|
||||||
<h2 class="entry-hint-parent">Network Traffic Map
|
|
||||||
</h2>
|
|
||||||
</header>
|
|
||||||
<div class="entry-content">
|
|
||||||
<p>This is just a visual representations of how my current setup flows.
|
|
||||||
I have some of the docker-compose files that make up this infra on my Gitea</p>
|
|
||||||
</div>
|
|
||||||
<footer class="entry-footer"><span title='2023-08-31 16:20:00 +0000 UTC'>August 31, 2023</span> · 1 min · 27 words · Matt</footer>
|
|
||||||
<a class="entry-link" aria-label="post link to Network Traffic Map" href="https://mafyuh.com/posts/network-traffic-map/"></a>
|
|
||||||
</article>
|
|
||||||
<footer class="page-footer">
|
<footer class="page-footer">
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
<a class="next" href="https://mafyuh.com/posts/page/2/">Next »
|
<a class="next" href="https://mafyuh.com/posts/page/2/">Next »
|
||||||
|
|
|
@ -6,8 +6,16 @@
|
||||||
<description>Recent content in Posts on Mafyuh's Blog</description>
|
<description>Recent content in Posts on Mafyuh's Blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Fri, 23 Feb 2024 00:13:40 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 15 Mar 2024 00:13:40 +0000</lastBuildDate>
|
||||||
<atom:link href="https://mafyuh.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://mafyuh.com/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>How to create a Solana Token (SPL) from CLI with metadata</title>
|
||||||
|
<link>https://mafyuh.com/posts/spl-token-cli/</link>
|
||||||
|
<pubDate>Fri, 15 Mar 2024 00:13:40 +0000</pubDate>
|
||||||
|
<guid>https://mafyuh.com/posts/spl-token-cli/</guid>
|
||||||
|
<description>I wanted to create an SPL token and after looking online I couldn&rsquo;t find an updated guide. So I thought I would learn and share. There are much easier ways to create these tokens but they cost $ and spending more $ than needed is no fun. This guide costs as little SOL as possible as everything is transacted directly on-chain. Everything is done from the CLI.
|
||||||
|
This guide just covers the basics, the tools used are way more powerful than what I use them for, this is just creating a basic token with no taxes or locked supply or anything complex, but these tools do support those options.</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Docker Compose Arr Stack Guide</title>
|
<title>Docker Compose Arr Stack Guide</title>
|
||||||
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
||||||
|
|
|
@ -161,6 +161,19 @@
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">Network Traffic Map
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>This is just a visual representations of how my current setup flows.
|
||||||
|
I have some of the docker-compose files that make up this infra on my Gitea</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2023-08-31 16:20:00 +0000 UTC'>August 31, 2023</span> · 1 min · 27 words · Matt</footer>
|
||||||
|
<a class="entry-link" aria-label="post link to Network Traffic Map" href="https://mafyuh.com/posts/network-traffic-map/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Software
|
<h2 class="entry-hint-parent">Software
|
||||||
|
|
462
posts/spl-token-cli/index.html
Normal file
462
posts/spl-token-cli/index.html
Normal file
File diff suppressed because one or more lines are too long
15
sitemap.xml
15
sitemap.xml
|
@ -2,19 +2,22 @@
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mafyuh.com/posts/docker-arr-stack-guide/</loc>
|
|
||||||
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>https://mafyuh.com/tags/homelab/</loc>
|
<loc>https://mafyuh.com/tags/homelab/</loc>
|
||||||
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
<lastmod>2024-03-15T00:13:40+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://mafyuh.com/posts/spl-token-cli/</loc>
|
||||||
|
<lastmod>2024-03-15T00:13:40+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://mafyuh.com/</loc>
|
<loc>https://mafyuh.com/</loc>
|
||||||
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
<lastmod>2024-03-15T00:13:40+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://mafyuh.com/posts/</loc>
|
<loc>https://mafyuh.com/posts/</loc>
|
||||||
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
<lastmod>2024-03-15T00:13:40+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://mafyuh.com/tags/</loc>
|
<loc>https://mafyuh.com/tags/</loc>
|
||||||
|
<lastmod>2024-03-15T00:13:40+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://mafyuh.com/posts/docker-arr-stack-guide/</loc>
|
||||||
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
<lastmod>2024-02-23T00:13:40+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://mafyuh.com/about/</loc>
|
<loc>https://mafyuh.com/about/</loc>
|
||||||
|
|
|
@ -146,6 +146,19 @@
|
||||||
</h1>
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<article class="post-entry tag-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2 class="entry-hint-parent">How to create a Solana Token (SPL) from CLI with metadata
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>I wanted to create an SPL token and after looking online I couldn’t find an updated guide. So I thought I would learn and share. There are much easier ways to create these tokens but they cost $ and spending more $ than needed is no fun. This guide costs as little SOL as possible as everything is transacted directly on-chain. Everything is done from the CLI.
|
||||||
|
This guide just covers the basics, the tools used are way more powerful than what I use them for, this is just creating a basic token with no taxes or locked supply or anything complex, but these tools do support those options....</p>
|
||||||
|
</div>
|
||||||
|
<footer class="entry-footer"><span title='2024-03-15 00:13:40 +0000 UTC'>March 15, 2024</span> · 5 min · 910 words · Matt</footer>
|
||||||
|
<a class="entry-link" aria-label="post link to How to create a Solana Token (SPL) from CLI with metadata" href="https://mafyuh.com/posts/spl-token-cli/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
<article class="post-entry tag-entry">
|
<article class="post-entry tag-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2 class="entry-hint-parent">Docker Compose Arr Stack Guide
|
<h2 class="entry-hint-parent">Docker Compose Arr Stack Guide
|
||||||
|
|
|
@ -6,8 +6,16 @@
|
||||||
<description>Recent content in Homelab on Mafyuh's Blog</description>
|
<description>Recent content in Homelab on Mafyuh's Blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Fri, 23 Feb 2024 00:13:40 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 15 Mar 2024 00:13:40 +0000</lastBuildDate>
|
||||||
<atom:link href="https://mafyuh.com/tags/homelab/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://mafyuh.com/tags/homelab/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>How to create a Solana Token (SPL) from CLI with metadata</title>
|
||||||
|
<link>https://mafyuh.com/posts/spl-token-cli/</link>
|
||||||
|
<pubDate>Fri, 15 Mar 2024 00:13:40 +0000</pubDate>
|
||||||
|
<guid>https://mafyuh.com/posts/spl-token-cli/</guid>
|
||||||
|
<description>I wanted to create an SPL token and after looking online I couldn&rsquo;t find an updated guide. So I thought I would learn and share. There are much easier ways to create these tokens but they cost $ and spending more $ than needed is no fun. This guide costs as little SOL as possible as everything is transacted directly on-chain. Everything is done from the CLI.
|
||||||
|
This guide just covers the basics, the tools used are way more powerful than what I use them for, this is just creating a basic token with no taxes or locked supply or anything complex, but these tools do support those options.</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Docker Compose Arr Stack Guide</title>
|
<title>Docker Compose Arr Stack Guide</title>
|
||||||
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
<link>https://mafyuh.com/posts/docker-arr-stack-guide/</link>
|
||||||
|
|
|
@ -141,7 +141,7 @@
|
||||||
<a href="https://mafyuh.com/tags/authentik/">authentik <sup><strong><sup>4</sup></strong></sup> </a>
|
<a href="https://mafyuh.com/tags/authentik/">authentik <sup><strong><sup>4</sup></strong></sup> </a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://mafyuh.com/tags/homelab/">Homelab <sup><strong><sup>5</sup></strong></sup> </a>
|
<a href="https://mafyuh.com/tags/homelab/">Homelab <sup><strong><sup>6</sup></strong></sup> </a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://mafyuh.com/tags/jellyfin/">Jellyfin <sup><strong><sup>1</sup></strong></sup> </a>
|
<a href="https://mafyuh.com/tags/jellyfin/">Jellyfin <sup><strong><sup>1</sup></strong></sup> </a>
|
||||||
|
|
|
@ -6,12 +6,12 @@
|
||||||
<description>Recent content in Tags on Mafyuh's Blog</description>
|
<description>Recent content in Tags on Mafyuh's Blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Fri, 23 Feb 2024 00:13:40 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 15 Mar 2024 00:13:40 +0000</lastBuildDate>
|
||||||
<atom:link href="https://mafyuh.com/tags/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://mafyuh.com/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>Homelab</title>
|
<title>Homelab</title>
|
||||||
<link>https://mafyuh.com/tags/homelab/</link>
|
<link>https://mafyuh.com/tags/homelab/</link>
|
||||||
<pubDate>Fri, 23 Feb 2024 00:13:40 +0000</pubDate>
|
<pubDate>Fri, 15 Mar 2024 00:13:40 +0000</pubDate>
|
||||||
<guid>https://mafyuh.com/tags/homelab/</guid>
|
<guid>https://mafyuh.com/tags/homelab/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
Loading…
Reference in a new issue