Skip to content

Commit

Permalink
fix: FUNDING metadata added
Browse files Browse the repository at this point in the history
  • Loading branch information
formysister committed Apr 7, 2024
1 parent 4365118 commit 2bfa229
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: multichain-wallet-sdk
custom: [ 'https://etherscan.io/address/0x8fA0f7Da20C8dea950d1c5Dc55384b162d82dA6C' ]
Empty file added src/lib/hdwallet/index.ts
Empty file.
5 changes: 2 additions & 3 deletions src/wallet_class/solana/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ class SolanaWallet {

if (tokenAddress) {
// Get token mint

const mint = await getMint(
this.provider,
new solanaWeb3.PublicKey(tokenAddress)
Expand Down Expand Up @@ -349,9 +348,9 @@ class SolanaWallet {
/**
*
* @param cluster
* @returns {Promise<ISplTokenInfo[]>}
* @returns {Array<ISplTokenInfo>}
*/
getTokenList = async (cluster: 'mainnet-beta' | 'testnet' | 'devnet'): Promise<ISplTokenInfo[]> => {
getTokenList = async (cluster: 'mainnet-beta' | 'testnet' | 'devnet'): Promise<Array<ISplTokenInfo>> => {
try {
const response = await axios.get(SOLANA_TOKENLIST_URI)
if (response.data && response.data.tokens) {
Expand Down

0 comments on commit 2bfa229

Please sign in to comment.