Questions tagged [spl-token-cli]
The spl-token-cli tag has no summary.
46 questions
0 votes
0 answers
28 views
Solana Minting 500M but output is over 18T
I created a token (twice now) using Solana CLI and I used 6 decimals for the token creation and entered 500000000000000 (500M plus six 0s) but Solscan shows over 18t. I tried it again a few hours ...
1 vote
1 answer
88 views
spl-metadata-2022: spl-token initialize-metadata failed
this is my cmd: -> spl-metadata-2022 spl-token initialize-metadata AuNB2uvFRW6p5w4qzZgHpYgcq3J4viZSEbxJj14EqJcw "Pxxxxx Rxx" "PRS" "url" getting this error: Error: ...
1 vote
1 answer
92 views
Is there a way to call withdraw_excess_lamports with mint authority renounced?
I accidentally transferred some Solana into my mint address. I recently learnt about the new token_2022 instruction withdraw_excess_lamports that can help with this, but the mint authority was already ...
2 votes
1 answer
53 views
Why does Querying Mint Account Info Display a Mint Token Balance
I am under the impression according to reviewing solana program documentation that Mint accounts cannot hold a token balance, mints can only mint tokens to ATAs (token programs), NATAs (token programs)...
2 votes
2 answers
62 views
error initalizing metadata after I enabled metadata
I created my token and with the flag --enable-metadata --program-id TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb \ --enable-metadata \ --decimals 2 \ --mint-authority ...
0 votes
1 answer
43 views
can any one tell how can we add social media links while deploying spl token. i didn;t find a proper guide where they show to add social media account
const { getExplorerLink } = require("@solana-developers/helpers"); const { Connection, clusterApiUrl, PublicKey, Transaction, sendAndConfirmTransaction, Keypair } = require("@solana/...
0 votes
2 answers
49 views
Help Needed with Implementing Immutable Owner Extension for Token Creation
I have successfully created a token with several extensions integrated so far, and the process has been smooth thanks to the resources and guidance available in this community. Now, I am at the stage ...
1 vote
1 answer
72 views
Extension error in spl 22 token
I'm working on creating an SPL Token-2022 mint with multiple extensions using TypeScript and the Solana Web3/Token-2022 SDKs. Here's what I currently have set up: ✅ Enabled Extensions ...
1 vote
1 answer
31 views
Confidential Transfer not working with spl-token cli
I was trying to test the confidential transfers, they were working like a few weeks back but now they are failing. spl-token transfer 4txfzbnS8nvVg2T1YySqFG7NQPcPYCNnh1UzKmgFdxJu 1000 ...
0 votes
1 answer
36 views
Trying to burn tokens as mint authority .CLI works but getting invalid accounts running in Typescript
On dev net im playing around mint :X5qJThwB41Dir8s6oMj237dB2cxWudiJgfqDx7DSk5t authority :s21QcvKu3pK2ezrviA4sfDsVDyJCVH2wtvCVujeSQuW mint account: C31DekR8DUojRcdRyVZp7LNWDR5RVyAdNxFGzXtb9mjU with ...
1 vote
1 answer
76 views
spl-token transfer failing in CLI DevNet
I successfully created a SOL mint token on Sol DevNet and minted some to a newly created wallet However, I am simply trying to run the spl-token transfer command that Solana has in their documents. I ...
0 votes
0 answers
34 views
"Create Token" on Solana keeps resulting in "Segmentation fault"
Dear Solana Community After spending hours in finding the root cause of "segmentation fault", I am finally posting this thread, while hoping to obtain a support. As a matter of fact, running ...
0 votes
0 answers
21 views
Can I burn Solana dApp Store publish NFT?
I'm currently working on a Solana dApp and published many versions of it to dApp Store. It costed me a lot of SOL (Around 8 SOL for the last 2 years), now SOL price is also so expensive (>200$). So ...
0 votes
2 answers
40 views
Multi ATA Accounts for token distributions
How to create ATA account using SPL-TOKEN? Already have minted tokens and would like to distribute in different wallets according to tokenomics
0 votes
1 answer
70 views
How to set metadata for Token Program Standard (Not using Token Program Extension 2022)?
I am using solana-keygen grind and spl-token create-token I want to use cli command to do these things. When I use command spl-token create-token. I created a token but it has no metadata, I want to ...