repo_id
stringclasses 279
values | file_path
stringlengths 43
179
| content
stringlengths 1
4.18M
| __index_level_0__
int64 0
0
|
|---|---|---|---|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/LinkButton.cs
|
using UnityEngine;
using UnityEngine.UI;
namespace SolPlay.Scripts.Ui
{
[RequireComponent(typeof(Button))]
public class LinkButton : MonoBehaviour
{
Button button;
public string Url;
void Start()
{
button = GetComponent<Button>();
button.onClick.AddListener(OnButtonClicked);
}
private void OnButtonClicked()
{
Application.OpenURL(Url);
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/XpWidget.cs
|
using System.Collections;
using Frictionless;
using SolPlay.Scripts.Services;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace SolPlay.Scripts.Ui
{
public class XpWidget : MonoBehaviour
{
public Slider XPSlider;
public TextMeshProUGUI XpText;
public TextMeshProUGUI LevelText;
public bool AnimateAtStart = true;
private Coroutine animationCoroutine;
private uint shownXp;
private void Start()
{
MessageRouter.AddHandler<NewHighScoreLoadedMessage>(OnNewHighscoreLoadedMessage);
MessageRouter.AddHandler<NftLoadingFinishedMessage>(OnNftLoadingFinishedMessage);
if (!AnimateAtStart)
{
var totalScore = ServiceFactory.Resolve<HighscoreService>().GetTotalScore();
shownXp = totalScore;
}
AnimateXp();
}
private void OnNftLoadingFinishedMessage(NftLoadingFinishedMessage messge)
{
if (!AnimateAtStart)
{
var totalScore = ServiceFactory.Resolve<HighscoreService>().GetTotalScore();
shownXp = totalScore;
}
}
private void OnNewHighscoreLoadedMessage(NewHighScoreLoadedMessage message)
{
AnimateXp();
}
private void AnimateXp()
{
if (!gameObject.activeInHierarchy)
{
return;
}
if (animationCoroutine != null)
{
StopCoroutine(animationCoroutine);
animationCoroutine = null;
}
var totalScore = ServiceFactory.Resolve<HighscoreService>().GetTotalScore();
StartCoroutine(AnimateXpRoutine(shownXp, totalScore));
}
private IEnumerator AnimateXpRoutine(uint xp, uint newXp)
{
while (shownXp <= newXp)
{
SetData(shownXp);
yield return new WaitForSeconds(0.04f);
shownXp++;
}
}
public void SetData(uint xp)
{
int playerLevel = Mathf.FloorToInt(Mathf.Log(xp / 5 + 1, 2));
var nextLevelXp = GetNextLevelXp(playerLevel);
var lastLevelXp = GetNextLevelXp(playerLevel - 1);
XPSlider.minValue = lastLevelXp;
XPSlider.maxValue = nextLevelXp;
XPSlider.value = xp;
XpText.text = $"{xp - lastLevelXp} / {nextLevelXp - lastLevelXp}";
LevelText.text = (playerLevel + 1).ToString();
}
private int GetNextLevelXp(int currentLevel)
{
var totalXpNextLevel = 5 * (Mathf.Pow(2, currentLevel + 1) - 1);
return (int) totalXpNextLevel;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransferTokenPopupUiData.cs
|
using SolPlay.Orca;
using SolPlay.Scripts.Services;
namespace SolPlay.Scripts.Ui
{
public class TransferTokenPopupUiData : UiService.UiData
{
public Token TokenToTransfer;
public TransferTokenPopupUiData(Token token)
{
TokenToTransfer = token;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/SocketStatusWidget.cs.meta
|
fileFormatVersion: 2
guid: 58b2e15bcd1164500843ce65f112e477
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransferNftPopupUiData.cs.meta
|
fileFormatVersion: 2
guid: fb6573bf55c24789ab930852225d9e60
timeCreated: 1667325597
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransactionInfoSystem.cs.meta
|
fileFormatVersion: 2
guid: 69f96a61035a4f32bbf4140b1082fd2a
timeCreated: 1670259712
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TabBarComponent.cs.meta
|
fileFormatVersion: 2
guid: dec3ae7024023472b963be5ca2e5a343
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransactionInfoSystem.cs
|
using System;
using Frictionless;
using Solana.Unity.Rpc.Models;
using Solana.Unity.Rpc.Types;
using Solana.Unity.SDK;
using UnityEngine;
namespace SolPlay.Scripts.Ui
{
public class TransactionInfoSystem : MonoBehaviour
{
public TransactionInfoListItemView TransactionInfoListItemViewPrefab;
public GameObject Root;
void Start()
{
MessageRouter.AddHandler<ShowTransactionInfoMessage>(OnShowTransactionInfoMessage);
}
private void OnShowTransactionInfoMessage(ShowTransactionInfoMessage message)
{
SpawnTransactionInfoItemView(message.TransactionInfoObject);
}
private void OnDestroy()
{
MessageRouter.RemoveHandler<ShowTransactionInfoMessage>(OnShowTransactionInfoMessage);
}
private void SpawnTransactionInfoItemView(TransactionInfoObject transactionInfoObject)
{
var instance = Instantiate(TransactionInfoListItemViewPrefab, Root.transform);
instance.SetData(transactionInfoObject);
}
public class TransactionInfoObject
{
public string TransactionName;
public string Signature;
public Action<string> OnSignatureReady;
public Action<string> OnError;
public Commitment Commitment;
public WalletBase Wallet;
public TransactionInfoObject(WalletBase wallet, Commitment commitment, string transactionName)
{
Wallet = wallet;
Commitment = commitment;
TransactionName = transactionName;
}
}
public class ShowTransactionInfoMessage
{
public TransactionInfoObject TransactionInfoObject;
public ShowTransactionInfoMessage(TransactionInfoObject transactionInfoObject)
{
TransactionInfoObject = transactionInfoObject;
}
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/NftListScreen.cs.meta
|
fileFormatVersion: 2
guid: 75a8c1fae6132422e9ad618df29914e3
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/NftItemView.cs
|
using System;
using Cysharp.Threading.Tasks;
using Frictionless;
using Solana.Unity.SDK.Nft;
#if GLTFAST
using GLTFast;
#endif
using SolPlay.Scripts.Services;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace SolPlay.Scripts.Ui
{
/// <summary>
/// Show the image and the power level of a given Nft and can have a click handler
/// </summary>
public class NftItemView : MonoBehaviour
{
public Nft CurrentSolPlayNft;
public RawImage Icon;
public TextMeshProUGUI Headline;
public TextMeshProUGUI Description;
public TextMeshProUGUI PowerLevel;
public TextMeshProUGUI ErrorText;
public Button Button;
public GameObject SelectionGameObject;
public GameObject GltfRoot;
public GameObject IsLoadingDataRoot;
public GameObject LoadingErrorRoot;
#if GLTFAST
public GltfAsset GltfAsset;
#endif
public RenderTexture RenderTexture;
public Camera Camera;
public int RenderTextureSize = 75;
[Tooltip(
"Loading the 3D nfts from the animation url. Note thought that i can be a bit slow to load and the app may stuck a bit when instantiating ")]
public bool Load3DNfts;
private Action<NftItemView> onButtonClickedAction;
public async void SetData(Nft solPlayNft, Action<NftItemView> onButtonClicked)
{
if (solPlayNft == null)
{
return;
}
CurrentSolPlayNft = solPlayNft;
Icon.gameObject.SetActive(false);
GltfRoot.SetActive(false);
LoadingErrorRoot.gameObject.SetActive(false);
IsLoadingDataRoot.gameObject.SetActive(true);
PowerLevel.text = "Loading Image";
IsLoadingDataRoot.gameObject.SetActive(false);
if (Load3DNfts && !string.IsNullOrEmpty(solPlayNft.metaplexData.data.offchainData.animation_url))
{
Icon.gameObject.SetActive(true);
GltfRoot.SetActive(true);
RenderTexture = new RenderTexture(RenderTextureSize, RenderTextureSize, 1);
Camera.targetTexture = RenderTexture;
Camera.cullingMask = (1 << 19);
Icon.texture = RenderTexture;
#if GLTFAST
var isLoaded = await GltfAsset.Load(solPlayNft.MetaplexData.data.json.animation_url);
if (isLoaded)
{
if (!GltfAsset)
{
// In case it was destroyed while loading
return;
}
LayerUtils.SetRenderLayerRecursive(GltfAsset.gameObject, 19);
}
#endif
}
else if (solPlayNft.metaplexData.nftImage != null)
{
Icon.gameObject.SetActive(true);
Icon.texture = solPlayNft.metaplexData.nftImage.file;
}
var nftService = ServiceFactory.Resolve<NftService>();
SelectionGameObject.gameObject.SetActive(nftService.IsNftSelected(solPlayNft));
if (solPlayNft.metaplexData.data.offchainData != null)
{
Description.text = solPlayNft.metaplexData.data.offchainData.description;
}
Headline.text = solPlayNft.metaplexData.data.offchainData.name;
var nftPowerLevelService = ServiceFactory.Resolve<HighscoreService>();
if (nftPowerLevelService.TryGetHighscoreForSeed(solPlayNft.metaplexData.data.mint, out HighscoreEntry highscoreEntry))
{
PowerLevel.text = $"Score: {highscoreEntry.Highscore}";
}
else
{
PowerLevel.text = solPlayNft.metaplexData.data.offchainData.name;
}
Button.onClick.AddListener(OnButtonClicked);
onButtonClickedAction = onButtonClicked;
}
private void OnButtonClicked()
{
onButtonClickedAction?.Invoke(this);
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransferTokenPopup.cs
|
using BarcodeScanner;
using BarcodeScanner.Scanner;
using System;
using System.Collections;
using AllArt.Solana.Example;
using Frictionless;
using Solana.Unity.Wallet;
using SolPlay.DeeplinksNftExample.Scripts;
using SolPlay.DeeplinksNftExample.Utils;
using SolPlay.Orca;
using SolPlay.Scripts;
using SolPlay.Scripts.Services;
using SolPlay.Scripts.Ui;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
/// <summary>
/// Popup with a QrCode Scanner to scan Solana Addresses and to send a SPL Token.
/// </summary>
public class TransferTokenPopup : BasePopup
{
public TMP_InputField AdressInput;
public TMP_InputField AmountInput;
public RawImage CameraRawImage;
public AudioSource Audio;
public TokenItemView TokenItemView;
public Button TransferButton;
private float RestartTime;
private QrCodeData CurrentQrCodeData;
private IScanner BarcodeScanner;
private SolPlayNft currentNft;
private Token currentToken;
private new void Awake()
{
TransferButton.onClick.AddListener(OnTransferClicked);
base.Awake();
}
// Disable Screen Rotation on that screen (Not sure if needed)
void OnEnable()
{
// Screen.autorotateToPortrait = false;
// Screen.autorotateToPortraitUpsideDown = false;
}
private void Open(Token token)
{
currentToken = token;
TokenItemView.gameObject.SetActive(true);
TokenItemView.SetData(token, view => { });
}
public override void Open(UiService.UiData uiData)
{
var transferPopupUiData = (uiData as TransferTokenPopupUiData);
if (transferPopupUiData == null)
{
Debug.LogError("Wrong ui data for transfer popup");
return;
}
base.Open(uiData);
if (transferPopupUiData.TokenToTransfer != null)
{
Open(transferPopupUiData.TokenToTransfer);
}
//StartCoroutine(InitScanner());
}
public override void Close()
{
StartCoroutine(StopCamera(() => { base.Close(); }));
}
private async void OnTransferClicked()
{
if (!float.TryParse(AmountInput.text, out float amount))
{
return;
}
if (currentToken != null)
{
var transactionService = ServiceFactory.Resolve<TransactionService>();
Debug.Log($"amount: {amount}");
LoggingService
.Log($"Start transfer of {amount} {currentToken.symbol} to {AdressInput.text}", true);
if (currentToken.mint == OrcaWhirlpoolService.NativeMint)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var result = await transactionService.TransferSolanaToPubkey(walletHolderService.BaseWallet,
new PublicKey(AdressInput.text),
(long) (amount * SolanaUtils.SolToLamports));
}
else
{
// Transfer one token to to another wallet. USDC has 6 decimals to we need to send 1000000 for 1 USDC. Depends on the token
var pow = Mathf.Pow(10, currentToken.decimals);
var convertedToTokenAmount = (ulong) (amount * pow);
var result = await transactionService.TransferTokenToPubkey(
new PublicKey(AdressInput.text),
new PublicKey(currentToken.mint), convertedToTokenAmount);
}
}
Close();
}
IEnumerator InitScanner()
{
yield return Application.RequestUserAuthorization(UserAuthorization.WebCam);
if (Application.HasUserAuthorization(UserAuthorization.WebCam))
{
CameraRawImage.gameObject.SetActive(true);
Debug.Log("webcam found");
}
else
{
CameraRawImage.gameObject.SetActive(false);
Debug.Log("webcam not found");
}
// Create a basic scanner
BarcodeScanner = new Scanner();
BarcodeScanner.Camera.Play();
// Display the camera texture through a RawImage
BarcodeScanner.OnReady += (sender, arg) => { StartCoroutine(InitCameraImageNextFrame()); };
}
private IEnumerator InitCameraImageNextFrame()
{
yield return null;
// Set Orientation & Texture
CameraRawImage.transform.localEulerAngles = BarcodeScanner.Camera.GetEulerAngles();
CameraRawImage.transform.localScale = BarcodeScanner.Camera.GetScale();
CameraRawImage.texture = BarcodeScanner.Camera.Texture;
// Keep Image Aspect Ratio
var rect = CameraRawImage.GetComponent<RectTransform>();
var newHeight = rect.sizeDelta.x * BarcodeScanner.Camera.Height / BarcodeScanner.Camera.Width;
rect.sizeDelta = new Vector2(rect.sizeDelta.x, newHeight);
RestartTime = Time.realtimeSinceStartup;
}
/// <summary>
/// Start a scan and wait for the callback (wait 1s after a scan success to avoid scanning multiple time the same element)
/// </summary>
private void StartScanner()
{
BarcodeScanner.Scan((barCodeType, barCodeValue) =>
{
BarcodeScanner.Stop();
if (AdressInput.text.Length > 250)
{
AdressInput.text = "";
}
Debug.Log("Found: " + barCodeType + " / " + barCodeValue + "\n");
AdressInput.text = barCodeValue;
// You can do this if you want to add extra information in the QR code.
// I used this one to put a sol amount in for example and then use this to request an amount, like
// in solana pay
//CurrentQrCodeData = JsonUtility.FromJson<QrCodeData>(barCodeValue);
//Debug.Log($"Current data scanne: {CurrentQrCodeData.SolAdress} {CurrentQrCodeData.SolValue} ");
//TransferScreen.SetQrCodeData(qrCodeData);
RestartTime += Time.realtimeSinceStartup + 1f;
Audio.Play();
#if UNITY_ANDROID || UNITY_IOS
Handheld.Vibrate();
#endif
});
}
/// <summary>
/// The Update method from unity need to be propagated
/// </summary>
void Update()
{
if (!Root.gameObject.activeInHierarchy)
{
return;
}
if (BarcodeScanner == null)
{
return;
}
BarcodeScanner.Update();
// Check if the Scanner need to be started or restarted
if (RestartTime != 0 && RestartTime < Time.realtimeSinceStartup)
{
StartScanner();
RestartTime = 0;
}
}
/// <summary>
/// This coroutine is used because of a bug with unity (http://forum.unity3d.com/threads/closing-scene-with-active-webcamtexture-crashes-on-android-solved.363566/)
/// Trying to stop the camera in OnDestroy provoke random crash on Android
/// </summary>
/// <param name="callback"></param>
/// <returns></returns>
public IEnumerator StopCamera(Action callback)
{
// Stop Scanning
if (BarcodeScanner != null)
{
BarcodeScanner.Stop();
BarcodeScanner.Camera.Stop();
}
CameraRawImage.texture = null;
// Wait a bit
yield return new WaitForSeconds(0.1f);
callback.Invoke();
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TransferTokenPopupUiData.cs.meta
|
fileFormatVersion: 2
guid: 410a73b98f9b49b08c2de2bc64cec831
timeCreated: 1667820828
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/SolBalanceWidget.cs.meta
|
fileFormatVersion: 2
guid: bae9859e31324a0eb501c37ee3ff3e82
timeCreated: 1660074869
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/SolBalanceWidget.cs
|
using System;
using System.Collections;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
using codebase.utility;
using Solana.Unity.SDK;
using SolPlay.DeeplinksNftExample.Utils;
namespace SolPlay.Scripts.Ui
{
/// <summary>
/// Shows the sol balance of the connected wallet. Should be updated at certain points, after transactions for example.
/// </summary>
public class SolBalanceWidget : MonoBehaviour
{
public TextMeshProUGUI SolBalance;
public TextMeshProUGUI SolChangeText;
public TextMeshProUGUI PublicKey;
public Button CopyAddressButton;
private double lamportsChange;
private Coroutine disableSolChangeCoroutine;
private double currentLamports;
private void Awake()
{
if (CopyAddressButton)
{
CopyAddressButton.onClick.AddListener(OnCopyClicked);
}
}
private void OnCopyClicked()
{
Clipboard.Copy(Web3.Account.PublicKey);
}
private void OnEnable()
{
Web3.OnBalanceChange += OnSolBalanceChangedMessage;
}
private void OnDisable()
{
Web3.OnBalanceChange -= OnSolBalanceChangedMessage;
}
private void UpdateContent()
{
SolBalance.text = currentLamports.ToString("F2") + " sol";
if (PublicKey != null)
{
PublicKey.text = Web3.Account.PublicKey;
}
}
private void OnSolBalanceChangedMessage(double newLamports)
{
double balanceChange = newLamports - currentLamports;
if (balanceChange != 0 && Math.Abs(currentLamports - newLamports) > 0.00000001)
{
lamportsChange += balanceChange;
if (balanceChange > 0)
{
if (disableSolChangeCoroutine != null)
{
StopCoroutine(disableSolChangeCoroutine);
}
SolChangeText.text = "<color=green>+" + lamportsChange.ToString("F2") + "</color> ";
disableSolChangeCoroutine = StartCoroutine(DisableSolChangeDelayed());
}
else
{
if (balanceChange < -0.0001)
{
if (disableSolChangeCoroutine != null)
{
StopCoroutine(disableSolChangeCoroutine);
}
SolChangeText.text = "<color=red>" + lamportsChange.ToString("F2") + "</color> ";
disableSolChangeCoroutine = StartCoroutine(DisableSolChangeDelayed());
}
}
currentLamports = newLamports;
UpdateContent();
}
else
{
currentLamports = newLamports;
UpdateContent();
}
}
private IEnumerator DisableSolChangeDelayed()
{
SolChangeText.gameObject.SetActive(true);
yield return new WaitForSeconds(3);
lamportsChange = 0;
SolChangeText.gameObject.SetActive(false);
disableSolChangeCoroutine = null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/SafeArea.cs.meta
|
fileFormatVersion: 2
guid: db21dccead92d48f9a566e9132089246
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/PowerLevelWidget.cs
|
using Frictionless;
using SolPlay.Scripts.Services;
using TMPro;
using UnityEngine;
namespace SolPlay.Scripts.Ui
{
/// <summary>
/// Whenever a new NFT arrives this widget updates the total power level of all Nfts
/// </summary>
public class PowerLevelWidget : MonoBehaviour
{
public TextMeshProUGUI TotalPowerLevelText;
void Start()
{
MessageRouter.AddHandler<NftLoadedMessage>(OnNftArrived);
}
private void OnNftArrived(NftLoadedMessage message)
{
var totalPowerLevel = ServiceFactory.Resolve<NftPowerLevelService>().GetTotalPowerLevel();
TotalPowerLevelText.text = $"{totalPowerLevel}";
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/SocketStatusWidget.cs
|
using Frictionless;
using NativeWebSocket;
using SolPlay.Scripts.Services;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class SocketStatusWidget : MonoBehaviour
{
public TextMeshProUGUI StatusText;
public Button ReconnectButton;
private void Awake()
{
ReconnectButton.onClick.AddListener(OnReconnectClicked);
}
private void OnReconnectClicked()
{
var socketService = ServiceFactory.Resolve<SolPlayWebSocketService>();
StartCoroutine(socketService.Reconnect());
}
void Update()
{
var socketService = ServiceFactory.Resolve<SolPlayWebSocketService>();
if (socketService != null)
{
StatusText.text = "Socket: " + socketService.GetState().ToString();
ReconnectButton.gameObject.SetActive(socketService.GetState() == WebSocketState.Closed);
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/TextBlimp.cs.meta
|
fileFormatVersion: 2
guid: 22d5454ce0004ca7a11bb9802a2cd31a
timeCreated: 1656869262
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Ui/PowerLevelWidget.cs.meta
|
fileFormatVersion: 2
guid: d7a974a465082436e8ca678bbbc849c1
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/PhantomUtils.cs.meta
|
fileFormatVersion: 2
guid: 4ddac63c2c1d4db3b32ee97735bc5650
timeCreated: 1666513955
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/PhantomUtils.cs
|
using UnityEngine;
using UnityEngine.Networking;
namespace SolPlay.DeeplinksNftExample.Scripts
{
public class PhantomUtils
{
public static void OpenUrlInWalletBrowser(string url)
{
#if UNITY_IOS || UNITY_ANROID
string refUrl = UnityWebRequest.EscapeURL("SolPlay");
string escapedUrl = UnityWebRequest.EscapeURL(url);
string inWalletUrl = $"https://phantom.app/ul/browse/{url}?ref=solplay";
#else
string inWalletUrl = url;
#endif
Application.OpenURL(inWalletUrl);
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/SafeTask.cs
|
using System;
using System.Threading;
using System.Threading.Tasks;
namespace MarcosPereira.UnityUtilities {
/// <summary>
/// A replacement for `Task.Run()` that cancels tasks when exiting play
/// mode, which Unity doesn't do by default.
/// Also registers a UnobservedTaskException handler to prevent exceptions
/// from being swallowed in both Tasks and SafeTasks, when these are
/// unawaited or chained with `.ContinueWith()`.
/// </summary>
public static class SafeTask {
private static CancellationTokenSource cancellationTokenSource =
new CancellationTokenSource();
public static Task<TResult> Run<TResult>(Func<Task<TResult>> f) =>
SafeTask.Run<TResult>((object) f);
public static Task<TResult> Run<TResult>(Func<TResult> f) =>
SafeTask.Run<TResult>((object) f);
public static Task Run(Func<Task> f) => SafeTask.Run<object>((object) f);
public static Task Run(Action f) => SafeTask.Run<object>((object) f);
private static async Task<TResult> Run<TResult>(object f) {
// Exiting play mode by interrupting the editor with a code change
// does not properly terminate pending tasks running on a separate thread.
// To work around this, we only successfully return from SafeTasks if
// `Application.isPlaying` is the same as when execution started.
// See more at:
// https://forum.unity.com/threads/stopping-play-mode-by-pressing-play-button-or-by-changing-a-script-have-different-outcomes.1337852/#post-8449817
bool isPlayMode = UnityEngine.Application.isPlaying;
// We have to store a token and cannot simply query the source
// itself after awaiting, as the token source is replaced with a new
// one upon exiting play mode.
CancellationToken token = SafeTask.cancellationTokenSource.Token;
TResult result = default;
try {
// Pass token to Task.Run() as well, otherwise upon cancelling
// its status will change to faulted instead of cancelled.
// https://stackoverflow.com/a/72145763/2037431
if (f is Func<Task<TResult>> g) {
result = await Task.Run(() => g(), token);
} else if (f is Func<TResult> h) {
result = await Task.Run(() => h(), token);
} else if (f is Func<Task> i) {
await Task.Run(() => i(), token);
} else if (f is Action j) {
await Task.Run(() => j(), token);
}
} catch (Exception e) {
// We log unobserved exceptions with an UnobservedTaskException
// handler, but those are only handled when garbage collection happens.
// We thus force exceptions to be logged here - at least for SafeTasks.
// If a failing SafeTask is awaited, the exception will be logged twice, but that's
// ok.
UnityEngine.Debug.LogException(e);
throw;
}
if (
token.IsCancellationRequested ||
UnityEngine.Application.isPlaying != isPlayMode
) {
throw new OperationCanceledException(
"An asynchronous task has been cancelled due to entering or exiting play mode.",
token
);
}
return result;
}
#if UNITY_EDITOR
[UnityEditor.InitializeOnLoadMethod]
private static void OnLoad() {
// Prevent unobserved task exceptions from being swallowed.
// This happens when:
// * An unawaited Task fails;
// * A Task chained with `.ContinueWith()` fails and exceptions are
// not explicitly handled in the function passed to it.
//
// Note that this event handler works for both Tasks and SafeTasks.
//
// Also note that this handler may not fire right away. It seems to
// only run when garbage collection happens (for example, in the
// editor after script reloading).
// Experimentally, calling `System.GC.Collect()` after the exception
// (using a small `Task.Delay()` to ensure it runs after the
// exception is thrown) caused exceptions to be logged right away.
TaskScheduler.UnobservedTaskException +=
(_, e) => UnityEngine.Debug.LogException(e.Exception);
// Cancel pending `Task.Run()` calls when exiting play mode, as
// Unity won't do that for us.
// See "Limitations of async and await tasks" (https://docs.unity3d.com/2022.2/Documentation/Manual/overview-of-dot-net-in-unity.html)
// This only works in SafeTasks, so `Task.Run()` should never be
// used directly.
UnityEditor.EditorApplication.playModeStateChanged +=
(change) => {
if (
change == UnityEditor.PlayModeStateChange.ExitingPlayMode ||
change == UnityEditor.PlayModeStateChange.ExitingEditMode
) {
SafeTask.cancellationTokenSource.Cancel();
SafeTask.cancellationTokenSource.Dispose();
SafeTask.cancellationTokenSource = new CancellationTokenSource();
}
};
}
#endif
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/LayerUtils.cs
|
using UnityEngine;
namespace SolPlay.Utils
{
public class LayerUtils
{
public static void SetRenderLayerRecursive(GameObject go, int layer)
{
go.layer = layer;
var children = go.GetComponentsInChildren<Transform>(includeInactive: true);
foreach (var child in children)
{
child.gameObject.layer = layer;
}
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/LayerUtils.cs.meta
|
fileFormatVersion: 2
guid: c81aa9c615e74a629801f3fbfe6aa4ef
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/SolanaUtils.cs
|
using System;
namespace SolPlay.DeeplinksNftExample.Utils
{
public class SolanaUtils
{
public const long SolToLamports = 1000000000;
}
public static class ArrayUtils
{
public static T[] Slice<T>(this T[] arr, uint indexFrom, uint indexTo) {
if (indexFrom > indexTo) {
throw new ArgumentOutOfRangeException("indexFrom is bigger than indexTo!");
}
uint length = indexTo - indexFrom;
T[] result = new T[length];
Array.Copy(arr, indexFrom, result, 0, length);
return result;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/SafeTask.cs.meta
|
fileFormatVersion: 2
guid: 853375291816433488e97096c7d07f12
timeCreated: 1665053099
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/SolanaUtils.cs.meta
|
fileFormatVersion: 2
guid: 7b61f112d38e4181aae53789a9234644
timeCreated: 1660466982
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/UnityUtils.cs
|
using UnityEngine;
namespace SolPlay.Utils
{
public class UnityUtils
{
public static Bounds GetBoundsWithChildren(GameObject gameObject)
{
// GetComponentsInChildren() also returns components on gameobject which you call it on
// you don't need to get component specially on gameObject
Renderer[] renderers = gameObject.GetComponentsInChildren<Renderer>();
// If renderers.Length = 0, you'll get OutOfRangeException
// or null when using Linq's FirstOrDefault() and try to get bounds of null
Bounds bounds = renderers.Length > 0 ? renderers[0].bounds : new Bounds();
// Or if you like using Linq
// Bounds bounds = renderers.Length > 0 ? renderers.FirstOrDefault().bounds : new Bounds();
// Start from 1 because we've already encapsulated renderers[0]
for (int i = 1; i < renderers.Length; i++)
{
if (renderers[i].enabled)
{
bounds.Encapsulate(renderers[i].bounds);
}
}
return bounds;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Utils/UnityUtils.cs.meta
|
fileFormatVersion: 2
guid: 741e42d9968f43f69348aa588dff5158
timeCreated: 1667122368
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftMintingService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Frictionless;
using Solana.Unity.Metaplex.NFT.Library;
using Solana.Unity.Programs;
using Solana.Unity.Rpc.Builders;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Messages;
using Solana.Unity.Rpc.Types;
using Solana.Unity.Wallet;
using SolPlay.DeeplinksNftExample.Utils;
using UnityEngine;
using Creator = Solana.Unity.Metaplex.NFT.Library.Creator;
using MetadataProgram = Solana.Unity.Metaplex.NFT.Library.MetadataProgram;
using PublicKey = Solana.Unity.Wallet.PublicKey;
using Transaction = Solana.Unity.Rpc.Models.Transaction;
namespace SolPlay.Scripts.Services
{
public class NftMintingService : MonoBehaviour, IMultiSceneSingleton
{
public void Awake()
{
if (ServiceFactory.Resolve<NftMintingService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
public async Task<string> AuthorizeAccount(PublicKey accountToUnfreeze, PublicKey mint)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var localWallet = walletHolderService.BaseWallet;
var closeInstruction = TokenProgram.ThawAccount(
accountToUnfreeze,
mint,
localWallet.Account.PublicKey,
TokenProgram.ProgramIdKey);
var blockHash = await localWallet.ActiveRpcClient.GetLatestBlockHashAsync();
var signers = new List<Account> {localWallet.Account};
var transactionBuilder = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(localWallet.Account)
.AddInstruction(closeInstruction);
byte[] transaction = transactionBuilder.Build(signers);
Transaction deserializedTransaction = Transaction.Deserialize(transaction);
Transaction signedTransaction =
await walletHolderService.BaseWallet.SignTransaction(deserializedTransaction);
// This is a bit hacky, but in case of phantom wallet we need to replace the signature with the one that
// phantom produces
signedTransaction.Signatures.RemoveAt(0);
Debug.Log("signatures: " + signedTransaction.Signatures);
foreach (var sig in signedTransaction.Signatures)
{
Debug.Log(sig.PublicKey);
}
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()), true, Commitment.Confirmed);
if (!transactionSignature.WasSuccessful)
{
LoggingService
.Log("Mint was not successfull: " + transactionSignature.Reason, true);
}
else
{
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(transactionSignature.Result,
success =>
{
if (success)
{
LoggingService.Log("Mint Successfull! Woop woop!", true);
}
else
{
LoggingService.Log("Mint failed!", true);
}
MessageRouter.RaiseMessage(new NftMintFinishedMessage());
});
}
Debug.Log(transactionSignature.Reason);
return transactionSignature.Result;
}
public async Task<string> CloseAccount(PublicKey accountToClose)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var localWallet = walletHolderService.BaseWallet;
var closeInstruction = TokenProgram.CloseAccount(
accountToClose,
localWallet.Account.PublicKey,
localWallet.Account.PublicKey,
TokenProgram.ProgramIdKey);
var blockHash = await localWallet.ActiveRpcClient.GetLatestBlockHashAsync();
var signers = new List<Account> {localWallet.Account};
var transactionBuilder = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(localWallet.Account)
.AddInstruction(closeInstruction);
byte[] transaction = transactionBuilder.Build(signers);
Transaction deserializedTransaction = Transaction.Deserialize(transaction);
Transaction signedTransaction =
await walletHolderService.BaseWallet.SignTransaction(deserializedTransaction);
// This is a bit hacky, but in case of phantom wallet we need to replace the signature with the one that
// phantom produces
signedTransaction.Signatures.RemoveAt(0);
Debug.Log("signatures: " + signedTransaction.Signatures);
foreach (var sig in signedTransaction.Signatures)
{
Debug.Log(sig.PublicKey);
}
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()), true, Commitment.Confirmed);
if (!transactionSignature.WasSuccessful)
{
LoggingService
.Log("Mint was not successfull: " + transactionSignature.Reason, true);
}
else
{
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(transactionSignature.Result,
success =>
{
if (success)
{
LoggingService.Log("Mint Successfull! Woop woop!", true);
}
else
{
LoggingService.Log("Mint failed!", true);
}
MessageRouter.RaiseMessage(new NftMintFinishedMessage());
});
}
Debug.Log(transactionSignature.Reason);
return transactionSignature.Result;
}
public async Task<string> MintNftWithMetaData(string metaDataUri, string name, string symbol, Action<bool> mintDone = null)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var wallet = walletHolderService.BaseWallet;
var rpcClient = walletHolderService.BaseWallet.ActiveRpcClient;
Account mint = new Account();
var associatedTokenAccount = AssociatedTokenAccountProgram
.DeriveAssociatedTokenAccount(wallet.Account, mint.PublicKey);
var fromAccount = walletHolderService.BaseWallet.Account;
RequestResult<ResponseValue<ulong>> balance =
await rpcClient.GetBalanceAsync(wallet.Account.PublicKey, Commitment.Confirmed);
if (balance.Result != null && balance.Result.Value < SolanaUtils.SolToLamports / 10)
{
LoggingService.Log("Sol balance is low. Minting may fail", true);
}
Debug.Log($"Balance: {balance.Result.Value} ");
Debug.Log($"Mint key : {mint.PublicKey} ");
var blockHash = await rpcClient.GetLatestBlockHashAsync();
var rentMint = await rpcClient.GetMinimumBalanceForRentExemptionAsync(
TokenProgram.MintAccountDataSize,
Commitment.Confirmed
);
var rentToken = await rpcClient.GetMinimumBalanceForRentExemptionAsync(
TokenProgram.TokenAccountDataSize,
Commitment.Confirmed
);
//2. create a mint and a token
var createMintAccount = SystemProgram.CreateAccount(
fromAccount,
mint,
rentMint.Result,
TokenProgram.MintAccountDataSize,
TokenProgram.ProgramIdKey
);
var initializeMint = TokenProgram.InitializeMint(
mint.PublicKey,
0,
fromAccount.PublicKey,
fromAccount.PublicKey
);
var createTokenAccount = AssociatedTokenAccountProgram.CreateAssociatedTokenAccount(
fromAccount,
fromAccount,
mint.PublicKey);
var mintTo = TokenProgram.MintTo(
mint.PublicKey,
associatedTokenAccount,
1,
fromAccount.PublicKey
);
// If you freeze the account the users will not be able to transfer the NFTs anywhere or burn them
/*var freezeAccount = TokenProgram.FreezeAccount(
tokenAccount,
mintAccount,
fromAccount,
TokenProgram.ProgramIdKey
);*/
// PDA Metadata
PublicKey metadataAddressPDA;
byte nonce;
PublicKey.TryFindProgramAddress(
new List<byte[]>()
{
Encoding.UTF8.GetBytes("metadata"),
MetadataProgram.ProgramIdKey,
mint.PublicKey
},
MetadataProgram.ProgramIdKey,
out metadataAddressPDA,
out nonce
);
Console.WriteLine($"PDA METADATA: {metadataAddressPDA}");
// PDA master edition (Makes sure there can only be one minted)
PublicKey masterEditionAddress;
PublicKey.TryFindProgramAddress(
new List<byte[]>()
{
Encoding.UTF8.GetBytes("metadata"),
MetadataProgram.ProgramIdKey,
mint.PublicKey,
Encoding.UTF8.GetBytes("edition"),
},
MetadataProgram.ProgramIdKey,
out masterEditionAddress,
out nonce
);
Console.WriteLine($"PDA MASTER: {masterEditionAddress}");
// Craetors
var creator1 = new Creator(fromAccount.PublicKey, 100, false);
// Meta Data
var data = new Metadata()
{
name = name,
symbol = symbol,
uri = metaDataUri,
creators = new List<Creator>() {creator1},
sellerFeeBasisPoints = 77
};
var signers = new List<Account> {fromAccount, mint};
var transactionBuilder = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(fromAccount)
.AddInstruction(createMintAccount)
.AddInstruction(initializeMint)
.AddInstruction(createTokenAccount)
.AddInstruction(mintTo)
//.AddInstruction(freezeAccount)
.AddInstruction(
MetadataProgram.CreateMetadataAccount(
metadataAddressPDA, // PDA
mint,
fromAccount.PublicKey,
fromAccount.PublicKey,
fromAccount.PublicKey, // update Authority
data, // DATA
TokenStandard.NonFungible,
true,
true, // ISMUTABLE,
masterEditionKey: null,
1,
0UL,
MetadataVersion.V3
)
)
.AddInstruction(
MetadataProgram.SignMetadata(
metadataAddressPDA,
creator1.key
)
)
.AddInstruction(
MetadataProgram.PuffMetada(
metadataAddressPDA
)
)
/*.AddInstruction(
MetadataProgram.CreateMasterEdition(
1,
masterEditionAddress,
mintAccount,
fromAccount.PublicKey,
fromAccount.PublicKey,
fromAccount.PublicKey,
metadataAddressPDA
)
)*/;
var tx = Transaction.Deserialize(transactionBuilder.Build(new List<Account> {fromAccount, mint}));
var res = await walletHolderService.BaseWallet.SignAndSendTransaction(tx, true, Commitment.Confirmed);
Debug.Log(res.Result);
if (!res.WasSuccessful)
{
mintDone?.Invoke(false);
LoggingService
.Log("Mint was not successfull: " + res.Reason, true);
}
else
{
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(res.Result,
success =>
{
mintDone?.Invoke(success);
LoggingService.Log("Mint Successfull! Woop woop!", true);
MessageRouter.RaiseMessage(new NftMintFinishedMessage());
}, null, TransactionService.TransactionResult.confirmed);
}
return res.Result;
}
public async void MintNftWithoutMetaDat()
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var wallet = walletHolderService.BaseWallet;
var rpcClient = walletHolderService.BaseWallet.ActiveRpcClient;
Account mintAccount = new Account();
Account tokenAccount = new Account();
var fromAccount = walletHolderService.BaseWallet.Account;
RequestResult<ResponseValue<ulong>> balance = await rpcClient.GetBalanceAsync(wallet.Account.PublicKey);
Debug.Log($"Balance: {balance.Result.Value} ");
Debug.Log($"Mint key : {mintAccount.PublicKey} ");
var blockHash = await rpcClient.GetLatestBlockHashAsync();
var rentMint = await rpcClient.GetMinimumBalanceForRentExemptionAsync(
TokenProgram.MintAccountDataSize,
Commitment.Confirmed
);
var rentToken = await rpcClient.GetMinimumBalanceForRentExemptionAsync(
TokenProgram.TokenAccountDataSize,
Commitment.Confirmed
);
Debug.Log($"Token key : {tokenAccount.PublicKey} ");
//2. create a mint and a token
var createMintAccount = SystemProgram.CreateAccount(
fromAccount,
mintAccount,
rentMint.Result,
TokenProgram.MintAccountDataSize,
TokenProgram.ProgramIdKey
);
var initializeMint = TokenProgram.InitializeMint(
mintAccount.PublicKey,
0,
fromAccount.PublicKey
);
var createTokenAccount = SystemProgram.CreateAccount(
fromAccount,
tokenAccount,
rentToken.Result,
TokenProgram.TokenAccountDataSize,
TokenProgram.ProgramIdKey
);
var initializeMintAccount = TokenProgram.InitializeAccount(
tokenAccount.PublicKey,
mintAccount.PublicKey,
fromAccount.PublicKey
);
var mintTo = TokenProgram.MintTo(
mintAccount.PublicKey,
tokenAccount,
1,
fromAccount.PublicKey
);
byte[] transaction = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(fromAccount)
.AddInstruction(createMintAccount)
.AddInstruction(initializeMint)
.AddInstruction(createTokenAccount)
.AddInstruction(initializeMintAccount)
.AddInstruction(mintTo)
.Build(new List<Account> {fromAccount, mintAccount, tokenAccount});
Console.WriteLine($"TX1.Length {transaction.Length}");
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(transaction), false, Commitment.Confirmed);
if (transactionSignature.WasSuccessful)
{
Debug.Log($"Send transaction to create mint with id: {mintAccount}");
}
else
{
Debug.Log("There was an error creating mint: {transactionSignature.Reason}");
}
}
/// <summary>
/// In case you have a mint and want to add meta data to it.
/// I recommend to use MintNftWithMetaData instead.
/// </summary>
/// <param name="mint"></param>
/// <param name="metaDataUri"></param>
public async void AddMetaDataToMint(PublicKey mint, string metaDataUri)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var wallet = walletHolderService.BaseWallet;
var rpcClient = walletHolderService.BaseWallet.ActiveRpcClient;
var fromAccount = wallet.Account;
var mintAccount = mint;
var blockHash = await rpcClient.GetLatestBlockHashAsync();
// PDA METADATA
PublicKey metadataAddress;
byte nonce;
PublicKey.TryFindProgramAddress(
new List<byte[]>()
{
Encoding.UTF8.GetBytes("metadata"),
MetadataProgram.ProgramIdKey,
mintAccount
},
MetadataProgram.ProgramIdKey,
out metadataAddress,
out nonce
);
Console.WriteLine($"PDA METADATA: {metadataAddress}");
// PDA MASTER EDITION
PublicKey masterEditionAddress;
PublicKey.TryFindProgramAddress(
new List<byte[]>()
{
Encoding.UTF8.GetBytes("metadata"),
MetadataProgram.ProgramIdKey,
mintAccount,
Encoding.UTF8.GetBytes("edition")
},
MetadataProgram.ProgramIdKey,
out masterEditionAddress,
out nonce
);
Console.WriteLine($"PDA MASTER: {masterEditionAddress}");
// CREATORS
var creator1 = new Creator(fromAccount.PublicKey, 100);
// DATA
var data = new Metadata()
{
name = "Super NFT",
symbol = "SolPlay",
uri = metaDataUri,
creators = new List<Creator>() {creator1},
sellerFeeBasisPoints = 77,
};
var transaction = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(fromAccount.PublicKey)
.AddInstruction(
MetadataProgram.CreateMetadataAccount(
metadataAddress, // PDA
mintAccount, // MINT
fromAccount.PublicKey, // mint AUTHORITY
fromAccount.PublicKey, // PAYER
fromAccount.PublicKey, // update Authority
data: data, // DATA
TokenStandard.NonFungible,
true,
true,
null,
1,
0UL,
Solana.Unity.Metaplex.NFT.Library.MetadataVersion.V1
)
)
.AddInstruction(
MetadataProgram.SignMetadata(
metadataAddress,
creator1.key
)
)
.AddInstruction(
MetadataProgram.PuffMetada(
metadataAddress
)
)
.AddInstruction(
MetadataProgram.CreateMasterEdition(
1,
masterEditionAddress,
mintAccount,
fromAccount.PublicKey,
fromAccount.PublicKey,
fromAccount.PublicKey,
metadataAddress
)
)
.Build(new List<Account> {fromAccount});
Console.WriteLine($"TX2.Length {transaction.Length}");
var txSim2 = await rpcClient.SimulateTransactionAsync(transaction);
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(transaction), false, Commitment.Confirmed);
Debug.Log(transactionSignature.Reason);
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/TransactionService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
using Frictionless;
using Newtonsoft.Json;
using Org.BouncyCastle.Security;
using Solana.Unity.Programs;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Messages;
using Solana.Unity.Rpc.Models;
using Solana.Unity.Rpc.Types;
using Solana.Unity.SDK;
using Solana.Unity.SDK.Nft;
using Solana.Unity.Wallet;
using SolPlay.Scripts.Ui;
using UnityEngine;
using SystemProgram = Solana.Unity.Programs.SystemProgram;
namespace SolPlay.Scripts.Services
{
/// <summary>
/// Establishes a secure connection with phantom wallet and gets the public key from the wallet.
/// </summary>
public class TransactionService : MonoBehaviour, IMultiSceneSingleton
{
public enum TransactionResult
{
processed = 0,
confirmed = 1,
finalized = 2
}
public bool ShowBlimpsForTransactions = true;
public bool PollLatestBlockHash;
private string latestBlockHash;
private void Awake()
{
if (ServiceFactory.Resolve<TransactionService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
MessageRouter.AddHandler<WalletLoggedInMessage>(OnLoggedInMessage);
}
private void OnLoggedInMessage(WalletLoggedInMessage message)
{
if (PollLatestBlockHash)
{
StartCoroutine(PollRecentBlockHash());
}
}
private IEnumerator PollRecentBlockHash()
{
while (true)
{
UpdateRecentBlockHash();
yield return new WaitForSeconds(5f);
}
}
private async void UpdateRecentBlockHash()
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var blockHash = await walletHolderService.BaseWallet.ActiveRpcClient.GetLatestBlockHashAsync();
if (blockHash.WasSuccessful)
{
latestBlockHash = blockHash.Result.Value.Blockhash;
}
}
/// <summary>
/// await Task.Delay() does not work properly on webgl so we have to use a coroutine instead
/// TODO: Switch this function to use UniTask. Will work in WebGL and can be delayed then
/// </summary>
public void CheckSignatureStatus(string signature,
Action<bool> onSignatureFinalized = null,
Action<TransactionMetaSlotInfo> onError = null,
TransactionResult transactionResult = TransactionResult.confirmed)
{
if (string.IsNullOrEmpty(signature))
{
onSignatureFinalized?.Invoke(false);
MessageRouter.RaiseMessage(
new BlimpSystem.ShowLogMessage($"Signature was empty: {signature}."));
}
else
{
StartCoroutine(CheckSignatureStatusRoutine(signature, onSignatureFinalized,onError, transactionResult));
}
}
private IEnumerator CheckSignatureStatusRoutine(string signature,
Action<bool> onSignatureFinalized,
Action<TransactionMetaSlotInfo> onError = null,
TransactionResult transactionResult = TransactionResult.confirmed)
{
var wallet = ServiceFactory.Resolve<WalletHolderService>().BaseWallet;
bool transactionFinalized = false;
int counter = 0;
int maxTries = 30;
while (!transactionFinalized && counter < maxTries)
{
counter++;
Task<RequestResult<ResponseValue<List<SignatureStatusInfo>>>> task =
wallet.ActiveRpcClient.GetSignatureStatusesAsync(new List<string>() {signature}, true);
yield return new WaitUntil(() => task.IsCompleted);
RequestResult<ResponseValue<List<SignatureStatusInfo>>> signatureResult = task.Result;
if (signatureResult.Result == null)
{
MessageRouter.RaiseMessage(
new BlimpSystem.ShowLogMessage($"There is no transaction for Signature: {signature}."));
yield return new WaitForSeconds(1.5f);
continue;
}
yield return new WaitForSeconds(0.5f);
foreach (var signatureStatusInfo in signatureResult.Result.Value)
{
if (signatureStatusInfo == null)
{
LoggingService
.Log($"Waiting for signature. Try: {counter}",
ShowBlimpsForTransactions);
}
else
{
if (signatureStatusInfo.ConfirmationStatus ==
Enum.GetName(typeof(TransactionResult), transactionResult) ||
signatureStatusInfo.ConfirmationStatus == Enum.GetName(typeof(TransactionResult),
TransactionResult.finalized))
{
LoggingService
.Log("Transaction " + signatureStatusInfo.ConfirmationStatus,
ShowBlimpsForTransactions);
if (signatureStatusInfo.Error != null)
{
LoggingService
.LogWarning("Transaction Error" + signatureStatusInfo.Error.InstructionError.Type,
true);
Debug.LogError(signatureStatusInfo.Error.InstructionError);
ParseAndCheckError(wallet, signature, onError);
}
MessageRouter.RaiseMessage(new TokenValueChangedMessage());
transactionFinalized = true;
onSignatureFinalized?.Invoke(true);
}
else
{
LoggingService.Log(
$"Signature result {signatureStatusInfo.Confirmations}/31 status: {signatureStatusInfo.ConfirmationStatus} target: {Enum.GetName(typeof(TransactionResult), transactionResult)}",
ShowBlimpsForTransactions);
}
}
}
yield return new WaitForSeconds(0.5f);
}
if (counter >= maxTries)
{
onSignatureFinalized?.Invoke(false);
MessageRouter.RaiseMessage(
new BlimpSystem.ShowLogMessage(
$"Tried {counter} times. The transaction probably failed :( "));
}
}
private async void ParseAndCheckError(WalletBase wallet, string signature, Action<TransactionMetaSlotInfo> onError = null)
{
RequestResult<TransactionMetaSlotInfo> metaSlot =
await wallet.ActiveRpcClient.GetTransactionAsync(signature, Commitment.Confirmed);
if (metaSlot.Result != null)
{
onError?.Invoke(metaSlot.Result);
}
}
public async Task<RequestResult<string>> TransferNftToPubkey(PublicKey destination, Nft nft,
Commitment commitment = Commitment.Confirmed)
{
var wallHolderService = ServiceFactory.Resolve<WalletHolderService>();
PublicKey destinationTokenAccount =
AssociatedTokenAccountProgram.DeriveAssociatedTokenAccount(destination,
new PublicKey(nft.metaplexData.data.mint));
var tokenAccounts =
await wallHolderService.BaseWallet.ActiveRpcClient.GetTokenAccountsByOwnerAsync(destination,
new PublicKey(nft.metaplexData.data.mint));
var blockHash = await wallHolderService.BaseWallet.ActiveRpcClient.GetLatestBlockHashAsync();
var transaction = new Transaction
{
RecentBlockHash = blockHash.Result.Value.Blockhash,
FeePayer = wallHolderService.BaseWallet.Account.PublicKey,
Instructions = new List<TransactionInstruction>(),
Signatures = new List<SignaturePubKeyPair>()
};
// We only need to create the token account for the destination because we cant send anything anyway if
// there is no account yet and we only create it if it does not exist yet.
if (tokenAccounts.Result == null || tokenAccounts.Result.Value.Count == 0)
{
transaction.Instructions.Add(
AssociatedTokenAccountProgram.CreateAssociatedTokenAccount(
wallHolderService.BaseWallet.Account.PublicKey,
destination,
new PublicKey(nft.metaplexData.data.mint)));
}
var associatedTokenAddress =
AssociatedTokenAccountProgram.DeriveAssociatedTokenAccount(wallHolderService.BaseWallet.Account.PublicKey, new PublicKey(nft.metaplexData.data.mint));
transaction.Instructions.Add(
TokenProgram.Transfer(
associatedTokenAddress,
destinationTokenAccount,
1,
wallHolderService.BaseWallet.Account.PublicKey
));
var signedTransaction = await wallHolderService.BaseWallet.SignTransaction(transaction);
var transactionSignature =
await wallHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()), true, Commitment.Confirmed);
CheckSignatureStatus(transactionSignature.Result);
MessageRouter.RaiseMessage(new NftMintFinishedMessage());
MessageRouter.RaiseMessage(new TokenValueChangedMessage());
return transactionSignature;
}
public async Task<RequestResult<string>> TransferTokenToPubkey(PublicKey destination, PublicKey tokenMint,
ulong amount, Commitment commitment = Commitment.Confirmed)
{
var wallHolderService = ServiceFactory.Resolve<WalletHolderService>();
PublicKey localTokenAccount = AssociatedTokenAccountProgram.DeriveAssociatedTokenAccount(
wallHolderService.BaseWallet.Account.PublicKey, tokenMint);
PublicKey destinationTokenAccount =
AssociatedTokenAccountProgram.DeriveAssociatedTokenAccount(destination, tokenMint);
var tokenAccounts =
await wallHolderService.BaseWallet.ActiveRpcClient.GetTokenAccountsByOwnerAsync(destination, tokenMint,
null, commitment);
var blockHash = await wallHolderService.BaseWallet.ActiveRpcClient.GetLatestBlockHashAsync();
var transaction = new Transaction
{
RecentBlockHash = blockHash.Result.Value.Blockhash,
FeePayer = wallHolderService.BaseWallet.Account.PublicKey,
Instructions = new List<TransactionInstruction>(),
Signatures = new List<SignaturePubKeyPair>()
};
// We only need to create the token account for the destination because we cant send anything anyway if
// there is no account yet and we only create it if it does not exist yet.
if (tokenAccounts.Result == null || tokenAccounts.Result.Value.Count == 0)
{
transaction.Instructions.Add(
AssociatedTokenAccountProgram.CreateAssociatedTokenAccount(
wallHolderService.BaseWallet.Account.PublicKey,
destination,
tokenMint));
}
transaction.Instructions.Add(
TokenProgram.Transfer(
localTokenAccount,
destinationTokenAccount,
amount,
wallHolderService.BaseWallet.Account.PublicKey
));
var signedTransaction = await wallHolderService.BaseWallet.SignTransaction(transaction);
var transactionSignature =
await wallHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()), true, commitment);
CheckSignatureStatus(transactionSignature.Result);
MessageRouter.RaiseMessage(new TokenValueChangedMessage());
return transactionSignature;
}
/// <summary>
/// Use to send a single instruction. This function will wrap it in to a transaction and show it
/// on screen if the blimp system oder transaction info widget are present.
/// </summary>
/// <param name="transactionName"> Will be shown in the ui when the Transaction info widget is present</param>
public void SendInstructionInNextBlock(string transactionName,
TransactionInstruction instruction,
WalletBase wallet,
Action<RequestResult<string>> onTransactionDone = null,
Action<TransactionMetaSlotInfo> onError = null,
Commitment commitment = Commitment.Confirmed)
{
SendInstructionInNextBlockInternal(transactionName, new List<TransactionInstruction>(){instruction}, wallet, onTransactionDone, onError, commitment);
}
public void SendInstructionsInNextBlock(string transactionName,
List<TransactionInstruction> instruction,
WalletBase wallet,
Action<RequestResult<string>> onTransactionDone = null,
Action<TransactionMetaSlotInfo> onError = null,
Commitment commitment = Commitment.Confirmed)
{
SendInstructionInNextBlockInternal(transactionName, instruction, wallet, onTransactionDone, onError, commitment);
}
private async void SendInstructionInNextBlockInternal(string transactionName,
List<TransactionInstruction> instruction,
WalletBase wallet,
Action<RequestResult<string>> onTransactionDone = null,
Action<TransactionMetaSlotInfo> onError = null,
Commitment commitment = Commitment.Confirmed)
{
TransactionInfoSystem.TransactionInfoObject transactionInfoObject =
new TransactionInfoSystem.TransactionInfoObject(wallet, commitment, transactionName);
MessageRouter.RaiseMessage(new TransactionInfoSystem.ShowTransactionInfoMessage(transactionInfoObject));
if (!PollLatestBlockHash)
{
RequestResult<ResponseValue<LatestBlockHash>> blockHashResult =
await wallet.ActiveRpcClient.GetLatestBlockHashAsync(Commitment.Confirmed);
if (blockHashResult != null)
{
if (blockHashResult.Result != null)
{
latestBlockHash = blockHashResult.Result.Value.Blockhash;
Debug.LogWarning(latestBlockHash);
}
else
{
PrintBlockHashError(blockHashResult, transactionInfoObject);
return;
}
}
else
{
LoggingService.Log("Could not load latest block hash. Skipping", true);
return;
}
}
SendSingleInstruction(transactionName, instruction, transactionInfoObject, wallet, onTransactionDone, onError,
latestBlockHash);
}
private static void PrintBlockHashError(RequestResult<ResponseValue<LatestBlockHash>> blockHashResult,
TransactionInfoSystem.TransactionInfoObject transactionInfoObject)
{
var message = "";
if (blockHashResult.ServerErrorCode == 429)
{
message = $"Rate limit reached!";
LoggingService.Log(message, true);
}
else
{
message = $"Rpc error: {blockHashResult.ServerErrorCode}";
}
transactionInfoObject.OnError?.Invoke(message);
}
public async void SendSingleInstruction(string transactionName, List<TransactionInstruction> instruction,
TransactionInfoSystem.TransactionInfoObject transactionInfoObject, WalletBase wallet,
Action<RequestResult<string>> onTransactionDone = null,
Action<TransactionMetaSlotInfo> onError = null,
string blockHashOverride = null,
Commitment commitment = Commitment.Confirmed)
{
string blockHash = null;
if (blockHashOverride == null)
{
var result = await wallet.ActiveRpcClient.GetLatestBlockHashAsync(commitment);
if (result.Result == null)
{
LoggingService.Log($"Block hash null. Ignore {transactionName}", true);
onTransactionDone?.Invoke(null);
return;
}
blockHash = result.Result.Value.Blockhash;
}
else
{
blockHash = blockHashOverride;
}
Transaction transaction = new Transaction();
transaction.FeePayer = wallet.Account.PublicKey;
transaction.RecentBlockHash = blockHash;
transaction.Signatures = new List<SignaturePubKeyPair>();
transaction.Instructions = new List<TransactionInstruction>();
foreach (var instr in instruction)
{
transaction.Instructions.Add(instr);
}
Transaction signedTransaction = await wallet.SignTransaction(transaction);
RequestResult<string> signature = await wallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()),
true, Commitment.Confirmed);
Debug.Log("Signature: " + signature + " result:" + signature.Result);
Debug.LogWarning(JsonConvert.SerializeObject(signature, Formatting.Indented));
transactionInfoObject.OnSignatureReady?.Invoke(signature.Result);
if (!signature.WasSuccessful)
{
LoggingService.LogWarning(signature.Reason, true);
}
if (onTransactionDone != null || onError != null)
{
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(signature.Result, b =>
{
MessageRouter.RaiseMessage(new TokenValueChangedMessage());
onTransactionDone?.Invoke(signature);
}, onError);
}
}
public async Task<RequestResult<string>> TransferSolanaToPubkey(WalletBase wallet, string toPublicKey,
long lamports)
{
Debug.Log($"From {wallet.Account.PublicKey} to {toPublicKey} {lamports}");
var blockHash = await wallet.ActiveRpcClient.GetLatestBlockHashAsync();
if (blockHash.Result == null)
{
LoggingService.Log("Block hash null. Connected to internet?", true);
return null;
}
var transferSolTransaction =
CreateUnsignedTransferSolTransaction(wallet.Account.PublicKey, toPublicKey, blockHash, lamports);
RequestResult<string> requestResult =
await wallet.SignAndSendTransaction(transferSolTransaction,
true, Commitment.Confirmed);
CheckSignatureStatus(requestResult.Result);
return requestResult;
}
private static byte[] GenerateRandomBytes(int size)
{
var buffer = new byte[size];
new SecureRandom().NextBytes(buffer);
return buffer;
}
private Transaction CreateUnsignedTransferSolTransaction(PublicKey from, string toPublicKey,
RequestResult<ResponseValue<LatestBlockHash>> blockHash, long lamports)
{
Transaction transaction = new Transaction();
transaction.Instructions = new List<TransactionInstruction>();
var transactionInstruction = SystemProgram.Transfer(from,
new PublicKey(toPublicKey), (ulong) lamports);
transaction.Instructions.Add(transactionInstruction);
transaction.FeePayer = from;
transaction.RecentBlockHash = blockHash.Result.Value.Blockhash;
transaction.Signatures = new List<SignaturePubKeyPair>();
return transaction;
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/LoggingService.cs.meta
|
fileFormatVersion: 2
guid: 2bd017a686aa4ccfbef5bd6febc645ba
timeCreated: 1662895767
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/UiService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using Frictionless;
using SolPlay.Scripts.Ui;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
public class UiService : MonoBehaviour, IMultiSceneSingleton
{
[Serializable]
public class UiRegistration
{
public BasePopup PopupPrefab;
public ScreenType ScreenType;
}
public enum ScreenType
{
OrcaSwapPopup,
TransferNftPopup,
TransferTokenPopup,
InGameWalletPopup,
NftListPopup
}
public class UiData
{
}
public List<UiRegistration> UiRegistrations = new List<UiRegistration>();
private readonly Dictionary<ScreenType, BasePopup> openPopups = new Dictionary<ScreenType, BasePopup>();
public void Awake()
{
ServiceFactory.RegisterSingleton(this);
}
public void OpenPopup(ScreenType screenType, UiData uiData)
{
if (openPopups.TryGetValue(screenType, out BasePopup basePopup))
{
basePopup.Open(uiData);
return;
}
foreach (var uiRegistration in UiRegistrations)
{
if (uiRegistration.ScreenType == screenType)
{
BasePopup newPopup = Instantiate(uiRegistration.PopupPrefab);
openPopups.Add(screenType, newPopup);
newPopup.Open(uiData);
}
}
}
public IEnumerator HandleNewSceneLoaded()
{
openPopups.Clear();
yield return null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/WalletHolderService.cs
|
using System;
using System.Collections;
using System.Threading.Tasks;
using Frictionless;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Types;
using Solana.Unity.SDK;
using Solana.Unity.Wallet;
using Solana.Unity.Wallet.Bip39;
using SolPlay.DeeplinksNftExample.Utils;
using SolPlay.Scripts.Ui;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
public enum WalletType { Phantom, Backpack }
public class WalletLoggedInMessage
{
public WalletBase Wallet;
}
public class SolBalanceChangedMessage
{
public double SolBalanceChange;
public bool IsInGameWallet;
public SolBalanceChangedMessage(double solBalanceChange = 0, bool isInGameWallet = false)
{
SolBalanceChange = solBalanceChange;
IsInGameWallet = isInGameWallet;
}
}
public class WalletHolderService : MonoBehaviour, IMultiSceneSingleton
{
// These are the custom urls to connect to local host with socket
//customRpc: http://localhost:8899/
//webSocketsRpc: ws://localhost:8090/
public string DevnetLoginRPCUrl = "";
public string MainNetRpcUrl = "";
public PhantomWalletOptions PhantomWalletOptions;
public SolanaWalletAdapterOptions WebGlWalletOptions;
[NonSerialized] public WalletBase BaseWallet;
public bool IsLoggedIn { get; private set; }
public bool AutomaticallyConnectWebSocket = true;
public long BaseWalletSolBalance;
public long InGameWalletSolBalance;
public SolanaWalletAdapter DeeplinkWallet;
public InGameWallet InGameWallet;
public bool TwoWalletSetup;
private void Awake()
{
if (ServiceFactory.Resolve<WalletHolderService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
public enum Network
{
Mainnet,
Devnet,
LocalNet
}
public async Task<Account> Login(Network devNetLogin, bool singleWalletSetup)
{
string rpcUrl = null;
RpcCluster cluster = RpcCluster.DevNet;
switch (devNetLogin)
{
case Network.Mainnet:
rpcUrl = MainNetRpcUrl;
cluster = RpcCluster.MainNet;
break;
case Network.Devnet:
rpcUrl = DevnetLoginRPCUrl;
cluster = RpcCluster.DevNet;
break;
case Network.LocalNet:
rpcUrl = "http://localhost:8899/";
cluster = RpcCluster.DevNet;
break;
default:
throw new ArgumentOutOfRangeException(nameof(devNetLogin), devNetLogin, null);
}
if (Application.platform == RuntimePlatform.WebGLPlayer || Application.platform == RuntimePlatform.Android || Application.platform == RuntimePlatform.IPhonePlayer)
{
DeeplinkWallet = new SolanaWalletAdapter(WebGlWalletOptions, cluster, rpcUrl, null, true);
}
InGameWallet = new InGameWallet(cluster, rpcUrl, null, true);
TwoWalletSetup = singleWalletSetup;
var newMnemonic = new Mnemonic(WordList.English, WordCount.Twelve);
var account = await InGameWallet.Login("1234") ??
await InGameWallet.CreateAccount(newMnemonic.ToString(), "1234");
if (singleWalletSetup)
{
BaseWallet = InGameWallet;
// Copy this private key if you want to import your wallet into phantom. Dont share it with anyone.
// var privateKeyString = account.PrivateKey.Key;
double sol = await BaseWallet.GetBalance();
if (sol < 0.8)
{
await RequestAirdrop();
}
}
else
{
BaseWallet = DeeplinkWallet;
await BaseWallet.Login();
}
IsLoggedIn = true;
MessageRouter.RaiseMessage(new WalletLoggedInMessage()
{
Wallet = BaseWallet
});
if (AutomaticallyConnectWebSocket)
{
var solPlayWebSocketService = ServiceFactory.Resolve<SolPlayWebSocketService>();
if (solPlayWebSocketService != null)
{
solPlayWebSocketService.Connect(BaseWallet.ActiveRpcClient.NodeAddress.ToString());
}
SubscribeToWalletAccountChanges();
}
var baseSolBalance = await BaseWallet.ActiveRpcClient.GetBalanceAsync(BaseWallet.Account.PublicKey, Commitment.Confirmed);
if (baseSolBalance.Result != null)
{
BaseWalletSolBalance = (long) baseSolBalance.Result.Value;
MessageRouter.RaiseMessage(new SolBalanceChangedMessage(BaseWalletSolBalance, false));
Debug.Log("Logged in Base: " + BaseWallet.Account.PublicKey + " balance: " + baseSolBalance.Result.Value);
}
var ingameSolBalance = await InGameWallet.ActiveRpcClient.GetBalanceAsync(InGameWallet.Account.PublicKey, Commitment.Confirmed);
if (ingameSolBalance.Result != null)
{
InGameWalletSolBalance = (long) ingameSolBalance.Result.Value;
MessageRouter.RaiseMessage(new SolBalanceChangedMessage(InGameWalletSolBalance, true));
Debug.Log("Logged in InGameWallet: " + InGameWallet.Account.PublicKey + " balance: " + ingameSolBalance.Result.Value);
}
return BaseWallet.Account;
}
private void SubscribeToWalletAccountChanges()
{
//ServiceFactory.Resolve<SolPlayWebSocketService>().SubscribeToBlocks();
if (TwoWalletSetup)
{
ServiceFactory.Resolve<SolPlayWebSocketService>().SubscribeToPubKeyData(BaseWallet.Account.PublicKey,
result =>
{
long balanceChange = result.result.value.lamports - BaseWalletSolBalance;
BaseWalletSolBalance = result.result.value.lamports;
InGameWalletSolBalance = result.result.value.lamports;
MessageRouter.RaiseMessage(
new SolBalanceChangedMessage((float) balanceChange / SolanaUtils.SolToLamports, true));
MessageRouter.RaiseMessage(new SolBalanceChangedMessage((float) balanceChange / SolanaUtils.SolToLamports));
});
}
else
{
ServiceFactory.Resolve<SolPlayWebSocketService>().SubscribeToPubKeyData(BaseWallet.Account.PublicKey,
result =>
{
long balanceChange = result.result.value.lamports - BaseWalletSolBalance;
BaseWalletSolBalance = result.result.value.lamports;
MessageRouter.RaiseMessage(new SolBalanceChangedMessage((float) balanceChange / SolanaUtils.SolToLamports));
});
ServiceFactory.Resolve<SolPlayWebSocketService>().SubscribeToPubKeyData(InGameWallet.Account.PublicKey,
result =>
{
long balanceChange = result.result.value.lamports - InGameWalletSolBalance;
InGameWalletSolBalance = result.result.value.lamports;
MessageRouter.RaiseMessage(new SolBalanceChangedMessage((float) balanceChange / SolanaUtils.SolToLamports,
true));
});
}
}
public async Task RequestAirdrop()
{
MessageRouter.RaiseMessage(new BlimpSystem.ShowLogMessage("Requesting airdrop"));
RequestResult<string> result = await BaseWallet.ActiveRpcClient.RequestAirdropAsync(BaseWallet.Account.PublicKey, SolanaUtils.SolToLamports, Commitment.Confirmed);
if (result.WasSuccessful)
{
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(result.Result, b => {});
}
else
{
MessageRouter.RaiseMessage(new BlimpSystem.ShowLogMessage("Airdrop failed: " + result.ErrorData));
}
}
public bool TryGetPhantomPublicKey(out string phantomPublicKey)
{
if (BaseWallet.Account == null)
{
phantomPublicKey = string.Empty;
return false;
}
phantomPublicKey = BaseWallet.Account.PublicKey;
return true;
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
public bool HasEnoughSol(bool inGameWallet, long requiredLamports)
{
Debug.Log($"Checking sol balance {inGameWallet} for {requiredLamports}");
Debug.Log($"Ingame {InGameWalletSolBalance} Base Wallet {BaseWalletSolBalance}");
bool hasEnoughSol = false;
if (inGameWallet)
{
hasEnoughSol = InGameWalletSolBalance >= requiredLamports;
}
else
{
hasEnoughSol = BaseWalletSolBalance >= requiredLamports;
}
if (!hasEnoughSol)
{
ServiceFactory.Resolve<UiService>().OpenPopup(UiService.ScreenType.InGameWalletPopup,
new InGameWalletPopupUiData(requiredLamports));
}
return hasEnoughSol;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftMintingService.cs.meta
|
fileFormatVersion: 2
guid: 7200cbf09ed7438eb4005bbcf351e7f7
timeCreated: 1665216069
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftPowerLevelService.cs.meta
|
fileFormatVersion: 2
guid: 1c72bdb4a63746fc9fb768bebec76201
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/IapService.cs.meta
|
fileFormatVersion: 2
guid: 60ad414b6e0b94e4594571788cd4400e
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/IapService.cs
|
using System.Collections;
using Frictionless;
using Solana.Unity.Wallet;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
/// <summary>
/// WIP This will make the game hopefully compliant with Apple Store Requirements.
/// The say we are not allowed to put it in if we use NFTs which are not also available via In app purchases.
/// </summary>
public class IapService : MonoBehaviour, IMultiSceneSingleton
{
void Awake()
{
if (ServiceFactory.Resolve<IapService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/SolPlayWebSocketService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Net;
using System.Numerics;
using System.Threading.Tasks;
using Frictionless;
using UnityEngine;
using NativeWebSocket;
using Newtonsoft.Json;
using Solana.Unity.Wallet;
using WebSocket = NativeWebSocket.WebSocket;
using WebSocketState = NativeWebSocket.WebSocketState;
namespace SolPlay.Scripts.Services
{
public class SolPlayWebSocketService : MonoBehaviour
{
IWebSocket websocket;
private Dictionary<PublicKey, SocketSubscription> subscriptions =
new Dictionary<PublicKey, SocketSubscription>();
private int reconnectTries;
private int subcriptionCounter;
public string socketUrl;
private class SocketSubscription
{
public long Id;
public long SubscriptionId;
public Action<MethodResult> ResultCallback;
public PublicKey PublicKey;
}
[Serializable]
public class WebSocketErrorResponse
{
public string jsonrpc;
public string error;
public string data;
}
[Serializable]
public class WebSocketResponse
{
public string jsonrpc;
public long result;
public long id;
}
[Serializable]
public class WebSocketMethodResponse
{
public string jsonrpc;
public string method;
public MethodResult @params;
}
[Serializable]
public class MethodResult
{
public AccountInfo result;
public long subscription;
}
[Serializable]
public class AccountInfo
{
public Context context;
public Value value;
}
[Serializable]
public class Context
{
public int slot;
}
[Serializable]
public class Value
{
public long lamports;
public List<string> data;
public string owner;
public bool executable;
public BigInteger rentEpoch;
}
private void Awake()
{
ServiceFactory.RegisterSingleton(this);
}
private void OnApplicationFocus(bool focus)
{
Debug.Log("Has focus" + focus);
}
public WebSocketState GetState()
{
if (websocket == null)
{
return WebSocketState.Closed;
}
return websocket.State;
}
private void SetSocketUrl(string rpcUrl)
{
socketUrl = rpcUrl.Replace("https://", "wss://");
if (socketUrl.Contains("localhost"))
{
socketUrl = "ws://localhost:8900";
}
}
public void Connect(string rpcUrl)
{
System.Net.ServicePointManager.ServerCertificateValidationCallback = (message, cert, chain, sslPolicyErrors) => true;
if (websocket != null)
{
websocket.OnOpen -= websocketOnOnOpen();
websocket.OnError -= websocketOnOnError();
websocket.OnClose -= OnWebSocketClosed;
websocket.OnMessage -= websocketOnOnMessage();
websocket.Close();
}
SetSocketUrl(rpcUrl);
#if UNITY_WEBGL
websocket = new WebSocket(socketUrl);
#else
websocket = new SharpWebSockets(socketUrl);
#endif
websocket.OnOpen += websocketOnOnOpen();
websocket.OnError += websocketOnOnError();
websocket.OnClose += OnWebSocketClosed;
websocket.OnMessage += websocketOnOnMessage();
websocket.Connect();
Debug.Log("Socket connect done");
}
private WebSocketMessageEventHandler websocketOnOnMessage()
{
return (bytes) =>
{
var message = System.Text.Encoding.UTF8.GetString(bytes);
//Debug.Log("SocketMessage:" + message);
WebSocketErrorResponse errorResponse = JsonConvert.DeserializeObject<WebSocketErrorResponse>(message);
if (!string.IsNullOrEmpty(errorResponse.error))
{
Debug.LogError(errorResponse.error);
return;
}
if (message.Contains("method"))
{
WebSocketMethodResponse methodResponse =
JsonConvert.DeserializeObject<WebSocketMethodResponse>(message);
foreach (var subscription in subscriptions)
{
if (subscription.Value.SubscriptionId == [email protected])
{
subscription.Value.ResultCallback(methodResponse.@params);
}
}
}
else
{
WebSocketResponse response = JsonConvert.DeserializeObject<WebSocketResponse>(message);
foreach (var subscription in subscriptions)
{
if (subscription.Value.Id == response.id)
{
subscription.Value.SubscriptionId = response.result;
}
}
}
};
}
private static WebSocketErrorEventHandler websocketOnOnError()
{
return (e) =>
{
Debug.LogError("Socket Error! " + e + " maybe you need to use a different RPC node. For example helius or quicknode");
};
}
private WebSocketOpenEventHandler websocketOnOnOpen()
{
return () =>
{
reconnectTries = 0;
foreach (var subscription in subscriptions)
{
SubscribeToPubKeyData(subscription.Value.PublicKey, subscription.Value.ResultCallback);
}
Debug.Log("Socket Connection open!");
MessageRouter.RaiseMessage(new SocketServerConnectedMessage());
};
}
private void OnWebSocketClosed(WebSocketCloseCode closecode)
{
Debug.Log("Socket disconnect: " + closecode);
if (this)
{
StartCoroutine(Reconnect());
}
}
public IEnumerator Reconnect()
{
while (true)
{
yield return new WaitForSeconds(reconnectTries * 0.5f + 0.1f);
reconnectTries++;
Debug.Log("Reconnect Socket");
Connect(socketUrl);
while (websocket == null || websocket.State == WebSocketState.Closed)
{
yield return null;
}
while (websocket.State == WebSocketState.Connecting)
{
yield return null;
}
while (websocket.State == WebSocketState.Closed || websocket.State == WebSocketState.Closing)
{
yield break;
}
if (websocket.State == WebSocketState.Open)
{
yield break;
}
}
}
void Update()
{
#if !UNITY_WEBGL || UNITY_EDITOR
if (websocket != null && websocket.State == WebSocketState.Open)
{
websocket.DispatchMessageQueue();
}
#endif
}
public async void SubscribeToBlocks()
{
if (websocket.State == WebSocketState.Open)
{
string accountSubscribeParams ="{ \"jsonrpc\": \"2.0\", \"id\": \"22\", \"method\": \"blockSubscribe\", \"params\": [\"all\"] }";
await websocket.Send(System.Text.Encoding.UTF8.GetBytes(accountSubscribeParams));
}
}
public async void SubscribeToPubKeyData(PublicKey pubkey, Action<MethodResult> onMethodResult)
{
var subscriptionsCount = subcriptionCounter++;
var socketSubscription = new SocketSubscription()
{
Id = subscriptionsCount,
SubscriptionId = 0,
ResultCallback = onMethodResult,
PublicKey = pubkey
};
if (subscriptions.ContainsKey(pubkey))
{
subscriptions[pubkey].Id = subscriptionsCount;
}
else
{
subscriptions.Add(pubkey, socketSubscription);
}
if (websocket.State == WebSocketState.Open)
{
string accountSubscribeParams =
"{\"jsonrpc\":\"2.0\",\"id\":" + subscriptionsCount +
",\"method\":\"accountSubscribe\",\"params\":[\"" + pubkey.Key +
"\",{\"encoding\":\"jsonParsed\",\"commitment\":\"processed\"}]}";
await websocket.Send(System.Text.Encoding.UTF8.GetBytes(accountSubscribeParams));
}
}
async void UnSubscribeFromPubKeyData(PublicKey pubkey, long id)
{
if (websocket.State == WebSocketState.Open)
{
string unsubscribeParameter = "{\"jsonrpc\":\"2.0\", \"id\":" + id +
", \"method\":\"accountUnsubscribe\", \"params\":[" + pubkey.Key + "]}";
await websocket.Send(System.Text.Encoding.UTF8.GetBytes(unsubscribeParameter));
}
}
private async void OnApplicationQuit()
{
if (websocket == null)
{
return;
}
await websocket.Close();
}
}
public class SocketServerConnectedMessage
{
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/WalletHolderService.cs.meta
|
fileFormatVersion: 2
guid: e467b9af29084366a426eab927cd6f80
timeCreated: 1659777810
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/LoggingService.cs
|
using Frictionless;
using SolPlay.Scripts.Ui;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
public class LoggingService
{
public static void Log(string message, bool showBlimpOnScreen)
{
Debug.Log(message);
if (showBlimpOnScreen)
{
MessageRouter.RaiseMessage(new BlimpSystem.ShowLogMessage(message));
}
}
public static void LogWarning(string message, bool showBlimpOnScreen)
{
Debug.LogWarning(message);
if (showBlimpOnScreen)
{
MessageRouter.RaiseMessage(new BlimpSystem.ShowLogMessage(message));
}
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Threading.Tasks;
using Frictionless;
using Solana.Unity.Metaplex.NFT.Library;
using Solana.Unity.Metaplex.Utilities.Json;
using Solana.Unity.Programs;
using Solana.Unity.Rpc;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Messages;
using Solana.Unity.Rpc.Models;
using Solana.Unity.Rpc.Types;
using Solana.Unity.SDK;
using Solana.Unity.SDK.Nft;
using Solana.Unity.Wallet;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
/// <summary>
/// Handles all logic related to NFTs and calculating their power level or whatever you like to do with the NFTs
/// </summary>
public class NftService : MonoBehaviour, IMultiSceneSingleton
{
public List<Nft> MetaPlexNFts = new List<Nft>();
public int NftImageSize = 75;
public float RateLimitTimeBetweenNftLoads = 0.1f;
public bool IsLoadingTokenAccounts { get; private set; }
public const string BeaverNftMintAuthority = "GsfNSuZFrT2r4xzSndnCSs9tTXwt47etPqU8yFVnDcXd";
public Nft SelectedNft { get; private set; }
public Texture2D LocalDummyNft;
public bool LoadNftsOnStartUp = true;
public bool AddDummyNft = true;
private const string IgnoredTokenListPlayerPrefsKey = "IgnoredTokenList1";
public void Awake()
{
if (ServiceFactory.Resolve<NftService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
private async void Start()
{
if (LoadNftsOnStartUp)
{
if (ServiceFactory.Resolve<WalletHolderService>().IsLoggedIn)
{
LoadNfts();
}
else
{
MessageRouter.AddHandler<WalletLoggedInMessage>(OnWalletLoggedInMessage);
}
}
}
public void LoadNfts()
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
MetaPlexNFts.Clear();
object privateFieldValue = walletHolderService.BaseWallet.GetType().BaseType
.GetField("CustomRpcUri", BindingFlags.NonPublic | BindingFlags.Instance)
.GetValue(walletHolderService.BaseWallet);
Web3.Instance.customRpc = privateFieldValue.ToString();
Web3.Instance.WalletBase = walletHolderService.BaseWallet;
Web3.OnNFTsUpdate += (nfts, totalAmount) =>
{
foreach (var newNft in nfts)
{
bool wasAlreadyLoaded = false;
foreach (var oldNft in MetaPlexNFts)
{
if (newNft.metaplexData.data.mint == oldNft.metaplexData.data.mint)
{
wasAlreadyLoaded = true;
}
}
if (!wasAlreadyLoaded)
{
MessageRouter.RaiseMessage(new NftLoadedMessage(newNft));
MetaPlexNFts.Add(newNft);
}
}
};
if (AddDummyNft)
{
var dummyLocalNft = CreateDummyLocalNft(walletHolderService.InGameWallet.Account.PublicKey);
MetaPlexNFts.Add(dummyLocalNft);
MessageRouter.RaiseMessage(new NftLoadedMessage(dummyLocalNft));
}
}
private async void OnWalletLoggedInMessage(WalletLoggedInMessage message)
{
//await RequestNfts(message.Wallet);
LoadNfts();
}
public Nft CreateDummyLocalNft(string publicKey)
{
Nft dummyLocalNft = new Nft();
//MetadataAccount metaPlexData = Activator.CreateInstance(typeof(MetadataAccount), true);
var constructor = typeof(MetadataAccount).GetConstructor(BindingFlags.NonPublic|BindingFlags.Instance, null, new Type[0], null);
MetadataAccount metaPlexData = (MetadataAccount)constructor.Invoke(null);
metaPlexData.offchainData = new MetaplexTokenStandard();
metaPlexData.offchainData.symbol = "dummy";
metaPlexData.offchainData.name = "Dummy Nft";
metaPlexData.offchainData.description = "A dummy nft which uses the wallet puy key";
metaPlexData.mint = publicKey;
dummyLocalNft.metaplexData = new Metaplex(metaPlexData);
dummyLocalNft.metaplexData.nftImage = new NftImage()
{
name = "DummyNft",
file = LocalDummyNft
};
return dummyLocalNft;
}
private static bool IsTokenMintIgnored(string mint)
{
if (GetIgnoreTokenList().TokenList.Contains(mint))
{
return true;
}
return false;
}
private static IgnoreTokenList GetIgnoreTokenList()
{
if (!PlayerPrefs.HasKey(IgnoredTokenListPlayerPrefsKey))
{
PlayerPrefs.SetString(IgnoredTokenListPlayerPrefsKey, JsonUtility.ToJson(new IgnoreTokenList()));
}
var json = PlayerPrefs.GetString(IgnoredTokenListPlayerPrefsKey);
var ignoreTokenList = JsonUtility.FromJson<IgnoreTokenList>(json);
return ignoreTokenList;
}
public void AddToIgnoredTokenListAndSave(string mint)
{
string blimpMessage = $"Added {mint} to ignore list.";
LoggingService.Log(blimpMessage, false);
var ignoreTokenList = GetIgnoreTokenList();
ignoreTokenList.TokenList.Add(mint);
PlayerPrefs.SetString(IgnoredTokenListPlayerPrefsKey, JsonUtility.ToJson(ignoreTokenList));
PlayerPrefs.Save();
}
private IEnumerator StartNftLoadingDelayed(SolPlayNft nft, IRpcClient connection, int counter)
{
yield return new WaitForSeconds(counter * 0.4f);
}
public bool IsNftSelected(Nft nft)
{
return nft.metaplexData.data.mint == GetSelectedNftPubKey();
}
private string GetSelectedNftPubKey()
{
return PlayerPrefs.GetString("SelectedNft");
}
private async Task<TokenAccount[]> GetOwnedTokenAccounts(string publicKey)
{
var wallet = ServiceFactory.Resolve<WalletHolderService>().BaseWallet;
try
{
RequestResult<ResponseValue<List<TokenAccount>>> result =
await wallet.ActiveRpcClient.GetTokenAccountsByOwnerAsync(publicKey, null,
TokenProgram.ProgramIdKey, Commitment.Confirmed);
if (result.Result != null && result.Result.Value != null)
{
return result.Result.Value.ToArray();
}
}
catch (Exception ex)
{
LoggingService.Log($"Token loading error: {ex}", true);
Debug.LogError(ex);
IsLoadingTokenAccounts = false;
}
return null;
}
public bool OwnsNftOfMintAuthority(string authority)
{
foreach (var nft in MetaPlexNFts)
{
if (nft.metaplexData.data.updateAuthority != null && nft.metaplexData.data.updateAuthority == authority)
{
return true;
}
}
return false;
}
public bool IsBeaverNft(Nft solPlayNft)
{
return solPlayNft.metaplexData.data.updateAuthority == BeaverNftMintAuthority;
}
public void SelectNft(Nft nft)
{
if (nft == null)
{
return;
}
SelectedNft = nft;
PlayerPrefs.SetString("SelectedNft", SelectedNft.metaplexData.data.mint);
MessageRouter.RaiseMessage(new NftSelectedMessage(SelectedNft));
}
public void ResetSelectedNft()
{
SelectedNft = null;
PlayerPrefs.DeleteKey("SelectedNft");
MessageRouter.RaiseMessage(new NftSelectedMessage(SelectedNft));
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
public Nft GetNftByMintAddress(PublicKey nftMintAddress)
{
if (nftMintAddress == null)
{
return null;
}
foreach (var nft in MetaPlexNFts)
{
if (nftMintAddress == nft.metaplexData.data.mint)
{
return nft;
}
}
return null;
}
}
public class NftLoadedMessage
{
public Nft Nft;
public NftLoadedMessage(Nft nft)
{
Nft = nft;
}
}
public class NftSelectedMessage
{
public Nft NewNFt;
public NftSelectedMessage(Nft newNFt)
{
NewNFt = newNFt;
}
}
public class NftLoadingStartedMessage
{
}
public class NftLoadingFinishedMessage
{
}
public class TokenValueChangedMessage
{
}
public class NftMintFinishedMessage
{
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/ShadowDriveService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using Frictionless;
using ShadowDriveUserStaking.Program;
using Solana.Unity.Programs;
using Solana.Unity.Rpc.Builders;
using Solana.Unity.Rpc.Types;
using Solana.Unity.Wallet;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
public class ShadowDriveService : MonoBehaviour, IMultiSceneSingleton
{
public PublicKey programAddress = new PublicKey("2e1wdyNhUvE76y6yUCvah2KaviavMJYKoRun8acMRBZZ");
public PublicKey tokenMint = new PublicKey("SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y");
public PublicKey uploader = new PublicKey("972oJTFyjmVNsWM4GHEGPWUomAiJf2qrVotLtwnKmWem");
public PublicKey emissions = new PublicKey("SHDWRWMZ6kmRG9CvKFSD7kVcnUqXMtd3SaMrLvWscbj");
public string SHDW_DRIVE_ENDPOINT = "https://shadow-storage.genesysgo.net";
public void Awake()
{
if (ServiceFactory.Resolve<ShadowDriveService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
// TODO: WIP
public async void UploadMetaData()
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var wallet = walletHolderService.BaseWallet;
var localAccount = walletHolderService.BaseWallet.Account.PublicKey;
var rpcClient = walletHolderService.BaseWallet.ActiveRpcClient;
var blockHash = await rpcClient.GetLatestBlockHashAsync();
InitializeAccount2Accounts accountsInstrucation = new InitializeAccount2Accounts();
accountsInstrucation.Owner1 = localAccount;
accountsInstrucation.Rent = new PublicKey("");
accountsInstrucation.Uploader = new PublicKey("");
accountsInstrucation.StakeAccount = new PublicKey("");
accountsInstrucation.StorageAccount = new PublicKey("");
accountsInstrucation.StorageConfig = new PublicKey("");
accountsInstrucation.SystemProgram = SystemProgram.ProgramIdKey;
accountsInstrucation.TokenMint = new PublicKey("");
accountsInstrucation.Owner1TokenAccount = new PublicKey("");
accountsInstrucation.UserInfoShadow = new PublicKey("");
var initializeAccountInstruction =
ShadowDriveUserStakingProgram.InitializeAccount2(accountsInstrucation, "MyShadow", 10000,
programAddress);
byte[] transaction = new TransactionBuilder()
.SetRecentBlockHash(blockHash.Result.Value.Blockhash)
.SetFeePayer(localAccount)
.AddInstruction(initializeAccountInstruction) // create
.Build(new List<Account> {walletHolderService.BaseWallet.Account});
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(transaction), false, Commitment.Confirmed);
Debug.Log(transactionSignature.Reason);
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/HighscoreService.cs.meta
|
fileFormatVersion: 2
guid: a52bdde5bcbe4fbda61b3f0375fba468
timeCreated: 1659431514
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftPowerLevelService.cs
|
using System.Collections;
using Frictionless;
using Solana.Unity.SDK.Nft;
using UnityEngine;
namespace SolPlay.Scripts.Services
{
/// <summary>
/// Handles logic to calculate NFT power level or whatever you like to do with the NFTs.
/// It merely an example on how to use NFT attributes.
/// </summary>
public class NftPowerLevelService : MonoBehaviour, IMultiSceneSingleton
{
private void Awake()
{
if (ServiceFactory.Resolve<NftPowerLevelService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
public int GetPowerLevelFromNft(Nft solPlayNft)
{
var nftService = ServiceFactory.Resolve<NftService>();
if (nftService.IsBeaverNft(solPlayNft))
{
return CalculateBeaverPower(solPlayNft);
}
return 1;
}
// Just some power level calculations, you could to what ever with this. For example take the value from
// one of the attributes as damage for you character for example.
private int CalculateBeaverPower(Nft beaverSolPlayNft)
{
int bonusBeaverPower = 0;
foreach (var entry in beaverSolPlayNft.metaplexData.data.offchainData.attributes)
{
switch (entry.value)
{
case "none":
bonusBeaverPower += 1;
break;
case "EvilOtter":
bonusBeaverPower += 450;
break;
case "BlueEyes":
bonusBeaverPower += 25;
break;
case "GreenEyes":
bonusBeaverPower += 25;
break;
case "Sharingan":
bonusBeaverPower += 350;
break;
case "RabbitKing":
bonusBeaverPower += 9999;
break;
case "Chicken":
bonusBeaverPower += 7;
break;
case "Beer":
bonusBeaverPower += 6;
break;
case "SimpleStick":
bonusBeaverPower += 5;
break;
case "GolTooth":
bonusBeaverPower += 16;
break;
case "Brezel":
bonusBeaverPower += 22;
break;
case "PrideCap":
bonusBeaverPower += 17;
break;
case "Santahat":
bonusBeaverPower += 12;
break;
case "SunGlasses":
bonusBeaverPower += 13;
break;
case "Suit":
bonusBeaverPower += 12;
break;
case "LederHosen":
bonusBeaverPower += 14;
break;
case "XmasBulbs":
bonusBeaverPower += 17;
break;
case "BPhone":
bonusBeaverPower += 8;
break;
default:
bonusBeaverPower += 3;
break;
}
}
return 5 + bonusBeaverPower;
}
public float GetTotalPowerLevel()
{
var nftService = ServiceFactory.Resolve<NftService>();
int result = 0;
foreach (Nft nft in nftService.MetaPlexNFts)
{
result += GetPowerLevelFromNft(nft);
}
return result;
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/TransactionService.cs.meta
|
fileFormatVersion: 2
guid: 9ae66a7ebf51b46419724a9d3cc09d43
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/ShadowDriveService.cs.meta
|
fileFormatVersion: 2
guid: 00efbcc10b5849c4886dc1d3f4a9d281
timeCreated: 1665239046
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/SolPlayWebSocketService.cs.meta
|
fileFormatVersion: 2
guid: 531e734d26914e15aa57cd7e79c22d24
timeCreated: 1669846318
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/NftService.cs.meta
|
fileFormatVersion: 2
guid: 74ec71c69256142f98c58aef3655736d
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/UiService.cs.meta
|
fileFormatVersion: 2
guid: a189c0396cc74b5195c4976ffd5dbc09
timeCreated: 1667324715
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Scripts/Services/HighscoreService.cs
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Frictionless;
using Org.BouncyCastle.Utilities.Encoders;
using Solana.Unity.Programs;
using Solana.Unity.Programs.Utilities;
using Solana.Unity.Rpc;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Messages;
using Solana.Unity.Rpc.Models;
using Solana.Unity.Rpc.Types;
using Solana.Unity.SDK;
using Solana.Unity.SDK.Nft;
using Solana.Unity.Wallet;
using SolPlay.DeeplinksNftExample.Scripts;
using SolPlay.DeeplinksNftExample.Utils;
using SolPlay.Scripts.Ui;
using UnityEngine;
using Random = UnityEngine.Random;
namespace SolPlay.Scripts.Services
{
public class HighscoreAccount
{
public UInt32 Highscore = 0;
public static long GetAccountSize()
{
return sizeof(UInt32);
}
}
public class HighscoreEntry
{
public uint Highscore;
public string Seed;
public bool AccountLoaded;
}
public class HighscoreService : MonoBehaviour, IMultiSceneSingleton
{
private Dictionary<string, HighscoreEntry> _allHighscores = new Dictionary<string, HighscoreEntry>();
private readonly PublicKey _highscoreProgramPublicKey =
new PublicKey("F3qQ9mJep9hwCkJRtRSUcxov5etdRvQU9NBFpPjh4LKo");
private readonly PublicKey _highscoreSubmitFeePubkey =
new PublicKey("pLAY7z6bY7SRvhCm8hSqyXaerAegsdGWkV1aSgjFpab");
private const string ScoreSeed = "score";
public bool LoadHighscoresForAllNFtsAutomatically = false;
public void Awake()
{
if (ServiceFactory.Resolve<HighscoreService>() != null)
{
Destroy(gameObject);
return;
}
ServiceFactory.RegisterSingleton(this);
}
private void Start()
{
MessageRouter.AddHandler<NftLoadingFinishedMessage>(OnAllNftsLoadedMessage);
MessageRouter.AddHandler<NftLoadedMessage>(OnNftArrivedMessage);
}
private void OnNftArrivedMessage(NftLoadedMessage message)
{
if (!LoadHighscoresForAllNFtsAutomatically)
{
return;
}
var seedFromPubkey = GetSeedFromPubkey(message.Nft.metaplexData.data.mint);
var highscoreEntry = new HighscoreEntry()
{
Highscore = 0,
Seed = seedFromPubkey,
AccountLoaded = false
};
_allHighscores[seedFromPubkey] = highscoreEntry;
// Taking some work from the RPC nodes and delay the high score requests.
StartCoroutine(GetHighScoreDataDelayed(message.Nft, Random.Range(0, 3)));
}
private IEnumerator GetHighScoreDataDelayed(Nft messageNewNFt, int range)
{
yield return new WaitForSeconds(range);
GetHighscoreAccountData(messageNewNFt);
}
private async void OnAllNftsLoadedMessage(NftLoadingFinishedMessage message)
{
// Nothing to do
}
private string GetSeedFromPubkey(string pubkey)
{
return pubkey.Substring(0, 8);
}
public string GetCurrentAccountSeed()
{
var solPlayNft = ServiceFactory.Resolve<NftService>().SelectedNft;
if (solPlayNft != null)
{
return GetSeedFromPubkey(solPlayNft.metaplexData.data.mint);
}
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
return GetSeedFromPubkey(walletHolderService.BaseWallet.Account.PublicKey);
}
public bool TryGetHighscoreForSeed(string seed, out HighscoreEntry highscoreEntry)
{
foreach (var entry in _allHighscores)
{
if (entry.Value.Seed == GetSeedFromPubkey(seed))
{
highscoreEntry = entry.Value;
return true;
}
}
highscoreEntry = null;
return false;
}
public bool TryGetCurrentHighscore(out HighscoreEntry highscoreEntry)
{
return _allHighscores.TryGetValue(GetCurrentAccountSeed(), out highscoreEntry);
}
private PublicKey GetNftRelatedPubkey(Nft nft)
{
return new PublicKey(nft.metaplexData.data.mint);
}
public async Task<AccountInfo> GetHighscoreAccountData(Nft nft)
{
var wallet = ServiceFactory.Resolve<WalletHolderService>().BaseWallet;
var nftPubkey = GetNftRelatedPubkey(nft);
if (!PublicKey.TryFindProgramAddress(
new List<byte[]>() {Encoding.ASCII.GetBytes(ScoreSeed), nftPubkey.KeyBytes},
_highscoreProgramPublicKey, out var programDerivedAccount, out byte bump)) return null;
RequestResult<ResponseValue<AccountInfo>> accountInfoResult =
await wallet.ActiveRpcClient.GetAccountInfoAsync(programDerivedAccount, Commitment.Confirmed);
var seed = GetSeedFromPubkey(GetNftRelatedPubkey(nft));
_allHighscores[seed].AccountLoaded = true;
if (accountInfoResult != null && accountInfoResult.Result != null && accountInfoResult.Result.Value != null)
{
foreach (var entry in accountInfoResult.Result.Value.Data)
{
try
{
byte[] message = Base64.Decode(entry);
uint uInt32 = BitConverter.ToUInt32(message);
var highscoreText = "High score of your NFT is: " + uInt32;
// This will show the high score of the NFT on the screen. If there are many NFTs it can get a bit spammy
// MessageRouter.RaiseMessage(new BlimpSystem.ShowBlimpMessage(highscoreText));
_allHighscores[seed].Highscore = uInt32;
MessageRouter
.RaiseMessage(new NewHighScoreLoadedMessage(_allHighscores[seed]));
}
catch (Exception e)
{
// Wasn't a base 64 string
}
}
return accountInfoResult.Result.Value;
}
// In case you want to log that there are no high scores saved on the NFTs yet. It gets a bit spammy quickly.
/*MessageRouter
.RaiseMessage(
new BlimpSystem.ShowBlimpMessage($"No high score for {nft.MetaplexData.data.name} found yet."));*/
return null;
}
public async Task SafeHighScore(Nft nft, uint highScore)
{
var wallet = ServiceFactory.Resolve<WalletHolderService>().BaseWallet;
double sol = await wallet.GetBalance() * SolanaUtils.SolToLamports;
var levelAccount = await GetHighscoreAccountData(nft);
var blockHash = await wallet.ActiveRpcClient.GetLatestBlockHashAsync();
if (blockHash.Result == null)
{
LoggingService.Log("Block hash null. Connected to internet?", true);
return;
}
ulong fees = 5000 * 100;
if (levelAccount == null)
{
var accountDataSize = HighscoreAccount.GetAccountSize();
RequestResult<ulong> costPerAccount =
await wallet.ActiveRpcClient.GetMinimumBalanceForRentExemptionAsync(accountDataSize);
fees += costPerAccount.Result;
}
LoggingService.Log(
$"Pubkey: {wallet.Account.PublicKey} - SolAmount = " + sol + " needed for account: " + fees, true);
if (sol <= fees)
{
if (wallet.RpcCluster == RpcCluster.MainNet)
{
LoggingService.Log(
$"You dont have enough sol to pay for account creation. Need at least: {fees} ", true);
}
else
{
RequestResult<string> result = await wallet.RequestAirdrop(1000000000);
if (string.IsNullOrEmpty(result.Result))
{
LoggingService
.Log("Air drop request failed. Are connected to the internet?", true);
return;
}
ServiceFactory.Resolve<TransactionService>().CheckSignatureStatus(result.Result);
var balance = await wallet.GetBalance();
sol = balance * SolanaUtils.SolToLamports;
MessageRouter.RaiseMessage(new SolBalanceChangedMessage());
if (sol <= fees)
{
Debug.Log($"Request airdrop: {result} Are you connected to the internet or on main net?");
return;
}
}
}
await CreateAndSendUnsignedSafeHighscoreTransaction(blockHash.Result.Value, levelAccount == null, nft,
highScore);
}
private async Task CreateAndSendUnsignedSafeHighscoreTransaction(LatestBlockHash blockHash, bool createAccount,
Nft nft, uint highScore)
{
var walletHolderService = ServiceFactory.Resolve<WalletHolderService>();
var activeRpcClient = walletHolderService.BaseWallet.ActiveRpcClient;
if (!await CheckIfProgramIsDeployed(activeRpcClient)) return;
var localPublicKey = walletHolderService.BaseWallet.Account.PublicKey;
var nftMintPublicKey = new PublicKey(nft.metaplexData.data.mint);
if (!PublicKey.TryFindProgramAddress(
new List<byte[]>() {Encoding.ASCII.GetBytes(ScoreSeed), nftMintPublicKey.KeyBytes},
_highscoreProgramPublicKey, out var programDerivedAccount, out byte bump)) return;
Transaction increasePlayerLevelTransaction = new Transaction();
increasePlayerLevelTransaction.FeePayer = localPublicKey;
increasePlayerLevelTransaction.RecentBlockHash = blockHash.Blockhash;
increasePlayerLevelTransaction.Signatures = new List<SignaturePubKeyPair>();
increasePlayerLevelTransaction.Instructions = new List<TransactionInstruction>();
Debug.Log(nft.metaplexData.data.mint);
List<AccountMeta> accountMetaList = new List<AccountMeta>()
{
AccountMeta.Writable(programDerivedAccount, false),
AccountMeta.Writable(localPublicKey, true),
AccountMeta.Writable(_highscoreSubmitFeePubkey, false),
AccountMeta.ReadOnly(SystemProgram.ProgramIdKey, false),
AccountMeta.ReadOnly(nftMintPublicKey, false)
};
byte[] data = new byte[7];
data.WriteU8(2, 0);
data.WriteU32(highScore, 1);
data.WriteU8(bump, 5);
data.WriteU8(createAccount ? (byte) 1 : (byte) 0, 6);
TransactionInstruction highscoreInstruction = new TransactionInstruction()
{
ProgramId = _highscoreProgramPublicKey,
Keys = accountMetaList,
Data = data
};
increasePlayerLevelTransaction.Instructions.Add(highscoreInstruction);
var sendingTransactionUsing = "Sending transaction using: " + walletHolderService.BaseWallet.GetType();
LoggingService.Log(sendingTransactionUsing, true);
var signedTransaction =
await walletHolderService.BaseWallet.SignTransaction(increasePlayerLevelTransaction);
var transactionSignature =
await walletHolderService.BaseWallet.ActiveRpcClient.SendTransactionAsync(
Convert.ToBase64String(signedTransaction.Serialize()), false, Commitment.Confirmed);
if (transactionSignature.WasSuccessful)
{
var checkingSignatureNow = "Signed via BaseWallet: " + transactionSignature.Result +
" checking signature now. ";
LoggingService.Log(checkingSignatureNow, true);
ServiceFactory.Resolve<TransactionService>()
.CheckSignatureStatus(transactionSignature.Result, b =>
{
GetHighscoreAccountData(nft);
MessageRouter.RaiseMessage(new SolBalanceChangedMessage());
});
}
else
{
var error = $"There was an error: {transactionSignature.Reason} {transactionSignature.RawRpcResponse} ";
LoggingService.LogWarning(error, true);
}
}
private async Task<bool> CheckIfProgramIsDeployed(IRpcClient activeRpcClient)
{
RequestResult<ResponseValue<AccountInfo>> programAccountInfo =
await activeRpcClient.GetAccountInfoAsync(_highscoreProgramPublicKey);
if (programAccountInfo.Result != null && programAccountInfo.Result.Value != null)
{
Debug.Log("Program is available and executable: " + programAccountInfo.Result.Value.Executable);
}
else
{
Debug.Log("Program probably not deployed: ");
return false;
}
return true;
}
public uint GetTotalScore()
{
uint result = 0;
foreach (var entry in _allHighscores)
{
result += entry.Value.Highscore;
}
return result;
}
public IEnumerator HandleNewSceneLoaded()
{
yield return null;
}
}
public class NewHighScoreLoadedMessage
{
public HighscoreEntry HighscoreEntry;
public NewHighScoreLoadedMessage(HighscoreEntry highscoreEntry)
{
HighscoreEntry = highscoreEntry;
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/btn.png.meta
|
fileFormatVersion: 2
guid: 45b6f12e7d8e8a74a877750f5d50af5e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 40, y: 38, z: 40, w: 38}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/YootsDummy.psd.meta
|
fileFormatVersion: 2
guid: 270c8a178c5434a2f89e4af303fee9f1
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/icon_rooster.png.meta
|
fileFormatVersion: 2
guid: a30841c6a7438b6419394c570c331f95
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/Rooster_512.png.meta
|
fileFormatVersion: 2
guid: 5ea2c7c560d274d2fbeaf8659a21724b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/bg_4.png.meta
|
fileFormatVersion: 2
guid: 99f25076752cc46479b48bf1f473dfd4
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/Rooster_256.png.meta
|
fileFormatVersion: 2
guid: 10f8d2be3c1c5446e88355f616fa2d18
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/panel_1.png.meta
|
fileFormatVersion: 2
guid: b34d2e83523eda24480d94148815d20b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 40, y: 28, z: 40, w: 28}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/bg_2.png.meta
|
fileFormatVersion: 2
guid: 552e83d5861907c4ca857b56107d9173
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/bg_3.png.meta
|
fileFormatVersion: 2
guid: 379ff1d310603384095856e6915038e5
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/bg_1_stripe.png.meta
|
fileFormatVersion: 2
guid: 89bb85b08e45ef545b6ebaf134d62615
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/BronzeMedal.png.meta
|
fileFormatVersion: 2
guid: 94736c93368f34f53a2e7e0b32c73eba
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/SilverMedal.png.meta
|
fileFormatVersion: 2
guid: 19527c591a5b342f8a82aedec4561549
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/btn_inactive.png.meta
|
fileFormatVersion: 2
guid: d2cbac5c050f5dd48b4c5bb425407ccc
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 44, y: 0, z: 44, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/icon_phantom.png.meta
|
fileFormatVersion: 2
guid: 6344be45c57db8d47ba5ab0a9bf5f2f3
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/icon_solana2.png.meta
|
fileFormatVersion: 2
guid: f7f3a48b5637beb4c8719edede46cba8
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/slider_handle_horizontal.png.meta
|
fileFormatVersion: 2
guid: 6be5d8154233c43c489084f5a9846f0b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 13, y: 0, z: 14, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/logo_solana.png.meta
|
fileFormatVersion: 2
guid: a59cbf017dec16b4696576c08d57114a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/panel_3.png.meta
|
fileFormatVersion: 2
guid: 95bcad4666e3ad942815fa1ec3e80d17
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 65, y: 54, z: 65, w: 54}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/panel_2.png.meta
|
fileFormatVersion: 2
guid: 8f11403e91205d04f8e1d5bf542e0b80
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 10, y: 0, z: 10, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/icon_solana.png.meta
|
fileFormatVersion: 2
guid: b00ee92b032968a42bfcb4bb760de2e9
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/nft_panel_selected.png.meta
|
fileFormatVersion: 2
guid: 61fd18ee097c542019a24fe68a0e367e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/slider_bg.png.meta
|
fileFormatVersion: 2
guid: 8e4c92cb0899c1e4d98df1c5e782d65a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 36, z: 0, w: 36}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/nft_panel.png.meta
|
fileFormatVersion: 2
guid: e949aef659b574c40bdf876d7764e50a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/btn_active.png.meta
|
fileFormatVersion: 2
guid: 406428ebf3b6ba741a398c6ccf0b404a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 44, y: 0, z: 44, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/slider_handle.png.meta
|
fileFormatVersion: 2
guid: 3060a575d8283f1478db6b1dddc39610
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 14, z: 0, w: 13}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/panel_4.png.meta
|
fileFormatVersion: 2
guid: cc0a21f35c9a1f14d9f67c8bf8c722f4
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/SolanaIcon.png.meta
|
fileFormatVersion: 2
guid: 6817dd0f26cd74b93a90c9f3468c0e8e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/GoldMedal.png.meta
|
fileFormatVersion: 2
guid: 06c76d9a5ecf64ea4aa45574f91bd8d6
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/medals.png.meta
|
fileFormatVersion: 2
guid: a0936801e34d442f98e364b08928573a
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Sprites/business beaver.png.meta
|
fileFormatVersion: 2
guid: b1296c3e25c2b47d8b116a3b7bd3e32c
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/ShadowDrive/ShadowInstructions.cs
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Threading.Tasks;
using Solana.Unity;
using Solana.Unity.Programs.Abstract;
using Solana.Unity.Programs.Utilities;
using Solana.Unity.Rpc;
using Solana.Unity.Rpc.Builders;
using Solana.Unity.Rpc.Core.Http;
using Solana.Unity.Rpc.Core.Sockets;
using Solana.Unity.Rpc.Types;
using Solana.Unity.Wallet;
using ShadowDriveUserStaking;
using ShadowDriveUserStaking.Program;
using ShadowDriveUserStaking.Errors;
using ShadowDriveUserStaking.Accounts;
using ShadowDriveUserStaking.Types;
namespace ShadowDriveUserStaking
{
namespace Accounts
{
public partial class UnstakeInfo
{
public static ulong ACCOUNT_DISCRIMINATOR => 14311229206436695075UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{35, 204, 218, 156, 35, 179, 155, 198};
public static string ACCOUNT_DISCRIMINATOR_B58 => "6zJoNm8Xqvd";
public long TimeLastUnstaked { get; set; }
public ulong EpochLastUnstaked { get; set; }
public PublicKey Unstaker { get; set; }
public static UnstakeInfo Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
UnstakeInfo result = new UnstakeInfo();
result.TimeLastUnstaked = _data.GetS64(offset);
offset += 8;
result.EpochLastUnstaked = _data.GetU64(offset);
offset += 8;
result.Unstaker = _data.GetPubKey(offset);
offset += 32;
return result;
}
}
public partial class StorageAccount
{
public static ulong ACCOUNT_DISCRIMINATOR => 16991321729293299753UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{41, 48, 231, 194, 22, 77, 205, 235};
public static string ACCOUNT_DISCRIMINATOR_B58 => "7tc53amxRvJ";
public bool IsStatic { get; set; }
public uint InitCounter { get; set; }
public uint DelCounter { get; set; }
public bool Immutable { get; set; }
public bool ToBeDeleted { get; set; }
public uint DeleteRequestEpoch { get; set; }
public ulong Storage { get; set; }
public ulong StorageAvailable { get; set; }
public PublicKey Owner1 { get; set; }
public PublicKey Owner2 { get; set; }
public PublicKey ShdwPayer { get; set; }
public uint AccountCounterSeed { get; set; }
public ulong TotalCostOfCurrentStorage { get; set; }
public ulong TotalFeesPaid { get; set; }
public uint CreationTime { get; set; }
public uint CreationEpoch { get; set; }
public uint LastFeeEpoch { get; set; }
public string Identifier { get; set; }
public static StorageAccount Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
StorageAccount result = new StorageAccount();
result.IsStatic = _data.GetBool(offset);
offset += 1;
result.InitCounter = _data.GetU32(offset);
offset += 4;
result.DelCounter = _data.GetU32(offset);
offset += 4;
result.Immutable = _data.GetBool(offset);
offset += 1;
result.ToBeDeleted = _data.GetBool(offset);
offset += 1;
result.DeleteRequestEpoch = _data.GetU32(offset);
offset += 4;
result.Storage = _data.GetU64(offset);
offset += 8;
result.StorageAvailable = _data.GetU64(offset);
offset += 8;
result.Owner1 = _data.GetPubKey(offset);
offset += 32;
result.Owner2 = _data.GetPubKey(offset);
offset += 32;
result.ShdwPayer = _data.GetPubKey(offset);
offset += 32;
result.AccountCounterSeed = _data.GetU32(offset);
offset += 4;
result.TotalCostOfCurrentStorage = _data.GetU64(offset);
offset += 8;
result.TotalFeesPaid = _data.GetU64(offset);
offset += 8;
result.CreationTime = _data.GetU32(offset);
offset += 4;
result.CreationEpoch = _data.GetU32(offset);
offset += 4;
result.LastFeeEpoch = _data.GetU32(offset);
offset += 4;
offset += _data.GetBorshString(offset, out var resultIdentifier);
result.Identifier = resultIdentifier;
return result;
}
}
public partial class StorageAccountV2
{
public static ulong ACCOUNT_DISCRIMINATOR => 15765138380070663557UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{133, 53, 253, 82, 212, 5, 201, 218};
public static string ACCOUNT_DISCRIMINATOR_B58 => "PHK8U4HuGVf";
public bool Immutable { get; set; }
public bool ToBeDeleted { get; set; }
public uint DeleteRequestEpoch { get; set; }
public ulong Storage { get; set; }
public PublicKey Owner1 { get; set; }
public uint AccountCounterSeed { get; set; }
public uint CreationTime { get; set; }
public uint CreationEpoch { get; set; }
public uint LastFeeEpoch { get; set; }
public string Identifier { get; set; }
public static StorageAccountV2 Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
StorageAccountV2 result = new StorageAccountV2();
result.Immutable = _data.GetBool(offset);
offset += 1;
result.ToBeDeleted = _data.GetBool(offset);
offset += 1;
result.DeleteRequestEpoch = _data.GetU32(offset);
offset += 4;
result.Storage = _data.GetU64(offset);
offset += 8;
result.Owner1 = _data.GetPubKey(offset);
offset += 32;
result.AccountCounterSeed = _data.GetU32(offset);
offset += 4;
result.CreationTime = _data.GetU32(offset);
offset += 4;
result.CreationEpoch = _data.GetU32(offset);
offset += 4;
result.LastFeeEpoch = _data.GetU32(offset);
offset += 4;
offset += _data.GetBorshString(offset, out var resultIdentifier);
result.Identifier = resultIdentifier;
return result;
}
}
public partial class UserInfoShadow
{
public static ulong ACCOUNT_DISCRIMINATOR => 4470447772197750355UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{83, 134, 200, 56, 144, 56, 10, 62};
public static string ACCOUNT_DISCRIMINATOR_B58 => "EyK5FU8iAff";
public uint AccountCounter { get; set; }
public uint DelCounter { get; set; }
public bool AgreedToTos { get; set; }
public bool LifetimeBadCsam { get; set; }
public static UserInfoShadow Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
UserInfoShadow result = new UserInfoShadow();
result.AccountCounter = _data.GetU32(offset);
offset += 4;
result.DelCounter = _data.GetU32(offset);
offset += 4;
result.AgreedToTos = _data.GetBool(offset);
offset += 1;
result.LifetimeBadCsam = _data.GetBool(offset);
offset += 1;
return result;
}
}
public partial class StorageConfig
{
public static ulong ACCOUNT_DISCRIMINATOR => 14506299954658969690UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{90, 136, 182, 122, 243, 186, 80, 201};
public static string ACCOUNT_DISCRIMINATOR_B58 => "G9J2UU82ide";
public ulong ShadesPerGib { get; set; }
public BigInteger StorageAvailable { get; set; }
public PublicKey TokenAccount { get; set; }
public PublicKey Admin2 { get; set; }
public PublicKey Uploader { get; set; }
public uint? MutableFeeStartEpoch { get; set; }
public ulong ShadesPerGibPerEpoch { get; set; }
public ushort CrankBps { get; set; }
public ulong MaxAccountSize { get; set; }
public ulong MinAccountSize { get; set; }
public static StorageConfig Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
StorageConfig result = new StorageConfig();
result.ShadesPerGib = _data.GetU64(offset);
offset += 8;
result.StorageAvailable = _data.GetBigInt(offset, 16, false);
offset += 16;
result.TokenAccount = _data.GetPubKey(offset);
offset += 32;
result.Admin2 = _data.GetPubKey(offset);
offset += 32;
result.Uploader = _data.GetPubKey(offset);
offset += 32;
if (_data.GetBool(offset++))
{
result.MutableFeeStartEpoch = _data.GetU32(offset);
offset += 4;
}
result.ShadesPerGibPerEpoch = _data.GetU64(offset);
offset += 8;
result.CrankBps = _data.GetU16(offset);
offset += 2;
result.MaxAccountSize = _data.GetU64(offset);
offset += 8;
result.MinAccountSize = _data.GetU64(offset);
offset += 8;
return result;
}
}
public partial class File
{
public static ulong ACCOUNT_DISCRIMINATOR => 18172141602764327722UL;
public static ReadOnlySpan<byte> ACCOUNT_DISCRIMINATOR_BYTES => new byte[]{42, 139, 221, 240, 129, 106, 48, 252};
public static string ACCOUNT_DISCRIMINATOR_B58 => "87kfu1G6uc7";
public bool Immutable { get; set; }
public bool ToBeDeleted { get; set; }
public uint DeleteRequestEpoch { get; set; }
public ulong Size { get; set; }
public byte[] Sha256Hash { get; set; }
public uint InitCounterSeed { get; set; }
public PublicKey StorageAccount { get; set; }
public string Name { get; set; }
public static File Deserialize(ReadOnlySpan<byte> _data)
{
int offset = 0;
ulong accountHashValue = _data.GetU64(offset);
offset += 8;
if (accountHashValue != ACCOUNT_DISCRIMINATOR)
{
return null;
}
File result = new File();
result.Immutable = _data.GetBool(offset);
offset += 1;
result.ToBeDeleted = _data.GetBool(offset);
offset += 1;
result.DeleteRequestEpoch = _data.GetU32(offset);
offset += 4;
result.Size = _data.GetU64(offset);
offset += 8;
result.Sha256Hash = _data.GetBytes(offset, 32);
offset += 32;
result.InitCounterSeed = _data.GetU32(offset);
offset += 4;
result.StorageAccount = _data.GetPubKey(offset);
offset += 32;
offset += _data.GetBorshString(offset, out var resultName);
result.Name = resultName;
return result;
}
}
}
namespace Errors
{
public enum ShadowDriveUserStakingErrorKind : uint
{
NotEnoughStorage = 6000U,
FileNameLengthExceedsLimit = 6001U,
InvalidSha256Hash = 6002U,
HasHadBadCsam = 6003U,
StorageAccountMarkedImmutable = 6004U,
ClaimingStakeTooSoon = 6005U,
SolanaStorageAccountNotMutable = 6006U,
RemovingTooMuchStorage = 6007U,
UnsignedIntegerCastFailed = 6008U,
NonzeroRemainingFileAccounts = 6009U,
AccountStillInGracePeriod = 6010U,
AccountNotMarkedToBeDeleted = 6011U,
FileStillInGracePeriod = 6012U,
FileNotMarkedToBeDeleted = 6013U,
FileMarkedImmutable = 6014U,
NoStorageIncrease = 6015U,
ExceededStorageLimit = 6016U,
InsufficientFunds = 6017U,
NotEnoughStorageOnShadowDrive = 6018U,
AccountTooSmall = 6019U,
DidNotAgreeToToS = 6020U,
InvalidTokenTransferAmounts = 6021U,
FailedToCloseAccount = 6022U,
FailedToTransferToEmissionsWallet = 6023U,
FailedToTransferToEmissionsWalletFromUser = 6024U,
FailedToReturnUserFunds = 6025U,
NeedSomeFees = 6026U,
NeedSomeCrankBps = 6027U,
AlreadyMarkedForDeletion = 6028U,
EmptyStakeAccount = 6029U,
IdentifierExceededMaxLength = 6030U,
OnlyAdmin1CanChangeAdmins = 6031U,
OnlyOneOwnerAllowedInV15 = 6032U
}
}
namespace Types
{
}
public partial class ShadowDriveUserStakingClient : TransactionalBaseClient<ShadowDriveUserStakingErrorKind>
{
public ShadowDriveUserStakingClient(IRpcClient rpcClient, IStreamingRpcClient streamingRpcClient, PublicKey programId) : base(rpcClient, streamingRpcClient, programId)
{
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UnstakeInfo>>> GetUnstakeInfosAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = UnstakeInfo.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UnstakeInfo>>(res);
List<UnstakeInfo> resultingAccounts = new List<UnstakeInfo>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => UnstakeInfo.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UnstakeInfo>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccount>>> GetStorageAccountsAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = StorageAccount.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccount>>(res);
List<StorageAccount> resultingAccounts = new List<StorageAccount>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => StorageAccount.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccount>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccountV2>>> GetStorageAccountV2sAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = StorageAccountV2.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccountV2>>(res);
List<StorageAccountV2> resultingAccounts = new List<StorageAccountV2>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => StorageAccountV2.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageAccountV2>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UserInfoShadow>>> GetUserInfoShadowsAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = UserInfoShadow.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UserInfoShadow>>(res);
List<UserInfoShadow> resultingAccounts = new List<UserInfoShadow>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => UserInfoShadow.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<UserInfoShadow>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageConfig>>> GetStorageConfigsAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = StorageConfig.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageConfig>>(res);
List<StorageConfig> resultingAccounts = new List<StorageConfig>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => StorageConfig.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<StorageConfig>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<File>>> GetFilesAsync(string programAddress, Commitment commitment = Commitment.Finalized)
{
var list = new List<Solana.Unity.Rpc.Models.MemCmp>{new Solana.Unity.Rpc.Models.MemCmp{Bytes = File.ACCOUNT_DISCRIMINATOR_B58, Offset = 0}};
var res = await RpcClient.GetProgramAccountsAsync(programAddress, commitment, memCmpList: list);
if (!res.WasSuccessful || !(res.Result?.Count > 0))
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<File>>(res);
List<File> resultingAccounts = new List<File>(res.Result.Count);
resultingAccounts.AddRange(res.Result.Select(result => File.Deserialize(Convert.FromBase64String(result.Account.Data[0]))));
return new Solana.Unity.Programs.Models.ProgramAccountsResultWrapper<List<File>>(res, resultingAccounts);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<UnstakeInfo>> GetUnstakeInfoAsync(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<UnstakeInfo>(res);
var resultingAccount = UnstakeInfo.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<UnstakeInfo>(res, resultingAccount);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccount>> GetStorageAccountAsync(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccount>(res);
var resultingAccount = StorageAccount.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccount>(res, resultingAccount);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccountV2>> GetStorageAccountV2Async(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccountV2>(res);
var resultingAccount = StorageAccountV2.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageAccountV2>(res, resultingAccount);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<UserInfoShadow>> GetUserInfoShadowAsync(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<UserInfoShadow>(res);
var resultingAccount = UserInfoShadow.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<UserInfoShadow>(res, resultingAccount);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<StorageConfig>> GetStorageConfigAsync(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageConfig>(res);
var resultingAccount = StorageConfig.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<StorageConfig>(res, resultingAccount);
}
public async Task<Solana.Unity.Programs.Models.AccountResultWrapper<File>> GetFileAsync(string accountAddress, Commitment commitment = Commitment.Finalized)
{
var res = await RpcClient.GetAccountInfoAsync(accountAddress, commitment);
if (!res.WasSuccessful)
return new Solana.Unity.Programs.Models.AccountResultWrapper<File>(res);
var resultingAccount = File.Deserialize(Convert.FromBase64String(res.Result.Value.Data[0]));
return new Solana.Unity.Programs.Models.AccountResultWrapper<File>(res, resultingAccount);
}
public async Task<SubscriptionState> SubscribeUnstakeInfoAsync(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, UnstakeInfo> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
UnstakeInfo parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = UnstakeInfo.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<SubscriptionState> SubscribeStorageAccountAsync(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, StorageAccount> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
StorageAccount parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = StorageAccount.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<SubscriptionState> SubscribeStorageAccountV2Async(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, StorageAccountV2> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
StorageAccountV2 parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = StorageAccountV2.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<SubscriptionState> SubscribeUserInfoShadowAsync(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, UserInfoShadow> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
UserInfoShadow parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = UserInfoShadow.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<SubscriptionState> SubscribeStorageConfigAsync(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, StorageConfig> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
StorageConfig parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = StorageConfig.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<SubscriptionState> SubscribeFileAsync(string accountAddress, Action<SubscriptionState, Solana.Unity.Rpc.Messages.ResponseValue<Solana.Unity.Rpc.Models.AccountInfo>, File> callback, Commitment commitment = Commitment.Finalized)
{
SubscriptionState res = await StreamingRpcClient.SubscribeAccountInfoAsync(accountAddress, (s, e) =>
{
File parsingResult = null;
if (e.Value?.Data?.Count > 0)
parsingResult = File.Deserialize(Convert.FromBase64String(e.Value.Data[0]));
callback(s, e, parsingResult);
}, commitment);
return res;
}
public async Task<RequestResult<string>> SendInitializeConfigAsync(InitializeConfigAccounts accounts, PublicKey uploader, PublicKey admin2, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.InitializeConfig(accounts, uploader, admin2, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendUpdateConfigAsync(UpdateConfigAccounts accounts, ulong? newStorageCost, BigInteger newStorageAvailable, PublicKey newAdmin2, ulong? newMaxAcctSize, ulong? newMinAcctSize, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.UpdateConfig(accounts, newStorageCost, newStorageAvailable, newAdmin2, newMaxAcctSize, newMinAcctSize, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendMutableFeesAsync(MutableFeesAccounts accounts, ulong? shadesPerGbPerEpoch, uint? crankBps, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.MutableFees(accounts, shadesPerGbPerEpoch, crankBps, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendInitializeAccountAsync(InitializeAccountAccounts accounts, string identifier, ulong storage, PublicKey owner2, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.InitializeAccount(accounts, identifier, storage, owner2, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendInitializeAccount2Async(InitializeAccount2Accounts accounts, string identifier, ulong storage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.InitializeAccount2(accounts, identifier, storage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendUpdateAccountAsync(UpdateAccountAccounts accounts, string identifier, PublicKey owner2, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.UpdateAccount(accounts, identifier, owner2, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendUpdateAccount2Async(UpdateAccount2Accounts accounts, string identifier, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.UpdateAccount2(accounts, identifier, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendRequestDeleteAccountAsync(RequestDeleteAccountAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.RequestDeleteAccount(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendRequestDeleteAccount2Async(RequestDeleteAccount2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.RequestDeleteAccount2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendUnmarkDeleteAccountAsync(UnmarkDeleteAccountAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.UnmarkDeleteAccount(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendUnmarkDeleteAccount2Async(UnmarkDeleteAccount2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.UnmarkDeleteAccount2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendRedeemRentAsync(RedeemRentAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.RedeemRent(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendDeleteAccountAsync(DeleteAccountAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.DeleteAccount(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendDeleteAccount2Async(DeleteAccount2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.DeleteAccount2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendMakeAccountImmutableAsync(MakeAccountImmutableAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.MakeAccountImmutable(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendMakeAccountImmutable2Async(MakeAccountImmutable2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.MakeAccountImmutable2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendBadCsamAsync(BadCsamAccounts accounts, ulong storageAvailable, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.BadCsam(accounts, storageAvailable, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendBadCsam2Async(BadCsam2Accounts accounts, ulong storageAvailable, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.BadCsam2(accounts, storageAvailable, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendIncreaseStorageAsync(IncreaseStorageAccounts accounts, ulong additionalStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.IncreaseStorage(accounts, additionalStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendIncreaseStorage2Async(IncreaseStorage2Accounts accounts, ulong additionalStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.IncreaseStorage2(accounts, additionalStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendIncreaseImmutableStorageAsync(IncreaseImmutableStorageAccounts accounts, ulong additionalStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.IncreaseImmutableStorage(accounts, additionalStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendIncreaseImmutableStorage2Async(IncreaseImmutableStorage2Accounts accounts, ulong additionalStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.IncreaseImmutableStorage2(accounts, additionalStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendDecreaseStorageAsync(DecreaseStorageAccounts accounts, ulong removeStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.DecreaseStorage(accounts, removeStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendDecreaseStorage2Async(DecreaseStorage2Accounts accounts, ulong removeStorage, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.DecreaseStorage2(accounts, removeStorage, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendClaimStakeAsync(ClaimStakeAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.ClaimStake(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendClaimStake2Async(ClaimStake2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.ClaimStake2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendCrankAsync(CrankAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.Crank(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendCrank2Async(Crank2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.Crank2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendRefreshStakeAsync(RefreshStakeAccounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.RefreshStake(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendRefreshStake2Async(RefreshStake2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.RefreshStake2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendMigrateStep1Async(MigrateStep1Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.MigrateStep1(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
public async Task<RequestResult<string>> SendMigrateStep2Async(MigrateStep2Accounts accounts, PublicKey feePayer, Func<byte[], PublicKey, byte[]> signingCallback, PublicKey programId)
{
Solana.Unity.Rpc.Models.TransactionInstruction instr = Program.ShadowDriveUserStakingProgram.MigrateStep2(accounts, programId);
return await SignAndSendTransaction(instr, feePayer, signingCallback);
}
protected override Dictionary<uint, ProgramError<ShadowDriveUserStakingErrorKind>> BuildErrorsDictionary()
{
return new Dictionary<uint, ProgramError<ShadowDriveUserStakingErrorKind>>{{6000U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NotEnoughStorage, "Not enough storage available on this Storage Account")}, {6001U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FileNameLengthExceedsLimit, "The length of the file name exceeds the limit of 32 bytes")}, {6002U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.InvalidSha256Hash, "Invalid sha256 hash")}, {6003U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.HasHadBadCsam, "User at some point had a bad csam scan")}, {6004U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.StorageAccountMarkedImmutable, "Storage account is marked as immutable")}, {6005U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.ClaimingStakeTooSoon, "User has not waited enough time to claim stake")}, {6006U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.SolanaStorageAccountNotMutable, "The storage account needs to be marked as mutable to update last fee collection epoch")}, {6007U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.RemovingTooMuchStorage, "Attempting to decrease storage by more than is available")}, {6008U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.UnsignedIntegerCastFailed, "u128 -> u64 cast failed")}, {6009U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NonzeroRemainingFileAccounts, "This storage account still has some file accounts associated with it that have not been deleted")}, {6010U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.AccountStillInGracePeriod, "This account is still within deletion grace period")}, {6011U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.AccountNotMarkedToBeDeleted, "This account is not marked to be deleted")}, {6012U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FileStillInGracePeriod, "This file is still within deletion grace period")}, {6013U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FileNotMarkedToBeDeleted, "This file is not marked to be deleted")}, {6014U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FileMarkedImmutable, "File has been marked as immutable and cannot be edited")}, {6015U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NoStorageIncrease, "User requested an increase of zero bytes")}, {6016U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.ExceededStorageLimit, "Requested a storage account with storage over the limit")}, {6017U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.InsufficientFunds, "User does not have enough funds to store requested number of bytes.")}, {6018U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NotEnoughStorageOnShadowDrive, "There is not available storage on Shadow Drive. Good job!")}, {6019U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.AccountTooSmall, "Requested a storage account with storage under the limit")}, {6020U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.DidNotAgreeToToS, "User did not agree to terms of service")}, {6021U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.InvalidTokenTransferAmounts, "Invalid token transfers. Stake account nonempty.")}, {6022U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FailedToCloseAccount, "Failed to close spl token account")}, {6023U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FailedToTransferToEmissionsWallet, "Failed to transfer to emissions wallet")}, {6024U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FailedToTransferToEmissionsWalletFromUser, "Failed to transfer to emissions wallet from user")}, {6025U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.FailedToReturnUserFunds, "Failed to return user funds")}, {6026U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NeedSomeFees, "Turning on fees and passing in None for storage cost per epoch")}, {6027U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.NeedSomeCrankBps, "Turning on fees and passing in None for crank bps")}, {6028U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.AlreadyMarkedForDeletion, "This account is already marked to be deleted")}, {6029U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.EmptyStakeAccount, "User has an empty stake account and must refresh stake account before unmarking account for deletion")}, {6030U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.IdentifierExceededMaxLength, "New identifier exceeds maximum length of 64 bytes")}, {6031U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.OnlyAdmin1CanChangeAdmins, "Only admin1 can change admins")}, {6032U, new ProgramError<ShadowDriveUserStakingErrorKind>(ShadowDriveUserStakingErrorKind.OnlyOneOwnerAllowedInV15, "(As part of on-chain storage optimizations, only one owner is allowed in Shadow Drive v1.5)")}, };
}
}
namespace Program
{
public class InitializeConfigAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey Admin1 { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class UpdateConfigAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey Admin { get; set; }
}
public class MutableFeesAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey Admin { get; set; }
}
public class InitializeAccountAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey Owner1 { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey Owner1TokenAccount { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class InitializeAccount2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey Owner1 { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey Owner1TokenAccount { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class UpdateAccountAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class UpdateAccount2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class RequestDeleteAccountAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class RequestDeleteAccount2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class UnmarkDeleteAccountAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class UnmarkDeleteAccount2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class RedeemRentAccounts
{
public PublicKey StorageAccount { get; set; }
public PublicKey File { get; set; }
public PublicKey Owner { get; set; }
}
public class DeleteAccountAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey ShdwPayer { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class DeleteAccount2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey ShdwPayer { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class MakeAccountImmutableAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey Owner { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey AssociatedTokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class MakeAccountImmutable2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey AssociatedTokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class BadCsamAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class BadCsam2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey UserInfoShadow { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class IncreaseStorageAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class IncreaseStorage2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class IncreaseImmutableStorageAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class IncreaseImmutableStorage2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class DecreaseStorageAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey UnstakeInfo { get; set; }
public PublicKey UnstakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class DecreaseStorage2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey UnstakeInfo { get; set; }
public PublicKey UnstakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey Uploader { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
public PublicKey Rent { get; set; }
}
public class ClaimStakeAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey UnstakeInfo { get; set; }
public PublicKey UnstakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class ClaimStake2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey UnstakeInfo { get; set; }
public PublicKey UnstakeAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class CrankAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Cranker { get; set; }
public PublicKey CrankerAta { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class Crank2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey Cranker { get; set; }
public PublicKey CrankerAta { get; set; }
public PublicKey EmissionsWallet { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class RefreshStakeAccounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class RefreshStake2Accounts
{
public PublicKey StorageConfig { get; set; }
public PublicKey StorageAccount { get; set; }
public PublicKey Owner { get; set; }
public PublicKey OwnerAta { get; set; }
public PublicKey StakeAccount { get; set; }
public PublicKey TokenMint { get; set; }
public PublicKey SystemProgram { get; set; }
public PublicKey TokenProgram { get; set; }
}
public class MigrateStep1Accounts
{
public PublicKey StorageAccount { get; set; }
public PublicKey Migration { get; set; }
public PublicKey Owner { get; set; }
public PublicKey SystemProgram { get; set; }
}
public class MigrateStep2Accounts
{
public PublicKey StorageAccount { get; set; }
public PublicKey Migration { get; set; }
public PublicKey Owner { get; set; }
public PublicKey SystemProgram { get; set; }
}
public static class ShadowDriveUserStakingProgram
{
public static Solana.Unity.Rpc.Models.TransactionInstruction InitializeConfig(InitializeConfigAccounts accounts, PublicKey uploader, PublicKey admin2, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Admin1, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(5099410418541363152UL, offset);
offset += 8;
_data.WritePubKey(uploader, offset);
offset += 32;
if (admin2 != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WritePubKey(admin2, offset);
offset += 32;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction UpdateConfig(UpdateConfigAccounts accounts, ulong? newStorageCost, BigInteger newStorageAvailable, PublicKey newAdmin2, ulong? newMaxAcctSize, ulong? newMinAcctSize, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Admin, true)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(7195436135290281501UL, offset);
offset += 8;
if (newStorageCost != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteU64(newStorageCost.Value, offset);
offset += 8;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (newStorageAvailable != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteBigInt(newStorageAvailable, offset, 16, true);
offset += 16;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (newAdmin2 != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WritePubKey(newAdmin2, offset);
offset += 32;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (newMaxAcctSize != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteU64(newMaxAcctSize.Value, offset);
offset += 8;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (newMinAcctSize != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteU64(newMinAcctSize.Value, offset);
offset += 8;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction MutableFees(MutableFeesAccounts accounts, ulong? shadesPerGbPerEpoch, uint? crankBps, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Admin, true)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(16712723855922571002UL, offset);
offset += 8;
if (shadesPerGbPerEpoch != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteU64(shadesPerGbPerEpoch.Value, offset);
offset += 8;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (crankBps != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WriteU32(crankBps.Value, offset);
offset += 4;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction InitializeAccount(InitializeAccountAccounts accounts, string identifier, ulong storage, PublicKey owner2, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner1, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner1TokenAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(533471794844365642UL, offset);
offset += 8;
offset += _data.WriteBorshString(identifier, offset);
_data.WriteU64(storage, offset);
offset += 8;
if (owner2 != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WritePubKey(owner2, offset);
offset += 32;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction InitializeAccount2(InitializeAccount2Accounts accounts, string identifier, ulong storage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner1, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner1TokenAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(7624910525970101768UL, offset);
offset += 8;
offset += _data.WriteBorshString(identifier, offset);
_data.WriteU64(storage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction UpdateAccount(UpdateAccountAccounts accounts, string identifier, PublicKey owner2, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(10990336994403950567UL, offset);
offset += 8;
if (identifier != null)
{
_data.WriteU8(1, offset);
offset += 1;
offset += _data.WriteBorshString(identifier, offset);
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
if (owner2 != null)
{
_data.WriteU8(1, offset);
offset += 1;
_data.WritePubKey(owner2, offset);
offset += 32;
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction UpdateAccount2(UpdateAccount2Accounts accounts, string identifier, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(643376074133755486UL, offset);
offset += 8;
if (identifier != null)
{
_data.WriteU8(1, offset);
offset += 1;
offset += _data.WriteBorshString(identifier, offset);
}
else
{
_data.WriteU8(0, offset);
offset += 1;
}
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction RequestDeleteAccount(RequestDeleteAccountAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(3379883273098101983UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction RequestDeleteAccount2(RequestDeleteAccount2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(13344733152882101256UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction UnmarkDeleteAccount(UnmarkDeleteAccountAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(13246319461832072031UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction UnmarkDeleteAccount2(UnmarkDeleteAccount2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(10120226077749033990UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction RedeemRent(RedeemRentAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.File, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(10437528202632931105UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction DeleteAccount(DeleteAccountAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.ShdwPayer, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(18131218944165807740UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction DeleteAccount2(DeleteAccount2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.ShdwPayer, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(12428048064582981222UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction MakeAccountImmutable(MakeAccountImmutableAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.AssociatedTokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(16689531941082841189UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction MakeAccountImmutable2(MakeAccountImmutable2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.AssociatedTokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(10039830089828325699UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction BadCsam(BadCsamAccounts accounts, ulong storageAvailable, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(16901289059335420451UL, offset);
offset += 8;
_data.WriteU64(storageAvailable, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction BadCsam2(BadCsam2Accounts accounts, ulong storageAvailable, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UserInfoShadow, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(14661184810958305607UL, offset);
offset += 8;
_data.WriteU64(storageAvailable, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction IncreaseStorage(IncreaseStorageAccounts accounts, ulong additionalStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(6513646267456996UL, offset);
offset += 8;
_data.WriteU64(additionalStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction IncreaseStorage2(IncreaseStorage2Accounts accounts, ulong additionalStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(5669200893673823314UL, offset);
offset += 8;
_data.WriteU64(additionalStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction IncreaseImmutableStorage(IncreaseImmutableStorageAccounts accounts, ulong additionalStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(2665064272846582287UL, offset);
offset += 8;
_data.WriteU64(additionalStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction IncreaseImmutableStorage2(IncreaseImmutableStorage2Accounts accounts, ulong additionalStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(11225338989571294314UL, offset);
offset += 8;
_data.WriteU64(additionalStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction DecreaseStorage(DecreaseStorageAccounts accounts, ulong removeStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeInfo, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(9956023283176508739UL, offset);
offset += 8;
_data.WriteU64(removeStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction DecreaseStorage2(DecreaseStorage2Accounts accounts, ulong removeStorage, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeInfo, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Uploader, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.Rent, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(12663776002556896536UL, offset);
offset += 8;
_data.WriteU64(removeStorage, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction ClaimStake(ClaimStakeAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeInfo, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(10030989668264546622UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction ClaimStake2(ClaimStake2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeInfo, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.UnstakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(4572198549117872859UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction Crank(CrankAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Cranker, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.CrankerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(3848736535273007104UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction Crank2(Crank2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Cranker, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.CrankerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.EmissionsWallet, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(3937087695381268965UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction RefreshStake(RefreshStakeAccounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(8608609960058190786UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction RefreshStake2(RefreshStake2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.StorageConfig, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.OwnerAta, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StakeAccount, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenMint, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.TokenProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(4106208278219831736UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction MigrateStep1(MigrateStep1Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Migration, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(7159016320904643893UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
public static Solana.Unity.Rpc.Models.TransactionInstruction MigrateStep2(MigrateStep2Accounts accounts, PublicKey programId)
{
List<Solana.Unity.Rpc.Models.AccountMeta> keys = new()
{Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.StorageAccount, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Migration, false), Solana.Unity.Rpc.Models.AccountMeta.Writable(accounts.Owner, true), Solana.Unity.Rpc.Models.AccountMeta.ReadOnly(accounts.SystemProgram, false)};
byte[] _data = new byte[1200];
int offset = 0;
_data.WriteU64(4447385444859359468UL, offset);
offset += 8;
byte[] resultData = new byte[offset];
Array.Copy(_data, resultData, offset);
return new Solana.Unity.Rpc.Models.TransactionInstruction{Keys = keys, ProgramId = programId.KeyBytes, Data = resultData};
}
}
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/ShadowDrive/ShadowInstructions.cs.meta
|
fileFormatVersion: 2
guid: de2f683e9ee614a60837bf00b908ab01
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaApiPoolsData.cs
|
using System;
using System.Collections.Generic;
namespace SolPlay.Orca
{
[Serializable]
public class OrcaApiTokenData
{
public List<Token> tokens;
}
[Serializable]
public class OrcaApiPoolsData
{
public List<whirlpool> whirlpools;
}
[Serializable]
public class Token
{
public string mint;
public string symbol;
public string name;
public int decimals;
public string logoURI;
public string coingeckoId;
public bool whitelisted;
public bool poolToken;
}
[Serializable]
public class DayWeekMonth
{
public double day;
public double week;
public double month;
}
[Serializable]
public class PriceRange
{
public MinMax day;
public MinMax week;
public MinMax month;
}
[Serializable]
public class MinMax
{
public double min;
public double max;
}
[Serializable]
public class whirlpool
{
public string address;
public Token tokenA;
public Token tokenB;
public bool whitelisted;
public int tickSpacing;
public double price;
public double lpFeeRate;
public double protocolFeeRate;
public string whirlpoolsConfig;
public long modifiedTimeMs;
public double tvl;
public DayWeekMonth volume;
public DayWeekMonth volumeDenominatedA;
public DayWeekMonth volumeDenominatedB;
public PriceRange priceRange;
public DayWeekMonth feeApr;
public DayWeekMonth reward0Apr;
public DayWeekMonth reward1Apr;
public DayWeekMonth reward2Apr;
public DayWeekMonth totalApr;
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaApiPoolsData.cs.meta
|
fileFormatVersion: 2
guid: a48452285b9245ff92f6b5fa462b2cbe
timeCreated: 1666025080
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Editor.meta
|
fileFormatVersion: 2
guid: cbe28e5e6da604cea90a36543be213f8
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Resources.meta
|
fileFormatVersion: 2
guid: 70aa49fd00a06486c8fc2d0b162985f6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/PoolListItem.cs
|
using System;
using SolPlay.Orca.OrcaWhirlPool;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class PoolListItem : MonoBehaviour
{
public PoolData PoolData;
public Button SwapButton;
public Image IconA;
public Image IconB;
public TextMeshProUGUI TokenSymbolA;
public TextMeshProUGUI TokenSymbolB;
private Action<PoolListItem> onSwapAction;
private void Awake()
{
SwapButton.onClick.AddListener(OnSwapButtonClicked);
}
public void SetData(PoolData poolData, Action<PoolListItem> onSwapClick)
{
PoolData = poolData;
TokenSymbolA.text = poolData.SymbolA;
TokenSymbolB.text = poolData.SymbolB;
IconA.sprite = poolData.SpriteA;
IconB.sprite = poolData.SpriteB;
onSwapAction = onSwapClick;
}
private void OnSwapButtonClicked()
{
onSwapAction?.Invoke(this);
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/PoolListItem.cs.meta
|
fileFormatVersion: 2
guid: 0810f1227559d4dcaae31c74f2e1a07c
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaMainNetPoolList.txt.meta
|
fileFormatVersion: 2
guid: 9ab71b48948ef48d89e241e4252dcf5c
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaSwapWidget.cs
|
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Frictionless;
using Solana.Unity.Rpc.Models;
using Solana.Unity.SDK.Nft;
using Solana.Unity.Wallet;
using SolPlay.DeeplinksNftExample.Scripts;
using SolPlay.DeeplinksNftExample.Scripts.OrcaWhirlPool;
using SolPlay.Orca.OrcaWhirlPool;
using SolPlay.Scripts;
using SolPlay.Scripts.Services;
using UnityEngine;
using Vector2 = UnityEngine.Vector2;
public class OrcaSwapWidget : MonoBehaviour
{
public PoolListItem PoolListItemPrefab;
public GameObject PoolListItemRoot;
public List<string> PoolIdWhiteList = new List<string>();
private void Start()
{
MessageRouter.AddHandler<WalletLoggedInMessage>(OnWalletLoggedInMessage);
if (ServiceFactory.Resolve<WalletHolderService>().IsLoggedIn)
{
InitPools(true);
}
}
private void OnWalletLoggedInMessage(WalletLoggedInMessage message)
{
InitPools(true);
}
/// <summary>
/// Getting all pools without the white list is very expensive since it uses get programm accounts.
/// public RPCs will have this call blocked. So only use it when you have our own rpc setup and want to get a list of
/// pools to use. I added a list of main net pools in the file OrcaMainNetPoolList.txt.
/// </summary>
/// <param name="whiteList"></param>
private async void InitPools(bool whiteList)
{
var pools = new List<Whirlpool.Accounts.Whirlpool>();
/*
// With this you can get a bunch of pools from the whirl pool list that is saved in the whirlpool service
var list = ServiceFactory.Resolve<OrcaWhirlpoolService>().OrcaApiPoolsData.whirlpools;
for (var index = 0; index < 20; index++)
{
var entry = list[index];
try
{
Whirlpool.Accounts.Whirlpool pool =
await ServiceFactory.Resolve<OrcaWhirlpoolService>().GetPool(entry.address);
pools.Add(pool);
Debug.Log($"pool: {entry.address} {entry.tokenA.symbol} {entry.tokenB.symbol}");
}
catch (Exception)
{
// May not exist on dev net
}
}
initPools(pools);
return; */
Debug.Log("Start getting pools" + PoolIdWhiteList.Count);
if (whiteList)
{
foreach (var entry in PoolIdWhiteList)
{
try
{
Whirlpool.Accounts.Whirlpool pool = await ServiceFactory.Resolve<OrcaWhirlpoolService>().GetPool(entry);
pools.Add(pool);
//Debug.Log("add pool" + pool.TokenMintA);
}
catch (Exception e)
{
// May not exist on dev net
Debug.Log($"Getting Pool error {e}");
}
}
}
else
{
// You can get all pools, but its very expensive call. So need a good RPC. public RPCs will permit it in general.
// You can also use the ORCA API which is saved in ServiceFactory.Resolve<OrcaWhirlpoolService>().OrcaApiPoolsData.whirlpools
pools = await ServiceFactory.Resolve<OrcaWhirlpoolService>().GetPools();
if (pools == null)
{
LoggingService
.LogWarning("Could not load pools. Are you connected to the internet?", true);
}
}
initPools(pools);
}
private async void initPools(List<Whirlpool.Accounts.Whirlpool> pools)
{
var wallet = ServiceFactory.Resolve<WalletHolderService>().BaseWallet;
Debug.Log("pools" + pools.Count);
for (var index = 0; index < pools.Count; index++)
{
Whirlpool.Accounts.Whirlpool pool = pools[index];
PublicKey whirlPoolPda = OrcaPDAUtils.GetWhirlpoolPda(OrcaWhirlpoolService.WhirlpoolProgammId,
pool.WhirlpoolsConfig,
pool.TokenMintA, pool.TokenMintB, pool.TickSpacing);
if (!PoolIdWhiteList.Contains(whirlPoolPda))
{
//continue;
}
PoolData poolData = new PoolData();
poolData.Pool = pool;
poolData.PoolPda = whirlPoolPda;
/* Since this is very slow we get the data from the orca API instead
var accountInfoMintA = await wallet.ActiveRpcClient.GetTokenMintInfoAsync(pool.TokenMintA);
var accountInfoMintB = await wallet.ActiveRpcClient.GetTokenMintInfoAsync(pool.TokenMintB);
if (accountInfoMintA == null || accountInfoMintA.Result == null || accountInfoMintB == null ||
accountInfoMintB.Result == null)
{
Debug.LogWarning($"Error:{accountInfoMintA.Reason} {accountInfoMintA} {accountInfoMintB}");
continue;
}
poolData.TokenMintInfoA = accountInfoMintA.Result.Value;
poolData.TokenMintInfoB = accountInfoMintB.Result.Value;
*/
poolData.TokenA = ServiceFactory.Resolve<OrcaWhirlpoolService>().GetToken(pool.TokenMintA);
poolData.TokenB = ServiceFactory.Resolve<OrcaWhirlpoolService>().GetToken(pool.TokenMintB);
poolData.SymbolA = poolData.TokenA.symbol;
poolData.SymbolB = poolData.TokenB.symbol;
poolData.SpriteA = await OrcaWhirlpoolService.GetTokenIconSprite(pool.TokenMintA, poolData.SymbolA);
poolData.SpriteB = await OrcaWhirlpoolService.GetTokenIconSprite(pool.TokenMintB, poolData.SymbolB);
PoolListItem poolListItem = Instantiate(PoolListItemPrefab, PoolListItemRoot.transform);
poolListItem.SetData(poolData, OpenSwapPopup);
}
}
private void OpenSwapPopup(PoolListItem poolListItem)
{
var orcaSwapPopup = ServiceFactory.Resolve<OrcaSwapPopup>();
if (orcaSwapPopup == null)
{
LoggingService
.Log("You need to add the OrcaSwapPopup to the scene.", true);
return;
}
orcaSwapPopup.Open(poolListItem.PoolData);
}
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaMainNetPoolList.txt
|
{"whirlpools":[{"address":"2AEWSvUds1wsufnsDPCXjFsJCMJH5SNNm7fSF4kxys9a","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9410347769963698,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3159408.3055942343,"volume":{"day":2480521.7167164064,"week":20658142.75056608,"month":63254655.614492334},"volumeDenominatedA":{"day":72208.17850418098,"week":601360.1288975406,"month":1837823.5551124634},"volumeDenominatedB":{"day":68108.68242741401,"week":567218.9340881913,"month":1734547.7697840482},"priceRange":{"day":{"min":0.93974432960127,"max":0.9435699953491101},"week":{"min":0.9384049298298481,"max":0.9491303807336225},"month":{"min":0.9365758662717657,"max":0.956641391698993}},"feeApr":{"day":0.028828118203289933,"week":0.03216216549638103,"month":0.030838738660153957},"reward0Apr":{"day":0.027554991804298067,"week":0.02881378727861243,"month":0.026376528347731118},"reward1Apr":{"day":0.048715534071283206,"week":0.05094100719982804,"month":0.04698640283307193},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.1050986440788712,"week":0.1119169599748215,"month":0.104201669840957}},{"address":"HJPjoWUrhoZzkNfRpHuieeFk9WcZWjwy6PBjZ81ngndJ","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":29.10293135695183,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":5733788.002237959,"volume":{"day":1120812.8340056036,"week":16692197.734193118,"month":80930918.05658257},"volumeDenominatedA":{"day":32626.948049778526,"week":485911.16356491135,"month":2347454.4240728165},"volumeDenominatedB":{"day":1120812.8340056036,"week":16692197.734193118,"month":80930918.05658257},"priceRange":{"day":{"min":28.627849657701596,"max":29.915636737472735},"week":{"min":28.627849657701596,"max":31.84983333352631},"month":{"min":28.453973183378523,"max":35.0349194796623}},"feeApr":{"day":0.21093636468858074,"week":0.40535040271925254,"month":0.6498488415060888},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.21093636468858074,"week":0.40535040271925254,"month":0.6498488415060888}},{"address":"HQcY5n2zP6rW74fyFEhWeBd3LnJpBcZechkvJpmdb8cx","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9348770303484883,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":924676.2361663717,"volume":{"day":707654.6567945639,"week":14480660.909166565,"month":43132455.60384016},"volumeDenominatedA":{"day":20599.881642954722,"week":421533.15600548714,"month":1253332.5461813156},"volumeDenominatedB":{"day":19297.845658515314,"week":394889.73410305305,"month":1174812.4567431083},"priceRange":{"day":{"min":0.9289147599193196,"max":0.9378566324608546},"week":{"min":0.9270986400490968,"max":0.9510131343746848},"month":{"min":0.9270986400490968,"max":0.9510131343746848}},"feeApr":{"day":0.027852574421433747,"week":0.07501936715384258,"month":0.05759989193378631},"reward0Apr":{"day":0.09361381336888877,"week":0.09397043954538979,"month":0.07647730126610633},"reward1Apr":{"day":0.013413923177754375,"week":0.02636685005992295,"month":0.039866723576440215},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.1348803109680769,"week":0.1953566567591553,"month":0.17394391677633286}},{"address":"5kDjnhGz9jjwUE84syEjUJjPyQNo4eA5uxs9fd5zzswS","tokenA":{"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2","symbol":"USDr","name":"Ratio Stable Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254","coingeckoId":"ratio-stable-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9900888659891895,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":129167.05888273811,"volume":{"day":360798.9419916162,"week":1215517.6924318103,"month":3871370.618355788},"volumeDenominatedA":{"day":363748.1201056872,"week":1225453.3595266133,"month":3904472.8532630745},"volumeDenominatedB":{"day":360798.9419916162,"week":1215517.6924318103,"month":3871370.618355788},"feeApr":{"day":0.09451817471203114,"week":0.023828303621290965,"month":0.01738579500035267},"reward0Apr":{"day":0.01474767524227347,"week":0.007111287428183736,"month":0.006019539452098974},"reward1Apr":{"day":0.12697082367743912,"week":0.06122497324699105,"month":0.0536448004246554},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.23623667363174372,"week":0.09216456429646575,"month":0.07705013487710705}},{"address":"67S6KLCtgFZmRYzy6dCDc1v754mmcpK33pZd7Hg2yeVj","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs","symbol":"MEDIA","name":"Media Network","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15142/large/media50x50.png?1620122020","coingeckoId":"media-network","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.14748301132724181,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":284059.2263829507,"volume":{"day":348675.174140795,"week":2711202.8939963533,"month":9832793.540562449},"volumeDenominatedA":{"day":348675.174140795,"week":2711202.8939963533,"month":9832793.540562449},"volumeDenominatedB":{"day":40039.728626565,"week":311337.9907091888,"month":1193550.9597945185},"priceRange":{"day":{"min":0.1350963126447411,"max":0.14779541110856875},"week":{"min":0.11657881115320252,"max":0.14779541110856875},"month":{"min":0.10962921592988957,"max":7.374136628887234}},"feeApr":{"day":1.3922216021604257,"week":1.403140578169066,"month":1.4847288883984144},"reward0Apr":{"day":3.208782255812645,"week":3.061052667734308,"month":3.0791394023086323},"reward1Apr":{"day":0.03678804482540038,"week":0.03509435473520531,"month":0.036571703413295215},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":4.6377919027984715,"week":4.49928760063858,"month":4.600439994120342}},{"address":"Fvtf8VCjnkqbETA6KtyHYqHm26ut6w184Jqm4MQjPvv7","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9979426882356652,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2582776.4283529203,"volume":{"day":268651.6657973678,"week":3241230.370106067,"month":11744640.30613369},"volumeDenominatedA":{"day":268826.9649417145,"week":3243345.3203663747,"month":11754219.881757224},"volumeDenominatedB":{"day":268651.6657973678,"week":3241230.370106067,"month":11744640.30613369},"priceRange":{"day":{"min":0.992967730911961,"max":1.001697410761113},"week":{"min":0.9853596315779198,"max":1.0146583116114922},"month":{"min":0.9727772263332685,"max":1.0146583116114922}},"feeApr":{"day":0.003780793228328005,"week":0.005724803252076513,"month":0.0068414209592109155},"reward0Apr":{"day":0.03338340517308662,"week":0.02993564027794267,"month":0.016110530595392598},"reward1Apr":{"day":0.004179978541597997,"week":0.004157015257337825,"month":0.004021532550611904},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.04134417694301262,"week":0.039817458787357006,"month":0.02697348410521542}},{"address":"AXtdSZ2mpagmtM5aipN5kV9CyGBA8dxhSBnqMRp7UpdN","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":30.913323659412516,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1160408.00926285,"volume":{"day":258629.02811216266,"week":3116275.149180388,"month":14164026.942395022},"volumeDenominatedA":{"day":7101.281243979491,"week":85564.82011894237,"month":387980.4664966165},"volumeDenominatedB":{"day":258629.02811216266,"week":3116275.149180388,"month":14164026.942395022},"priceRange":{"day":{"min":30.463444956191736,"max":31.720170008541334},"week":{"min":30.463444956191736,"max":33.75642419494869},"month":{"min":30.188188518933647,"max":37.0126849360167}},"feeApr":{"day":0.23344350248678836,"week":0.35752188234903404,"month":0.44679049938024756},"reward0Apr":{"day":0.009044411676925811,"week":0.008945897440041357,"month":0.007864698840829817},"reward1Apr":{"day":0.08533129606767959,"week":0.08440184395794063,"month":0.08672116157233949},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.32781921023139377,"week":0.45086962374701606,"month":0.5413763597934168}},{"address":"4fuUiYxTQ6QCrdSq9ouBYcTM7bqSwYTSyLueGZLTy4T4","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":1.000100345028443,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":512912.0076845167,"volume":{"day":256286.41734120835,"week":1574969.1034874816,"month":2725147.050750569},"volumeDenominatedA":{"day":256286.41734120835,"week":1574969.1034874816,"month":2725147.050750569},"volumeDenominatedB":{"day":256242.99129671085,"week":1574702.2353519045,"month":2724705.2322998582},"priceRange":{"day":{"min":0.9976623698635608,"max":1.0021374836832655},"week":{"min":0.9972412189860315,"max":1.0021728170722244},"month":{"min":0.9949104481874305,"max":1.0053298116702563}},"feeApr":{"day":0.019095044817756486,"week":0.012939476119007157,"month":0.00815749363503488},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.019095044817756486,"week":0.012939476119007157,"month":0.00815749363503488}},{"address":"CPsTfDvZYeVB5uTqQZcwwTTBJ7KPFvB6JKLGSWsFZEL7","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ","symbol":"DUST","name":"DUST Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854","coingeckoId":"dust-protocol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":26.298534025647367,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":484295.200821248,"volume":{"day":246519.89362976796,"week":1699980.7875847295,"month":5907814.449137302},"volumeDenominatedA":{"day":7176.213118429686,"week":49486.571851541805,"month":172149.5434833318},"volumeDenominatedB":{"day":155319.9474760402,"week":1071073.5054692302,"month":3823758.8284810507},"priceRange":{"day":{"min":25.964570841386344,"max":27.604179561071682},"week":{"min":24.736221741571047,"max":28.78604946276191},"month":{"min":19.019524314586434,"max":28.78604946276191}},"feeApr":{"day":0.5535188978779424,"week":0.491186846347918,"month":0.6018958392991299},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.5535188978779424,"week":0.491186846347918,"month":0.6018958392991299}},{"address":"8nJ76wCnqDK7REWwforxhDmvaF8bw8TPrGUwW3UNEeGk","tokenA":{"mint":"METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m","symbol":"MPLX","name":"Metaplex","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27344/large/mplx.png?1663636769","coingeckoId":"metaplex","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.08230668792810651,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":223544.44410471528,"volume":{"day":188980.223327933,"week":1472807.7965196567,"month":1651286.6266605055},"volumeDenominatedA":{"day":65772.060953444,"week":512591.2249415794,"month":574708.415239069},"volumeDenominatedB":{"day":188980.223327933,"week":1472807.7965196567,"month":1651286.6266605055},"priceRange":{"day":{"min":0.08254795818074656,"max":0.09139735040349294},"week":{"min":0.08254795818074656,"max":0.10958197085202745},"month":{"min":0.08254795818074656,"max":0.7639662696698631}},"feeApr":{"day":1.1743593526104705,"week":2.3593765120622936,"month":2.360760581678298},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":1.1743593526104705,"week":2.3593765120622936,"month":2.360760581678298}},{"address":"AiMZS5U3JMvpdvsr1KeaMiS354Z1DeSg5XjA4yYRxtFf","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":31.117964898800462,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":914410.9159174638,"volume":{"day":148158.8004558027,"week":2187545.0863823206,"month":6889858.172065649},"volumeDenominatedA":{"day":4040.3120882406265,"week":59654.67342399583,"month":187499.52023482832},"volumeDenominatedB":{"day":148158.8004558027,"week":2187545.0863823206,"month":6889858.172065649},"priceRange":{"day":{"min":30.80424763704977,"max":32.032857677403555},"week":{"min":30.534727053624636,"max":33.986075515724835},"month":{"min":30.33413008123974,"max":37.20757178303779}},"feeApr":{"day":0.17654475890735477,"week":0.3199244368446131,"month":0.367514528046072},"reward0Apr":{"day":0.011819235330191056,"week":0.011460231349418398,"month":0.012051077598126828},"reward1Apr":{"day":0.008235887859691702,"week":0.046402836852192236,"month":0.10555184733685016},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.19659988209723753,"week":0.3777875050462237,"month":0.485117452981049}},{"address":"FAbwB8VgdgSGty5E8dnmNbu5PZnQcvSuLnboJVpw1Rty","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":30.910542172935763,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":687800.3635462632,"volume":{"day":132215.22178131464,"week":1865051.0577868728,"month":6271632.91771795},"volumeDenominatedA":{"day":3630.2865206493966,"week":51209.457006435594,"month":171894.20607895864},"volumeDenominatedB":{"day":132192.81878327875,"week":1864735.0371757695,"month":6270793.3512723},"priceRange":{"day":{"min":30.466093696420163,"max":31.743543185856453},"week":{"min":30.466093696420163,"max":33.7556743342334},"month":{"min":30.14521587097198,"max":37.01256867641037}},"feeApr":{"day":0.21125062924863086,"week":0.3907897538199312,"month":0.44364304810008487},"reward0Apr":{"day":0.015794936394539147,"week":0.01623023827866837,"month":0.016189410635554013},"reward1Apr":{"day":0.14902046058906315,"week":0.15312740256387564,"month":0.18343960955325772},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.3760660262322332,"week":0.5601473946624752,"month":0.6432720682888966}},{"address":"5Z66YYYaTmmx1R4mATAGLSc8aV4Vfy5tNdJQzk1GP9RF","tokenA":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.8982882409593765,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":237883.2712749374,"volume":{"day":130760.84671243405,"week":1102958.538892117,"month":2177364.7271176605},"volumeDenominatedA":{"day":157702.03406552618,"week":1330205.5580578295,"month":2614914.6072812495},"volumeDenominatedB":{"day":130760.84671243405,"week":1102958.538892117,"month":2177364.7271176605},"priceRange":{"day":{"min":0.8975392050127621,"max":0.9238736879190483},"week":{"min":0.8197314189670686,"max":1.0184436186226964},"month":{"min":0.8183889543309608,"max":1.0184436186226964}},"feeApr":{"day":0.5892760652287913,"week":0.5819286760914933,"month":0.39488840608203085},"reward0Apr":{"day":0.7159207533208873,"week":0.6648608314530223,"month":0.6662774570058517},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":1.3051968185496787,"week":1.2467895075445157,"month":1.0611658630878826}},{"address":"6jZQFLhSAzTYfo33MSQYvwKvZYwxat8kUa29Mz63oHN9","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs","symbol":"whETH","name":"Ethereum (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466","coingeckoId":"ethereum-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.024075147727146636,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1005441.3777346639,"volume":{"day":104921.35298154957,"week":1458451.4243008916,"month":3484154.96623684},"volumeDenominatedA":{"day":2861.220592106337,"week":39772.18296575285,"month":94852.5280058964},"volumeDenominatedB":{"day":76.30774637336819,"week":1060.7101244967798,"month":2536.511801331163},"priceRange":{"day":{"min":0.02399706068457001,"max":0.024741290707225364},"week":{"min":0.02399706068457001,"max":0.026151223680109664},"month":{"min":0.02399706068457001,"max":0.2368925169346332}},"feeApr":{"day":0.11328913060487933,"week":0.20957785779263083,"month":0.19111466113707823},"reward0Apr":{"day":0.01069068082233419,"week":0.01091678137438596,"month":0.012007727319567639},"reward1Apr":{"day":0.1773438583190101,"week":0.19058414880150099,"month":0.23571076053610673},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.3013236697462236,"week":0.41107878796851777,"month":0.4388331489927526}},{"address":"GpqMSH1YM6oPmJ5xxEE2KfePf7uf5rXFbTW2TnxicRj6","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.03229944410977691,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":374004.78555230383,"volume":{"day":103553.35495515927,"week":1246849.4904371582,"month":3678584.909799991},"volumeDenominatedA":{"day":103620.92503503933,"week":1247663.0779805416,"month":3681648.0769640156},"volumeDenominatedB":{"day":2843.306115566077,"week":34235.24793460862,"month":100758.39220906305},"priceRange":{"day":{"min":0.03148957667477711,"max":0.03266553055051907},"week":{"min":0.029491112518656607,"max":0.03302345270856301},"month":{"min":0.02699717754323489,"max":0.03339017459778821}},"feeApr":{"day":0.2949420548846756,"week":0.5181951344526696,"month":0.5650975251084208},"reward0Apr":{"day":0.14398188033702047,"week":0.14052218453179446,"month":0.07921837770817029},"reward1Apr":{"day":0.272177243745501,"week":0.296848089782051,"month":0.21542927103906825},"reward2Apr":{"day":0.028848536878812142,"week":0.03146344252603942,"month":0.03322198383124685},"totalApr":{"day":0.7399497158460092,"week":0.9870288512925545,"month":0.8929671576869063}},{"address":"963Do8Jw6aKaRB7YLorAGrqAJqhWqVGAStkewfne1SX5","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9980284895439839,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":156004.47314113393,"volume":{"day":74892.12195671885,"week":1015987.5378165636,"month":2300379.740118734},"volumeDenominatedA":{"day":74940.990162536,"week":1016650.4845566001,"month":2302097.894044787},"volumeDenominatedB":{"day":74879.43198019048,"week":1015815.3854236124,"month":2300037.793508878},"priceRange":{"day":{"min":0.9915373385881449,"max":1.002435516868095},"week":{"min":0.9858670276231783,"max":1.0134475491406907},"month":{"min":0.973203055886737,"max":1.0134475491406907}},"feeApr":{"day":0.018529685051091857,"week":0.03099471131385709,"month":0.03809010531101593},"reward0Apr":{"day":0.2767155576596713,"week":0.24405533461593146,"month":0.1805012095914927},"reward1Apr":{"day":0.013758490622201875,"week":0.013512130429348672,"month":0.02360909700397545},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.30900373333296505,"week":0.2885621763591372,"month":0.2422004119064841}},{"address":"6BFWHpnQA7BTHq8XXzuPFmKiZxwH866udVVXNvMrWPqB","tokenA":{"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2","symbol":"USDr","name":"Ratio Stable Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254","coingeckoId":"ratio-stable-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9899730549957286,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":37632.11600830442,"volume":{"day":73416.19719485036,"week":462005.76620745903,"month":1201951.1757814041},"volumeDenominatedA":{"day":74016.30272950126,"week":465782.21102393337,"month":1211724.6691217287},"volumeDenominatedB":{"day":73403.7573040466,"week":461927.4823749817,"month":1201775.5528882167},"feeApr":{"day":0.08270927759549505,"week":0.044891099598476335,"month":0.029767861375589823},"reward0Apr":{"day":0.07009846896302446,"week":0.04312609100713582,"month":0.036013993339726255},"reward1Apr":{"day":0.6035161607878299,"week":0.3712961675117638,"month":0.3191072153950465},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.7563239073463495,"week":0.45931335811737595,"month":0.38488907011036255}},{"address":"8Ej6U2za4nwsCUyEXidzG9aWcd69PPtrA3hnVYWgJUx1","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn","symbol":"JSOL","name":"JPool","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897","coingeckoId":"jpool","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9444484199145786,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":102758.7488324204,"volume":{"day":65276.40035877024,"week":787612.3481971198,"month":1990553.148512929},"volumeDenominatedA":{"day":1900.20104942115,"week":22927.45620707536,"month":57908.66269378976},"volumeDenominatedB":{"day":1097.609000365921,"week":13243.536675262585,"month":33470.73428538048},"priceRange":{"day":{"min":0.940584327527603,"max":0.9477644280794689},"week":{"min":0.935989643974531,"max":0.9589252730352206},"month":{"min":0.935989643974531,"max":0.9593604973302521}},"feeApr":{"day":0.023228576184322863,"week":0.035211172939472755,"month":0.029603131877085055},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.023228576184322863,"week":0.035211172939472755,"month":0.029603131877085055}},{"address":"2HtfXbKo531ghGgFYzcnJQJ9GNKAdeEJBbMgfF2zagQK","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT","symbol":"UXD","name":"UXD Stablecoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473","coingeckoId":"uxd-stablecoin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":29.090401195311557,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":439882.7919633659,"volume":{"day":62124.37127974542,"week":762737.5944257166,"month":2032701.5911465595},"volumeDenominatedA":{"day":1808.4452398046622,"week":22203.350206120565,"month":59004.53152528482},"volumeDenominatedB":{"day":62069.533566473474,"week":762064.3194348668,"month":2030897.241486786},"priceRange":{"day":{"min":28.67148659280226,"max":29.93286072063056},"week":{"min":28.67148659280226,"max":579.8664760973371},"month":{"min":28.396588507905914,"max":579.8664760973371}},"feeApr":{"day":0.15405398233472029,"week":0.24316693231226078,"month":0.22703135509573116},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.15405398233472029,"week":0.24316693231226078,"month":0.22703135509573116}},{"address":"H1fREbTWrkhCs2stH3tKANWJepmqeF9hww4nWRYrM7uV","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"whitelisted":true,"tickSpacing":64,"price":0.0016246196724262777,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":804269.3578206885,"volume":{"day":59394.83104671627,"week":647352.3472070822,"month":1873777.8590443896},"volumeDenominatedA":{"day":1619.7057017118877,"week":17653.392884697078,"month":51024.69569665298},"volumeDenominatedB":{"day":2.920655315918443,"week":31.83261978901076,"month":92.84020179418317},"priceRange":{"day":{"min":0.0016600260563952073,"max":0.001710831551776166},"week":{"min":0.0016445396931163276,"max":0.0017366745492110969},"month":{"min":0.0016445396931163276,"max":0.001991112141703699}},"feeApr":{"day":0.0805678476188898,"week":0.11131030290787707,"month":0.10721034734060446},"reward0Apr":{"day":0,"week":0,"month":0.00008583071685087053},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.0805678476188898,"week":0.11131030290787707,"month":0.10729617805745532}},{"address":"AiZa55wSymdzwU9VDoWBrjizFjHdzDJFRNks2enP35sw","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":29.144006651377744,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":185689.3468770908,"volume":{"day":50322.74363817617,"week":711319.7642944575,"month":2043878.4655012581},"volumeDenominatedA":{"day":1464.8989488613297,"week":20706.573204978064,"month":59264.093287936645},"volumeDenominatedB":{"day":50355.57996500394,"week":711783.9108526683,"month":2045586.3635894535},"priceRange":{"day":{"min":28.79294143761753,"max":29.8659666023353},"week":{"min":28.558899182228483,"max":31.9933393239481},"month":{"min":28.228459256284857,"max":35.138002427729774}},"feeApr":{"day":0.29830734409849474,"week":0.6520311139299039,"month":0.5725793999342286},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.29830734409849474,"week":0.6520311139299039,"month":0.5725793999342286}},{"address":"Db4AyCBKyH5pcCxJuvQzWfFsVsSH6rM9sm21HbA4WU5","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs","symbol":"whETH","name":"Ethereum (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466","coingeckoId":"ethereum-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.023926889304918892,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":534793.4814209334,"volume":{"day":48383.10183023309,"week":673175.0032184544,"month":2708381.2455568286},"volumeDenominatedA":{"day":1328.474286357287,"week":18483.63681047388,"month":74595.850014907},"volumeDenominatedB":{"day":35.18831351581516,"week":489.5902116275455,"month":1980.4012234684876},"priceRange":{"day":{"min":0.023818552320344594,"max":0.024602010661228874},"week":{"min":0.023818552320344594,"max":0.026015880134458037},"month":{"min":0.023818552320344594,"max":0.23543944559722071}},"feeApr":{"day":0.09716322428344372,"week":0.18048171195641521,"month":0.20410781104904305},"reward0Apr":{"day":0.020019608216773642,"week":0.020252548066604883,"month":0.01888097485755674},"reward1Apr":{"day":0.09443902552514664,"week":0.09553787881866947,"month":0.11954888372807745},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.21162185802536398,"week":0.29627213884168957,"month":0.34253766963467724}},{"address":"J7qn7AvZ4QK9qT6BikVBKA3hUp89Lg9UkqJmXZQEjRxq","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"whitelisted":true,"tickSpacing":64,"price":0.0016150870674970143,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":346892.53402228147,"volume":{"day":46963.259847449735,"week":449129.527309273,"month":1615134.8013464585},"volumeDenominatedA":{"day":1289.4891139837455,"week":12331.930068636879,"month":44280.93904579528},"volumeDenominatedB":{"day":2.3093506978482514,"week":22.08529796877479,"month":80.06549434820757},"priceRange":{"day":{"min":0.0016478521435333805,"max":0.0016990205654306041},"week":{"min":0.0016375988405651761,"max":0.0017214748831166405},"month":{"min":0.0016375988405651761,"max":0.001972947278514084}},"feeApr":{"day":0.14792912078462123,"week":0.1688441846951426,"month":0.2071275878769963},"reward0Apr":{"day":0.031262467444928985,"week":0.03115126231499091,"month":0.029450882156690283},"reward1Apr":{"day":0.08848458618263662,"week":0.0881698336788143,"month":0.10518998910769206},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.26767617441218683,"week":0.2881652806889478,"month":0.34176845914137866}},{"address":"E5KuHFnU2VuuZFKeghbTLazgxeni4dhQ7URE4oBtJju2","tokenA":{"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs","symbol":"whETH","name":"Ethereum (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466","coingeckoId":"ethereum-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1296.0075221373259,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":245630.89828718445,"volume":{"day":42359.33706762979,"week":725551.126360369,"month":2132308.0108913626},"volumeDenominatedA":{"day":30.807318602430882,"week":527.6825904156487,"month":1552.2103880123327},"volumeDenominatedB":{"day":42359.33706762979,"week":725551.126360369,"month":2132308.0108913626},"priceRange":{"day":{"min":1253.8357920928522,"max":1324.0548152239967},"week":{"min":1213.3878156313924,"max":1335.2394604058513},"month":{"min":147.65226672041896,"max":1392.8439138959914}},"feeApr":{"day":0.18525384122431438,"week":0.390524944585755,"month":0.40228791898231403},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.18525384122431438,"week":0.390524944585755,"month":0.40228791898231403}},{"address":"CpbNcvqxXdQyQ3SRPDPSwLfzd9sgzBm8TjRFsfJL7Pf4","tokenA":{"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ","symbol":"DUST","name":"DUST Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854","coingeckoId":"dust-protocol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.1047291881440198,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":132313.92831275024,"volume":{"day":38111.87535410534,"week":343915.8869289814,"month":1976468.804778913},"volumeDenominatedA":{"day":24012.400748084016,"week":216684.32801698628,"month":1291677.6700007024},"volumeDenominatedB":{"day":38111.87535410534,"week":343915.8869289814,"month":1976468.804778913},"priceRange":{"day":{"min":1.0370838805176275,"max":1.1257765980519239},"week":{"min":1.0370838805176275,"max":1.2793187825751282},"month":{"min":1.0370838805176275,"max":1.7259686452358498}},"feeApr":{"day":0.3123076815512261,"week":0.3522859949772746,"month":0.5781457190992801},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.3123076815512261,"week":0.3522859949772746,"month":0.5781457190992801}},{"address":"4eJ1jCPysCrEH53VUAxgNT8BMccXsgHX1nX4FxXAUVWy","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.03207358227982536,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":124611.41527535382,"volume":{"day":34105.49166913567,"week":470882.3976183699,"month":1462567.0019430262},"volumeDenominatedA":{"day":34127.7460016721,"week":471189.6552754011,"month":1463760.079138527},"volumeDenominatedB":{"day":930.0617299969638,"week":12841.031632169346,"month":39804.05664056525},"priceRange":{"day":{"min":0.03120268869337576,"max":0.03241627114778467},"week":{"min":0.029291834642694328,"max":0.0332296506148414},"month":{"min":0.026750883009488035,"max":0.0332296506148414}},"feeApr":{"day":0.3028507744347826,"week":0.5116715605888432,"month":0.6255083899173928},"reward0Apr":{"day":0.017539853643063024,"week":0.01699201296609056,"month":0.019805132548135398},"reward1Apr":{"day":0.19487545862026384,"week":0.19314583737080118,"month":0.23034076165635975},"reward2Apr":{"day":0.352767648384126,"week":0.31009174620112223,"month":0.17847928611356564},"totalApr":{"day":0.8680337350822355,"week":1.0319011571268573,"month":1.0541335702354535}},{"address":"ApLVWYdXzjoDhBHeRx6SnbFWv4MYjFMih5FijDQUJk5R","tokenA":{"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6","symbol":"USH","name":"Hedge USD","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029","coingeckoId":"hedge-usd","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9936546924289975,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1042288.9176903877,"volume":{"day":31047.896654126052,"week":2970760.2658268386,"month":11752670.932870839},"volumeDenominatedA":{"day":31221.64699873606,"week":2987385.244507075,"month":11819137.334684707},"volumeDenominatedB":{"day":31047.896654126052,"week":2970760.2658268386,"month":11752670.932870839},"priceRange":{"day":{"min":0.9875984747954323,"max":0.9978791415089684},"week":{"min":0.9860577916287778,"max":1.0114293956088958},"month":{"min":0.9785909492748345,"max":1.0114293956088958}},"feeApr":{"day":0.0010921380404409955,"week":0.014922711513296218,"month":0.02243625223503962},"reward0Apr":{"day":0.10843937406970294,"week":0.11245594751840807,"month":0.12281031153173233},"reward1Apr":{"day":0.010427252618539046,"week":0.01081347603941239,"month":0.0111939623268661},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.11995876472868298,"week":0.13819213507111666,"month":0.15644052609363804}},{"address":"9vqYJjDUFecLL2xPUC4Rc7hyCtZ6iJ4mDiVZX7aFXoAe","tokenA":{"mint":"7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU","symbol":"SAMO","name":"Samoyedcoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15051/large/IXeEj5e.png?1619560738","coingeckoId":"samoyedcoin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.006339876228336487,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":65802.98933538242,"volume":{"day":30434.60815055574,"week":350146.9695642065,"month":928571.3597950819},"volumeDenominatedA":{"day":4013477.6516463785,"week":46174638.75946059,"month":120568988.03351268},"volumeDenominatedB":{"day":30434.60815055574,"week":350146.9695642065,"month":928571.3597950819},"priceRange":{"day":{"min":0.006269268927481735,"max":0.006432879880650003},"week":{"min":0.005906073899438947,"max":0.007289712325257832},"month":{"min":0.005857207131826485,"max":0.008798352935106168}},"feeApr":{"day":0.5221665538448376,"week":0.789391686117112,"month":0.7081714395327057},"reward0Apr":{"day":0.17027931525279594,"week":0.1730724712836203,"month":0.1789684256485724},"reward1Apr":{"day":0.6234569870132353,"week":0.6336837878472096,"month":0.67847840596412},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":1.3159028561108688,"week":1.596147945247942,"month":1.565618271145398}},{"address":"ErSQss3jrqDpQoLEYvo6onzjsi6zm4Sjpoz1pjqz2o6D","tokenA":{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":19176.943519679386,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":363522.67578834115,"volume":{"day":27641.47652425398,"week":738204.3488925501,"month":2749368.5786579177},"volumeDenominatedA":{"day":1.3592298172697734,"week":36.3001361874628,"month":136.07640184825496},"volumeDenominatedB":{"day":27641.47652425398,"week":738204.3488925501,"month":2749368.5786579177},"priceRange":{"day":{"min":18139.290748958574,"max":18878.991201461627},"week":{"min":18101.996727875314,"max":20030.052945908436},"month":{"min":18101.996727875314,"max":20613.98684527327}},"feeApr":{"day":0.08274731768179565,"week":0.27883036875895467,"month":0.3219456148199662},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.08274731768179565,"week":0.27883036875895467,"month":0.3219456148199662}},{"address":"F7qyox3dAegTNfd8oBQD97LuCHWzQ9hSjbsF7Kv8kTNc","tokenA":{"mint":"a11bdAAuV8iB2fu7X6AxAvDTo1QZ8FXB3kk5eecdasp","symbol":"ABR","name":"Allbridge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18690/large/abr.png?1640742053","coingeckoId":"allbridge","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.5022784826340976,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":508015.19886223,"volume":{"day":23194.16289864096,"week":194349.2597148509,"month":646617.2442946951},"volumeDenominatedA":{"day":39211.00170241682,"week":328558.0594930198,"month":1074455.0594392736},"volumeDenominatedB":{"day":23194.16289864096,"week":194349.2597148509,"month":646617.2442946951},"priceRange":{"day":{"min":0.4973942380959185,"max":0.5026590103223919},"week":{"min":0.4973942380959185,"max":0.5456035249905822},"month":{"min":0.4973942380959185,"max":0.665191890682549}},"feeApr":{"day":0.049753082488704775,"week":0.05314494266284723,"month":0.0535529716187715},"reward0Apr":{"day":0.1814985259371816,"week":0.18009463052436522,"month":0.1795682078991841},"reward1Apr":{"day":0.02543987716624157,"week":0.025243099111588556,"month":0.025052784970821154},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.25669148559212795,"week":0.258482672298801,"month":0.2581739644887767}},{"address":"3K92dMW5CNKa6ShbJtWHicBQrMHujWLGwHWDHWJvqesi","tokenA":{"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6","symbol":"USH","name":"Hedge USD","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029","coingeckoId":"hedge-usd","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9938310931082183,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":54758.75149528893,"volume":{"day":21820.842086662302,"week":615119.4857565099,"month":2209984.59588746},"volumeDenominatedA":{"day":21942.955957191898,"week":618561.8195099721,"month":2222407.163607582},"volumeDenominatedB":{"day":21817.14468876951,"week":615015.2578132704,"month":2209692.152897777},"priceRange":{"day":{"min":0.9861758170056746,"max":0.998177781535274},"week":{"min":0.9861758170056746,"max":1.0112355788182243},"month":{"min":0.9786658500100341,"max":1.0112355788182243}},"feeApr":{"day":0.01362058720119502,"week":0.04094213131981044,"month":0.0450395940254293},"reward0Apr":{"day":0.038417092808755285,"week":0.03081999033791157,"month":0.028015743045463826},"reward1Apr":{"day":0.402446169951715,"week":0.30683907832790525,"month":0.297463365857295},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.4544838499616653,"week":0.37860119998562725,"month":0.3705187029281881}},{"address":"94kzEWvzeFNbQstgiE7EX1M9B1XsFzFtKA4jXrC5GRF2","tokenA":{"mint":"jRAYPwLn4ZRGRSKu7GWu6B3Qx3Vj2JU88agUweEceyo","symbol":"J-RAY","name":"Jungle-Staked RAY","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R","symbol":"RAY","name":"Raydium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614","coingeckoId":"raydium","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9357096341266815,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":81592.97065982984,"volume":{"day":21741.04125253563,"week":60419.14936238128,"month":167158.92187904374},"volumeDenominatedA":{"day":39902.47085001129,"week":110890.42692165078,"month":307004.44373877294},"volumeDenominatedB":{"day":37338.368070648015,"week":103764.69145170042,"month":286882.2635835602},"feeApr":{"day":0.009650117925586166,"week":0.003477717870713792,"month":0.00417558644289798},"reward0Apr":{"day":1.3458941335327763,"week":1.3737113887856596,"month":1.4292298103686027},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":1.3555442514583624,"week":1.3771891066563733,"month":1.4334053968115008}},{"address":"3jLRacqwVaxLC6fSNaZSHiC7samXPkSkJ3j5d6QJUaEL","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs","symbol":"whETH","name":"Ethereum (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466","coingeckoId":"ethereum-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0007704424010834161,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":131470.67512339845,"volume":{"day":21345.666684729826,"week":319870.4715424304,"month":1134963.9431595162},"volumeDenominatedA":{"day":21359.595044690795,"week":320079.19170724566,"month":1135935.422081504},"volumeDenominatedB":{"day":15.524387298315245,"week":232.63705738794394,"month":825.375069851726},"priceRange":{"day":{"min":0.0007519488143796314,"max":0.0007922483432230493},"week":{"min":0.0007463897747106755,"max":0.0008345672416487526},"month":{"min":0.0007158656873171196,"max":0.006778910444188061}},"feeApr":{"day":0.17584337274985062,"week":0.3391953964593488,"month":0.35451314992406124},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.17584337274985062,"week":0.3391953964593488,"month":0.35451314992406124}},{"address":"7A1R3L7AxcxuZHMJjFgskKGeBR5Rwst3Ai5bv5uAWZFG","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":31.12168080178465,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":87907.98124425022,"volume":{"day":21166.200293854217,"week":145118.809139007,"month":448798.7251672801},"volumeDenominatedA":{"day":577.2053677965112,"week":3957.411081836618,"month":12263.249818485745},"volumeDenominatedB":{"day":21162.613820699153,"week":145094.21971312753,"month":448742.76737027336},"priceRange":{"day":{"min":30.794563721565904,"max":32.05646126030372},"week":{"min":30.49829084534682,"max":33.98532055356566},"month":{"min":30.290949686616624,"max":37.23579597045367}},"feeApr":{"day":0.27781392651600395,"week":0.2720846546904761,"month":0.26427587134292024},"reward0Apr":{"day":0.1309460049084954,"week":0.15616656061701642,"month":0.15573413557970545},"reward1Apr":{"day":0.0007689211625597093,"week":0.0009170174640035725,"month":0.0009368366958775298},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.40952885258705907,"week":0.4291682327714961,"month":0.4209468436185032}},{"address":"3db3DPqaS6x3S9oKTzZfu38kJSDFbLsvUDQ9LuRWHUxn","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p","symbol":"wLDO","name":"Lido DAO (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22995/large/LDO_wh_small.png?1644226233","coingeckoId":"lido-dao-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.6798386297531852,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":30166.234446809896,"volume":{"day":19618.335336126947,"week":166696.10861196084,"month":559694.7186605657},"volumeDenominatedA":{"day":19618.335336126947,"week":166696.10861196084,"month":559694.7186605657},"volumeDenominatedB":{"day":12549.892462118605,"week":106635.86900165393,"month":353152.31070654956},"priceRange":{"day":{"min":0.6787367658682796,"max":0.7429317064129088},"week":{"min":0.6513356926318706,"max":0.8784315594710639},"month":{"min":0.5269991614324606,"max":1.7199413494672224}},"feeApr":{"day":0.7227777465447531,"week":0.7854091782378658,"month":0.6675461785979738},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.7227777465447531,"week":0.7854091782378658,"month":0.6675461785979738}},{"address":"96UbjyFmQY1JLpTvRujrkABxm1ft5hQvSVnv4JbagTMZ","tokenA":{"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R","symbol":"RAY","name":"Raydium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614","coingeckoId":"raydium","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.49095490141418,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":14234.785661356069,"volume":{"day":16587.575930142426,"week":289039.254376242,"month":393674.692026059},"volumeDenominatedA":{"day":28487.734708071774,"week":496400.05468951934,"month":675942.6416913004},"volumeDenominatedB":{"day":16587.575930142426,"week":289039.254376242,"month":393674.692026059},"priceRange":{"day":{"min":0.47767335607208206,"max":0.49682777505725245},"week":{"min":0.4736942734707368,"max":0.5090097901776054},"month":{"min":0.4721020612276853,"max":0.6014429919510681}},"feeApr":{"day":1.2859964968335236,"week":2.7092105753912903,"month":2.705697600145105},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":1.2859964968335236,"week":2.7092105753912903,"month":2.705697600145105}},{"address":"DZiV1HEnLE8hU16Xs1cjThAY2twAke4QSpJpHgNwpd3h","tokenA":{"mint":"kiGenopAScF8VF31Zbtx2Hg8qA5ArGqvnVtXb83sotc","symbol":"KI","name":"Genopets KI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26135/large/genopets_ki.png?1660017469","coingeckoId":"genopet-ki","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.045949887106339966,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2715779.8868086804,"volume":{"day":16156.050583247337,"week":443519.53674031084,"month":3403411.756709539},"volumeDenominatedA":{"day":322728.84280599107,"week":8859624.827027448,"month":67821724.40161866},"volumeDenominatedB":{"day":16156.050583247337,"week":443519.53674031084,"month":3403411.756709539},"priceRange":{"day":{"min":0.045883725854606934,"max":0.046270173404242075},"week":{"min":0.045255072749931166,"max":0.0489256810154878},"month":{"min":0.038885137569374104,"max":0.05495266920947912}},"feeApr":{"day":0.006490905080365282,"week":0.023084536518706237,"month":0.03342657309299068},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.006490905080365282,"week":0.023084536518706237,"month":0.03342657309299068}},{"address":"6EfX4sGXsqpAKrE5JaGg3JZgsPeraut3WpQN9FZd9nwg","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e","symbol":"CELO","name":"CELO (Allbridge from Celo)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e/logo.png","coingeckoId":"celo","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.434657547649229,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":46747.887396238206,"volume":{"day":15353.578257392917,"week":174672.56956680882,"month":315622.4505725688},"volumeDenominatedA":{"day":15353.578257392917,"week":174672.56956680882,"month":315622.4505725688},"volumeDenominatedB":{"day":19466.237073751025,"week":221460.92542508952,"month":399594.02804385044},"priceRange":{"day":{"min":1.3952996619589766,"max":1.4554222473942562},"week":{"min":1.2859185636254455,"max":1.4554222473942562},"month":{"min":1.201383572391151,"max":1.4649116457069502}},"feeApr":{"day":0.380143880920221,"week":0.6040884233866756,"month":0.43557362068545014},"reward0Apr":{"day":0.2806247403371479,"week":0.3172649841749271,"month":0.37476142744200397},"reward1Apr":{"day":0.19627355337295982,"week":0.2219003418230893,"month":0.25875361495784793},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.8570421746303287,"week":1.143253749384692,"month":1.069088663085302}},{"address":"CFikKJGqYk2HYgvzeb9yebJ2pSPaxoef7wz6NL7HYyTH","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds","symbol":"FORGE","name":"Blocksmith Labs Forge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25411/large/Logo_%281%29.png?1651733020","coingeckoId":"blocksmith-labs-forge","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":2.6791952122006486,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":4384.496192181641,"volume":{"day":13973.774968619353,"week":80828.66561612919,"month":795250.7173626813},"volumeDenominatedA":{"day":13973.774968619353,"week":80828.66561612919,"month":795250.7173626813},"volumeDenominatedB":{"day":27146.107674975472,"week":157021.5396317368,"month":1514306.3820045176},"priceRange":{"day":{"min":2.6036228289124077,"max":2.843118706232787},"week":{"min":2.250156408978776,"max":2.8633626075072596},"month":{"min":1.376190669160074,"max":2.9641075540776027}},"feeApr":{"day":3.364257224457389,"week":2.65389600512426,"month":2.9634235602530397},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":3.364257224457389,"week":2.65389600512426,"month":2.9634235602530397}},{"address":"GpVjnSuCA9rfrWS13nL1wPmzqNzqLrP5ih1vhu7yhiPv","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"whitelisted":true,"tickSpacing":64,"price":0.00005202483152262477,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":109747.21500719691,"volume":{"day":12754.647403317065,"week":141712.02640748478,"month":713136.2742391501},"volumeDenominatedA":{"day":12762.969997445072,"week":141804.49557903863,"month":713786.1060977465},"volumeDenominatedB":{"day":0.6271914253256029,"week":6.968484899486507,"month":35.33859526735875},"priceRange":{"day":{"min":0.000053018395333159065,"max":0.00005476230260085294},"week":{"min":0.000049691856956172896,"max":0.00005595668673865274},"month":{"min":0.0000483121071530518,"max":0.00005595668673865274}},"feeApr":{"day":0.12634400703801454,"week":0.20361143258224526,"month":0.292583070987588},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.12634400703801454,"week":0.20361143258224526,"month":0.292583070987588}},{"address":"6mCQsuigSQhr5t1Kui1yE5bcEqxe44RR2XFAuLi8C27q","tokenA":{"mint":"4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t","symbol":"CAVE","name":"CaveWorld","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19358/large/token.png?1650866628","coingeckoId":"cave","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.21326839584558166,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":19477.312875975527,"volume":{"day":11994.149157689142,"week":145094.1908270859,"month":916285.4672557695},"volumeDenominatedA":{"day":57004.40526971282,"week":689586.8933634136,"month":3959122.6988472366},"volumeDenominatedB":{"day":11994.149157689142,"week":145094.1908270859,"month":916285.4672557695},"priceRange":{"day":{"min":0.21223988498504487,"max":0.22246813703496537},"week":{"min":0.17929377649273237,"max":0.30058748056030943},"month":{"min":0.01463536084693757,"max":4.964842344522029}},"feeApr":{"day":0.7003635084645343,"week":1.1065492511046215,"month":2.093330705814595},"reward0Apr":{"day":0.5658282452509655,"week":0.5840201513318821,"month":0.6367412914945315},"reward1Apr":{"day":5.748216299319652,"week":5.933026817224484,"month":6.882212260575808},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":7.014408053035152,"week":7.623596219660988,"month":9.612284257884934}},{"address":"GLNvG5Ly4cK512oQeJqnwLftwfoPZ4skyDwZWzxorYQ9","tokenA":{"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT","symbol":"UXD","name":"UXD Stablecoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473","coingeckoId":"uxd-stablecoin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":1.0000902462928731,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1180185.8086099625,"volume":{"day":10420.682818355495,"week":143810.0650066006,"month":1028290.2960503846},"volumeDenominatedA":{"day":10411.484392605355,"week":143683.12263361557,"month":1027378.7386594521},"volumeDenominatedB":{"day":10420.682818355495,"week":143810.0650066006,"month":1028290.2960503846},"priceRange":{"day":{"min":0.998478037231888,"max":1.0015378367230519},"week":{"min":0.05260067168581821,"max":1.0058457731784474},"month":{"min":0.05260067168581821,"max":1.0360146992857207}},"feeApr":{"day":0.00032063189508238575,"week":0.0005841070097744366,"month":0.0013035484712669255},"reward0Apr":{"day":0.001818490378404289,"week":0.0018487324079768852,"month":0.001602571186962206},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.002139122273486675,"week":0.002432839417751322,"month":0.0029061196582291313}},{"address":"GE3FFK5V76w7X1KyYMyP8cHQykkuav2tTBXjn9xiwcpq","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GePFQaZKHcWE5vpxHfviQtH5jgxokSs51Y5Q4zgBiMDs","symbol":"JFI","name":"Jungle DeFi","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23679/large/logo.png?1644997055","coingeckoId":"jungle-defi","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.261063797534338,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":33024.41035189735,"volume":{"day":10064.96921992433,"week":114383.77676730853,"month":305059.05863533984},"volumeDenominatedA":{"day":10064.96921992433,"week":114383.77676730853,"month":305059.05863533984},"volumeDenominatedB":{"day":11943.935493224604,"week":135737.37001357743,"month":384088.6365377614},"priceRange":{"day":{"min":1.2562796664547855,"max":1.2698339387454842},"week":{"min":1.2558688387939771,"max":1.3499063953924426},"month":{"min":1.1782648999649157,"max":1.8206216054356057}},"feeApr":{"day":0.3187302070583646,"week":0.49868196429589234,"month":0.5653475589590863},"reward0Apr":{"day":2.985488597090669,"week":3.0429926441370543,"month":3.537116191555999},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":3.3042188041490337,"week":3.5416746084329467,"month":4.102463750515086}},{"address":"2Ap6aVgADL2xDpazbv6SN9J1S6jraGp3aq7bh4kvyVgE","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2","symbol":"USDr","name":"Ratio Stable Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254","coingeckoId":"ratio-stable-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":29.38880398019818,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":24827.367455772706,"volume":{"day":9389.10849218774,"week":93796.84758394101,"month":219034.4325776806},"volumeDenominatedA":{"day":273.3176724195256,"week":2730.4334680191027,"month":6364.81263342687},"volumeDenominatedB":{"day":9465.855261795617,"week":94563.54498204436,"month":220773.10079026723},"feeApr":{"day":0.42093555945016403,"week":0.6562228143636266,"month":0.5855003650297017},"reward0Apr":{"day":0.0450059548868729,"week":0.054620263890993025,"month":0.060900327508594386},"reward1Apr":{"day":0.38724653581998436,"week":0.46997131891828303,"month":0.5489458777981149},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.8531880501570213,"week":1.1808143971729028,"month":1.195346570336411}},{"address":"EYh4771fqdF57MmC6UzjA6B41ttsZvSfhn4a4eNv959B","tokenA":{"mint":"jJF1SrhzpyqYawE9ruSVKrHjfxjaG5TUMFB5vnXUWVm","symbol":"J-JFI","name":"Jungle-Staked JFI","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"GePFQaZKHcWE5vpxHfviQtH5jgxokSs51Y5Q4zgBiMDs","symbol":"JFI","name":"Jungle DeFi","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23679/large/logo.png?1644997055","coingeckoId":"jungle-defi","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9320091786185281,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":82259.52463026508,"volume":{"day":7699.533265051312,"week":77082.11478432779,"month":249466.04183591058},"volumeDenominatedA":{"day":9817.499396661171,"week":98285.64788770504,"month":335929.61522510776},"volumeDenominatedB":{"day":9136.911066122595,"week":91472.09360986674,"month":311703.08466110606},"feeApr":{"day":0.0033016652461617876,"week":0.0040818387981999375,"month":0.006101923171105086},"reward0Apr":{"day":0.660843033902748,"week":0.6768784607578592,"month":0.785272789670939},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.6641446991489098,"week":0.6809602995560591,"month":0.7913747128420442}},{"address":"GWRhd3hqQaBWheXsbzHRu7n2gB7CXV6NN9PuSATLrMBA","tokenA":{"mint":"SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd","symbol":"SNS","name":"Synesis One","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23289/large/sns.png?1643549030","coingeckoId":"synesis-one","whitelisted":true,"poolToken":false},"tokenB":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0002163503278190178,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":49756.86494223488,"volume":{"day":4413.76275420829,"week":39165.765210471254,"month":82632.84888926378},"volumeDenominatedA":{"day":592930.179573203,"week":5261398.378792597,"month":11030314.687518511},"volumeDenominatedB":{"day":128.48497422262855,"week":1140.1184462574406,"month":2405.135386765216},"priceRange":{"day":{"min":0.00021265204477243665,"max":0.0002198927898089171},"week":{"min":0.00021265204477243665,"max":0.00023581535411122605},"month":{"min":0.00021265204477243665,"max":0.000250464453895825}},"feeApr":{"day":0.09655606753411154,"week":0.11001114798453517,"month":0.07713426609498843},"reward0Apr":{"day":0.043130033499503846,"week":0.04318408877942016,"month":0.04374053239913252},"reward1Apr":{"day":0.4216119572790998,"week":0.4221403675426076,"month":0.4280871482845827},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.5612980583127152,"week":0.5753356043065629,"month":0.5489619467787037}},{"address":"5bztdsTnxGD2zoe2bP1hzUUqdUfE9Zt5DokUWnbxqcCk","tokenA":{"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp","symbol":"SLND","name":"Solend","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597","coingeckoId":"solend","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.7840337444759177,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1623428.865188681,"volume":{"day":4335.770585486227,"week":178323.947859544,"month":590293.9375771389},"volumeDenominatedA":{"day":6751.963569269692,"week":277698.4565342182,"month":904441.3613807203},"volumeDenominatedB":{"day":4335.770585486227,"week":178323.947859544,"month":590293.9375771389},"priceRange":{"day":{"min":0.7775762287722044,"max":0.7903469586292043},"week":{"min":0.6199957448041202,"max":0.7983232494905667},"month":{"min":0.6199957448041202,"max":0.7983232494905667}},"feeApr":{"day":0.0029072369850133596,"week":0.015715362904318596,"month":0.011305349327220821},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0.00531408339691595,"week":0.0053326642545283975,"month":0.005303100233649466},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.008221320381929308,"week":0.021048027158846995,"month":0.016608449560870285}},{"address":"HZUXGiKoFMqEaBRvJZJs4ueFRdK8zrVMb9akHSatNt64","tokenA":{"mint":"5PmpMzWjraf3kSsGEKtqdUsCoLhptg4yriZ17LKKdBBy","symbol":"HDG","name":"Hedge Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25482/large/hdg.png?1652011201","coingeckoId":"hedge-protocol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.4519399686469254,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":6728.461752125052,"volume":{"day":4168.594659512474,"week":36503.02114331218,"month":164744.24853540034},"volumeDenominatedA":{"day":9676.989318661688,"week":84738.23303895567,"month":372365.09690477035},"volumeDenominatedB":{"day":4168.594659512474,"week":36503.02114331218,"month":164744.24853540034},"priceRange":{"day":{"min":0.44892656648886614,"max":0.4584556498123718},"week":{"min":0.41199678862387806,"max":0.4626397694476939},"month":{"min":0.1575684694364816,"max":6.197212354459171}},"feeApr":{"day":0.6727560806416444,"week":0.927567611361769,"month":1.8061159476710082},"reward0Apr":{"day":0.8310476715627576,"week":1.0423160346212592,"month":1.3846025600643734},"reward1Apr":{"day":1.5982312341007274,"week":2.0045324706862013,"month":2.5296814562895475},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":3.1020349863051293,"week":3.9744161166692296,"month":5.72039996402493}},{"address":"5AX84BrKDWpUZ87fbQpkm7XsSx8bWwANePRmAx17tQjM","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT","symbol":"STEP","name":"Step Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762","coingeckoId":"step-finance","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1142.1411452072098,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":385446.6953430956,"volume":{"day":3784.885835127388,"week":57366.38299793794,"month":154947.62784461668},"volumeDenominatedA":{"day":110.17831860089717,"week":1669.9398339224037,"month":4516.284696953153},"volumeDenominatedB":{"day":42870.597439711855,"week":649776.8279433862,"month":1755058.8490448515},"priceRange":{"day":{"min":1128.3830340418158,"max":1172.2909553335678},"week":{"min":1127.6294954936157,"max":1224.9877775846658},"month":{"min":1031.2882257622914,"max":1423.7190924754714}},"feeApr":{"day":0.010672286186767027,"week":0.02116946459684181,"month":0.01805566723254167},"reward0Apr":{"day":0.07997703016449528,"week":0.07997939966032848,"month":0.0809937719776041},"reward1Apr":{"day":0.013967435255301999,"week":0.01396784907136363,"month":0.014046977080021176},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.1046167516065643,"week":0.11511671332853392,"month":0.11309641629016695}},{"address":"7wp9f3smjBFGk9AAAZkLJUrSLq8p1SUQ4uuNKrAp75AV","tokenA":{"mint":"SoLW9muuNQmEAoBws7CWfYQnXRXMVEG12cQhy6LE2Zf","symbol":"amtSol","name":"Amulet Staked Sol","decimals":9,"logoURI":"https://files.amulet.org/public/asset/img/logo/amtSOL.png","coingeckoId":"amtSOL","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":28.984642271643136,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":53351.212281,"volume":{"day":3510.920623126286,"week":181791.24284534846,"month":181791.24284534846},"volumeDenominatedA":{"day":3.510920623126286,"week":181.79124284534856,"month":181.79124284534856},"volumeDenominatedB":{"day":3510.920623126286,"week":181791.24284534846,"month":181791.24284534846},"feeApr":{"day":0.07383599427998934,"week":512.5009764909248,"month":512.5009764909248},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.07383599427998934,"week":512.5009764909248,"month":512.5009764909248}},{"address":"6mPWsaeCR4hEJGk9Kk6rDGGBSaTpMY3R5EA5gVwQ8zeX","tokenA":{"mint":"iRAYYHCNhEpbDiVt6QKK3Q57DMgw4p8zEKsVz3WfMjW","symbol":"I-RAY-Q4","name":"I-RAY-Q4","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.030959041287806327,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1816.6741618619476,"volume":{"day":2878.395006800366,"week":10670.404645146766,"month":27292.63690557582},"volumeDenominatedA":{"day":71391.8470628662,"week":264654.3975811062,"month":674289.4745273052},"volumeDenominatedB":{"day":2878.395006800366,"week":10670.404645146766,"month":27292.63690557582},"feeApr":{"day":1.3618680964827163,"week":0.659840283291408,"month":0.7349890982473172},"reward0Apr":{"day":6.883994172542629,"week":6.860306825801438,"month":8.110637791806722},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":8.245862269025345,"week":7.5201471090928464,"month":8.845626890054039}},{"address":"Fq48tf4mBsjPcG9bLxCoWCwqaeeAwbSrV7DmcWccHEZN","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh","symbol":"svtOKAY","name":"Okay Bears Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":2.6582067469266883,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":16747.508494780388,"volume":{"day":2294.60750859711,"week":4137.243183957779,"month":4137.243183957779},"volumeDenominatedA":{"day":66.79620156567135,"week":120.43546820379815,"month":120.43546820379815},"volumeDenominatedB":{"day":142.4081391022089,"week":242.7998731038577,"month":242.7998731038577},"feeApr":{"day":0.48115669481947515,"week":0.09167658160738158,"month":0.08370806860690876},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.48115669481947515,"week":0.09167658160738158,"month":0.08370806860690876}},{"address":"7gkFzzqrKRS26KUEQXSEPDcjivsKN8sEiioUHGstjA2B","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4","symbol":"FTM","name":"FTM (Allbridge from Fantom)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4/logo.png","coingeckoId":"fantom","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":4.962086841367439,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":20587.283418803494,"volume":{"day":2206.186217817398,"week":26255.550815012648,"month":69876.27553650452},"volumeDenominatedA":{"day":2206.186217817398,"week":26255.550815012648,"month":69876.27553650452},"volumeDenominatedB":{"day":9694.400311720863,"week":115371.86568832447,"month":304670.04222638253},"priceRange":{"day":{"min":4.841161986045758,"max":5.073363580456601},"week":{"min":4.6572107732025385,"max":5.114761660898273},"month":{"min":4.21966829976362,"max":5.174155603626774}},"feeApr":{"day":0.11793755292083209,"week":0.18352614345513,"month":0.1713491960761109},"reward0Apr":{"day":0.3028654452998355,"week":0.31228213336507993,"month":0.30701508893996676},"reward1Apr":{"day":0.21182938807084478,"week":0.21841558435526898,"month":0.21213818536427276},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.6326323862915124,"week":0.7142238611754789,"month":0.6905024703803504}},{"address":"GyEEixChou5PomH9ccN8r5uybBSg9K3cLHJBFtmBMmYC","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh","symbol":"daoSOL","name":"daoSOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503","coingeckoId":"daosol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.03295586679658112,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":11284.836734164217,"volume":{"day":2152.2374377401816,"week":25267.177652916325,"month":72367.1533397645},"volumeDenominatedA":{"day":2153.6418041718835,"week":25283.664856185518,"month":72427.14786758577},"volumeDenominatedB":{"day":60.52766466274683,"week":710.5922558226559,"month":2032.2780101614137},"priceRange":{"day":{"min":0.03221487961219247,"max":0.033182159516978865},"week":{"min":0.030297645919367556,"max":0.0333175150363973},"month":{"min":0.0014798151210737374,"max":0.5600398391298544}},"feeApr":{"day":0.2082557856170649,"week":0.3163467758490076,"month":0.3251831799331966},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.2082557856170649,"week":0.3163467758490076,"month":0.3251831799331966}},{"address":"ACWqC57o4SRRQNWKs5RU4jKWV4LmdTWsP9E4noRFkS1j","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Hg35Vd8K3BS2pLB3xwC2WqQV8pmpCm3oNRGYP1PEpmCM","symbol":"eSOL","name":"Eversol Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23056/large/SUWTLy9j_400x400.jpeg?1657789195","coingeckoId":"eversol-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.032780186933164965,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":39417.2240602019,"volume":{"day":1833.0196239237346,"week":20860.068259022923,"month":59226.136131415085},"volumeDenominatedA":{"day":1834.2156960593406,"week":20873.679758903112,"month":59275.45483632354},"volumeDenominatedB":{"day":51.08674479735453,"week":581.3756545185998,"month":1648.429569760651},"priceRange":{"day":{"min":0.031674629611241574,"max":0.0329750449922743},"week":{"min":0.03013217015201472,"max":0.03320348121690865},"month":{"min":0.02722597696123656,"max":0.033229297633021314}},"feeApr":{"day":0.05077771458686958,"week":0.0721447168397903,"month":0.07168371341996835},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.05077771458686958,"week":0.0721447168397903,"month":0.07168371341996835}},{"address":"53izNbSmy63u7XqoyAVQEvRyuhYcMNphTtZEqxdgcxdF","tokenA":{"mint":"iJF17JCu78E51eAgwtCwvgULHh2ZqCeRrcFP7wgcc6w","symbol":"I-JFI-Q4","name":"I-JFI-Q4","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.08786319972620978,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":4237.197590811972,"volume":{"day":1588.6366529361983,"week":11661.269129843724,"month":75126.51290254686},"volumeDenominatedA":{"day":19432.02599762564,"week":142639.34076908996,"month":971459.0491669592},"volumeDenominatedB":{"day":1588.6366529361983,"week":11661.269129843724,"month":75126.51290254686},"feeApr":{"day":0.3968774319473176,"week":0.30935348895870346,"month":0.31537540615607174},"reward0Apr":{"day":3.183996067207782,"week":2.9051166265368624,"month":2.8212716505499773},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":3.5808734991551,"week":3.214470115495566,"month":3.136647056706049}},{"address":"2fPqLazJ91cKRoZoH9XHC2YQnRq2wBZZpbcNx4HYoQXY","tokenA":{"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT","symbol":"STEP","name":"Step Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762","coingeckoId":"step-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.025524125203306953,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":702151.4468529534,"volume":{"day":1354.4835094787422,"week":24607.625310249194,"month":192908.15378924576},"volumeDenominatedA":{"day":15341.946838836926,"week":278725.34194613324,"month":2185029.6585388044},"volumeDenominatedB":{"day":1355.3673297950559,"week":24623.682145960523,"month":193077.17018018872},"priceRange":{"day":{"min":0.025262456231571466,"max":0.025719234956850277},"week":{"min":0.025262456231571466,"max":0.026411671394516258},"month":{"min":0.024337693168774467,"max":0.030837947917206697}},"feeApr":{"day":0.002106574958246045,"week":0.004878286286669252,"month":0.011033072525284602},"reward0Apr":{"day":0.007665768877454753,"week":0.0076709782164985155,"month":0.008408205351147037},"reward1Apr":{"day":0,"week":0,"month":0.007611936941469463},"reward2Apr":{"day":0.09207547442255926,"week":0.08304346209531166,"month":0.04554151260290034},"totalApr":{"day":0.10184781825826006,"week":0.09559272659847942,"month":0.07259472742080145}},{"address":"HcKo7AZ7gYtTUhZqBWUhYxWzz4SPy2WBMhwWKyQYGRBG","tokenA":{"mint":"9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE","symbol":"WOOF","name":"WOOF","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18319/large/woof-logo-svg-true-solana-radient-blackinside.png?1637655115","coingeckoId":"woof-token","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.00009897887452986488,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1700.2964705801687,"volume":{"day":1299.6824558695967,"week":7981.507937861592,"month":41635.049162928895},"volumeDenominatedA":{"day":17084322.851088386,"week":104916903.2275016,"month":551976109.436781},"volumeDenominatedB":{"day":1299.6824558695967,"week":7981.507937861592,"month":41635.049162928895},"priceRange":{"day":{"min":0.00008840509201607407,"max":0.00010297018123631988},"week":{"min":0.00007308330268838563,"max":0.00012423866940343761},"month":{"min":0.0000662488797207546,"max":0.00012423866940343761}},"feeApr":{"day":0.8414326892216133,"week":0.6895272644638816,"month":1.222142600099806},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.8414326892216133,"week":0.6895272644638816,"month":1.222142600099806}},{"address":"EyQSeSAD3CnehcRw8bChebQgKSaxq88v8fxxcQuCmoue","tokenA":{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W","symbol":"wLUNA","name":"Terra Classic (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22951/large/LUNA_wh_small.png?1644226405","coingeckoId":"luna-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":156.77470714662874,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":7912.0831165289255,"volume":{"day":923.6003768997414,"week":16321.189338698297,"month":59171.340459317194},"volumeDenominatedA":{"day":2837.618049177876,"week":50144.307657171055,"month":181794.7110903289},"volumeDenominatedB":{"day":289645.46524967044,"week":5118402.501419064,"month":19310480.78655411},"priceRange":{"day":{"min":144.9185079210292,"max":167.01340832907655},"week":{"min":144.9185079210292,"max":199.30570869227685},"month":{"min":6.5014925867478635,"max":970.0181941589663}},"feeApr":{"day":0.12832125344164064,"week":0.29678591194186293,"month":0.2988659859422475},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.12832125344164064,"week":0.29678591194186293,"month":0.2988659859422475}},{"address":"6jwmmjnx3mDbA6QauSZ7DY8Z1B8wZncxXM1tJd2unpuS","tokenA":{"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y","symbol":"SHDW","name":"GenesysGo Shadow","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974","coingeckoId":"genesysgo-shadow","whitelisted":true,"poolToken":false},"tokenB":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.008008149235891125,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":12292.271481239568,"volume":{"day":909.738850038779,"week":11161.727675544853,"month":29450.140844988506},"volumeDenominatedA":{"day":3391.3733225353403,"week":41609.287622083735,"month":109256.529174647},"volumeDenominatedB":{"day":26.4825680956934,"week":324.9187535748333,"month":857.3064260222701},"priceRange":{"day":{"min":0.007837398134494467,"max":0.008070854059032948},"week":{"min":0.0012266532735732592,"max":0.012187462534518618},"month":{"min":0.0012266532735732592,"max":0.012187462534518618}},"feeApr":{"day":0.08059589320041266,"week":0.1290228051045631,"month":0.11813867456450729},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.08059589320041266,"week":0.1290228051045631,"month":0.11813867456450729}},{"address":"DxD41srN8Xk9QfYjdNXF9tTnP6qQxeF2bZF8s1eN62Pe","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm","symbol":"scnSOL","name":"Socean Staked Sol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18468/large/biOTzfxE_400x400.png?1633662119","coingeckoId":"socean-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9347039185465259,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1263.1090337851808,"volume":{"day":575.8344244992553,"week":6307.809688216769,"month":23212.992319204495},"volumeDenominatedA":{"day":16.76258451312254,"week":183.62082656550763,"month":672.9955594195671},"volumeDenominatedB":{"day":11.90930288304681,"week":130.4569732365623,"month":480.0868871145492},"priceRange":{"day":{"min":0.9137964866822472,"max":0.9517596308263752},"week":{"min":0.9104941469274066,"max":0.9641977557993454},"month":{"min":0.8907059769776712,"max":0.9743891218795789}},"feeApr":{"day":0.01644215638143243,"week":0.022894646490517732,"month":0.025957184901116773},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.01644215638143243,"week":0.022894646490517732,"month":0.025957184901116773}},{"address":"6jYALVrSAEw4oFXHnH5uSnx5Sgs2b6hCZgc9eequnTDy","tokenA":{"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk","symbol":"POLIS","name":"Star Atlas DAO","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006","coingeckoId":"star-atlas-dao","whitelisted":true,"poolToken":false},"tokenB":{"mint":"ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx","symbol":"ATLAS","name":"Star Atlas","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17659/large/Icon_Reverse.png?1628759092","coingeckoId":"star-atlas","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":79.73137580712172,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3307.6259015778423,"volume":{"day":399.34432301961067,"week":4776.582869273782,"month":5085.12952552834},"volumeDenominatedA":{"day":1203.7156209558962,"week":14397.71916891088,"month":15327.749742825117},"volumeDenominatedB":{"day":92240.2123617124,"week":1103291.051926373,"month":1174558.89638004},"priceRange":{"day":{"min":77.64687909697632,"max":79.45081130859319},"week":{"min":75.53889997720299,"max":79.5990223657835},"month":{"min":70.50420124961364,"max":84.67706005738665}},"feeApr":{"day":0.18170602481727735,"week":0.30460457940802366,"month":0.29417832432967117},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.18170602481727735,"week":0.30460457940802366,"month":0.29417832432967117}},{"address":"9DwqiMmwh4sqaGFFWPAaRpTQufXzAciwKgRL3sreFyfP","tokenA":{"mint":"Lrxqnh6ZHKbGy3dcrCED43nsoLkM1LTzU2jRfWe8qUC","symbol":"LARIX","name":"Larix","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18450/large/larix.PNG?1632092483","coingeckoId":"larix","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0005501542022684534,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":18406.241174090188,"volume":{"day":347.7455389412719,"week":11422.97140165909,"month":40099.529931551275},"volumeDenominatedA":{"day":574070.3510594077,"week":18857435.878708627,"month":64256255.97510167},"volumeDenominatedB":{"day":347.7455389412719,"week":11422.97140165909,"month":40099.529931551275},"priceRange":{"day":{"min":0.0005495639300163315,"max":0.0005614923958496046},"week":{"min":0.0005460401140995982,"max":0.0005900767225273029},"month":{"min":0.0005460401140995982,"max":0.0008067854845191612}},"feeApr":{"day":0.0206382872102546,"week":0.09089840388328133,"month":0.09941988669126521},"reward0Apr":{"day":0.23448924488825634,"week":0.23820903045256608,"month":0.24197423350763644},"reward1Apr":{"day":0.42916312846940635,"week":0.43597109448411475,"month":0.45247052093781864},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.6842906605679173,"week":0.7650785288199622,"month":0.7938646411367203}},{"address":"5tvF8KfcaYoqYRz1CTTuvHKmCcTqeaSLXvQSGQkGy16U","tokenA":{"mint":"CLAsHPfTPpsXmzZzdexdEuKeRzZrWjZFRHQEPu2kSgWM","symbol":"CLH","name":"Clash","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27836/large/New-Clash-Icon_copy.png?1665996878","coingeckoId":"clash","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0037580291098004244,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1304.8841914629631,"volume":{"day":208.277221699529,"week":3736.9164302090794,"month":3959.381306858653},"volumeDenominatedA":{"day":81069.64081818883,"week":1454554.0328058037,"month":1541267.8492136318},"volumeDenominatedB":{"day":208.277221699529,"week":3736.9164302090794,"month":3959.381306858653},"priceRange":{"day":{"min":0.0036796762616077483,"max":0.0038129186866827},"week":{"min":0.002823232140392419,"max":0.00396452466539129},"month":{"min":0.002823232140392419,"max":0.00396452466539129}},"feeApr":{"day":0.1942539093953119,"week":0.4637278934658601,"month":0.21645368182694436},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.1942539093953119,"week":0.4637278934658601,"month":0.21645368182694436}},{"address":"6wKCFZ4VnYtNVmQYAZzs5CHsodG32vPcBQifQkGFYDkK","tokenA":{"mint":"ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo","symbol":"wstETH","name":"Lido Wrapped Staked ETH","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":45.03931167131934,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":12490.06434460585,"volume":{"day":177.3462958749135,"week":1988.7323434201942,"month":9371.404044137369},"volumeDenominatedA":{"day":0.11982271578316284,"week":1.3436723286428067,"month":6.355821427466166},"volumeDenominatedB":{"day":4.869468573495113,"week":54.60542380996965,"month":257.65956979347214},"feeApr":{"day":0.015528724610194732,"week":0.02131596709917608,"month":0.03866562502937937},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.015528724610194732,"week":0.02131596709917608,"month":0.03866562502937937}},{"address":"HPh1hkQFYchT3bfeYQTx4uLRXuj7eRMjdJZJjtRY6gDq","tokenA":{"mint":"5Wsd311hY8NXQhkt9cWHwTnqafk7BGEbLu8Py3DSnPAr","symbol":"CMFI","name":"Compendium.Fi","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22269/large/ckxanb97x357108l6qrnrjxtr.png?1641340080","coingeckoId":"compendium-fi","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.017795983677705463,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":46795.83017479229,"volume":{"day":88.46043700148469,"week":762.2589292521156,"month":911.5863642942867},"volumeDenominatedA":{"day":4949.228866857425,"week":42647.24462768687,"month":50902.840468114344},"volumeDenominatedB":{"day":88.46043700148469,"week":762.2589292521156,"month":911.5863642942867},"priceRange":{"day":{"min":0.017735054696126257,"max":0.01788241422385397},"week":{"min":0.017606923799808476,"max":0.01798219560816183},"month":{"min":0.01758883016641088,"max":0.018215595679383904}},"feeApr":{"day":0.0020579385441006712,"week":0.0022502261003379768,"month":0.0010333138988701314},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.0020579385441006712,"week":0.0022502261003379768,"month":0.0010333138988701314}},{"address":"3dvV75ULxUzuyg57ZwQiay5xfNNdxT6Y98LA11vQyneF","tokenA":{"mint":"MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey","symbol":"MNDE","name":"Marinade","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18867/large/MNDE.png?1643187748","coingeckoId":"marinade","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.05077328669325513,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1375.0386847728516,"volume":{"day":65.64134710182765,"week":6383.8519553821025,"month":12581.01948475765},"volumeDenominatedA":{"day":1133.4495021998648,"week":110231.9519695539,"month":210418.2819406126},"volumeDenominatedB":{"day":65.64134710182765,"week":6383.8519553821025,"month":12581.01948475765},"priceRange":{"day":{"min":0.018762371075812932,"max":0.05302663087600768},"week":{"min":0.0025607594796496044,"max":0.31097097380463956},"month":{"min":0.0025607594796496044,"max":0.31097097380463956}},"feeApr":{"day":0.02250952595883681,"week":0.2198994048150863,"month":0.29712468164200884},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.02250952595883681,"week":0.2198994048150863,"month":0.29712468164200884}},{"address":"5rnFMYT3tmYRChrtNjuvyrB4jzVD2WYuBSvHWqKc2sAw","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh","symbol":"daoSOL","name":"daoSOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503","coingeckoId":"daosol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.03303583388872972,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1244.4825278625142,"volume":{"day":58.28492558456536,"week":466.3446210616168,"month":1031.4188624157102},"volumeDenominatedA":{"day":58.28492558456536,"week":466.3446210616168,"month":1031.4188624157102},"volumeDenominatedB":{"day":1.6391548482587108,"week":13.11507287529156,"month":29.014722263076308},"priceRange":{"day":{"min":0.03216029038920532,"max":0.03334217579416883},"week":{"min":0.03038442904400939,"max":0.03334217579416883},"month":{"min":0.0014784939297647695,"max":0.5604042845852687}},"feeApr":{"day":0.051034005179656936,"week":0.052846510121612504,"month":0.0430341244705686},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.051034005179656936,"week":0.052846510121612504,"month":0.0430341244705686}},{"address":"E662YnSzFiQWPvkJfQWXrXjHyh8nStFVpYfY9jfBFWW2","tokenA":{"mint":"MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey","symbol":"MNDE","name":"Marinade","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18867/large/MNDE.png?1643187748","coingeckoId":"marinade","whitelisted":true,"poolToken":false},"tokenB":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0016292354648035359,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1078.8338794095453,"volume":{"day":43.79829003821825,"week":467.1399188383621,"month":467.1399188383621},"volumeDenominatedA":{"day":756.2786602172213,"week":8066.24988429411,"month":8066.24988429411},"volumeDenominatedB":{"day":1.194385754617869,"week":12.738973690229146,"month":12.738973690229146},"priceRange":{"day":{"min":0.000597656334609492,"max":0.0016629508211384299},"week":{"min":0.00008019123359730122,"max":0.009451124394467514},"month":{"min":0.00008019123359730122,"max":0.009451124394467514}},"feeApr":{"day":0.04929665442223283,"week":0.11675896167395293,"month":0.04492645680342001},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.04929665442223283,"week":0.11675896167395293,"month":0.04492645680342001}},{"address":"7GZXejXCyJ3R78d71328wqMWT7Ejwu7pxxWRWvHSeVfb","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HBB111SCo9jkCejsZfz8Ec8nH7T6THF8KEKSnvwT6XK6","symbol":"HBB","name":"Hubble","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22070/large/hubble.PNG?1640749942","coingeckoId":"hubble","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":6.44706731447631,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1406.4491048828825,"volume":{"day":42.47894310996875,"week":39505.970671446135,"month":259678.08006087394},"volumeDenominatedA":{"day":42.506661242137476,"week":39531.74889558194,"month":259877.98253645567},"volumeDenominatedB":{"day":51.3487043811812,"week":79693.16093729752,"month":1210788.0268622437},"priceRange":{"day":{"min":6.040771274021719,"max":6.319228407477313},"week":{"min":5.544842780823635,"max":6.319228407477313},"month":{"min":3.467821897297942,"max":6.319228407477313}},"feeApr":{"day":0.03291333781555288,"week":0.036523609192315995,"month":0.11686325776082862},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.03291333781555288,"week":0.036523609192315995,"month":0.11686325776082862}},{"address":"ACzntjZuqxCDEAmCEZ9TWJU24jv5DZYCSiDPsNe3PQnk","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh","symbol":"daoSOL","name":"daoSOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503","coingeckoId":"daosol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9615678178591549,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1205.6139863368264,"volume":{"day":32.90902275997715,"week":227.09041770217254,"month":19159.130838547688},"volumeDenominatedA":{"day":0.9579841909210196,"week":6.610619575519819,"month":561.9782645939067},"volumeDenominatedB":{"day":0.9255048997224362,"week":6.386494542736192,"month":543.7515137986782},"priceRange":{"day":{"min":0.9545147958961226,"max":0.9644572024058155},"week":{"min":0.9515115529268521,"max":0.9790412008255392},"month":{"min":0.050845556678675616,"max":18.36700298499124}},"feeApr":{"day":0.0009914290868881636,"week":0.0008578203086795299,"month":0.027015699012470296},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.0009914290868881636,"week":0.0008578203086795299,"month":0.027015699012470296}},{"address":"CeGZNd2ap2ke8JreVqDXikSrxhnSERh9G8WAt4yqMcBs","tokenA":{"mint":"AUrMpCDYYcPuHhyNX8gEEqbmDPFUpBpHrNW3vPeCFn5Z","symbol":"AVAX","name":"AVAX (Allbridge from Avalanche)","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/12559/small/coin-round-red.png","coingeckoId":"avalanche-2","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":15.191549269257353,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1389.3721121846,"volume":{"day":30.842613667457467,"week":1441.8347263356954,"month":4123.533321712884},"volumeDenominatedA":{"day":1.7687601329825144,"week":82.68624085458589,"month":233.60406988483885},"volumeDenominatedB":{"day":30.842613667457467,"week":1441.8347263356954,"month":4123.533321712884},"priceRange":{"day":{"min":15.026132474931496,"max":15.613979120063647},"week":{"min":14.9787600246456,"max":16.378825342442763},"month":{"min":14.918697064780723,"max":18.357755827046468}},"feeApr":{"day":0.025483448627615514,"week":0.5333939582816646,"month":0.3176326777710407},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.025483448627615514,"week":0.5333939582816646,"month":0.3176326777710407}},{"address":"HZ79XxH47FqjKyXC3cGEsqLiTZptaKEyJ3Qkr1cBd3Po","tokenA":{"mint":"AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3","symbol":"FTT","name":"FTX","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/9026/large/F.png?1609051564","coingeckoId":"ftx-token","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":22.573476040897166,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":325.08478127946495,"volume":{"day":25.573591303766175,"week":454.1938170161983,"month":744.8032934892012},"volumeDenominatedA":{"day":1.0249761733539093,"week":18.203850800482208,"month":29.851326729755183},"volumeDenominatedB":{"day":25.573591303766175,"week":454.1938170161983,"month":744.8032934892012},"priceRange":{"day":{"min":22.362380485504854,"max":22.968968369122706},"week":{"min":22.362380485504854,"max":24.22673183557146},"month":{"min":22.319508459961042,"max":25.408476159850675}},"feeApr":{"day":0.08643798256959424,"week":0.17408204555787335,"month":0.12285841102575415},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.08643798256959424,"week":0.17408204555787335,"month":0.12285841102575415}},{"address":"4RGgiAMx3YED2nPTvTrVuy7u93pw9AtJBQjGJ4gLiTiz","tokenA":{"mint":"kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5","symbol":"depKI","name":"Genopets Ki","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0007860991935579053,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":310.9930225441819,"volume":{"day":5.632863525279385,"week":78.65603201958415,"month":78.65681006169208},"volumeDenominatedA":{"day":7239.865537629192,"week":101095.84458945342,"month":101096.84458945342},"volumeDenominatedB":{"day":5.632863525279385,"week":78.65603201958415,"month":78.65681006169208},"feeApr":{"day":0.019793111316804193,"week":0.03430882612508208,"month":0.013201473371222964},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.019793111316804193,"week":0.03430882612508208,"month":0.013201473371222964}},{"address":"7yPe2XMn5mE8aHAbAZp8sk4Y5ec2F6erhREipG3P5YN1","tokenA":{"mint":"isktkk27QaTpoRUhwwS5n9YUoYf8ydCuoTz5R2tFEKu","symbol":"ISKT","name":"Rafkróna","decimals":2,"logoURI":"https://rafmyntasjodur.github.io/iskt-metadata/logo.png","coingeckoId":"ISKT","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":0.006907269256580558,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":976.0106449370603,"volume":{"day":3.0742865710061418,"week":9.304128697567839,"month":9.304128697567839},"volumeDenominatedA":{"day":444.44444444444446,"week":1345.0822538891705,"month":1345.0822538891705},"volumeDenominatedB":{"day":3.0742865710061418,"week":9.304128697567839,"month":9.304128697567839},"feeApr":{"day":0.0034264005754035733,"week":0.0021257446834835017,"month":0.0021257446834835017},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.0034264005754035733,"week":0.0021257446834835017,"month":0.0021257446834835017}},{"address":"5YsEBnd1qcai6ktgu7WcRiUPkwJyvMixoLK1mf7ai8n2","tokenA":{"mint":"8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh","symbol":"COPE","name":"Cope","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14567/large/COPE.png?1617162230","coingeckoId":"cope","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.04082261522358596,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":183.3360241692675,"volume":{"day":2.701813387977338,"week":453.55609924901165,"month":461.72160437481455},"volumeDenominatedA":{"day":61.43679662310633,"week":10313.456121997973,"month":10499.132334859753},"volumeDenominatedB":{"day":2.701813387977338,"week":453.55609924901165,"month":461.72160437481455},"priceRange":{"day":{"min":0.040658825042761415,"max":0.04307673319858326},"week":{"min":0.03835513062015538,"max":0.04507997683683416},"month":{"min":0.03835513062015538,"max":0.7683443499428425}},"feeApr":{"day":0.01615259183733233,"week":0.34329236842576893,"month":0.13429934615082015},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.01615259183733233,"week":0.34329236842576893,"month":0.13429934615082015}},{"address":"99NGdDEUbCrXdrhsrW63jRUAtYSRC8zme2TXeE82jTmC","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh","symbol":"svtOKAY","name":"Okay Bears Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":2.422593709916543,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":5.7130758079306565,"volume":{"day":2.2066300291312566,"week":290.4010455546051,"month":3596.659533223537},"volumeDenominatedA":{"day":0.06423517035243623,"week":8.453596835655164,"month":103.8825429350042},"volumeDenominatedB":{"day":0.12022312271862139,"week":15.821827889776504,"month":194.36617069862513},"feeApr":{"day":0.02832661855705386,"week":0.01401934698404542,"month":0.01971447099652738},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0.049104080899413996},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.02832661855705386,"week":0.01401934698404542,"month":0.06881855189594138}},{"address":"83v8iPyZihDEjDdY8RdZddyZNyUtXngz69Lgo9Kt5d6d","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":30.430050759375124,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":13.560055048480596,"volume":{"day":0.1453638542384293,"week":8.525973928621328,"month":42.99464938034551},"volumeDenominatedA":{"day":0.004231553009259259,"week":0.2481917586977805,"month":1.250333602982793},"volumeDenominatedB":{"day":0.1453638542384293,"week":8.525973928621328,"month":42.99464938034551},"priceRange":{"day":{"min":28.627849657701596,"max":29.915636737472735},"week":{"min":28.627849657701596,"max":31.84983333352631},"month":{"min":28.453973183378523,"max":35.0349194796623}},"feeApr":{"day":0.00039174947395079527,"week":0.002992539726448263,"month":0.0041773266498010215},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.00039174947395079527,"week":0.002992539726448263,"month":0.0041773266498010215}},{"address":"7qbRF6YsyGuLUVs6Y1q64bdVrfe4ZcUUz1JRdoVNUJnm","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":8,"price":30.69076792418119,"lpFeeRate":0.0005,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.6419948244214277,"volume":{"day":0.04307419643095647,"week":0.06368561553694689,"month":0.06368561553694689},"volumeDenominatedA":{"day":0.0012538931805555556,"week":0.0018538931805555557,"month":0.0018538931805555557},"volumeDenominatedB":{"day":0.04307419643095647,"week":0.06368561553694689,"month":0.06368561553694689},"priceRange":{"day":{"min":28.627849657701596,"max":29.915636737472735},"week":{"min":28.627849657701596,"max":31.84983333352631},"month":{"min":28.453973183378523,"max":35.0349194796623}},"feeApr":{"day":0.012206633471062387,"week":0.002070753298823977,"month":0.0019827920967500383},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.012206633471062387,"week":0.002070753298823977,"month":0.0019827920967500383}},{"address":"5JCSBX7uvR1Jz7k6EjqeH3g4d1WfnqS9n9pYbiQ67GHS","tokenA":{"mint":"MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD","symbol":"MEAN","name":"Mean DAO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21557/large/89934951.png?1639466364","coingeckoId":"meanfi","whitelisted":true,"poolToken":false},"tokenB":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.004470611247090058,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":13326.136443231122,"volume":{"day":0.023737577693733785,"week":25.26668912393937,"month":25.26668912393937},"volumeDenominatedA":{"day":0.12694659027777777,"week":135.12415096757877,"month":135.12415096757877},"volumeDenominatedB":{"day":0.0006910027176198105,"week":0.7355152692983458,"month":0.7355152692983458},"priceRange":{"day":{"min":0.0038759036563082777,"max":0.003974803820228853},"week":{"min":0.00377836290423445,"max":0.004074754136013104},"month":{"min":0.0036332784432497223,"max":0.004731492405931105}},"feeApr":{"day":0.000001949594032914294,"week":0.0002724750403803825,"month":0.00010484281425731646},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0.000001949594032914294,"week":0.0002724750403803825,"month":0.00010484281425731646}},{"address":"2B6rktciJxwjZYxT8xnFLW8uKmRQozXRtMzxmMf73PDF","tokenA":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.8306134783941547,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.8992969573027291,"max":0.9271905374655758},"week":{"min":0.8200891705050353,"max":1.0184595866360913},"month":{"min":0.8176057834865429,"max":1.0184595866360913}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2LHbbgcpUZSoTBpujNXzw5cr4fx99g85L6E3JrqAwd52","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg","symbol":"svtAURY","name":"Aurory - Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg/logo.png","coingeckoId":"svtAURY","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.19655392848619835,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0000017820846766711459,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2TfyAUoWzbGVec82aTFuv7RrwQ8L2p8SY3CWEbT7rE5Y","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o","symbol":"DAI","name":"Dai Stablecoin (Portal)","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png","coingeckoId":"dai","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.998068673338991,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":21.459055416245775,"volume":{"day":0,"week":0.01003004796024581,"month":147957.14518385218},"volumeDenominatedA":{"day":0,"week":0.010036592713355634,"month":148053.22227880443},"volumeDenominatedB":{"day":0,"week":0.01,"month":147513.89601553424},"priceRange":{"day":{"min":0.9922522039446303,"max":1.0019581368978103},"week":{"min":0.9842966908988288,"max":1.0169317889542446},"month":{"min":0.972178783483735,"max":1.0169317889542446}},"feeApr":{"day":0,"week":0.000002253170133908061,"month":0.002673888051408911},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.000002253170133908061,"month":0.002673888051408911}},{"address":"2ofRuCsErorddmxrEfK4p8wdp9k3ziRLmKPixpxEW9m8","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HonyeYAaTPgKUgQpayL914P6VAqbQZPrbkGMETZvW4iN","symbol":"HONEY","name":"Honey Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24781/large/honey.png?1648902423","coingeckoId":"honey-finance","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":132.86791790278565,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.00012600241722854978,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":141.53094088034396,"max":142.56111964303153},"week":{"min":139.3082946335795,"max":1274.1113514311123},"month":{"min":117.29054454512406,"max":1274.1113514311123}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2tXTC9cw5zzyQkVho3R51M9cRdH1BSTgBUagcCo5P67a","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG","symbol":"MATICPO","name":"MATIC (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22947/large/MATICpo_wh_small.png?1644226625","coingeckoId":"matic-wormhole","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":1.34956223,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":1.133942455413616,"max":1.2095807945357466},"week":{"min":1.133942455413616,"max":1.3514774779749779},"month":{"min":1.133942455413616,"max":1.401029311256553}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2tpF88VHajuuv8Ad1wHMq3NmxyRLfSdqv6Jy4X6xc7p1","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B","symbol":"AART","name":"ALL.ART","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22012/large/all-art.PNG?1640590472","coingeckoId":"all-art","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":202.169276,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":229.0112766761172,"max":230.39227795823084},"week":{"min":228.6487726703594,"max":231.40236755958904},"month":{"min":224.55531380171738,"max":231.40236755958904}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2x2Us1DLYd6mWfXWuVfYyvb6BJmKG22rdCW7hBCcjKsf","tokenA":{"mint":"iVNcrNE9BRZBC9Aqf753iZiZfbszeAVUoikgT9yvr2a","symbol":"IVN","name":"Investin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15588/large/ivn_logo.png?1621267247","coingeckoId":"investin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.284475524,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.09470569302897287,"max":0.09850880522987918},"week":{"min":0.0946492957086336,"max":0.10448300774144918},"month":{"min":0.094499776627675,"max":0.11953775353979687}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"2zCzbdiV9ynK8XrMg6ztBbHNHALrv3eoMfQ1xN8CUrPB","tokenA":{"mint":"MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb","symbol":"MAPS","name":"MAPS","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13556/large/Copy_of_image_%28139%29.png?1609768934","coingeckoId":"maps","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.363015,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.13686201575783175,"max":0.14169253787052108},"week":{"min":0.13686201575783175,"max":0.14663488222973373},"month":{"min":0.13686201575783175,"max":0.14663488222973373}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"3KWGKCGYD98pQQMe25rKRPGEYKmuPLNezAUcB7BN2KNJ","tokenA":{"mint":"seedEDBqu63tJ7PFqvcbwvThrYUkQeqT6NLf81kLibs","symbol":"SEEDED","name":"Seeded Network","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23618/large/seeded.png?1644761600","coingeckoId":"seeded-network","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.00610556443,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0010899144098307865,"max":0.0011131368598801365},"week":{"min":0.0010899144098307865,"max":0.0011390463753539826},"month":{"min":0.0010899144098307865,"max":0.0013327020994531183}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"3SiDaf1TBi3v6VJEwnpPBViYBdJMFqLjVpQGduAViw2N","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK","symbol":"svtFFF","name":"Famous Fox Federation Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK/logo.png","coingeckoId":"svtFFF","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":9.74726149167296,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.4352365176650716e-8,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"3YFpvPT7YGRbBPaTrr4fRwT2XqM2zgyeDqAFzwZCNRCk","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT","symbol":"svtGGSG","name":"Galactic Geckos Space Garage Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT/logo.png","coingeckoId":"svtGGSG","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.015003229385595129,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":4.434330123570453,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"42Cdv57nAWBG8B4jV2F657S2EARywC8oR6ERCzxinSWZ","tokenA":{"mint":"PoRTjZMPXb9T7dyU7tpLEZRQj7e6ssfAE62j2oQuc6y","symbol":"PORT","name":"Port Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17607/large/d-k0Ezts_400x400.jpg?1628648715","coingeckoId":"port-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.172021,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.04380102986210738,"max":0.04504916546554773},"week":{"min":0.04234478036809354,"max":0.04891619435598163},"month":{"min":0.03905783903883486,"max":0.051272091356062574}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"4ACxxCjBEXGXr7T8stpM6q8BHKNEJEuhSGVLP3pi6BaX","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp","symbol":"FIDA","name":"Bonfida","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13395/large/bonfida.png?1658327819","coingeckoId":"bonfida","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.7450307230920235,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.10284022773773,"volume":{"day":0,"week":0,"month":556.4305788972431},"volumeDenominatedA":{"day":0,"week":0,"month":556.4305788972431},"volumeDenominatedB":{"day":0,"week":0,"month":235},"priceRange":{"day":{"min":2.438698257007269,"max":2.6245369503771165},"week":{"min":2.283965279376544,"max":2.73210034092727},"month":{"min":1.9810326352385974,"max":2.8460250502132816}},"feeApr":{"day":0,"week":0,"month":0.045685026127818745},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.045685026127818745}},{"address":"4TYRTTJo6WnY6eMTMA9YruDbAsKNJQz4KqvHi7scY7MS","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Ez2zVjw85tZan1ycnJ5PywNNxR6Gm4jbXQtZKyQNu3Lv","symbol":"fUSDC","name":"Fluid USDC","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":28.46,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"4ZU5mDh2RTfS76AdK5kcmfNuJq6RTEDTVL7gtVeGbBUQ","tokenA":{"mint":"5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2","symbol":"BUSD","name":"BUSD Token (Portal from BSC)","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png","coingeckoId":"binance-usd","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":1,"price":1,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.9951151442793181,"max":1.0030761044567316},"week":{"min":0.9934066698278701,"max":1.0049459741517788},"month":{"min":0.9883321064719369,"max":1.0111332158135597}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"4dMCeFsjsGgakprFMtTY4uwuRL2p55Y6pJuQBcUFyu1v","tokenA":{"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk","symbol":"POLIS","name":"Star Atlas DAO","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006","coingeckoId":"star-atlas-dao","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.3317596914647356,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.31804265258959563,"max":0.3238725223808836},"week":{"min":0.31665903772440135,"max":0.342297290212219},"month":{"min":0.31665903772440135,"max":0.3923455251142585}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"4gnf3XVk8A3vxFnnPtVqSFZa1SEPeXogvcetpZm6Q3pS","tokenA":{"mint":"9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa","symbol":"BNB","name":"Binance Coin (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22884/large/BNB_wh_small.png?1644224553","coingeckoId":"binance-coin-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":281.74962359997386,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.006489634992472,"volume":{"day":0,"week":0,"month":4.944444444444445},"volumeDenominatedA":{"day":0,"week":0,"month":0.01801878949017052},"volumeDenominatedB":{"day":0,"week":0,"month":4.944444444444445},"priceRange":{"day":{"min":259.66544101727845,"max":267.8693378280304},"week":{"min":254.1157680159286,"max":283.9575673697517},"month":{"min":251.4720094345649,"max":303.58448850227785}},"feeApr":{"day":0,"week":0,"month":0.0064509776111755564},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.0064509776111755564}},{"address":"59m534G5c5vubq29GgMcQ5m2sXKMsevF1Dpb6ZKP81Ui","tokenA":{"mint":"SuperbZyz7TsSdSoFAZ6RYHfAWe9NmjXBLVQpS8hqdx","symbol":"SB","name":"SuperBonds","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22743/large/ywws9ojM_400x400.jpg?1642548336","coingeckoId":"superbonds","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.00561521478,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0005595290109149787,"max":0.0006619911988715059},"week":{"min":0.000550250408482932,"max":0.000841598686380369},"month":{"min":0.0005495122596921309,"max":0.004838688429100939}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"64SUepq75CUbbmKKvh3begwTYkmosyEZUVGC1sCziovt","tokenA":{"mint":"UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M","symbol":"UXP","name":"UXD Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20319/large/UXP.jpg?1636864568","coingeckoId":"uxd-protocol-token","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.02665994,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.01,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.017817413818996656,"max":0.018198481104332528},"week":{"min":0.01710226453644273,"max":0.018762793878212673},"month":{"min":0.01710226453644273,"max":0.01890225363786164}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6G9jxYwfDvFmzQnb163LEPHHR5GUM8mqka6KU9KhKN2s","tokenA":{"mint":"SUNNYWgPQmFxe9wTZzNK7iPnJ3vYDrkgnxJRJm1s3ag","symbol":"SUNNY","name":"Sunny Aggregator","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18039/large/90dbe787-8e5f-473c-b923-fe138a7a30ea.png?1630314924","coingeckoId":"sunny-aggregator","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.00056059,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.00010830932414120531,"max":0.00011083624709025157},"week":{"min":0.00010830932414120531,"max":0.00013147321165941185},"month":{"min":0.00010830932414120531,"max":0.00015936269051619774}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6apMj56v2L2YcKojA56o2yXD4LZv7jG7WnhCpyim15AV","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.0015054610196652,"lpFeeRate":0.002,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.1510543604925405,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.9976623698635608,"max":1.0021374836832655},"week":{"min":0.9972412189860315,"max":1.0021728170722244},"month":{"min":0.9949104481874305,"max":1.0053298116702563}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6cJMeEsryHfWFUASXGN3DeWSoL8pk9x5Vyjg3s8F82Pd","tokenA":{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"tokenB":{"mint":"CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5","symbol":"renBTC","name":"renBTC","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5/logo.png","coingeckoId":"renbtc","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.996530347,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.020540201029505215,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.9466127092331209,"max":0.9811282842729347},"week":{"min":0.9466127092331209,"max":1.0246147538517625},"month":{"min":0.9219638828353265,"max":1.0732450922359673}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6fhhFuck92ionTDAQe6VzMhUTA6QJadjDuAMfMZWXZFg","tokenA":{"mint":"r8nuuzXCchjtqsmQZVZDPXXq928tuk7KVH479GsKVpy","symbol":"DAOJONES","name":"Fractionalized SMB-2367","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/22611/large/daojones.png?1642228974","coingeckoId":"fractionalized-smb-2367","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":0.587940059,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.520109953799308,"max":0.5375318873054798},"week":{"min":0.520109953799308,"max":0.5771711765894674},"month":{"min":0.47868905567012354,"max":0.8667368420255472}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6rHfbVkY7HHh8Jfin8wykX5HvNec3fzwFUDkJuJJVRR2","tokenA":{"mint":"zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF","symbol":"ZBC","name":"Zebec Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24342/large/zbc.PNG?1647400775","coingeckoId":"zebec-protocol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk","symbol":"NGNC","name":"NGN Coin","decimals":2,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png","coingeckoId":"NGN","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":6.587719826230948,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1671002.5524552702,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6rJwX56s3rhprMvXZB4GZ8Vk9xfLi2Gp5eKAUv73UgY2","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":8,"price":32.535329080740695,"lpFeeRate":0.0005,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0000010364200514282448,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":30.463444956191736,"max":31.720170008541334},"week":{"min":30.463444956191736,"max":33.75642419494869},"month":{"min":30.188188518933647,"max":37.0126849360167}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"6upZT3murB7Rae3461JU1PUpuEpT13SrfcU4uawkSZsZ","tokenA":{"mint":"Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1","symbol":"SBR","name":"Saber","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17162/large/oYs_YFz8_400x400.jpg?1626678457","coingeckoId":"saber","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.00242089722584359,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":10.810705621907092,"volume":{"day":0,"week":0,"month":51.301383285846654},"volumeDenominatedA":{"day":0,"week":0,"month":20614.76905573825},"volumeDenominatedB":{"day":0,"week":0,"month":51.301383285846654},"priceRange":{"day":{"min":0.0019684991839413195,"max":0.002054099456729217},"week":{"min":0.0019412047220509758,"max":0.0021945171384897245},"month":{"min":0.0019412047220509758,"max":0.0035264991981829134}},"feeApr":{"day":0,"week":0,"month":0.2361821612234755},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.2361821612234755}},{"address":"7A5TQA7xjmc1pbq6F85Eij4SSJkAW1Ex8FkuPhGBQjY2","tokenA":{"mint":"TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs","symbol":"TULIP","name":"Tulip Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15764/large/TqrUdBG.png?1621827144","coingeckoId":"solfarm","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":3.5235411482961907,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.139682584366772,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":3.581336768714334,"max":3.6492407073537145},"week":{"min":3.515191803691842,"max":3.649668530239237},"month":{"min":3.408414736830117,"max":3.649668530239237}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"7AevFJJqycVQ2chzf414cpFTfLKmVZKRuaidZbJV6Sus","tokenA":{"mint":"METAmTMXwdb8gYzyCPfXXFmZZw4rUsXX58PNsDg7zjL","symbol":"SLC","name":"Solice","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22115/large/solice_logo_200x200.png?1640845206","coingeckoId":"solice","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.07981041749499979,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0002276941137197,"volume":{"day":0,"week":0,"month":2.4721883560344446},"volumeDenominatedA":{"day":0,"week":0,"month":25.07777777777778},"volumeDenominatedB":{"day":0,"week":0,"month":2.4721883560344446},"priceRange":{"day":{"min":0.031120042248419896,"max":0.03852981130430676},"week":{"min":0.026363809979665833,"max":0.04507649470049855},"month":{"min":0.026363809979665833,"max":0.04850563686724388}},"feeApr":{"day":0,"week":0,"month":0.029418810191032086},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.029418810191032086}},{"address":"7J6Hks51jL1gzdJ53GiAYzY1Hyxra6drfZcDMpJKXs6e","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn","symbol":"JSOL","name":"JPool","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897","coingeckoId":"jpool","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0280073211,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.031547004689968176,"max":0.032741679848934356},"week":{"min":0.029585969826083573,"max":0.03327054091862249},"month":{"min":0.027039577622018342,"max":0.03364860964714092}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"7egJoBbcdSn493DXiQpCHqwjLYoqYAGoWWsuou3BBgBa","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":2729.2884386368564,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":974.7867521231474,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":707.8737343036012,"max":839.0064359882176},"week":{"min":570.8346770130894,"max":839.0064359882176},"month":{"min":509.6472117472913,"max":1099.2594145869414}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"7tsKu5WacMTV2ayD2C79gtgMZrj9XThoo7idFU39CCyt","tokenA":{"mint":"7fCzz6ZDHm4UWC9Se1RPLmiyeuQ6kStxpcAP696EuE1E","symbol":"SHBL","name":"Shoebill Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16160/large/sbl.png?1635612720","coingeckoId":"shoebill-coin","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":128,"price":0.00002685729446786462,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":4.002716563165647,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0000378153291446444,"max":0.00003799470121745049},"week":{"min":0.00003746658259557943,"max":0.000040046808669165847},"month":{"min":0.00003746658259557943,"max":0.00007447985026782967}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8AshhNK9Ti4d7NPLcYFZQS8HSdYHkHigNM9GVLfpuJXY","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3","symbol":"FTT","name":"FTX","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/9026/large/F.png?1609051564","coingeckoId":"ftx-token","whitelisted":true,"poolToken":false,"wrapper":"SRM"},"whitelisted":true,"tickSpacing":64,"price":0.0402930185,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0435062328551579,"max":0.0444615564024652},"week":{"min":0.0411367528563565,"max":0.04528874710632862},"month":{"min":0.03950017513822058,"max":0.04528874710632862}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8NqZpF3VMBUv4sSkjvCNBKCcQtxUhaXnSBc1N6nR9BWF","tokenA":{"mint":"ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj","symbol":"SUSHI","name":"Sushi","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/12271/large/512x512_Logo_no_chop.png?1606986688","coingeckoId":"sushi","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":1.04095904,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":1.4317773593278327,"max":1.5178816528919299},"week":{"min":1.1781777163252058,"max":1.5178816528919299},"month":{"min":1.0031460381545798,"max":1.5178816528919299}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8Yw67NmNJSUdzGa2p1Af6JzHmDr9rGt3XEUrTHajvkU5","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D","symbol":"svtCWM","name":"The Catalina Whale Mixer Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D/logo.png","coingeckoId":"svtCWM","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":9.50091065870506,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.4352365176650716e-8,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8hcwA1hr1bLGLHXBCadXWDgxsc1BTe4hAKPcQgTVNXL4","tokenA":{"mint":"A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM","symbol":"USDCet","name":"USD Coin (Wormhole from Ethereum)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23019/large/USDCet_wh_small.png?1644223449","coingeckoId":"usd-coin-wormhole-from-ethereum","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":1,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.9976341833521166,"max":1.0016289995296153},"week":{"min":0.052595126056139085,"max":18.9912506277028},"month":{"min":0.052595126056139085,"max":18.9912506277028}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8o4xKJDptG3xNQnYjYn4xBCTxv2Jwpq8AyzSA2AnqWuU","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":108.53419221566158,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":408.88742007276005,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":762.0438008381772,"max":900.3447574007328},"week":{"min":601.5103567600186,"max":900.3447574007328},"month":{"min":543.2860305620492,"max":1173.6700601458297}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8oJkhFkAHLPPzmyYrTtRCmoTYPSm4NKWfkaGUgy5AKS8","tokenA":{"mint":"PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x","symbol":"PRISM","name":"Prism","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21475/large/7KzeGb1.png?1639350211","coingeckoId":"prism","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":128,"price":0.005535683811230049,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2.0000000013301378,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0054346329082717955,"max":0.005470965692021904},"week":{"min":0.005377072780717083,"max":0.005566061847409209},"month":{"min":0.005301168385638106,"max":0.006374743630656006}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"8ypKNFNikPbvjgHYA3poXYkw8eHQ6imVbqsTocapRw9B","tokenA":{"mint":"5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm","symbol":"scnSOL","name":"Socean Staked Sol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18468/large/biOTzfxE_400x400.png?1633662119","coingeckoId":"socean-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":48.3516483,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":30.76478053918843,"max":32.16628862035762},"week":{"min":30.622499304577524,"max":34.44923849209687},"month":{"min":30.622499304577524,"max":37.69812418117877}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"9EPPETPH7KcKoqDH8gMA3Xx8PRh4LUsxzLoZKzvDFm9t","tokenA":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"tokenB":{"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk","symbol":"NGNC","name":"NGN Coin","decimals":2,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png","coingeckoId":"NGN","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":351.8861623296611,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1656612.5849409616,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"9NjpbDB5ZW9GHmQVVY99daUyhk6g1agC8VDsh6JQezk8","tokenA":{"mint":"ratioMVg27rSZbSvBopUvsdrGUzeALUfFma61mpxc8J","symbol":"RATIO","name":"Ratio Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24543/large/ratio.png?1648108625","coingeckoId":"ratio-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.3541292498050528,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.020703400133937566,"volume":{"day":0,"week":0,"month":259.3060647747992},"volumeDenominatedA":{"day":0,"week":0,"month":633.2714584776967},"volumeDenominatedB":{"day":0,"week":0,"month":259.3060647747992},"priceRange":{"day":{"min":0.17184259346216493,"max":0.18466490768259947},"week":{"min":0.17184259346216493,"max":0.25524486081161846},"month":{"min":0.17184259346216493,"max":0.46625925669798785}},"feeApr":{"day":0,"week":0,"month":703.1554149595518},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":703.1554149595518}},{"address":"9TAPfa5hhKdjWrxt2b4cyHWDGWsEe9horBuapV6CebKx","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ","symbol":"DUST","name":"DUST Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854","coingeckoId":"dust-protocol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.757315544597793,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2.814168112430719,"volume":{"day":0,"week":0,"month":9.037077469064034},"volumeDenominatedA":{"day":0,"week":0,"month":9.042882052850558},"volumeDenominatedB":{"day":0,"week":0,"month":5.786076577703698},"priceRange":{"day":{"min":0.8865939115726594,"max":0.9587134270695682},"week":{"min":0.7800238406673821,"max":0.9588347099615482},"month":{"min":0.5806800153467732,"max":0.9588347099615482}},"feeApr":{"day":0,"week":0,"month":0.023015073973768525},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.023015073973768525}},{"address":"9uTcHbFLYGrf72hFzpwLbmhnHnYqzPF75ve8HCoaJmqA","tokenA":{"mint":"PsyFiqqjiv41G7o5SMRzDJCu4psptThNR2GtfeGHfSq","symbol":"PSY","name":"PsyOptions","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22784/large/download.png?1642580392","coingeckoId":"psyoptions","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.03279664250804176,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1.0339997257715747,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.032623258638852695,"max":0.03278998006375773},"week":{"min":0.03253525325965236,"max":0.032887116789903734},"month":{"min":0.03248583104749549,"max":0.03363269138011028}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"AEa2wnd72T4KFgmwa6ZjFPSmJhdCGacoXnKZj5r79G5m","tokenA":{"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp","symbol":"SLND","name":"Solend","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597","coingeckoId":"solend","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":8,"price":0.6272984308150681,"lpFeeRate":0.0005,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.00007870009945426563,"volume":{"day":0,"week":0,"month":5.094386685982154},"volumeDenominatedA":{"day":0,"week":0,"month":7.933333333333334},"volumeDenominatedB":{"day":0,"week":0,"month":5.094386685982154},"priceRange":{"day":{"min":0.7775762287722044,"max":0.7903469586292043},"week":{"min":0.6199957448041202,"max":0.7983232494905667},"month":{"min":0.6199957448041202,"max":0.7983232494905667}},"feeApr":{"day":0,"week":0,"month":0.0013339517101411149},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.0013339517101411149}},{"address":"ATK8VNxGGu94T3L1SDmtxGqDUu5VPRNnAFKzDP3A5DCh","tokenA":{"mint":"SLRSSpSLUTP7okbCUBYStWCo1vUgyt775faPqz8HUMr","symbol":"SLRS","name":"Solrise Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15762/large/9989.png?1621825696","coingeckoId":"solrise-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.089683,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.01685313835610376,"max":0.01703995300572358},"week":{"min":0.016504710743563727,"max":0.01703995300572358},"month":{"min":0.016210652258254497,"max":0.017471527591119817}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"AVftUsHvETWNeF21sap8pAwtjbq4Re5NEmHQKrBmsYi4","tokenA":{"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y","symbol":"SHDW","name":"GenesysGo Shadow","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974","coingeckoId":"genesysgo-shadow","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.2682508717025207,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":5244.208349580213,"volume":{"day":0,"week":0,"month":536.7418826192601},"volumeDenominatedA":{"day":0,"week":0,"month":1972.331561491801},"volumeDenominatedB":{"day":0,"week":0,"month":536.7418826192601},"priceRange":{"day":{"min":0.22814115086565753,"max":0.234774208939422},"week":{"min":0.0382301159120529,"max":0.36514602900745324},"month":{"min":0.0382301159120529,"max":0.36514602900745324}},"feeApr":{"day":0,"week":0,"month":0.004463462357753676},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.004463462357753676}},{"address":"AVgL9mKtkaJjuomWtyqdv52j9RQZHtdbK2sgfkwNofck","tokenA":{"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk","symbol":"POLIS","name":"Star Atlas DAO","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006","coingeckoId":"star-atlas-dao","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.33603329455280373,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.31804265258959563,"max":0.3238725223808836},"week":{"min":0.31665903772440135,"max":0.342297290212219},"month":{"min":0.31665903772440135,"max":0.3923455251142585}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"AnkN85KVdj4znCa7Pz95zn8K5rDGtu6HuPBRNPuF7mAj","tokenA":{"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y","symbol":"SHDW","name":"GenesysGo Shadow","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974","coingeckoId":"genesysgo-shadow","whitelisted":true,"poolToken":false},"tokenB":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.264513085,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.22966860118048163,"max":0.23489312748050717},"week":{"min":0.03821828465464339,"max":0.36614614016696095},"month":{"min":0.03821828465464339,"max":0.36614614016696095}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"AqJ5JYNb7ApkJwvbuXxPnTtKeuizjvC1s2fkp382y9LC","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":8,"price":32.770416996892116,"lpFeeRate":0.0005,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.05664846752002983,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":30.80424763704977,"max":32.032857677403555},"week":{"min":30.534727053624636,"max":33.986075515724835},"month":{"min":30.33413008123974,"max":37.20757178303779}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"B5oDCz864YBrEanXu3aNnD9vbRi72mzK338QzrQ3KYBU","tokenA":{"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT","symbol":"STEP","name":"Step Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762","coingeckoId":"step-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HBB111SCo9jkCejsZfz8Ec8nH7T6THF8KEKSnvwT6XK6","symbol":"HBB","name":"Hubble","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22070/large/hubble.PNG?1640749942","coingeckoId":"hubble","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.11090053720549378,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":508.4262532088511,"volume":{"day":0,"week":534.541336834472,"month":534.541336834472},"volumeDenominatedA":{"day":0,"week":6054.636114419228,"month":6054.636114419228},"volumeDenominatedB":{"day":0,"week":646.1555555555556,"month":646.1555555555556},"priceRange":{"day":{"min":0.154924293484254,"max":0.1614991718400387},"week":{"min":0.14307880407879053,"max":0.1614991718400387},"month":{"min":0.1051210413860252,"max":0.1614991718400387}},"feeApr":{"day":0,"week":0.2597544991359307,"month":0.2597544991359307},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.2597544991359307,"month":0.2597544991359307}},{"address":"BKPtLwYEaVe9xXs7oBRPn4dqHuxi5QJGEGFamTHX2vaq","tokenA":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.8359461844831203,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.8992969573027291,"max":0.9271905374655758},"week":{"min":0.8200891705050353,"max":1.0184595866360913},"month":{"min":0.8176057834865429,"max":1.0184595866360913}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"BTVdTpn91aEDWQ9gdoGWUZsbFqUKkrYfbQp7Aw8tbw6y","tokenA":{"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp","symbol":"SLND","name":"Solend","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597","coingeckoId":"solend","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.6348431734640428,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.7775762287722044,"max":0.7903469586292043},"week":{"min":0.6199957448041202,"max":0.7983232494905667},"month":{"min":0.6199957448041202,"max":0.7983232494905667}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"BuBqqUZA8zwRRrVQsXesz3q8VDqLbGV9X3Srx8Dyu2WB","tokenA":{"mint":"2HeykdKjzHKGm2LKHw8pDYwjKPiFEoXAz74dirhUgQvq","symbol":"SAO","name":"Sator","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19410/large/sator-logo-CMC.png?1635211626","coingeckoId":"sator","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0102725948,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.0041201231115944,"max":0.004201675565446495},"week":{"min":0.0041201231115944,"max":0.004571825812854928},"month":{"min":0.0041201231115944,"max":0.006769922852334418}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"C27mQeymc9eB9du2GJkUf4wGYgdmHDzByZmc9AyLja2u","tokenA":{"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn","symbol":"JSOL","name":"JPool","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897","coingeckoId":"jpool","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":59.47145143398823,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0038375733896710553,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":30.420746809072718,"max":31.690586089880767},"week":{"min":30.420746809072718,"max":33.64819574996893},"month":{"min":29.956330915556492,"max":36.91032881417636}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"C9KsVuMmNVStsbcSXDTLxT3dFWvsKQannmbvWFVo7SZX","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6","symbol":"USH","name":"Hedge USD","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029","coingeckoId":"hedge-usd","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":36.89009893259352,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0017983837785224845,"volume":{"day":0,"week":0,"month":19.891558574775978},"volumeDenominatedA":{"day":0,"week":0,"month":0.546511685582978},"volumeDenominatedB":{"day":0,"week":0,"month":20.00253728721338},"priceRange":{"day":{"min":31.002300080576866,"max":32.13973440882261},"week":{"min":30.20018280914737,"max":34.27960336196617},"month":{"min":30.18710264901139,"max":37.70317476305686}},"feeApr":{"day":0,"week":0,"month":0.026677169000740537},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.026677169000740537}},{"address":"CB4HeabuJhC6tgKHMJr3sHkyURAHbtK5qaSpLgCK7CCW","tokenA":{"mint":"8upjSpvjcdpuzhfR1zriwg5NXkwDruejqNE9WNbPRtyA","symbol":"GRAPE","name":"Grape Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18149/large/fRsuAlcV_400x400.png?1632437325","coingeckoId":"grape-2","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.01222663,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.005049121878272537,"max":0.0051024560642748806},"week":{"min":0.005049121878272537,"max":0.005363471917088976},"month":{"min":0.0005703562953446154,"max":0.0056204213701951024}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"CFsL32bC7qCzs5bEkgo4DCmov1RzgyhUhruG3DJmLjCD","tokenA":{"mint":"2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX","symbol":"LINK","name":"Chainlink (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22993/large/LINK_wh_small.png?1644226275","coingeckoId":"chainlink-wormhole","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":7.1028971,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":6.596368314051612,"max":7.0628882734360205},"week":{"min":6.596368314051612,"max":7.440587766879872},"month":{"min":6.596368314051612,"max":8.484761114387918}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"CJX9KVBAwobF7ijE7cd4kujyaHw2QCjyN9be94i5Seyo","tokenA":{"mint":"kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6","symbol":"KIN","name":"Kin","decimals":5,"logoURI":"https://assets.coingecko.com/coins/images/959/large/kin-logo-social.png?1665793119","coingeckoId":"kin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.000014,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.00001099238500819702,"max":0.000011896565344009224},"week":{"min":0.00001099238500819702,"max":0.00001237921547647778},"month":{"min":0.000010973182482065066,"max":0.000012610635397413222}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"CXfp1XZ1Zn6pR8BaEiqoeJ5tDt1Vs5v79ybbiYsEktap","tokenA":{"mint":"2zzC22UBgJGCYPdFyo7GDwz7YHq5SozJc1nnBqLU8oZb","symbol":"1SP","name":"Onespace","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26474/large/1SP_logo.png?1658195640","coingeckoId":"onespace","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":0.0014126857998633699,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":32.38645716309924,"volume":{"day":0,"week":16.945369771830993,"month":16.945369771830993},"volumeDenominatedA":{"day":0,"week":11194.404255555557,"month":11194.404255555557},"volumeDenominatedB":{"day":0,"week":16.945369771830993,"month":16.945369771830993},"priceRange":{"day":{"min":0.0004909461680018201,"max":0.0007162573728949431},"week":{"min":0.0004909461680018201,"max":0.0014875874372095104},"month":{"min":0.0004909461680018201,"max":0.0026417770540895853}},"feeApr":{"day":0,"week":0.07604229245693661,"month":0.07527699948618977},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.07604229245693661,"month":0.07527699948618977}},{"address":"Cbuc6RwKvkdUXz2f1DKeSZsknrwvqXdWSjYqxQKaUDwp","tokenA":{"mint":"xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW","symbol":"SLIM","name":"Solanium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15816/large/logo_cg.png?1659000206","coingeckoId":"solanium","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.128945054,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.076534453353536,"max":0.07796408056188496},"week":{"min":0.07499851368085939,"max":0.08111269127236298},"month":{"min":0.07403975800712047,"max":0.08601935875325624}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"ChhZisuRoHYVDv99EVTozUEecw46MNpUuYzTUKPeHVEZ","tokenA":{"mint":"METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m","symbol":"MPLX","name":"Metaplex","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27344/large/mplx.png?1663636769","coingeckoId":"metaplex","whitelisted":true,"poolToken":false},"tokenB":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":87.47241339329443,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.018730654742780725,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.002833777575518272,"max":0.0031731812052954475},"week":{"min":0.002833777575518272,"max":0.003686029618840668},"month":{"min":0.002833777575518272,"max":0.02392779639741796}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"Cik5LzEFNH2wqJtkCrnwT5Bpv9rdaiLkEbVczgedmeNz","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"FgX1WD9WzMU3yLwXaFSarPfkgzjLb2DZCqmkx9ExpuvJ","symbol":"NINJA","name":"Ninja Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18442/large/ninja.PNG?1632006127","coingeckoId":"ninja-protocol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1756.9689611161548,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.004711153600076327,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":2237.12464738351,"max":2338.7538014171932},"week":{"min":235.27696369893374,"max":11684.569257778361},"month":{"min":229.22399211879934,"max":11684.569257778361}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"CjC6wbikEuEaskpRbuh6CVzHDpgiD3fjYKka8niSojTt","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EdAhkbj5nF9sRM7XN7ewuW8C9XEUMs8P7cnoQ57SYE96","symbol":"FAB","name":"Fabric","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16649/large/FABLOGO_TRANS200.png?1624592643","coingeckoId":"fabric","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":529375.7536469753,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":272.53042178117425,"volume":{"day":0,"week":56.91025907013578,"month":613.1890752051956},"volumeDenominatedA":{"day":0,"week":56.91025907013578,"month":613.1890752051956},"volumeDenominatedB":{"day":0,"week":28017908.07518983,"month":295357650.3243545},"priceRange":{"day":{"min":526788.3661345817,"max":532521.1919342534},"week":{"min":459327.9536137744,"max":550063.8100672207},"month":{"min":450820.08571695705,"max":607696.5835329469}},"feeApr":{"day":0,"week":0.03019928258024351,"month":0.043553709027035446},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.03019928258024351,"month":0.043553709027035446}},{"address":"Cst4B1VGkirLHFW5iVUYYL3uc4Wys5uQVVnvNaYPs4XA","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"GFX1ZjR2P15tmrSwow6FjyDYcEkoFb4p4gJCpLBjaxHD","symbol":"GOFX","name":"GooseFX","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19793/large/0Kjm9f4.png?1635906737","coingeckoId":"goosefx","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":23.640910721748117,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.344637611862743,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":68.89658734100396,"max":70.91920432361539},"week":{"min":63.665945978812545,"max":70.91920432361539},"month":{"min":23.20298195296887,"max":70.91920432361539}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"D4fchweMF4LHasUHWEkbQzp4V4mLPhdMw39Qt7wmXCcu","tokenA":{"mint":"4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF","symbol":"1SOL","name":"1sol.io (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22923/large/1SOL_wh_small.png?1644222565","coingeckoId":"1sol-io-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.166468531,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.008670758066871984,"max":0.008956430636093965},"week":{"min":0.008176944120476835,"max":0.1651706535692141},"month":{"min":0.008176944120476835,"max":0.1651706535692141}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"D7SVPZarGEEBLwBDDmo9H2kjqbrgMkjqzqppEvVRJe5r","tokenA":{"mint":"MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac","symbol":"MNGO","name":"Mango","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14773/large/token-mango.png?1628171237","coingeckoId":"mango-markets","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.057239,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.021080179961245716,"max":0.022944532497888786},"week":{"min":0.020905747101760814,"max":0.027422632808442364},"month":{"min":0.01884284822259456,"max":0.04315287900725263}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"DANSehZZqY1Rbhz27szFsa73JUYQHXdHtCneFvrewqLT","tokenA":{"mint":"8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36","symbol":"UNI","name":"Uniswap (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22969/large/UNI_wh_small.png?1644223592","coingeckoId":"uniswap-wormhole","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":5.34465534,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":6.090964632672954,"max":6.423415684673562},"week":{"min":5.718280291196944,"max":6.423415684673562},"month":{"min":5.182724060271885,"max":6.952675707514086}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"DGP8mVP3eDrwjftyFnsntvqZyvSJhHjd4at1rDcr78J4","tokenA":{"mint":"KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE","symbol":"wAVAX","name":"Avalanche (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22943/large/AVAX_wh_small.png?1644224391","coingeckoId":"avalanche-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":14.502477467389722,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0010648778981889495,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":14.661675958914506,"max":15.583002346472961},"week":{"min":14.661675958914506,"max":16.346516703555093},"month":{"min":14.661675958914506,"max":18.839226884858146}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"DS5CFC9mF1fjRXBnR1yRnSWn8SWTthDSVPobcuHH2sX5","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o","symbol":"DAI","name":"Dai Stablecoin (Portal)","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png","coingeckoId":"dai","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.9970042057261437,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0003060200600959205,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.9980321788871217,"max":1.0016303267417936},"week":{"min":0.996101253254257,"max":1.0023555374019428},"month":{"min":0.9907358684417817,"max":1.007003142097005}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"DrjwVP82MsyjMxs8Niw2WEtxJntaVfFtSHPRKpJi41LB","tokenA":{"mint":"zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF","symbol":"ZBC","name":"Zebec Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24342/large/zbc.PNG?1647400775","coingeckoId":"zebec-protocol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":2552.94654,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":100.00001210589308,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.015292464570207689,"max":0.015651820941383916},"week":{"min":0.014682945827597717,"max":0.016753197448756973},"month":{"min":0.012749994563896952,"max":0.016753197448756973}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"DvgSQJyx6JNaPzmhBwzWw6rntGBQCr5fmNnV2AfyEfCg","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":1.0069467546780504,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.04891881681972601,"volume":{"day":0,"week":16305.480587903356,"month":16305.480587903356},"volumeDenominatedA":{"day":0,"week":444.6528327794558,"month":444.6528327794558},"volumeDenominatedB":{"day":0,"week":447.70613847233665,"month":447.70613847233665},"priceRange":{"day":{"min":1.0051309738298828,"max":1.0116583029457848},"week":{"min":0.9937947615318501,"max":1.0145455380756927},"month":{"min":0.9937947615318501,"max":1.0145455380756927}},"feeApr":{"day":0,"week":0.021155156967618903,"month":0.021155156967618903},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.021155156967618903,"month":0.021155156967618903}},{"address":"E29n1h3hAcXW2EbM1tZ5JUbJH3zgFSiGFm9JPN2d3nDX","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT","symbol":"UXD","name":"UXD Stablecoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473","coingeckoId":"uxd-stablecoin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":36.99841,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":30.789824834756885,"max":32.05130065443174},"week":{"min":30.491379444801566,"max":617.3685776996498},"month":{"min":30.272953591080093,"max":617.3685776996498}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"E3FD9CQ1kG3PKzyd28w9MwSxtYPQGKbTBdX5L8HY34NZ","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"G9tt98aYSznRk7jWsfuz9FnTdokxS6Brohdo9hSmjTRB","symbol":"PUFF","name":"PUFF","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22049/large/logo_%281%29.png?1640675965","coingeckoId":"puff","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":379.3545153056159,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.002063843199223885,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":1230.0153917930886,"max":1294.2740196315442},"week":{"min":1041.7682080118352,"max":1294.2740196315442},"month":{"min":578.201413646846,"max":7181.620979250964}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"E7Jv2LYn3nKnBe36FUhZV2cDqjaKVZUFjH1hr1HY5Jds","tokenA":{"mint":"SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt","symbol":"SRM","name":"Serum","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/11970/large/serum-logo.png?1597121577","coingeckoId":"serum","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.12,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.694338872488718,"max":0.7281419267689937},"week":{"min":0.694338872488718,"max":0.7593205877665667},"month":{"min":0.694338872488718,"max":0.7991649061574676}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"EMWr3CqvDTykzTXPLEPtq2fU6sVQo4T15SGfgy4Xf8U7","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs","symbol":"MEDIA","name":"Media Network","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15142/large/media50x50.png?1620122020","coingeckoId":"media-network","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.115490046,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.13486275988561222,"max":0.14694783759639704},"week":{"min":0.1165010335296462,"max":0.14694783759639704},"month":{"min":0.10967248950403313,"max":7.282391362078912}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"EYY3smYi4c8qHep4ChUu4khnxdApZJmgn4CpS8fWwwTQ","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U","symbol":"svtPSK","name":"Pesky Penguins Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U/logo.png","coingeckoId":"svtPSK","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.003029342093146578,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1.4889470311874744,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"EdYh1YZf2HyRDgiVKBF731uEecQQA4qDieEp31WoVprv","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT","symbol":"svtDAPE","name":"Degenerate Ape Academy Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT/logo.png","coingeckoId":"svtDAPE","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":0.7845508066981361,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":4.401554391841889,"volume":{"day":0,"week":2.290252072958226,"month":2.290252072958226},"volumeDenominatedA":{"day":0,"week":0.06666941449827476,"month":0.06666941449827476},"volumeDenominatedB":{"day":0,"week":0.042,"month":0.042},"feeApr":{"day":0,"week":0.25119620954617294,"month":0.2174354389831673},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.25119620954617294,"month":0.2174354389831673}},{"address":"FUBwPtH1n7iUMdeyhULzaZWUHUNEvdakKaEmZxP2aDme","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"FoXyMu5xwXre7zEoSvzViRk3nGawHUp9kUh97y2NDhcq","symbol":"FOXY","name":"Famous Fox Federation","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/26191/large/uFYaQEsU_400x400.jpg?1656397523","coingeckoId":"famous-fox-federation","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":190.818195,"lpFeeRate":0.002,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":224.1330958450306,"max":259.8375601493596},"week":{"min":207.57245557870138,"max":259.8375601493596},"month":{"min":165.31128802147128,"max":259.8375601493596}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"FdEdEn3FXuLjjsPVJkhdbnJb7ZohRGHWGHM1qVYs3GEw","tokenA":{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},"tokenB":{"mint":"kiGenopAScF8VF31Zbtx2Hg8qA5ArGqvnVtXb83sotc","symbol":"KI","name":"Genopets KI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26135/large/genopets_ki.png?1660017469","coingeckoId":"genopet-ki","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":20.981871,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":21.59479561847463,"max":21.703641375884242},"week":{"min":20.384305952894216,"max":21.842934142531178},"month":{"min":18.20213258844811,"max":25.66647747638209}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"FqvDvMbTTo5cFuVB3UDuLXycdDwZKgTXhyu4dfJGmU56","tokenA":{"mint":"JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz","symbol":"JET","name":"JET","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18437/large/jet_logomark_color.png?1631972990","coingeckoId":"jet","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.1725117255427515,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0032876467664016335,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.08217267338155813,"max":0.08325199635789376},"week":{"min":0.08217267338155813,"max":0.08564809277164961},"month":{"min":0.08217267338155813,"max":0.08770478163932152}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"GSmUufJKwoVNhbbvbGRzSN9cfbLW5C3u1SpzWD7wPLhG","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"FANTafPFBAt93BNJVpdu25pGPmca3RfwdsDsRrT3LX1r","symbol":"FANT","name":"Phantasia","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21604/large/Phantasia_Logo.png?1639553227","coingeckoId":"phantasia","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":40.0781083,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":347.3793227979542,"max":352.56292895077155},"week":{"min":347.3793227979542,"max":399.8059190351133},"month":{"min":235.2910532182871,"max":400.7411711655139}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"Gb5zwZWFuJd2wnGb86KrmPRsLc2YL5oZRiLcsKKn2Xat","tokenA":{"mint":"BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE","symbol":"HAWK","name":"Hawksight","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/24459/large/3CnlKM0x_400x400.jpg?1647679676","coingeckoId":"hawksight","whitelisted":false,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":0.362052947,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.003868086416168025,"max":0.0039809731094958035},"week":{"min":0.0028058553507503015,"max":0.004083016804889705},"month":{"min":0.0028058553507503015,"max":0.004365525515910813}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"GgjNX2EAbwyNdU2CRszN5P6ph3BZCFvCNX4VfTjSkUhM","tokenA":{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":712.3418942245002,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1002.637210354042,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":753.2620437347564,"max":891.7476852427404},"week":{"min":605.2661777295359,"max":891.7476852427404},"month":{"min":540.9073361023597,"max":1164.8938800837452}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"Gr7WKYBqRLt7oUkjZ54LSbiUf8EgNWcj3ogtN8dKbfeb","tokenA":{"mint":"AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP","symbol":"AURY","name":"Aurory","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19324/large/logo.png?1635076945","coingeckoId":"aurory","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":1.1811807720374408,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":12.207843295850672,"volume":{"day":0,"week":1.4678061074536817,"month":1.4678061074536817},"volumeDenominatedA":{"day":0,"week":0.6785111111111111,"month":0.6785111111111111},"volumeDenominatedB":{"day":0,"week":1.4678061074536817,"month":1.4678061074536817},"priceRange":{"day":{"min":1.0496423112860422,"max":1.058402378779035},"week":{"min":1.0423389340127316,"max":1.1515282278907757},"month":{"min":1.0423389340127316,"max":1.4118573172564481}},"feeApr":{"day":0,"week":0.12203814787318461,"month":0.046957779515926654},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0.12203814787318461,"month":0.046957779515926654}},{"address":"H7CbuFTu5aAbCzbR9NFrnq6dirfWGQ1LveszgoVUvbiJ","tokenA":{"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R","symbol":"RAY","name":"Raydium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614","coingeckoId":"raydium","whitelisted":true,"poolToken":false},"tokenB":{"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk","symbol":"NGNC","name":"NGN Coin","decimals":2,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png","coingeckoId":"NGN","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":64,"price":213.60588947529524,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1246510.3797646635,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"HAZyxUax8NMTQXESN2mKWYUn1GfDKXxr6bv4DgbEaUCL","tokenA":{"mint":"UNQtEecZ5Zb4gSSVHCAWUQEoNnSVEbWiKCi1v9kdUJJ","symbol":"UNQ","name":"Unique Venture clubs","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21730/large/unq.png?1659789179","coingeckoId":"unq","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0100524051,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.006889427155363664,"max":0.0069461214411359615},"week":{"min":0.006889427155363664,"max":0.007099686511281036},"month":{"min":0.006889427155363664,"max":0.007694901056223709}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"HTCoEpbQujFWS2a9nx3CSPHiDhTs94gwsiPNVwKJcAQg","tokenA":{"mint":"6naWDMGNWwqffJnnXFLBCLaYu1y5U9Rohe5wwJPHvf1p","symbol":"SCRAP","name":"Scrap","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/23086/large/bd1b1275fdc0ac1.png?1643181131","coingeckoId":"scrap","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.8669270329960953,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0.0017448540659921906,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.41567818895236586,"max":0.4736955293286537},"week":{"min":0.41567818895236586,"max":0.6732356600733309},"month":{"min":0.07500162559906672,"max":0.9162511671313398}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"HiqVrTjxi8ykkuj6z8jNCZdkVBUrjK5GumLSQzVfai6k","tokenA":{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},"tokenB":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":26.846518746464763,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":8.658341207810897e-7,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":34.01983035739865,"max":34.89161771720738},"week":{"min":31.88313149382525,"max":41.144064716842166},"month":{"min":31.88313149382525,"max":44.52342174647692}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"HtzAU1NXrZ6HkV2YDMKa13d8Y9Msufgrcca266StEmJ7","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2","symbol":"svtFLARE","name":"Lifinity Flares Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2/logo.png","coingeckoId":"svtFLARE","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":9.2607860599421,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":3.4352365176650716e-8,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"HyBtxWGiYKzHG5WERyA6Ks9tq6k33UyXrU9Aj1BUFK2J","tokenA":{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":1,"price":0.32548438898157217,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2954.591679098618,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.03553429384160148,"max":0.04044202838782453},"week":{"min":0.03553429384160148,"max":0.05309851158650073},"month":{"min":0.030400896139993958,"max":0.06072002096731721}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"J3jpswsy9FACeXvcypU6nJEygUiBKBNRuniPBYC2GGhZ","tokenA":{"mint":"ANAxByE6G2WjFp7A4NqtWYXb3mgruyzZYg3spfxe6Lbo","symbol":"ANA","name":"Nirvana ANA","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25012/large/ANA_Logo.png?1649822203","coingeckoId":"nirvana-ana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":8.697988979942622,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":2357.442764592115,"volume":{"day":0,"week":0,"month":0.19329859008477265},"volumeDenominatedA":{"day":0,"week":0,"month":0.022222222222222223},"volumeDenominatedB":{"day":0,"week":0,"month":0.19329859008477265},"priceRange":{"day":{"min":0.08664708663598751,"max":0.09817639317764784},"week":{"min":0.07889912000137164,"max":0.10331209473896111},"month":{"min":0.07889912000137164,"max":0.1792749310422233}},"feeApr":{"day":0,"week":0,"month":0.0000045774027472618224},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.0000045774027472618224}},{"address":"J4FtCLc1JR5iQyHJDKjc46woDuHXTL3BSm89LgzzCKh","tokenA":{"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT","symbol":"STEP","name":"Step Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762","coingeckoId":"step-finance","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0882862862,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.025250750235316206,"max":0.025606571802780736},"week":{"min":0.025250750235316206,"max":0.0261822124343672},"month":{"min":0.024348439212830333,"max":0.030828160579624904}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"J5bmVtSn4RVUoT7FLSx55zUiUxmDapBUH8FXRrgyTt1H","tokenA":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"tokenB":{"mint":"HEhMLvpSdPviukafKwVN8BnBUTamirptsQ6Wxo5Cyv8s","symbol":"FTR","name":"Future","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17316/large/logo_-_2021-07-26T164152.450.png?1627288961","coingeckoId":"future","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":1,"price":1.6999057541866793,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":297.33854123955825,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":1.9319192828810334,"max":1.9474501506343211},"week":{"min":1.5533594937128063,"max":1.9474501506343211},"month":{"min":1.4245292727330334,"max":2.390752992700791}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"J9dVGwSfo8Rwd4i9s7J41wk5Nv6xzrbFLQz9xzriC3wc","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz","symbol":"svtSMB","name":"Solana Monkey Business Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz/logo.png","coingeckoId":"svtSMB","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":9.62329780269846,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"aamqgeNPwYGFisY9ARtc9V4tDiBKCfoytH2EaQLjiwa","tokenA":{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},"tokenB":{"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk","symbol":"NGNC","name":"NGN Coin","decimals":2,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png","coingeckoId":"NGN","whitelisted":false,"poolToken":false},"whitelisted":false,"tickSpacing":1,"price":361.80533946612616,"lpFeeRate":0.0001,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":8.29163983123402e-7,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"iJ736stFxuZfQdWtdtnk5UErbj1sj3KC4EmnHVr522c","tokenA":{"mint":"svtMpL5eQzdmB3uqK9NXaQkq8prGZoKQFNVJghdWCkV","symbol":"SVT","name":"Solvent","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22387/large/svt.png?1641789503","coingeckoId":"solvent","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.0338361838,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":0,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.024878949272461065,"max":0.025029783642772266},"week":{"min":0.02475027333679595,"max":0.0251696067469411},"month":{"min":0.02475027333679595,"max":0.030727376585167974}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"xLeM685ZkAZYXDKwzfB9eyszw1oELAmzCn45amKscmh","tokenA":{"mint":"MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD","symbol":"MEAN","name":"Mean DAO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21557/large/89934951.png?1639466364","coingeckoId":"meanfi","whitelisted":true,"poolToken":false},"tokenB":{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":64,"price":0.1869875157878814,"lpFeeRate":0.003,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":103364.1023981986,"volume":{"day":0,"week":0,"month":0},"volumeDenominatedA":{"day":0,"week":0,"month":0},"volumeDenominatedB":{"day":0,"week":0,"month":0},"priceRange":{"day":{"min":0.11379008618436957,"max":0.11655578442852979},"week":{"min":0.11379008618436957,"max":0.12049328839855056},"month":{"min":0.11379008618436957,"max":0.1472580645544464}},"feeApr":{"day":0,"week":0,"month":0},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0}},{"address":"yWtKJS6e3K5HzBE9JeKZc322tUanJ3UraSUWf4fgCrR","tokenA":{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},"tokenB":{"mint":"DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v","symbol":"svtDGOD","name":"DeGods Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v/logo.png","coingeckoId":"svtDGOD","whitelisted":true,"poolToken":false},"whitelisted":true,"tickSpacing":128,"price":1.0511635836327988,"lpFeeRate":0.01,"protocolFeeRate":0.03,"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ","modifiedTimeMs":1666273839381,"tvl":1.7089545069098298,"volume":{"day":0,"week":0,"month":0.5559357764421308},"volumeDenominatedA":{"day":0,"week":0,"month":0.016183333333333334},"volumeDenominatedB":{"day":0,"week":0,"month":0.01701133066179079},"feeApr":{"day":0,"week":0,"month":0.20724778633416174},"reward0Apr":{"day":0,"week":0,"month":0},"reward1Apr":{"day":0,"week":0,"month":0},"reward2Apr":{"day":0,"week":0,"month":0},"totalApr":{"day":0,"week":0,"month":0.20724778633416174}}],"hasMore":false}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaMainNetTokenList.txt
|
{"tokens":[{"mint":"3EkHyexJLGCvSxzn5umbtd9N69GoT4p5pfdLTFqCNP9Y","symbol":"$HIPPO","name":"Hippo Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20728/large/iu-n3i1b_400x400.jpg?1637596901","coingeckoId":"hippo-coin","whitelisted":false,"poolToken":false},{"mint":"6j14WyX1Ag2pLWvn99euK4xp2VcZD62VeJv2iwCrYmT8","symbol":"$KSH","name":"Keeshond","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21353/large/lkdYjrVS_400x400.jpg?1638999576","coingeckoId":"keeshond","whitelisted":false,"poolToken":false},{"mint":"WNZzxM1WqWFH8DpDZSqr6EoHKWXeMx9NLLd2R5RzGPA","symbol":"$WNZ","name":"Winerz","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/24786/large/wnz.png?1648905714","coingeckoId":"winerz","whitelisted":false,"poolToken":false},{"mint":"674PmuiDtgKx3uKuJ1B16f9m5L84eFvNwj3xDMvHcbo7","symbol":"$WOOD","name":"Mindfolk Wood","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22512/large/tokenlogo.png?1641966072","coingeckoId":"mindfolk-wood","whitelisted":false,"poolToken":false},{"mint":"4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF","symbol":"1SOL","name":"1sol.io (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22923/large/1SOL_wh_small.png?1644222565","coingeckoId":"1sol-io-wormhole","whitelisted":true,"poolToken":false},{"mint":"9wPhuYapychVDSxmXqCZxy2Ka8Lmav4SHM72si8bfraV","symbol":"1SOL/SOL[aquafarm]","name":"1SOL/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6MF5CHWAj5mS7FhpxiKz37CzR2eYTu236XpBKKMXCrGg","symbol":"1SOL/USDC[aquafarm]","name":"1SOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"2zzC22UBgJGCYPdFyo7GDwz7YHq5SozJc1nnBqLU8oZb","symbol":"1SP","name":"Onespace","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26474/large/1SP_logo.png?1658195640","coingeckoId":"onespace","whitelisted":false,"poolToken":false},{"mint":"F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B","symbol":"AART","name":"ALL.ART","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22012/large/all-art.PNG?1640590472","coingeckoId":"all-art","whitelisted":true,"poolToken":false},{"mint":"HCtyJzFUtYecXrA52s4Y9atq4J1fhT3cYsTX17XVSFag","symbol":"AART/USDC[aquafarm]","name":"AART/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg","symbol":"AAVE","name":"Aave (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22885/large/AAVE_wh_small.png?1644222707","coingeckoId":"aave-wormhole","whitelisted":false,"poolToken":false},{"mint":"6nuaX3ogrr2CaoAPjtaKHAoBNWok32BMcRozuf32s2QF","symbol":"ABBUSD","name":"Wrapped BUSD (Allbridge from BSC)","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23061/large/logo_-_2022-01-26T091043.556.png?1643159457","coingeckoId":"wrapped-busd-allbridge-from-bsc","whitelisted":false,"poolToken":false},{"mint":"EKLq86cHRwc8Spkcx2noPnfoVyQvcWSeud5JMJnTxNAD","symbol":"ABC","name":"ABC Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27172/large/abc.png?1662287244","coingeckoId":"abc-floor-index","whitelisted":false,"poolToken":false},{"mint":"JB9sPerGhfdwCDajmd8x4y2gkC4EtXVevoAoPwni39ik","symbol":"ABP","name":"Asset Backed Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21445/large/assset_backld.PNG?1639172738","coingeckoId":"asset-backed-protocol","whitelisted":false,"poolToken":false},{"mint":"a11bdAAuV8iB2fu7X6AxAvDTo1QZ8FXB3kk5eecdasp","symbol":"ABR","name":"Allbridge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18690/large/abr.png?1640742053","coingeckoId":"allbridge","whitelisted":true,"poolToken":false},{"mint":"GMzPbaCuQmeMUm1opH3oSCgKUjVgJUW14myq99RVPGX5","symbol":"ABR/USDC[aquafarm]","name":"ABR/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"2cZv8HrgcWSvC6n1uEiS48cEQGb1d3fiowP2rpa4wBL9","symbol":"ACF","name":"Alien Chicken Farm","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/25441/large/acf-token_%281%29.png?1651760005","coingeckoId":"alien-chicken-farm","whitelisted":false,"poolToken":false},{"mint":"ACUMENkbnxQPAsN8XrNA11sY3NmXDNKVCqS82EiDqMYB","symbol":"ACM","name":"Acumen","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23305/large/eIqc0048_400x400.jpg?1643692035","coingeckoId":"acumen","whitelisted":false,"poolToken":false},{"mint":"EwxNF8g9UfmsJVcZFTpL9Hx5MCkoQFoJi6XNWzKf1j8e","symbol":"ACUSD","name":"Wrapped CUSD (Allbridge from Celo)","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23057/large/7236.png?1643153224","coingeckoId":"wrapped-cusd-allbridge-from-celo","whitelisted":false,"poolToken":false},{"mint":"CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1","symbol":"AGEUR","name":"agEUR (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22965/large/agEUR_wh_small.png?1644222746","coingeckoId":"ageur-wormhole","whitelisted":false,"poolToken":false},{"mint":"4QV4wzDdy7S1EV6y2r9DkmaDsHeoKz6HUvFLVtAsu6dV","symbol":"AGTE","name":"Agronomist","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18314/large/logogecko.png?1631515498","coingeckoId":"agronomist","whitelisted":false,"poolToken":false},{"mint":"E6eCEE3KqjRD5UxcBYQTdV8Z535hyaBuFin9Udm6s6bz","symbol":"AIR","name":"Balloonsville AIR","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24853/large/9CmgcH6.png?1649134566","coingeckoId":"balloonsville-air","whitelisted":false,"poolToken":false},{"mint":"ALMmmmbt5KNrPPUBFE4dAKUKSPWTop5s3kUGCdF69gmw","symbol":"ALM","name":"Almond","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20348/large/logo_-_2021-11-15T102036.111.png?1636942845","coingeckoId":"almond","whitelisted":false,"poolToken":false},{"mint":"ANAxByE6G2WjFp7A4NqtWYXb3mgruyzZYg3spfxe6Lbo","symbol":"ANA","name":"Nirvana ANA","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25012/large/ANA_Logo.png?1649822203","coingeckoId":"nirvana-ana","whitelisted":true,"poolToken":false},{"mint":"51tMb3zBKDiQhNwGqpgwbavaGH54mk8fXFzxTc1xnasg","symbol":"APEX","name":"ApeXit Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16864/large/cg.png?1625470996","coingeckoId":"apexit-finance","whitelisted":false,"poolToken":false},{"mint":"8E5W9PMhnEvdvM2Q9XBLMJW7UsFiieXnRHPj8zhtB23h","symbol":"APPLE","name":"Apple Fruit","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20116/large/9pfJYwQk_400x400.jpg?1636521578","coingeckoId":"apple-fruit","whitelisted":false,"poolToken":false},{"mint":"APTtJyaRX5yGTsJU522N4VYWg3vCvSb65eam5GrPT5Rt","symbol":"APT","name":"Apricot","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20636/large/hF_3FMuH_400x400.jpg?1637399870","coingeckoId":"apricot","whitelisted":true,"poolToken":false},{"mint":"HNrYngS1eoqkjWro9D3Y5Z9sWBDzPNK2tX4rfV2Up177","symbol":"APT/USDC[aquafarm]","name":"APT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"DNhZkUaxHXYvpxZ7LNnHtss8sQgdAfd1ZYS1fB7LKWUZ","symbol":"APUSDT","name":"Wrapped USDT (Allbridge from Polygon)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23060/large/logo_-_2022-01-26T084912.902.png?1643158161","coingeckoId":"wrapped-usdt-allbridge-from-polygon","whitelisted":false,"poolToken":false},{"mint":"5JnZ667P3VcjDinkJFysWh2K2KtViy63FZ3oL5YghEhW","symbol":"APYS","name":"APYSwap","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14163/large/apys.png?1635831990","coingeckoId":"apyswap","whitelisted":false,"poolToken":false},{"mint":"9tzZzEHsKnwFL1A3DyFJwj36KnZj3gZ7g4srWp9YTEoh","symbol":"ARB","name":"ARB Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26046/large/IMG_3600.png?1656916820","coingeckoId":"arb-protocol","whitelisted":false,"poolToken":false},{"mint":"F4q5mMxk9RA2a9dwfa2FgJjhvuqbk8SC9jEpnDVz5TFy","symbol":"ARIA","name":"Legends Of Aria","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27157/large/ARIA_LOGO.png?1662276215","coingeckoId":"legends-of-aria","whitelisted":false,"poolToken":false},{"mint":"6Dujewcxn1qCd6rcj448SXQL9YYqTcqZCNQdCn3xJAKS","symbol":"ARTE","name":"ARTE","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23556/large/token_200.png?1644473079","coingeckoId":"arte","whitelisted":false,"poolToken":false},{"mint":"FY6XDSCubMhpkU9FAsUjB7jmN8YHYZGezHTWo9RHBSyX","symbol":"ASH","name":"Ashera","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/18508/large/ashera.png?1635150588","coingeckoId":"ashera","whitelisted":false,"poolToken":false},{"mint":"AMp8Jo18ZjK2tuQGfjKAkkWnVP4NWX5sav4NJH6pXF2D","symbol":"ASTRA","name":"AstraPad","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20028/large/WzDPqfV.png?1636418940","coingeckoId":"astrapad","whitelisted":false,"poolToken":false},{"mint":"GXnw9YSt6DANCt84Ti6ZpbaXvrvuEJFCYqrDjygnq4R8","symbol":"ATC","name":"ArtiCoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25232/large/LOGO-256.png?1650953344","coingeckoId":"articoin","whitelisted":false,"poolToken":false},{"mint":"ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx","symbol":"ATLAS","name":"Star Atlas","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17659/large/Icon_Reverse.png?1628759092","coingeckoId":"star-atlas","whitelisted":true,"poolToken":false},{"mint":"FZ8x1LCRSPDeHBDoAc3Gc6Y7ETCynuHEr5q5YWV7uRCJ","symbol":"ATLAS/USDC[aquafarm]","name":"ATLAS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CWBzupvyXN1Cf5rsBEHbzfTFvreLfUaJ77BMNLVJ739y","symbol":"ATPAY","name":"AtPay","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27254/large/atpay.png?1663049746","coingeckoId":"atpay","whitelisted":false,"poolToken":false},{"mint":"HJbNXx2YMRxgfUJ6K4qeWtjatMK5KYQT1QnsCdDWywNv","symbol":"ATS","name":"Atlas DEX","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23002/large/logo.png?1643091340","coingeckoId":"atlas-dex","whitelisted":false,"poolToken":false},{"mint":"9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM","symbol":"AUDIO","name":"Audius (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22936/large/AUDIO_wh_small.png?1644224294","coingeckoId":"audius-wormhole","whitelisted":true,"poolToken":false},{"mint":"3hksYA17VxgiKSeihjnZkBbjc2CTbEBfvDCYgQhojTo5","symbol":"AUDIO/USDC[aquafarm]","name":"AUDIO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP","symbol":"AURY","name":"Aurory","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19324/large/logo.png?1635076945","coingeckoId":"aurory","whitelisted":true,"poolToken":false},{"mint":"6mJqqT5TMgveDvxzBt3hrjGkPV5VAj7tacxFCT3GebXh","symbol":"AURY/USDC[aquafarm]","name":"AURY/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7JnHPPJBBKSTJ7iEmsiGSBcPJgbcKw28uCRXtQgimncp","symbol":"AVAX","name":"Avalanche","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/12559/large/coin-round-red.png?1604021818","coingeckoId":"avalanche-2","whitelisted":false,"poolToken":false},{"mint":"AUrMpCDYYcPuHhyNX8gEEqbmDPFUpBpHrNW3vPeCFn5Z","symbol":"AVAX","name":"AVAX (Allbridge from Avalanche)","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/12559/small/coin-round-red.png","coingeckoId":"avalanche-2","whitelisted":true,"poolToken":false},{"mint":"Hmfrtmo93DpSDmVNLQKcBS5D1ia5JatiRSok9ososubz","symbol":"AVAX/USDC[aquafarm]","name":"AVAX/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EE5L8cMU4itTsCSuor7NLK6RZx6JhsBe8GGV3oaAHm3P","symbol":"AVDO","name":"AvocadoCoin","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23675/large/PNLL1B2g_400x400.jpg?1644996225","coingeckoId":"avocadocoin","whitelisted":false,"poolToken":false},{"mint":"HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5","symbol":"AXSET","name":"Axie Infinity Shard (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22952/large/AXSet_wh_small.png?1644224450","coingeckoId":"axie-infinity-shard-wormhole","whitelisted":false,"poolToken":false},{"mint":"2Dzzc14S1D7cEFGJyMZMACuoQRHVUYFhVE74C5o8Fwau","symbol":"BAB","name":"Banana Bucks","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20592/large/_BAB_coinmedium.png?1637285029","coingeckoId":"banana-bucks","whitelisted":false,"poolToken":false},{"mint":"Uuc6hiKT9Y6ASoqs2phonGGw2LAtecfJu9yEohppzWH","symbol":"BABY","name":"Baby Samo Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20262/large/386VuTho_400x400.jpg?1636704021","coingeckoId":"baby-samo-coin","whitelisted":false,"poolToken":false},{"mint":"8JjBJdV73zPPmZvkgC91ni8RsbXWTkhpuSdxeZgaw6hD","symbol":"BABYTIGER","name":"BabyTigerGold","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22811/large/logo_babytiger.png?1642658264","coingeckoId":"babytigergold","whitelisted":false,"poolToken":false},{"mint":"3e9pHUxa2nvAqso2Kr2KqJxYvZaz9qZLjoLaG77uQwB1","symbol":"BAIL","name":"SolPatrol Bail","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25787/large/hammer.png?1653882632","coingeckoId":"solpatrol-bail","whitelisted":false,"poolToken":false},{"mint":"BhPXDQio8xtNC6k5Bg5fnUVL9kGN8uvRDNwW8MZBu8DL","symbol":"BANA","name":"Shibana","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/21234/large/solshib.png?1638758546","coingeckoId":"shibana","whitelisted":false,"poolToken":false},{"mint":"BgeRyFWWGHeVouqfHfcXUxmvfkgekhrXYVqQWf63kpJB","symbol":"BAPE","name":"Bored Ape Social Club","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23734/large/DY4jjsMH_400x400.jpg?1645173802","coingeckoId":"bored-ape-social-club","whitelisted":false,"poolToken":false},{"mint":"Basis9oJw9j8cw53oMV7iqsgo6ihi9ALw4QR31rcjUJa","symbol":"BASIS","name":"basis.markets","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21444/large/tkQevyc.png?1653297101","coingeckoId":"basis-markets","whitelisted":true,"poolToken":false},{"mint":"GoaAiajubRgeCFEz9L6mLnSmT2QFegoJDH5tpLfivpj","symbol":"BASIS/USDC[aquafarm]","name":"BASIS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GRsoqmhsS7fCLpEqqE7oRM92ag3WVy8VbJAi6KfWSeHS","symbol":"BBI","name":"Bridgesplit Brand Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/25640/large/a.png?1652942415","coingeckoId":"bridgesplit-brand-index","whitelisted":false,"poolToken":false},{"mint":"5SZSVgnQDgKKxtCe3UA3x4T7tcSRNDaL3NmfdEqpuLzo","symbol":"BBY","name":"BabylonDAO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22277/large/1_RfsjMarB6Ty7iBYZAJfPHg_2x.jpeg?1641363450","coingeckoId":"babylondao","whitelisted":false,"poolToken":false},{"mint":"H5gczCNbrtso6BqGKihF97RaWaxpUEZnFuFUKK4YX3s2","symbol":"BDE","name":"Big Defi Energy","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17903/large/bde.png?1636333319","coingeckoId":"big-defi-energy","whitelisted":false,"poolToken":false},{"mint":"2mTCc7PKM5Sm999ogLUzbxyaKbwrMsGofSZNSk1XdE1h","symbol":"BDTX","name":"Block Duelers","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/13757/large/block_duelers.png?1611567700","coingeckoId":"block-duelers","whitelisted":false,"poolToken":false},{"mint":"At7RLMbA6ZUjj7riyvFq2j5NHQ19aJabCju2VxLDAqso","symbol":"BGS","name":"Battle of Guardians Share","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22285/large/K3hU77wS_400x400.jpg?1641365642","coingeckoId":"battle-of-guardians-share","whitelisted":false,"poolToken":false},{"mint":"FoqP7aTaibT5npFKYKQQdyonL99vkW8YALNPwWepdvf5","symbol":"BIP","name":"The Starship Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21587/large/logo_-_2021-12-15T120333.709.png?1639541030","coingeckoId":"the-starship-finance","whitelisted":false,"poolToken":false},{"mint":"FTPnEQ3NfRRZ9tvmpDW6JFrvweBE5sanxnXSpJL1dvbB","symbol":"BIRD","name":"Bird.Money","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/13260/large/favicon-180x180.png?1611546646","coingeckoId":"bird-money","whitelisted":false,"poolToken":false},{"mint":"EGiWZhNk3vUNJr35MbL2tY5YD6D81VVZghR2LgEFyXZh","symbol":"BIT","name":"Bitmon","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25282/large/BT-logo.png?1651127844","coingeckoId":"bitmon","whitelisted":false,"poolToken":false},{"mint":"NFTUkR4u7wKxy9QLaX2TGvd9oZSWoMo4jqSJqdMb7Nk","symbol":"BLOCK","name":"Blockasset","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21332/large/Blockasset-Logo-Symbol.png?1648442722","coingeckoId":"blockasset","whitelisted":true,"poolToken":false},{"mint":"D8WjqtwC9CzBrQKfSf2ccCHFQuPYwyLv5KAy8WjT5vnf","symbol":"BLOCK/USDC[aquafarm]","name":"BLOCK/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"BLT1noyNr3GttckEVrtcfC6oyK6yV1DpPgSyXbncMwef","symbol":"BLT","name":"Blocto","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/18657/large/BLT_token.png?1633082645","coingeckoId":"blocto-token","whitelisted":false,"poolToken":false},{"mint":"5sM9xxcBTM9rWza6nEgq2cShA87JjTBx1Cu82LjgmaEg","symbol":"BMBO","name":"Bamboo Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19620/large/FC0hnduacAAHYFC.png?1635496724","coingeckoId":"bamboo-coin","whitelisted":false,"poolToken":false},{"mint":"9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa","symbol":"BNB","name":"Binance Coin (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22884/large/BNB_wh_small.png?1644224553","coingeckoId":"binance-coin-wormhole","whitelisted":true,"poolToken":false},{"mint":"BNTY5DaMP9CZhEtmQfMLHfUwwkXropHuCz4m96YqpqKm","symbol":"BNTY","name":"Bounty","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24975/large/bnty.png?1649652061","coingeckoId":"bounty","whitelisted":false,"poolToken":false},{"mint":"45wdSjpSqZCk9mkqmq5Nh7beCEqqUJMJcVduwYCip5eq","symbol":"BOFB","name":"bofb","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/24866/large/2qsZgpxd_400x400.jpg?1649166378","coingeckoId":"bofb","whitelisted":false,"poolToken":false},{"mint":"CN7qFa5iYkHz99PTctvT4xXUHnxwjQ5MHxCuTJtPN5uS","symbol":"BOKU","name":"Boryoku Dragonz","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20820/large/ZdgsxFPV_400x400.png?1637721291","coingeckoId":"boku","whitelisted":false,"poolToken":false},{"mint":"7uv3ZvZcQLd95bUp5WMioxG7tyAZVXFfr8JYkwhMYrnt","symbol":"BOLE","name":"Boleld","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/16317/large/Bole.png?1623736184","coingeckoId":"bole-token","whitelisted":false,"poolToken":false},{"mint":"D3eyBjfgJMPHZyYDRtbf1cSxeLiNwKumwHzQK3h3TRRq","symbol":"BONE","name":"Bulldog Billionaires","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24560/large/MIBYsiqF_400x400.jpg?1648195687","coingeckoId":"bulldog-billionaires","whitelisted":false,"poolToken":false},{"mint":"bonegFPgrpZ4bfVn3kQK1aMbGYddWtfMAywNt5LsuVE","symbol":"BONES","name":"Soul Dogs City Bones","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/25025/large/JEepabYB_400x400.png?1649838257","coingeckoId":"soul-dog-city-bones","whitelisted":false,"poolToken":false},{"mint":"BLwTnYKqf7u4qjgZrrsKeNs2EzWkMLqVCu6j8iHyrNA3","symbol":"BOP","name":"Boring Protocol","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/16828/large/imgonline-com-ua-resize-VT59gqn-Bya-WGG.jpg?1625210880","coingeckoId":"boring-protocol","whitelisted":true,"poolToken":false},{"mint":"2gXDJZ7XAtQEtf4PRSQZKoq1WMuu1H44tQanbMA3YVpu","symbol":"BOP/USDC[aquafarm]","name":"BOP/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CFbdjaKonbBQTYG2GC6CmB7exofgDYGCDR8tp8KVGS7T","symbol":"BORG","name":"Cyborg Apes","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23020/large/lgo-head-export.png?1643094853","coingeckoId":"cyborg-apes","whitelisted":false,"poolToken":false},{"mint":"2LxZrcJJhzcAju1FBHuGvw929EVkX7R7Q8yA2cdp8q7b","symbol":"BORK","name":"Bork","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19951/large/VtJL5kdepu6AyVHnHi4GImgyWxmcb2XMPN7jURW_yXQ.png?1636338300","coingeckoId":"bork","whitelisted":false,"poolToken":false},{"mint":"AkhdZGVbJXPuQZ53u2LrimCjkRP6ZyxG1SoM85T98eE1","symbol":"BOT","name":"Starbots","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/21823/large/coin_%286%29.png?1640076014","coingeckoId":"starbots","whitelisted":false,"poolToken":false},{"mint":"DysbQiM8nPdZbBhvHM1EgcSE73EwtFWDanXwY8CDD3Jn","symbol":"BOX","name":"Solootbox DAO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22660/large/qggoHE1__400x400.jpg?1642401842","coingeckoId":"solootbox-dao","whitelisted":false,"poolToken":false},{"mint":"Boxch1343xWQWbahVBPhYHuYLXNHnWYHG6QbuqfNugQ1","symbol":"BOXCH","name":"Boxch","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26119/large/logo.png?1655949751","coingeckoId":"boxch","whitelisted":false,"poolToken":false},{"mint":"FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD","symbol":"BRZ","name":"Brazilian Digital","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/8472/large/2_vtiD3xwce9knG2COxtSMaQ.png?1597786961","coingeckoId":"brz","whitelisted":false,"poolToken":false},{"mint":"2XSuy8RSESbtYRBbVHxGWuoikn3B6iXKVKzN4i3owTCf","symbol":"BSAMO","name":"Buff Samo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20597/large/logo_-_2021-11-19T094813.378.png?1637286506","coingeckoId":"buff-samo","whitelisted":false,"poolToken":false},{"mint":"bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1","symbol":"BSOL","name":"BlazeStake Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26636/large/blazesolana.png?1659328728","coingeckoId":"blazestake-staked-sol","whitelisted":false,"poolToken":false},{"mint":"EYDEQW4xQzLqHcFwHTgGvpdjsa5EFn74KzuqLX5emjD2","symbol":"BST","name":"Balisari","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19852/large/balisari-1.jpg?1636061685","coingeckoId":"balisari","whitelisted":false,"poolToken":false},{"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E","symbol":"BTC","name":"Wrapped Bitcoin (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256","coingeckoId":"wrapped-bitcoin-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},{"mint":"8pFwdcuXM7pvHdEGHLZbUR8nNsjj133iUXWG6CgdRHk2","symbol":"BTC/ETH","name":"BTC/ETH","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"DFpLFcQZqDKykyDePgip4r6MExVmBKWqTa12ezq6qxUY","symbol":"BTC/ORCA[aquafarm]","name":"BTC/ORCA[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Acxs19v6eUMTEfdvkvWkRB4bwFCHm3XV9jABCy7c1mXe","symbol":"BTC/SOL[aquafarm]","name":"BTC/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"J3kvcay3N16FBdawgnqoJ9v9p6XCvyCLE2Z9F5RLvGkj","symbol":"BTC/USDC[aquafarm]","name":"BTC/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"8nKJ4z9FSw6wrVZKASqBiS9DS1CiNsRnqwCCKVQjqdkB","symbol":"BTC/mSOL[aquafarm]","name":"BTC/mSOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HYp9v7cY4wAxSsa6ijztQQ3GQ8iTttuG5vu8JNBDHoNh","symbol":"BTC/stSOL[aquafarm]","name":"BTC/stSOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"BUD1144GGYwmMRFs4Whjfkom5UHqC9a8dZHPVvR2vfPx","symbol":"BUD","name":"BunnyDucky","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25934/large/bdlogo.png?1654758682","coingeckoId":"bunnyducky","whitelisted":false,"poolToken":false},{"mint":"Qikhhhg9Ta3Jg7WoDFbSYuCAE14hx9hPvdz1zVp3zUw","symbol":"BURD","name":"tudaBirds","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22839/large/_TOvRxfx_400x400.jpg?1642745695","coingeckoId":"tudabirds","whitelisted":false,"poolToken":false},{"mint":"XwTZraiF1dVh69cZ2SpqyjDLmei2uVps5CYHD9vqK6d","symbol":"BURR","name":"Burrito Boyz Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27169/large/7ryKn0fdux0PnpBEiwmop9DaFq2KG8WHmGhhtOYPoAU.png?1662286753","coingeckoId":"burrito-boyz-floor-index","whitelisted":false,"poolToken":false},{"mint":"5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2","symbol":"BUSD","name":"BUSD Token (Portal from BSC)","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png","coingeckoId":"binance-usd","whitelisted":false,"poolToken":false},{"mint":"pH5wWJc3KhdeVQSt86DU31pdcL9c8P88x2FQoKEJVHC","symbol":"BXS","name":"Bancambios AX","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25644/large/81660481.png?1652949329","coingeckoId":"bancambios-ax","whitelisted":false,"poolToken":false},{"mint":"C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9","symbol":"C98","name":"Coin98","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17117/large/logo.png?1626412904","coingeckoId":"coin98","whitelisted":false,"poolToken":false},{"mint":"E1s2muWwiLT2n3EQUL27hgviaPRRXWkpXD7ShpfgRvVz","symbol":"CAC","name":"Cosmic Ape Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22570/large/Cosmic-Ape-Logosc.png?1643186237","coingeckoId":"cosmic-ape-coin","whitelisted":false,"poolToken":false},{"mint":"CAPYD6Lrm7bTZ6C7t7JvSxvpEcfKQ9YNB7kUjh6p6XBN","symbol":"CAPY","name":"Capybara","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22000/large/logo_-_2021-12-27T143844.581.png?1640587159","coingeckoId":"capybara","whitelisted":false,"poolToken":false},{"mint":"CASHVDm2wsJXfhj6VWxb7GiMdoLc17Du7paH4bNr5woT","symbol":"CASH","name":"Cashio Dollar","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23059/large/CCdmyCvx_400x400.jpg?1643157979","coingeckoId":"cashio-dollar","whitelisted":false,"poolToken":false},{"mint":"5p2zjqCd1WJzAVgcEnjhb9zWDU7b9XVhFhx4usiyN7jB","symbol":"CATO","name":"CATO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17031/large/CATO200newlogo.png?1648448136","coingeckoId":"cato","whitelisted":true,"poolToken":false},{"mint":"55r9txzQtmjTykmTXmBYZCVMg5z9squB8b5cSw2AhxA4","symbol":"CATO/USDC[aquafarm]","name":"CATO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t","symbol":"CAVE","name":"CaveWorld","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19358/large/token.png?1650866628","coingeckoId":"cave","whitelisted":true,"poolToken":false},{"mint":"GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e","symbol":"CELO","name":"CELO (Allbridge from Celo)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e/logo.png","coingeckoId":"celo","whitelisted":true,"poolToken":false},{"mint":"HVLyX8mD8YvKgZJ4oB6rXJiCYMLpHKwB6iCiCjE1XwdT","symbol":"CELO/USDC[aquafarm]","name":"CELO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"YtfMZ4jg2ubdz4GasY86iuGjHdo5rCPJnFqgSf8gxAz","symbol":"CHB","name":"Charactbit","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24863/large/200x_logo.png?1649165917","coingeckoId":"charactbit","whitelisted":false,"poolToken":false},{"mint":"3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc","symbol":"CHEEMS","name":"Cheems","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/18358/large/newlogo.png?1644476666","coingeckoId":"cheems","whitelisted":false,"poolToken":false},{"mint":"cxxShYRVcepDudXhe7U62QHvw8uBJoKFifmzggGKVC2","symbol":"CHICKS","name":"SolChicks","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20978/large/chicks.png?1638162821","coingeckoId":"solchicks-token","whitelisted":true,"poolToken":false},{"mint":"71CBZeJ4tw38L9pSPoCz4fRsuWE64Fipyzotte7haoCS","symbol":"CHICKS/USDC[aquafarm]","name":"CHICKS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6xtyNYX6Rf4Kp3629X11m1jqUmkV89mf9xQakUtUQfHq","symbol":"CHIH","name":"ChihuahuaSol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20528/large/rsz_chihuahua-token.png?1637200907","coingeckoId":"chihuahuasol","whitelisted":false,"poolToken":false},{"mint":"CbDwU8JrTYv3GzU7msni8qtfFkAGpcyFAzuhuGq5SVqp","symbol":"CHUG","name":"CHUG","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22474/large/chug.png?1641885210","coingeckoId":"chug-token","whitelisted":false,"poolToken":false},{"mint":"8s9FCz99Wcr3dHpiauFRi6bLXzshXfcGTfgQE7UEopVx","symbol":"CKC","name":"ChikinCoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24978/large/Screenshot_from_2022-04-11_15-47-44.png?1649663281","coingeckoId":"chikincoin","whitelisted":false,"poolToken":false},{"mint":"3aAYh35n81F8HPG2QBdE48aYdzGFj2fsLccg91X4AcRc","symbol":"CLASH","name":"Clash Of Cars","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23307/large/logo_%286%29.png?1643697035","coingeckoId":"clash-of-cars","whitelisted":false,"poolToken":false},{"mint":"CLAsHPfTPpsXmzZzdexdEuKeRzZrWjZFRHQEPu2kSgWM","symbol":"CLH","name":"Clash","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27836/large/New-Clash-Icon_copy.png?1665996878","coingeckoId":"clash","whitelisted":true,"poolToken":false},{"mint":"5Wsd311hY8NXQhkt9cWHwTnqafk7BGEbLu8Py3DSnPAr","symbol":"CMFI","name":"Compendium.Fi","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22269/large/ckxanb97x357108l6qrnrjxtr.png?1641340080","coingeckoId":"compendium-fi","whitelisted":true,"poolToken":false},{"mint":"85krvT9DxdYgoFLQDHTAGdvtNuLdAsc4xE5FkVLpN2aR","symbol":"CMFI/USDC[aquafarm]","name":"CMFI/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7udMmYXh6cuWVY6qQVCd9b429wDVn2J71r5BdxHkQADY","symbol":"COBAN","name":"COBAN","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/19483/large/coban-logo-pebyyxjzxvebwa8nsvpp9t8iple69h6enp9bdknotq.png?1635285761","coingeckoId":"coban","whitelisted":false,"poolToken":false},{"mint":"yvbrxE6zjrA8SxxSpL7oojDBB5QDmF5CVqJWea8JcQE","symbol":"CODI","name":"Codi Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22798/large/ovFr4h_Y_n8q_1RIgfg5IFCRtx56Uc0R-GC9LiIcy1HOgigf0mYH2kWVFuvBipErCvpnrp0yps4Y3XTis-boKJg_2_ucFmv3Iu0CaSyCXThFihx-yrr9vo7t0HEL5optQ6jKAXpSLtXvKZPHrmMgMM2VFB2D4UCPxGsCItv6kvSix3LsjLcrKmTAvmHLvCby1om1BvKJLFcXP0.jpg?1642582521","coingeckoId":"codi-finance","whitelisted":false,"poolToken":false},{"mint":"EzL6LLmv4vgfF7irkjG7ZxM92bTJ9f6nFopDXJTow7zj","symbol":"CONDOMS","name":"SolCondoms","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21814/large/DboqD2_o_400x400.jpg?1640071580","coingeckoId":"solcondoms","whitelisted":false,"poolToken":false},{"mint":"8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh","symbol":"COPE","name":"Cope","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14567/large/COPE.png?1617162230","coingeckoId":"cope","whitelisted":true,"poolToken":false},{"mint":"2697FyJ4vD9zwAVPr33fdVPDv54pyZZiBv9S2AoKMyQf","symbol":"COPE/SOL","name":"COPE/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CzieDbGRdN1QGaGDNpSqzEA18bi881ccvkkGZi51pe1k","symbol":"COPE/SOL[aquafarm]","name":"COPE/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HsauTv9s52Zv12eaDuSp6y7BEm4e4BHEyAsbdjyyWzPK","symbol":"COPE/USDC[aquafarm]","name":"COPE/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CowKesoLUaHSbAMaUxJUj7eodHHsaLsS65cy8NFyRDGP","symbol":"COW","name":"CashCow","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19388/large/cash_cow.png?1648265503","coingeckoId":"cashcow","whitelisted":false,"poolToken":false},{"mint":"z9WZXekbCtwoxyfAwEJn1euXybvqLzPVv3NDzJzkq7C","symbol":"CRC","name":"Care Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18836/large/nyZmFyL1_400x400.jpg?1633570319","coingeckoId":"care-coin","whitelisted":false,"poolToken":false},{"mint":"CREAMpdDimXxj2zTCwP5wMEtba4NYaKCrTBEQTSKtqHe","symbol":"CREAMY","name":"Creamy","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25285/large/logo200.png?1651128831","coingeckoId":"creamy","whitelisted":false,"poolToken":false},{"mint":"DubwWZNWiNGMMeeQHPnMATNj77YZPZSAz2WVR5WjLJqz","symbol":"CRP","name":"CropperFinance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17883/large/copperfinance.PNG?1629708744","coingeckoId":"cropperfinance","whitelisted":false,"poolToken":false},{"mint":"CRWNYkqdgvhGGae9CKfNka58j6QQkaD5bLhKXvUYqnc1","symbol":"CRWNY","name":"Crowny","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14958/large/crowny-icon-rounded_2x.png?1619147225","coingeckoId":"crowny-token","whitelisted":false,"poolToken":false},{"mint":"56tNQ29XBrbovm5K5SThuQatjCy92w2wKUaUeQ8WCD9g","symbol":"CRYY","name":"Cry Cat Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22128/large/cry_logo_200_200.png?1640870275","coingeckoId":"cry-coin","whitelisted":false,"poolToken":false},{"mint":"EzfnjRUKtc5vweE1GCLdHV4MkDQ3ebSpQXLobSKgQ9RB","symbol":"CSM","name":"Cricket Star Manager","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25774/large/CSM_token.png?1653631158","coingeckoId":"cricket-star-manager","whitelisted":false,"poolToken":false},{"mint":"G7uYedVqFy97mzjygebnmmaMUVxWHFhNZotY6Zzsprvf","symbol":"CSTR","name":"CoreStarter","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20209/large/cstr.png?1636642782","coingeckoId":"corestarter","whitelisted":false,"poolToken":false},{"mint":"9ET2QCQJdFkeKkuaampNbmicbA8eLYauFCWch9Ddh9p5","symbol":"CTI","name":"ClinTex CTi","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/13266/large/CTI.png?1606817542","coingeckoId":"clintex-cti","whitelisted":false,"poolToken":false},{"mint":"CUSDvqAQLbt7fRofcmV2EXfPA2t36kzj7FjzdmqDiNQL","symbol":"CUSD","name":"Coin98 Dollar","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26588/large/CUSD-01.png?1658909049","coingeckoId":"coin98-dollar","whitelisted":false,"poolToken":false},{"mint":"HfYFjMKNZygfMC8LsQ8LtpPsPxEJoXJx4M6tqi75Hajo","symbol":"CWAR","name":"Cryowar","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20227/large/CWAR_round_200_200.png?1636689418","coingeckoId":"cryowar-token","whitelisted":false,"poolToken":false},{"mint":"BRLsMczKuaR5w9vSubF4j8HwEGGprVAyyVgS4EX7DKEg","symbol":"CYS","name":"Cykura","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18139/large/cyclos-text-logo.png?1630651169","coingeckoId":"cyclos","whitelisted":false,"poolToken":false},{"mint":"32CHtMAuGaCAZx8Rgp54jSFG3ihbpN5brSvRAWpwEHPv","symbol":"DAB","name":"DAB Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25275/large/basc-coin.png?1651123747","coingeckoId":"dab-coin","whitelisted":false,"poolToken":false},{"mint":"EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o","symbol":"DAI","name":"Dai Stablecoin (Portal)","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png","coingeckoId":"dai","whitelisted":true,"poolToken":false},{"mint":"r8nuuzXCchjtqsmQZVZDPXXq928tuk7KVH479GsKVpy","symbol":"DAOJONES","name":"Fractionalized SMB-2367","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/22611/large/daojones.png?1642228974","coingeckoId":"fractionalized-smb-2367","whitelisted":false,"poolToken":false},{"mint":"6AarZpv8KwmPBxBEZdRmd3g1q2tUBaSgTNQ5e621qcZQ","symbol":"DAPE","name":"Degenerate Ape Academy Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27054/large/dape.png?1661508642","coingeckoId":"degenerate-ape-academy-floor-index","whitelisted":false,"poolToken":false},{"mint":"CpFE715P5DnDoJj9FbCRcuyHHeTXNdRnvzNkHvq1o23U","symbol":"DARC","name":"Konstellation","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/2943/large/darctoken.png?1645230834","coingeckoId":"darcmatter-coin","whitelisted":false,"poolToken":false},{"mint":"FmQ7v2QUqXVVtAXkngBh3Mwx7s3mKT55nQ5Z673dURYS","symbol":"DARK","name":"Dark Protocol","decimals":9,"logoURI":"https://www.arweave.net/3VPYgJz-wlRAm1H5_4zrsAckyz55qa5ILyk3Uq6l4Ms?ext=png","coingeckoId":"Dark Protocol","whitelisted":false,"poolToken":false},{"mint":"Ce3PSQfkxT5ua4r2JqCoWYrMwKWC5hEzwsrT9Hb7mAz9","symbol":"DATE","name":"SolDate","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18461/large/date.PNG?1632108952","coingeckoId":"soldate-token","whitelisted":false,"poolToken":false},{"mint":"3DHPqxdMXogNNnpqBMF8N4Zs4dn1WR31H7UjWq6FExwG","symbol":"DAWG","name":"DAWG","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20881/large/143299698-37b637ea-7fce-4bd6-8713-71c42e37629e.png?1637820203","coingeckoId":"dawg","whitelisted":false,"poolToken":false},{"mint":"3fXCWpQaEHEsnHSYAqcxm3QLPGLxYiZzoJbqRY9wWxV2","symbol":"DCCT","name":"DocuChain","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24763/large/zf3Q-GS4_400x400.jpg?1648814553","coingeckoId":"docuchain","whitelisted":false,"poolToken":false},{"mint":"A9UhP1xfQHWUhSd54NgKPub2XB3ZuQMdPEvf9aMTHxGT","symbol":"DEGN","name":"Degen","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20103/large/degendex.png?1636512003","coingeckoId":"degen","whitelisted":false,"poolToken":false},{"mint":"de1QJkP1qDCk5JYCCXCeq27bQQUdCaiv7xVKFrhPSzF","symbol":"DELFI","name":"DeltaFi","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24085/large/logo.png?1646293860","coingeckoId":"deltafi","whitelisted":false,"poolToken":false},{"mint":"BgwQjVNMWvt2d8CN51CsbniwRWyZ9H9HfHkEsvikeVuZ","symbol":"DEP","name":"DEAPCOIN","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/10970/large/DEAPcoin_01.png?1586741677","coingeckoId":"deapcoin","whitelisted":false,"poolToken":false},{"mint":"DFL1zNkaGPWm1BqAVqRjCZvHmwTFrEaJtbzJWgseoNJh","symbol":"DFL","name":"DeFi Land","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18910/large/defilend.png?1637190571","coingeckoId":"defi-land","whitelisted":true,"poolToken":false},{"mint":"9Y1vPaAsMz8X65DebMMnmBjbMo8i4jh4mcgiggZUUS3M","symbol":"DFL/SOL[aquafarm]","name":"DFL/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AWrtTWG4Zgxw8D92bb3L3sQtGLD3zDztMPWsXSph8iBP","symbol":"DFL/USDC[aquafarm]","name":"DFL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AAXng5czWLNtTXHdWEn9Ef7kXMXEaraHj2JQKo7ZoLux","symbol":"DGE","name":"DarleyGo Essence","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24403/large/DGE.png?1647530006","coingeckoId":"darleygo-essence","whitelisted":false,"poolToken":false},{"mint":"E6UU5M1z4CvSAAF99d9wRoXsasWMEXsvHrz3JQRXtm2X","symbol":"DGLN","name":"Dogelana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21133/large/logo_%285%29.png?1642042028","coingeckoId":"dogelana","whitelisted":false,"poolToken":false},{"mint":"2Giihhh4rD5QMF49EExf5k8qbxftaqRWzLi4tS6YcrvR","symbol":"DGOLD","name":"Degen Gold","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26616/large/DegenGold_%28DGOLD%29.png?1659073125","coingeckoId":"degen-gold","whitelisted":false,"poolToken":false},{"mint":"6Y7LbYB3tfGBG6CSkyssoxdtHb77AEMTRVXe8JUJRwZ7","symbol":"DINO","name":"Dino","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17770/large/solana_dino.png?1629207162","coingeckoId":"dino","whitelisted":false,"poolToken":false},{"mint":"2TxM6S3ZozrBHZGHEPh9CtM74a9SVXbr7NQ7UxkRvQij","symbol":"DINOEGG","name":"DINOEGG","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22291/large/xOcKL1Fw_400x400.png?1641367958","coingeckoId":"dinoegg","whitelisted":false,"poolToken":false},{"mint":"BiDB55p4G3n1fGhwKFpxsokBMqgctL4qnZpDH1bVQxMD","symbol":"DIO","name":"Decimated","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/8271/large/dio_logo_coloured_transparent.png?1640744585","coingeckoId":"decimated","whitelisted":false,"poolToken":false},{"mint":"GnzxEyULVPQYb5F5hxGc8dEGivctVrfr5mtsdp4z5xU2","symbol":"DJN","name":"Fenix Danjon","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21134/large/logo.png?1638361975","coingeckoId":"fenix-danjon","whitelisted":false,"poolToken":false},{"mint":"HtbhBYdcfXbbD2JiH6jtsTt2m2FXjn7h4k6iXfz98k5W","symbol":"DKM","name":"Dead Knight","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24442/large/SAq1GaQc_400x400.jpg?1647673953","coingeckoId":"dead-knight","whitelisted":false,"poolToken":false},{"mint":"5LSFpvLDkcdV2a3Kiyzmg5YmJsj2XDLySaXvnfP1cgLT","symbol":"DOGO","name":"DogemonGo","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17480/large/dogemongo.PNG?1627950869","coingeckoId":"dogemon-go","whitelisted":false,"poolToken":false},{"mint":"GyUYoBT1gcZBEVffWeGKQ3E2gzfNP5b8GEvnqAGjL6Hs","symbol":"DPAY","name":"PayDex","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26530/large/paydexlogo.png?1658666536","coingeckoId":"paydex","whitelisted":false,"poolToken":false},{"mint":"McpgFn2CxFYFq6JLiBxeC6viNfebLsfsf9Sv5wcwKvL","symbol":"DPUNKZ","name":"Duck Punkz Universe Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27171/large/2588.png?1662287086","coingeckoId":"duck-punkz-universe-floor-index","whitelisted":false,"poolToken":false},{"mint":"6jAHVBYY2B4dU6hGxXpCqFwHdjDL6aiLtTvJKn8fWRo1","symbol":"DRA","name":"Drachma Exchange","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26768/large/Drachma_Exchange_%281%29.png?1660038908","coingeckoId":"drachma-exchange","whitelisted":false,"poolToken":false},{"mint":"48AEwauAHsJibyt3WqjQ6EoHnFBcnyHASfo7vB2eCXPS","symbol":"DRAW","name":"Dragon War","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/23100/large/logo_%284%29.png?1643184693","coingeckoId":"dragon-war","whitelisted":false,"poolToken":false},{"mint":"CzXF8oUJSsB9ADKV99WAi2TgytqAyKvQw6EihwiL9em4","symbol":"DRGNZ","name":"Boryoku Genesis Dragonz Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24386/large/AzJI7FQ.png?1647501836","coingeckoId":"boryoku-genesis-dragonz-index","whitelisted":false,"poolToken":false},{"mint":"DogscQVvNVj7ndEnhWiCXPVPKKwNy9fJd4ATF7mVi5J","symbol":"DSC","name":"DoggyStyle Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20831/large/logo_-_2021-11-24T132426.774.png?1637731476","coingeckoId":"doggystyle-coin","whitelisted":false,"poolToken":false},{"mint":"5y1YcGVPFy8bEiCJi79kegF9igahmvDe5UrqswFvnpMJ","symbol":"DSOL","name":"DecentSol","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/19700/large/QmdvXyoW82LjwF2w3ya2Sr42WQgXzdTo9jfXW452RJXVLD.png?1635752529","coingeckoId":"decentsol","whitelisted":false,"poolToken":false},{"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ","symbol":"DUST","name":"DUST Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854","coingeckoId":"dust-protocol","whitelisted":true,"poolToken":false},{"mint":"GsNzxJfFn6zQdJGeYsupJWzUAm57Ba7335mfhWvFiE9Z","symbol":"DXL","name":"Dexlab","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17276/large/3_GradientSymbol.png?1650936792","coingeckoId":"dexlab","whitelisted":false,"poolToken":false},{"mint":"4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU","symbol":"DYDX","name":"dYdX (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23039/large/DYDX_wh_small.png?1644225284","coingeckoId":"dydx-wormhole","whitelisted":false,"poolToken":false},{"mint":"efk1hwJ3QNV9dc5qJaLyaw9fhrRdjzDTsxbtWXBh1Xu","symbol":"EFK","name":"EFK Token","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27876/large/E_VFDP8f_400x400.jpeg?1666178253","coingeckoId":"efk-token","whitelisted":false,"poolToken":false},{"mint":"6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU","symbol":"ELON","name":"Dogelon Mars (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23041/large/ELON_wh_small.png?1644225332","coingeckoId":"dogelon-mars-wormhole","whitelisted":false,"poolToken":false},{"mint":"4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6","symbol":"ELU","name":"Elumia","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24433/large/me4oOqTM_400x400.png?1647662654","coingeckoId":"elumia","whitelisted":false,"poolToken":false},{"mint":"5s4BYUXLuvs9ZcVDTxkTpKhThWFSpaU8GG55q2iySe2N","symbol":"ENRX","name":"Enrex","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24952/large/enrx.png?1649505778","coingeckoId":"enrex","whitelisted":false,"poolToken":false},{"mint":"87rSGrpYdmTxfNBf8o2cpyiNcxCmNhUPBXjT8aoyfob5","symbol":"ENX","name":"Equinox","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25234/large/ReKXsCZUnqSChIZZg4dlCIHQTKU0owxPuvj1feBDWaE.png?1650954548","coingeckoId":"equinox","whitelisted":false,"poolToken":false},{"mint":"2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk","symbol":"ETH","name":"Wrapped Ethereum (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24918/large/6250754.png?1649344492","coingeckoId":"wrapped-ethereum-sollet","whitelisted":true,"poolToken":false,"wrapper":"SRM"},{"mint":"7bb88DAnQY7LSoWEuqezCcbk4vutQbuRqgJMqpX8h6dL","symbol":"ETH/SOL","name":"ETH/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"71FymgN2ZUf7VvVTLE8jYEnjP3jSK1Frp2XT1nHs8Hob","symbol":"ETH/SOL[aquafarm]","name":"ETH/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7TYb32qkwYosUQfUspU45cou7Bb3nefJocVMFX2mEGTT","symbol":"ETH/USDC","name":"ETH/USDC","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"3e1W6Aqcbuk2DfHUwRiRcyzpyYRRjg6yhZZcyEARydUX","symbol":"ETH/USDC[aquafarm]","name":"ETH/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CbU2bWHoy73HqCm9PQjGcniaxhFkQ65zWTJyUfNU5694","symbol":"EURONIN","name":"Euronin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24173/large/Social_Profile-1_%281%29.jpeg?1646751614","coingeckoId":"euronin","whitelisted":false,"poolToken":false},{"mint":"ExistEr1h19DiEPPzaDpwx3DnjQbrVbXpaxKDYBSNoWj","symbol":"EXIST","name":"Exist","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25002/large/200x200.png?1649740868","coingeckoId":"exist","whitelisted":false,"poolToken":false},{"mint":"G7eETAaUzmsBPKhokZyfbaT4tD9igdZSmfQGEYWem8Sw","symbol":"EYE","name":"NftEyez","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22079/large/eye-coin.png?1640755291","coingeckoId":"nfteyez","whitelisted":false,"poolToken":false},{"mint":"EdAhkbj5nF9sRM7XN7ewuW8C9XEUMs8P7cnoQ57SYE96","symbol":"FAB","name":"Fabric","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16649/large/FABLOGO_TRANS200.png?1624592643","coingeckoId":"fabric","whitelisted":true,"poolToken":false},{"mint":"6c4L5nTH2sBKkfeuP3WhGp6Vq1tE4Suh4ezRp5KSu8Z7","symbol":"FANI","name":"FaniTrade","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24029/large/fani_200x200.png?1646115606","coingeckoId":"fanitrade","whitelisted":false,"poolToken":false},{"mint":"FANTafPFBAt93BNJVpdu25pGPmca3RfwdsDsRrT3LX1r","symbol":"FANT","name":"Phantasia","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21604/large/Phantasia_Logo.png?1639553227","coingeckoId":"phantasia","whitelisted":true,"poolToken":false},{"mint":"GjG7JjTQfQpDxw4hWx4etP9oTaYCuCbPjsU8WaUT3xHB","symbol":"FANT/USDC[aquafarm]","name":"FANT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp","symbol":"FIDA","name":"Bonfida","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13395/large/bonfida.png?1658327819","coingeckoId":"bonfida","whitelisted":true,"poolToken":false},{"mint":"FJ9Q9ojA7vdf5rFbcTc6dd7D3nLpwSxdtFSE8cwfuvqt","symbol":"FIDA/SOL","name":"FIDA/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EYsNdtyu4gGTaGz8N5m5iQ3G1N6rDyMbR72B3CqbWW4W","symbol":"FIDA/SOL[aquafarm]","name":"FIDA/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AfXLBfMZd32pN6QauazHCd7diEWoBgw1GNUALDw3suVZ","symbol":"FIRE","name":"Solfire Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22305/large/logo.png?1641446227","coingeckoId":"solfire-finance","whitelisted":false,"poolToken":false},{"mint":"Hq9MuLDvUAWqC29JhqP2CUJP9879LfqNBHyRRREEXwtZ","symbol":"FLOCK","name":"Flock","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22775/large/fUNf0Lu.png?1642577185","coingeckoId":"flock","whitelisted":false,"poolToken":false},{"mint":"3jzdrXXKxwkBk82u2eCWASZLCKoZs1LQTg87HBEAmBJw","symbol":"FLOOF","name":"FLOOF","decimals":1,"logoURI":"https://assets.coingecko.com/coins/images/19810/large/FLOOF_logo_200x200.png?1635917291","coingeckoId":"floof","whitelisted":false,"poolToken":false},{"mint":"FLWRna1gxehQ9pSyZMzxfp4UhewvLPwuKfdUTgdZuMBY","symbol":"FLWR","name":"SOL Flowers","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/23534/large/FLWR-Token-Front-ALPHA.png?1644387944","coingeckoId":"sol-flowers","whitelisted":false,"poolToken":false},{"mint":"ATZERmcPfopS9vGqw9kxqRj9Bmdi3Z268nHXkGsMa3Pf","symbol":"FONE","name":"Fone","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/23390/large/Fl-zRI0g_400x400.jpg?1644115198","coingeckoId":"fone","whitelisted":false,"poolToken":false},{"mint":"FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds","symbol":"FORGE","name":"Blocksmith Labs Forge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25411/large/Logo_%281%29.png?1651733020","coingeckoId":"blocksmith-labs-forge","whitelisted":true,"poolToken":false},{"mint":"6xcfmgzPgABAuAfGDhvvLLMfMDur4at7tU7j3NudUviK","symbol":"FOSSIL","name":"Fossil","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22593/large/dtdm7P1W_400x400.jpg?1642144690","coingeckoId":"fossil","whitelisted":false,"poolToken":false},{"mint":"DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE","symbol":"FOUR","name":"4thpillar technologies","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/3434/large/four-ticker-2021-256x256.png?1617702287","coingeckoId":"the-4th-pillar","whitelisted":false,"poolToken":false},{"mint":"FoXyMu5xwXre7zEoSvzViRk3nGawHUp9kUh97y2NDhcq","symbol":"FOXY","name":"Famous Fox Federation","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/26191/large/uFYaQEsU_400x400.jpg?1656397523","coingeckoId":"famous-fox-federation","whitelisted":false,"poolToken":false},{"mint":"FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp","symbol":"FRAX","name":"Frax","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/13422/large/frax_logo.png?1608476506","coingeckoId":"frax","whitelisted":false,"poolToken":false},{"mint":"FriCEbw1V99GwrJRXPnSQ6su2TabHabNxiZ3VNsVFPPN","symbol":"FRIES","name":"Soltato FRIES","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19533/large/soltato.png?1635745612","coingeckoId":"soltato-fries","whitelisted":false,"poolToken":false},{"mint":"ErGB9xa24Szxbk1M28u2Tx8rKPqzL6BroNkkzk5rG4zj","symbol":"FRKT","name":"FRAKT","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/18926/large/logo_-_2021-10-11T132203.751.png?1633929748","coingeckoId":"frakt-token","whitelisted":true,"poolToken":false},{"mint":"FnDxJPNk7pPmGHUbR4XUHmHevrkXHdna5D3sQKcAtjBL","symbol":"FRKT/USDC[aquafarm]","name":"FRKT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"3vHSsV6mgvpa1JVuuDZVB72vYbeUNzW4mBxiBftwzHEA","symbol":"FRNT","name":"Final Frontier","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24120/large/Token_Logo_2_720p.png?1646386860","coingeckoId":"final-frontier","whitelisted":false,"poolToken":false},{"mint":"frtnaScfGPuo56uyPGmij1QTc64SBdjnXC3RXmcVmxw","symbol":"FRTN","name":"Fortune Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23578/large/ZviRqli.png?1644542837","coingeckoId":"fortune-finance","whitelisted":false,"poolToken":false},{"mint":"EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4","symbol":"FTM","name":"FTM (Allbridge from Fantom)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4/logo.png","coingeckoId":"fantom","whitelisted":true,"poolToken":false},{"mint":"Gpzd833qSmv3kXpQmxEaqkrZTXZaRjhNAoqhf61qAhTG","symbol":"FTM/USDC[aquafarm]","name":"FTM/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HEhMLvpSdPviukafKwVN8BnBUTamirptsQ6Wxo5Cyv8s","symbol":"FTR","name":"Future","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17316/large/logo_-_2021-07-26T164152.450.png?1627288961","coingeckoId":"future","whitelisted":false,"poolToken":false},{"mint":"AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3","symbol":"FTT","name":"FTX","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/9026/large/F.png?1609051564","coingeckoId":"ftx-token","whitelisted":true,"poolToken":false,"wrapper":"SRM"},{"mint":"EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv","symbol":"FTT","name":"FTX (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22996/large/FTT_wh_small.png?1644225637","coingeckoId":"ftx-wormhole","whitelisted":false,"poolToken":false},{"mint":"YJRknE9oPhUMtq1VvhjVzG5WnRsjQtLsWg3nbaAwCQ5","symbol":"FTT/SOL","name":"FTT/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EsYaDKJCmcJtJHFuJYwQZwqohvVMCrFzcg8yo3i328No","symbol":"FTT/SOL[aquafarm]","name":"FTT/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"FwCombynV2fTVizxPCNA2oZKoWXLZgdJThjE4Xv9sjxc","symbol":"FTT/USDC[aquafarm]","name":"FTT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"fujiCeCeP9AFDVCv27P5JRcKLoH7wfs2C9xmDECs24m","symbol":"FUJI","name":"Fuji","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/23732/large/vopR7PC.png?1645171161","coingeckoId":"fuji","whitelisted":false,"poolToken":false},{"mint":"EZF2sPJRe26e8iyXaCrmEefrGVBkqqNGv9UPGG9EnTQz","symbol":"FUM","name":"FUMoney","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21054/large/KuH9TXMM_400x400.jpg?1638263205","coingeckoId":"fumoney","whitelisted":false,"poolToken":false},{"mint":"B7mXkkZgn7abwz1A3HnKkb18Y6y18WcbeSkh1DuLMkee","symbol":"FUSD","name":"Synthetic USD (Fabric)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/25550/large/public.png?1652335818","coingeckoId":"synthetic-usd-fabric","whitelisted":false,"poolToken":false},{"mint":"6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct","symbol":"FXS","name":"Frax Share","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/13423/large/frax_share.png?1608478989","coingeckoId":"frax-share","whitelisted":false,"poolToken":false},{"mint":"CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks","symbol":"GARI","name":"Gari Network","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22615/large/gari.png?1642313087","coingeckoId":"gari-network","whitelisted":false,"poolToken":false},{"mint":"8c71AvjQeKKeWRe8jtTGG1bJ2WiYXQdbjqFbUfhHgSVk","symbol":"GARY","name":"Gary","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26448/large/gary_logo_icon.png?1658111709","coingeckoId":"gary","whitelisted":false,"poolToken":false},{"mint":"23WuycvPjEuzJTsBPBZqnbFZFcBtBKAMTowUDHwagkuD","symbol":"GEAR","name":"Starbots GEAR","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/26651/large/logo_%282%29.png?1659408350","coingeckoId":"starbots-gear","whitelisted":false,"poolToken":false},{"mint":"7s6NLX42eURZfpyuKkVLrr9ED9hJE8718cyXFsYKqq5g","symbol":"GEAR","name":"Gear","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24653/large/output-onlinepngtools.png?1648524609","coingeckoId":"gear","whitelisted":false,"poolToken":false},{"mint":"GENEtH5amGSi8kHAtQoezp1XEXwZJ8vcuePYnXdKrMYz","symbol":"GENE","name":"Genopets","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20360/large/gene-token.png?1636945172","coingeckoId":"genopets","whitelisted":true,"poolToken":false},{"mint":"7cuu94swKL5PtFQohKMAzyd1mjj65rgMW3GzLY31HCnK","symbol":"GENE/USDC[aquafarm]","name":"GENE/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CJ5U6wPmjxFUyTJpUTS7Rt1UqhTmSVRMvmJ8WD4nndXW","symbol":"GLXY","name":"Astrals GLXY","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25389/large/glxy.png?1651661031","coingeckoId":"astrals-glxy","whitelisted":false,"poolToken":false},{"mint":"gmdu3snwW28DmmxCseChp9owWLUhamH9eS3hWfHG8Vg","symbol":"GMSOL","name":"GMSOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20717/large/gm-logo-200.png?1637584967","coingeckoId":"gmsol","whitelisted":false,"poolToken":false},{"mint":"7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx","symbol":"GMT","name":"STEPN","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23597/large/gmt.png?1644658792","coingeckoId":"stepn","whitelisted":true,"poolToken":false},{"mint":"CFxQF5kNAtbbDj298Xr47Sf4mkSyuzWpRH97hrdQ6kxi","symbol":"GMT/USDC[aquafarm]","name":"GMT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"74YedyBSKbjYzWMhwuBQz3mwsN6vuSSdAfzX9WLZQUtq","symbol":"GNAR","name":"GNAR","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/21534/large/hL60Xh2.png?1639400726","coingeckoId":"gnar-token","whitelisted":false,"poolToken":false},{"mint":"DVPWKGLFHK73PwgKgTtW28iCZGewQdva2N5HeBLDorVJ","symbol":"GOATS","name":"GOATS","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/22109/large/logo_200x200.png?1640841012","coingeckoId":"goats","whitelisted":false,"poolToken":false},{"mint":"GFX1ZjR2P15tmrSwow6FjyDYcEkoFb4p4gJCpLBjaxHD","symbol":"GOFX","name":"GooseFX","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19793/large/0Kjm9f4.png?1635906737","coingeckoId":"goosefx","whitelisted":true,"poolToken":false},{"mint":"7vnps4VE5RTGAr5fmPZu7fSrk2VnM4Up838grZfqmxqE","symbol":"GOFX/USDC[aquafarm]","name":"GOFX/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GoLDYyyiVeXnVf9qgoK712N5esm1cCbHEK9aNJFx47Sx","symbol":"GOLDY","name":"DeFi Land Gold","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25647/large/GODLY.png?1653025856","coingeckoId":"defi-land-gold","whitelisted":false,"poolToken":false},{"mint":"8upjSpvjcdpuzhfR1zriwg5NXkwDruejqNE9WNbPRtyA","symbol":"GRAPE","name":"Grape Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18149/large/fRsuAlcV_400x400.png?1632437325","coingeckoId":"grape-2","whitelisted":true,"poolToken":false},{"mint":"EorFh8siFyLF1QTZ7cCXQaPGqyo7eb4SAgKtRH8Jcxjd","symbol":"GRAPE/USDC[aquafarm]","name":"GRAPE/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"88YqDBWxYhhwPbExF966EdaCYBKP51xVm1oGBcbWzcf2","symbol":"GRLC","name":"Garlic","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21011/large/logo.png?1638190406","coingeckoId":"garlic","whitelisted":false,"poolToken":false},{"mint":"HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX","symbol":"GRT","name":"The Graph (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22875/large/GRT_wh_small.png?1644225768","coingeckoId":"the-graph-wormhole","whitelisted":false,"poolToken":false},{"mint":"Gsai2KN28MTGcSZ1gKYFswUpFpS7EM9mvdR9c8f6iVXJ","symbol":"GSAIL","name":"SolanaSail Governance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17658/large/logo_GSAIL.png?1628758657","coingeckoId":"solanasail-governance-token","whitelisted":false,"poolToken":false},{"mint":"AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB","symbol":"GST","name":"STEPN Green Satoshi Token on Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21841/large/gst.png?1640332626","coingeckoId":"green-satoshi-token","whitelisted":true,"poolToken":false},{"mint":"E6FUnQHGHJVJg7oExVr5Moeaj1QpdpZQF5odYjHXWPZb","symbol":"GST/USDC[aquafarm]","name":"GST/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"nVZnRKdr3pmcgnJvYDE8iafgiMiBqxiffQMcyv5ETdA","symbol":"GTON","name":"GTON CAPITAL","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/15728/large/GC_logo_200x200.png?1642669327","coingeckoId":"gton-capital","whitelisted":false,"poolToken":false},{"mint":"5KV2W2XPdSo97wQWcuAVi6G4PaCoieg4Lhhi61PAMaMJ","symbol":"GU","name":"Kugle GU","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17532/large/Logo_GU_512.png?1628129442","coingeckoId":"gu","whitelisted":false,"poolToken":false},{"mint":"GWTipxSJVPmmW2wCjBdkbnEJbCRCyrhL2x9zuHRPPTj1","symbol":"GWT","name":"Galaxy War","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22166/large/e2x7gMJ4_400x400.jpg?1641166277","coingeckoId":"galaxy-war","whitelisted":false,"poolToken":false},{"mint":"DsVPH4mAppxKrmdzcizGfPtLYEBAkQGK4eUch32wgaHY","symbol":"GXE","name":"Galaxy Essential","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25754/large/GXE.png?1653466290","coingeckoId":"galaxy-essential","whitelisted":false,"poolToken":false},{"mint":"GYCVdmDthkf3jSz5ns6fkzCmHub7FSZxjVCfbfGqkH7P","symbol":"GYC","name":"GameYoo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24525/large/gameyoo-logo-200x200.png?1648027227","coingeckoId":"gameyoo","whitelisted":false,"poolToken":false},{"mint":"A2T2jDe2bxyEHkKtS8AtrTRmJ9VZRwyY8Kr7oQ8xNyfb","symbol":"HAMS","name":"Space Hamster","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18455/large/logo_-_2021-09-20T105215.999.png?1632106402","coingeckoId":"space-hamster","whitelisted":false,"poolToken":false},{"mint":"BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE","symbol":"HAWK","name":"Hawksight","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/24459/large/3CnlKM0x_400x400.jpg?1647679676","coingeckoId":"hawksight","whitelisted":false,"poolToken":false},{"mint":"HBB111SCo9jkCejsZfz8Ec8nH7T6THF8KEKSnvwT6XK6","symbol":"HBB","name":"Hubble","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22070/large/hubble.PNG?1640749942","coingeckoId":"hubble","whitelisted":true,"poolToken":false},{"mint":"FkKzu2HeMJZf4oHwoYPxLGVy3net5Jq8HAfnA5VqETgk","symbol":"HBB/SOL[aquafarm]","name":"HBB/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"cL5WhffCYFRLM4We8VS2W684kM4pHyuvEDwp8Ddw48k","symbol":"HBB/USDC[aquafarm]","name":"HBB/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7n2YW9qLkhGFArdZPLoF4hYPE2zw7xCACkVPXrUWnLuo","symbol":"HBB/USDH[aquafarm]","name":"HBB/USDH[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5PmpMzWjraf3kSsGEKtqdUsCoLhptg4yriZ17LKKdBBy","symbol":"HDG","name":"Hedge Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25482/large/hdg.png?1652011201","coingeckoId":"hedge-protocol","whitelisted":true,"poolToken":false},{"mint":"Hero6s7zJXsw9hfCXLVR5stLqgCok3E7CCkpQEoLAk2g","symbol":"HERO","name":"SolHero","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23720/large/logo200.png?1645161008","coingeckoId":"solhero","whitelisted":false,"poolToken":false},{"mint":"72hgmvS5zFxaFJfMizq6Gp4gjBqXjTPyX9GDP38krorQ","symbol":"HIMA","name":"Himalayan Cat Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19970/large/hima.png?1636344984","coingeckoId":"himalayan-cat-coin","whitelisted":false,"poolToken":false},{"mint":"GDsVXtyt2CBwieKSYMEsjjZXXvqz2G2VwudD7EvXzoEU","symbol":"HIRAM","name":"Hiram","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/23457/large/logo_%281%29.png?1644215352","coingeckoId":"hiram","whitelisted":false,"poolToken":false},{"mint":"HonyeYAaTPgKUgQpayL914P6VAqbQZPrbkGMETZvW4iN","symbol":"HONEY","name":"Honey Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24781/large/honey.png?1648902423","coingeckoId":"honey-finance","whitelisted":true,"poolToken":false},{"mint":"BGN9c9JJxMgmm7rUqeLanYwWwo2GbedjUFaXn7tAeuXK","symbol":"HONO","name":"Hono","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21870/large/hono.png?1640180863","coingeckoId":"hono","whitelisted":false,"poolToken":false},{"mint":"htoHLBJV1err8xP5oxyQdV2PLQhtVjxLXpKB7FsgJQD","symbol":"HTO","name":"Heavenland HTO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25553/large/rTFh6BD.png?1652420842","coingeckoId":"heavenland-hto","whitelisted":false,"poolToken":false},{"mint":"CTYiHf58UGShfHtpkTwx7vjPDA779dd6iVaeD281fEVx","symbol":"HUNT","name":"Hunter Diamond","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27566/large/Token_Hunters__CoinMarketCap.png?1664522159","coingeckoId":"hunter-diamond","whitelisted":false,"poolToken":false},{"mint":"HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK","symbol":"HXRO","name":"Hxro","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/7805/large/Hxro_Profile_Transparent.png?1622443308","coingeckoId":"hxro","whitelisted":false,"poolToken":false},{"mint":"iJF17JCu78E51eAgwtCwvgULHh2ZqCeRrcFP7wgcc6w","symbol":"I-JFI-Q4","name":"I-JFI-Q4","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"iRAYYHCNhEpbDiVt6QKK3Q57DMgw4p8zEKsVz3WfMjW","symbol":"I-RAY-Q4","name":"I-RAY-Q4","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"inL8PMVd6iiW3RCBJnr5AsrRN6nqr4BTrcNuQWQSkvY","symbol":"IN","name":"Invictus","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20097/large/jv2xoOxJ_400x400.jpg?1636494713","coingeckoId":"invictus","whitelisted":false,"poolToken":false},{"mint":"E1PvPRPQvZNivZbXRL61AEGr71npZQ5JGxh4aWX7q9QA","symbol":"INO","name":"NoGoal","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19650/large/ino-512.png?1635732061","coingeckoId":"nogoaltoken","whitelisted":false,"poolToken":false},{"mint":"5jFnsfx36DyGk8uVGrbXnVUMTsBkPXGpx6e69BiGFzko","symbol":"INU","name":"Solana Inu","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20020/large/YGid9wMv_400x400.jpg?1636412528","coingeckoId":"solana-inu","whitelisted":false,"poolToken":false},{"mint":"3uejHm24sWmniGA5m4j4S1DVuGqzYBR5DJpevND4mivq","symbol":"IP3","name":"Cripco","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26344/large/f55kBYa2_400x400.jpeg?1657586586","coingeckoId":"cripco","whitelisted":false,"poolToken":false},{"mint":"isktkk27QaTpoRUhwwS5n9YUoYf8ydCuoTz5R2tFEKu","symbol":"ISKT","name":"Rafkróna","decimals":2,"logoURI":"https://rafmyntasjodur.github.io/iskt-metadata/logo.png","coingeckoId":"ISKT","whitelisted":false,"poolToken":false},{"mint":"333iHoRM2Awhf9uVZtSyTfU8AekdGrgQePZsKMFPgKmS","symbol":"ISOLA","name":"Intersola","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17460/large/IS_token_icon3.png?1627883249","coingeckoId":"intersola","whitelisted":false,"poolToken":false},{"mint":"invSTFnhB1779dyku9vKSmGPxeBNKhdf7ZfGL1vTH3u","symbol":"IV","name":"Invoker","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23396/large/inv.png?1644132833","coingeckoId":"invoke","whitelisted":false,"poolToken":false},{"mint":"iVNcrNE9BRZBC9Aqf753iZiZfbszeAVUoikgT9yvr2a","symbol":"IVN","name":"Investin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15588/large/ivn_logo.png?1621267247","coingeckoId":"investin","whitelisted":true,"poolToken":false},{"mint":"DfgCnzaiTXfPkAH1C1Z441b5MzjjTCEh134ioxqRZxYf","symbol":"IVN/SOL[aquafarm]","name":"IVN/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"2MtPZqwNKTNsBoFCwm4ZTWk3ySz4LSd82ucDGeTk7VNu","symbol":"IVRY","name":"Portals Ivory Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24389/large/portal.PNG?1647503207","coingeckoId":"portals-ivory-index","whitelisted":false,"poolToken":false},{"mint":"jJF1SrhzpyqYawE9ruSVKrHjfxjaG5TUMFB5vnXUWVm","symbol":"J-JFI","name":"Jungle-Staked JFI","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"jRAYPwLn4ZRGRSKu7GWu6B3Qx3Vj2JU88agUweEceyo","symbol":"J-RAY","name":"Jungle-Staked RAY","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz","symbol":"JET","name":"JET","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18437/large/jet_logomark_color.png?1631972990","coingeckoId":"jet","whitelisted":true,"poolToken":false},{"mint":"GBijunwxa4Ni3JmYC6q6zgaVhSUJU6hVX5qTyJDRpNTc","symbol":"JET/USDC[aquafarm]","name":"JET/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GePFQaZKHcWE5vpxHfviQtH5jgxokSs51Y5Q4zgBiMDs","symbol":"JFI","name":"Jungle DeFi","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23679/large/logo.png?1644997055","coingeckoId":"jungle-defi","whitelisted":true,"poolToken":false},{"mint":"8NGgmXzBzhsXz46pTC3ioSBxeE3w2EXpc741N3EQ8E6r","symbol":"JOKE","name":"Jokes Meme","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16719/large/newjoketoken.png?1624845136","coingeckoId":"jokes-meme","whitelisted":false,"poolToken":false},{"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn","symbol":"JSOL","name":"JPool","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897","coingeckoId":"jpool","whitelisted":true,"poolToken":false},{"mint":"AzEoVuNJyo9ByoLRZ5t6vav2Zg24vULNVJM41PgCKUqR","symbol":"JSOL/USDC[aquafarm]","name":"JSOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Aogv6j1wWiBAZcqRNN1Y89eozda2ke6rkc4CYy7c4iCi","symbol":"JUNGLE","name":"Jungle","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20893/large/O9Usopi.png?1637847516","coingeckoId":"jungle","whitelisted":false,"poolToken":false},{"mint":"2QK9vxydd7WoDwvVFT5JSU8cwE9xmbJSzeqbRESiPGMG","symbol":"KEKW","name":"Kekwcoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18311/large/logo_black_%281%29.png?1631509612","coingeckoId":"kekwcoin","whitelisted":false,"poolToken":false},{"mint":"7xzovRepzLvXbbpVZLYKzEBhCNgStEv1xpDqf1rMFFKX","symbol":"KERMIT","name":"Kermit Finance","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17109/large/NFhvfXh.png?1626615453","coingeckoId":"kermit","whitelisted":false,"poolToken":false},{"mint":"kiGenopAScF8VF31Zbtx2Hg8qA5ArGqvnVtXb83sotc","symbol":"KI","name":"Genopets KI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26135/large/genopets_ki.png?1660017469","coingeckoId":"genopet-ki","whitelisted":true,"poolToken":false},{"mint":"kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6","symbol":"KIN","name":"Kin","decimals":5,"logoURI":"https://assets.coingecko.com/coins/images/959/large/kin-logo-social.png?1665793119","coingeckoId":"kin","whitelisted":true,"poolToken":false},{"mint":"C9PKvetJPrrPD53PR2aR8NYtVZzucCRkHYzcFXbZXEqu","symbol":"KIN/SOL","name":"KIN/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HEvnD66WcBfTajS9adUYnGRBMDehFtLySiFHSD6kEBWs","symbol":"KIN/SOL[aquafarm]","name":"KIN/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6JdcMdhqgCtcP4U9tieRqmKLhPLxRMLC67QfmdXAJBvZ","symbol":"KITTY","name":"Kitty Solana","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20313/large/kittysolanalogo-1.jpg?1636844407","coingeckoId":"kitty-solana","whitelisted":false,"poolToken":false},{"mint":"6XWfkyg5mzGtKNftSDgYjyoPyUsLRf2rafj95XSFSFrr","symbol":"KITTY","name":"Kitty Coin Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20819/large/brand-1.png?1642645998","coingeckoId":"kitty-coin-solana","whitelisted":false,"poolToken":false},{"mint":"8WftAet8HSHskSp8RUVwdPt6xr3CtF76UF5FPmazY7bt","symbol":"KIWE","name":"Kiwe Markets","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25430/large/KIWE_200x200.png?1664114180","coingeckoId":"kiwe-markets","whitelisted":false,"poolToken":false},{"mint":"kiNeKo77w1WBEzFFCXrTDRWGRWGP8yHvKC9rX6dqjQh","symbol":"KKO","name":"KKO Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15366/large/kko-coingecko.png?1658982821","coingeckoId":"kineko","whitelisted":false,"poolToken":false},{"mint":"4NPzwMK2gfgQ6rTv8x4EE1ZvKW6MYyYTSrAZCx7zxyaX","symbol":"KLB","name":"Black Label","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/18489/large/klb_round_200.png?1632184288","coingeckoId":"black-label","whitelisted":false,"poolToken":false},{"mint":"kNkT1RDnexWqYP3EYGyWv5ZtazB8CfgGAfJtv9AQ3kz","symbol":"KNK","name":"Kineko","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26597/large/knk-cmc-logo.png?1658974690","coingeckoId":"kineko-knk","whitelisted":false,"poolToken":false},{"mint":"EP2aYBDD4WvdhnwWLUMyqU69g1ePtEjgYK6qyEAFCHTx","symbol":"KRILL","name":"Krill","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23917/large/Krill_towen.png?1645684293","coingeckoId":"krill","whitelisted":false,"poolToken":false},{"mint":"AfARcLLqRHsZc4xPWHE9nXZAswZaW294Ff1xcYQbjkLq","symbol":"KROOK","name":"Krook Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22160/large/143821720-d9c6f5fd-96d7-424f-9b1f-b185451cbb31.png?1640949570","coingeckoId":"krook-coin","whitelisted":false,"poolToken":false},{"mint":"Gw7M5dqZJ6B6a8dYkDry6z9t9FuUA2xPUokjV2cortoq","symbol":"KRW","name":"KROWN","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16530/large/KRW_token_logo_200x200.png?1624343058","coingeckoId":"krown","whitelisted":false,"poolToken":false},{"mint":"3swraHsc77KMg1tFvwH3tfYcd8SWr5fcUhtmRxjavG7H","symbol":"KS","name":"Kalisten","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25486/large/kalisten_token.png?1652067781","coingeckoId":"kalisten","whitelisted":false,"poolToken":false},{"mint":"HDiA4quoMibAGeJQzvxajp3Z9cvnkNng99oVrnuNj6px","symbol":"KSAMO","name":"King Samo","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21237/large/KSAMO_1.png?1638759919","coingeckoId":"king-samo","whitelisted":false,"poolToken":false},{"mint":"8ymjMjitLchSFU9zkcbjsJENhSXou4YKh7RD2U3yvqdJ","symbol":"KSW","name":"KillSwitch","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/20215/large/logo_%2824%29.png?1636670633","coingeckoId":"killswitch","whitelisted":false,"poolToken":false},{"mint":"2Kc38rfQ49DFaKHQaWbijkE7fcymUMLY5guUiUsDmFfn","symbol":"KURO","name":"Kurobi","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18612/large/logo_-_2021-09-26T233232.947.png?1632670367","coingeckoId":"kurobi","whitelisted":true,"poolToken":false},{"mint":"DRknxb4ZFxXUTG6UJ5HupNHG1SmvBSCPzsZ1o9gAhyBi","symbol":"KURO/USDC[aquafarm]","name":"KURO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"kZEn3aDxEzcFADPe2VQ6WcJRbS1hVGjUcgCw4HiuYSU","symbol":"KZEN","name":"Kaizen","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24396/large/PKl5OVRv_400x400.png?1647522756","coingeckoId":"kaizen","whitelisted":false,"poolToken":false},{"mint":"LABSfApdYpC5Ek1tQiCFAoQP5K8CvADe2GgdYrA2QHh","symbol":"LABS","name":"LABS Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26913/large/monsta-scientist.jpg?1660787720","coingeckoId":"labs-protocol","whitelisted":false,"poolToken":false},{"mint":"95bzgMCtKw2dwaWufV9iZyu64DQo1eqw6QWnFMUSnsuF","symbol":"LADA","name":"LadderCaster","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25108/large/Logo_Small_Resized.png?1650533759","coingeckoId":"laddercaster","whitelisted":false,"poolToken":false},{"mint":"Lrxqnh6ZHKbGy3dcrCED43nsoLkM1LTzU2jRfWe8qUC","symbol":"LARIX","name":"Larix","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18450/large/larix.PNG?1632092483","coingeckoId":"larix","whitelisted":true,"poolToken":false},{"mint":"8sfThep3io4gvcGeuoAg1Rs8GDwKJjtcdAFHqQSSNAVE","symbol":"LARIX/USDC[aquafarm]","name":"LARIX/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7puG5H5Mc6QpvaXjAVLr6GnL5hhUMnpLcUm8G3mEsgHQ","symbol":"LEONIDAS","name":"Leonidas Token","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20496/large/cropped-logo_%281%29.png?1637131887","coingeckoId":"leonidas-token","whitelisted":false,"poolToken":false},{"mint":"7z1eQmEhhM9e1AVCBQc6BzMZWmCZRqHCLJtkDgHxzYnQ","symbol":"LFGO","name":"Mekka Froggo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22244/large/LK5s4mx-d5GIPPPmilZLRBtxH0OvOAp02sbgYCbFRtE.png?1641275800","coingeckoId":"mekka-froggo","whitelisted":false,"poolToken":false},{"mint":"LFNTYraetVioAPnGJht4yNg2aUZFXR776cMeN9VMjXp","symbol":"LFNTY","name":"Lifinity","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25406/large/LFNTY_s.png?1651731251","coingeckoId":"lifinity","whitelisted":false,"poolToken":false},{"mint":"3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR","symbol":"LIKE","name":"Only1","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17501/large/like-token.png?1628036165","coingeckoId":"only1","whitelisted":false,"poolToken":false},{"mint":"LiLyT885cG9xZKYQk9x6VWMzmcui4ueV9J1uzPDDajY","symbol":"LILY","name":"Solily Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25611/large/logo200.png?1652846780","coingeckoId":"solily-protocol","whitelisted":false,"poolToken":false},{"mint":"2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX","symbol":"LINK","name":"Chainlink (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22993/large/LINK_wh_small.png?1644226275","coingeckoId":"chainlink-wormhole","whitelisted":false,"poolToken":false},{"mint":"41TwwURtuv4k8TuFxp1vfFYP9noMbHXqtscse8xLM26V","symbol":"LINU","name":"LittleInu","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22029/large/unknown_%281%29.png?1640657606","coingeckoId":"littleinu","whitelisted":false,"poolToken":false},{"mint":"4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj","symbol":"LIQ","name":"LIQ Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/16534/large/85853665.png?1624348565","coingeckoId":"liq-protocol","whitelisted":true,"poolToken":false},{"mint":"3PD9SZFwXKkXr4akLf4ofo37ZUMycwML89R2P3qxcbZG","symbol":"LIQ/USDC[aquafarm]","name":"LIQ/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5ENUvV3Ur3o3Fg6LVRfHL4sowidiVTMHHsEFqNJXRz6o","symbol":"LIZARD","name":"Lizard","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/19892/large/lizard_logo_3-ts1636074175.jpg?1636093462","coingeckoId":"lizard-token","whitelisted":false,"poolToken":false},{"mint":"GzpRsvnKXKz586kRLkjdppR4dUCFwHa2qaszKkPUQx6g","symbol":"LOOT","name":"Loot","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23015/large/Bag_Open_%283%29.png?1643093342","coingeckoId":"loot-token","whitelisted":false,"poolToken":false},{"mint":"LPFiNAybMobY5oHfYVdy9jPozFBGKpPiEGoobK2xCe3","symbol":"LPFI","name":"LP Finance DAO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27704/large/output-onlinepngtools_%2827%29.png?1666087863","coingeckoId":"lp-finance","whitelisted":false,"poolToken":false},{"mint":"C6qep3y7tCZUJYDXHiwuK46Gt6FsoxLi8qV1bTCRYaY1","symbol":"LSTAR","name":"Learning Star","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25986/large/20581.png?1655155804","coingeckoId":"learning-star","whitelisted":false,"poolToken":false},{"mint":"Ma4dse7fmzXLQYymNsDDjq6VgRXtEFTJw1CvmRrBoKN","symbol":"MAGA","name":"Magic Eggs","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24843/large/Maga-200x200.png?1649107298","coingeckoId":"magic-eggs","whitelisted":false,"poolToken":false},{"mint":"5EbpXhW7t8ypBF3Q1X7odFaHjuh7XJfCohXR3VYAW32i","symbol":"MALL","name":"MetaMall","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/24183/large/gRlsG1JA_400x400.jpg?1646787127","coingeckoId":"metamall","whitelisted":false,"poolToken":false},{"mint":"7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi","symbol":"MANA","name":"Decentraland (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23050/large/MANA_wh_small.png?1644226497","coingeckoId":"decentraland-wormhole","whitelisted":false,"poolToken":false},{"mint":"MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb","symbol":"MAPS","name":"MAPS","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13556/large/Copy_of_image_%28139%29.png?1609768934","coingeckoId":"maps","whitelisted":true,"poolToken":false},{"mint":"EHkfnhKLLTUqo1xMZLxhM9EusEgpN6RXPpZsGpUsewaa","symbol":"MAPS/SOL","name":"MAPS/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"99pfC8fWymXgbq3CvrExhx3UxQDC1fMWEWLbNT83F45e","symbol":"MAPS/SOL[aquafarm]","name":"MAPS/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG","symbol":"MATICPO","name":"MATIC (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22947/large/MATICpo_wh_small.png?1644226625","coingeckoId":"matic-wormhole","whitelisted":false,"poolToken":false},{"mint":"Fm9rHUTF5v3hwMLbStjZXqNBBoZyGriQaFM6sTFz3K8A","symbol":"MBS","name":"MonkeyLeague","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20841/large/monkeyball.png?1639023123","coingeckoId":"monkeyball","whitelisted":false,"poolToken":false},{"mint":"ALQ9KMWjFmxVbew3vMkJj3ypbAKuorSgGst6svCHEe2z","symbol":"MDF","name":"MatrixETF","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18538/large/MDF.png?1632304949","coingeckoId":"matrixetf","whitelisted":false,"poolToken":false},{"mint":"MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD","symbol":"MEAN","name":"Mean DAO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21557/large/89934951.png?1639466364","coingeckoId":"meanfi","whitelisted":true,"poolToken":false},{"mint":"F5BTnwuMA6rxftTdbZ33VWKr2wrr6DuQHnd4guKmPSYQ","symbol":"MEAN/USDC[aquafarm]","name":"MEAN/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs","symbol":"MEDIA","name":"Media Network","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15142/large/media50x50.png?1620122020","coingeckoId":"media-network","whitelisted":true,"poolToken":false},{"mint":"2toFgkQDoPrTJYGDEVoCasPXuL9uQnjvXJaDwa9LHyTx","symbol":"MEDIA/USDC[aquafarm]","name":"MEDIA/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"MekkANZkBpzbGeTWsD1cRRuQxZMTFfBJyLrKywGQRss","symbol":"MEK","name":"MekkaCoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27530/large/unknown_%2819%29.png?1664372136","coingeckoId":"mekkacoin","whitelisted":false,"poolToken":false},{"mint":"6YAXGyWb3hhLVQQ3vqg9ZYewXk4Cknnr1raTfDwbf8XG","symbol":"MEKKA","name":"MekkaFroggo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24118/large/k_9e4luFsOmMVOGhBqxBb6we5HkKFE_NwNza--t7MAk.png?1646381909","coingeckoId":"mekkafroggo","whitelisted":false,"poolToken":false},{"mint":"ATEMTyZVC1yDHYUg1aqHC6cpn8KVLe4Bbn7G74xSRDqG","symbol":"MEMI","name":"Metacraft Mineral","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27214/large/Metacraft_Mineral_MEMI_icon_200x200px.png?1662610576","coingeckoId":"metacraft-mineral","whitelisted":false,"poolToken":false},{"mint":"Ch9NFVk5sqEPQHtw2gJVgnHfTm7FW1JspYwc7SxLi6q3","symbol":"MEND","name":"Mend","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25917/large/logo-e1637099222337.png?1654592434","coingeckoId":"mend","whitelisted":false,"poolToken":false},{"mint":"HAgX1HSfok8DohiNCS54FnC2UJkDSrRVnT38W3iWFwc8","symbol":"MEOW","name":"Solcats","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20035/large/solcats_logo.jpg?1636423998","coingeckoId":"solcats","whitelisted":false,"poolToken":false},{"mint":"MERt85fc5boKw3BW1eYdxonEuJNvXbiMbs6hvheau5K","symbol":"MER","name":"Mercurial","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15527/large/mer_logo.png?1621128922","coingeckoId":"mercurial","whitelisted":true,"poolToken":false},{"mint":"BXM9ph4AuhCUzf94HQu5FnfeVThKj5oyrnb1krY1zax5","symbol":"MER/SOL","name":"MER/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HiwRobjfHZ4zsPtqCC4oBS24pSmy4t8GGkXRbQj4yU6L","symbol":"MER/SOL[aquafarm]","name":"MER/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HjUMVG3yQK7uMTq1TerG6C8JzAjRvMdYCoX7ZUzKTgjH","symbol":"MERIT","name":"Single Earth","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27020/large/logo_%284%29.png?1661482963","coingeckoId":"single-earth","whitelisted":false,"poolToken":false},{"mint":"MLKmUCaj1dpBY881aFsrBwR9RUMoKic8SWT3u1q5Nkj","symbol":"MILK","name":"MILK","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/27168/large/UClogoMLKtoken.png?1662285921","coingeckoId":"udder-chaos-milk","whitelisted":false,"poolToken":false},{"mint":"HDLRMKW1FDz2q5Zg778CZx26UgrtnqpUDkNNJHhmVUFr","symbol":"MILLI","name":"MILLIONSY","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20396/large/Logo_200px_%281%29.png?1641567027","coingeckoId":"millionsy","whitelisted":false,"poolToken":false},{"mint":"9mWRABuz2x6koTPCWiCPM49WUbcrNqGTHBV9T9k7y1o7","symbol":"MIMATIC","name":"MAI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15264/large/mimatic-red.png?1620281018","coingeckoId":"mimatic","whitelisted":false,"poolToken":false},{"mint":"9TE7ebz1dsFo1uQ2T4oYAKSm39Y6fWuHrd6Uk6XaiD16","symbol":"MIMO","name":"Million Monke","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21071/large/200xMIMO.png?1638281151","coingeckoId":"million-monke","whitelisted":false,"poolToken":false},{"mint":"FTkj421DxbS1wajE74J34BJ5a1o9ccA97PkK6mYq9hNQ","symbol":"MINECRAFT","name":"Synex Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21247/large/logo_-_2021-12-06T135451.604.png?1638770098","coingeckoId":"synex-coin","whitelisted":false,"poolToken":false},{"mint":"FatneQg39zhrG6XdwYb8fzM4VgybpgqjisJYESSBD7FV","symbol":"MKD","name":"Musk Doge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22317/large/20211215_125931.jpg?1641453649","coingeckoId":"musk-doge","whitelisted":false,"poolToken":false},{"mint":"MMAx26JtJgSWv6yH48nEHCGZcVvRbf9Lt9ALa7jSipe","symbol":"MMA","name":"MMA Gaming","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23767/large/18166.png?1645425116","coingeckoId":"mma-gaming","whitelisted":true,"poolToken":false},{"mint":"AaZRnJAnDyJyPD9uPJpJ8bzBGDCEi6jtBpUf92xErWPp","symbol":"MMA/USDC[aquafarm]","name":"MMA/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey","symbol":"MNDE","name":"Marinade","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18867/large/MNDE.png?1643187748","coingeckoId":"marinade","whitelisted":true,"poolToken":false},{"mint":"12Uj74zgUUoBe4yeackwQ4qYtFMr9fk1xL6q5Nha6t2N","symbol":"MNDE/USDC[aquafarm]","name":"MNDE/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5PHS5w6hQwFNnLz1jJFe7TVTxSQ98cDYC3akmiAoFMXs","symbol":"MNDE/mSOL[aquafarm]","name":"MNDE/mSOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac","symbol":"MNGO","name":"Mango","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14773/large/token-mango.png?1628171237","coingeckoId":"mango-markets","whitelisted":true,"poolToken":false},{"mint":"H9yC7jDng974WwcU4kTGs7BKf7nBNswpdsP5bzbdXjib","symbol":"MNGO/USDC[aquafarm]","name":"MNGO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AMdnw9H5DFtQwZowVFr4kUgSXJzLokKSinvgGiUoLSps","symbol":"MOLA","name":"MoonLana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16278/large/NW8RySX.png?1623635238","coingeckoId":"moonlana","whitelisted":false,"poolToken":false},{"mint":"J7WYVzFNynk9D28eBCccw2EYkygygiLDCVCabV7CupWL","symbol":"MONGOOSE","name":"MongooseCoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21513/large/logo_mong.png?1639375760","coingeckoId":"mongoosecoin","whitelisted":false,"poolToken":false},{"mint":"MoshMwLkVu4iwrPBaWpYkh43qJiSXsnyzNLuMXFv5F4","symbol":"MOSHI","name":"Moshiheads","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24940/large/token.png?1649423230","coingeckoId":"moshiheads","whitelisted":false,"poolToken":false},{"mint":"9QXAu7FTf7hmswBQwKxvuqGgWH42FyQjqXJanUt6y4eC","symbol":"MOUNT","name":"MetaMounts","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21578/large/download_%2845%29.png?1639530542","coingeckoId":"metamounts","whitelisted":false,"poolToken":false},{"mint":"METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m","symbol":"MPLX","name":"Metaplex","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27344/large/mplx.png?1663636769","coingeckoId":"metaplex","whitelisted":true,"poolToken":false},{"mint":"2e7yNwrmTgXp9ABUmcPXvFJTSrEVLj4YMyrb4GUM4Pdd","symbol":"MSI","name":"Matrix Solana Index","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20785/large/MSI.png?1637671199","coingeckoId":"matrix-solana-index","whitelisted":false,"poolToken":false},{"mint":"NaFJTgvemQFfTTGAq2PR1uBny3NENWMur5k6eBsG5ii","symbol":"NAGA","name":"Naga Kingdom","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24895/large/Naga-200x200.png?1649304588","coingeckoId":"naga-kingdom","whitelisted":false,"poolToken":false},{"mint":"6uZ7MRGGf3FJhzk9TUk3QRMR2fz83WY9BEVBukRvMRVX","symbol":"NANA","name":"Nana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22407/large/200x200.png?1641967515","coingeckoId":"chimp-fight","whitelisted":false,"poolToken":false},{"mint":"Fp4gjLpTsPqBN6xDGpDHwtnuEofjyiZKxxZxzvJnjxV6","symbol":"NAXAR","name":"Naxar","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/16946/large/logo.png?1655886562","coingeckoId":"naxar","whitelisted":false,"poolToken":false},{"mint":"ALKiRVrfLgzeAV2mCT7cJHKg3ZoPvsCRSV7VCRWnE8zQ","symbol":"NEKI","name":"Maneki-neko","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21321/large/logo.png?1638944515","coingeckoId":"maneki-neko","whitelisted":false,"poolToken":false},{"mint":"Czt7Fc4dz6BpLh2vKiSYyotNK2uPPDhvbWrrLeD9QxhV","symbol":"NESTA","name":"Nest Arcade","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24182/large/mPFhh9sZ_400x400.jpg?1646786783","coingeckoId":"nest-arcade","whitelisted":false,"poolToken":false},{"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk","symbol":"NGNC","name":"NGN Coin","decimals":2,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png","coingeckoId":"NGN","whitelisted":false,"poolToken":false},{"mint":"FgX1WD9WzMU3yLwXaFSarPfkgzjLb2DZCqmkx9ExpuvJ","symbol":"NINJA","name":"Ninja Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18442/large/ninja.PNG?1632006127","coingeckoId":"ninja-protocol","whitelisted":true,"poolToken":false},{"mint":"4X1oYoFWYtLebk51zuh889r1WFLe8Z9qWApj87hQMfML","symbol":"NINJA/SOL[aquafarm]","name":"NINJA/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"NRVwhjBQiUPYtfDT5zRBVJajzFQHaBUNtC7SNVvqRFa","symbol":"NIRV","name":"Nirvana NIRV","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25050/large/NIRV.png?1649915345","coingeckoId":"nirvana-nirv","whitelisted":false,"poolToken":false},{"mint":"buMnhMd5xSyXBssTQo15jouu8VhuEZJCfbtBUZgRcuW","symbol":"NNI","name":"Neonomad Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25068/large/SeSkZxx7_400x400.jpeg?1658118217","coingeckoId":"neonomad-finance","whitelisted":false,"poolToken":false},{"mint":"EcFyPDjqpnyMvh1LhACtC6rrCZ41DMez7RZYocjhmUVS","symbol":"NOCH","name":"NodeBunch","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24880/large/logo.png?1649224634","coingeckoId":"nodebunch","whitelisted":false,"poolToken":false},{"mint":"nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7","symbol":"NOS","name":"Nosana","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22553/large/POfb_I4u_400x400.jpg?1642053655","coingeckoId":"nosana","whitelisted":false,"poolToken":false},{"mint":"BDrL8huis6S5tpmozaAaT5zhE5A7ZBAB2jMMvpKEeF8A","symbol":"NOVA","name":"Nova Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21672/large/bGVB8h2Q_400x400.jpg?1639710371","coingeckoId":"nova-finance","whitelisted":true,"poolToken":false},{"mint":"DdAFNvDxtEHCgKj3JAM64zCKfMWhs4J9wEmRrjUAFiME","symbol":"NOVA/USDC[aquafarm]","name":"NOVA/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EuD5L5XSYKzyDC1YyYzmoWC8gmJhpEh2vMj4f8LeRW8r","symbol":"NPC","name":"NPC DAO","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19981/large/1EXEFTo6_400x400.jpg?1640251890","coingeckoId":"nole-npc","whitelisted":false,"poolToken":false},{"mint":"1C2EYVrwmoXAGbiKirFFBeDFDYUBHPhDeg9trhibTND","symbol":"NRA","name":"Nora","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20107/large/NORA.png?1644222708","coingeckoId":"nora-token","whitelisted":false,"poolToken":false},{"mint":"BtnUizMTmDdKxP3hZhQhZMUXF9RZZaZJvcNDFLiRbZ5e","symbol":"NRV","name":"Nerv Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24971/large/cCSt_8IK_400x400_%281%29.png?1649645546","coingeckoId":"nerv-protocol","whitelisted":false,"poolToken":false},{"mint":"BBZbqM7RPKzncqaC26gtq6Z4dkm5ksZXib4nJYjk8L3X","symbol":"NUGGET","name":"Degen NUGGET","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26617/large/Nuggets_%28NUGGET%29.png?1659073141","coingeckoId":"degen-nugget","whitelisted":false,"poolToken":false},{"mint":"Au6EdrSDubCUc34awy9c6iQAg5GSos9pPBXyZQtyZewV","symbol":"NXDF","name":"NeXt-DeFi Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22783/large/NXDF.png?1642579165","coingeckoId":"next-defi-protocol","whitelisted":false,"poolToken":false},{"mint":"4pk3pf9nJDN1im1kNwWJN1ThjE8pCYCTexXYGyFjqKVf","symbol":"ODOP","name":"oDOP","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15781/large/odop.PNG?1621843047","coingeckoId":"odop","whitelisted":false,"poolToken":false},{"mint":"Aojru8bfwZK6sgrx6exNazxASFZUjPpRY59byMrs6izt","symbol":"OINK","name":"Oink","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/19694/large/LOGOPNG_%281%29.png?1635749921","coingeckoId":"oink-token","whitelisted":false,"poolToken":false},{"mint":"Ca9LxRYdZ7jK4QAqjLo4iaYmiV8FNdngtSkzM69hzgDX","symbol":"OKAYB","name":"Okay Bears Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27170/large/9815.png?1662286926","coingeckoId":"okay-bears-floor-index","whitelisted":false,"poolToken":false},{"mint":"H7Qc9APCWWGDVxGD5fJHmLTmdEgT9GFatAKFNg6sHh8A","symbol":"OOGI","name":"OOGI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19714/large/oogi.PNG?1635756218","coingeckoId":"oogi","whitelisted":true,"poolToken":false},{"mint":"DSiHyHDn96bUQSZtizyCRLcQzrwohZeMpVu8rYJN1HzG","symbol":"OOGI/USDC[aquafarm]","name":"OOGI/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9K4uNquZjVSBBN6fBsp62gtYLropyAxAbdZC7D9XErih","symbol":"OPPA","name":"OPPA","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20359/large/oppa.png?1636945164","coingeckoId":"oppa","whitelisted":false,"poolToken":false},{"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE","symbol":"ORCA","name":"Orca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615","coingeckoId":"orca","whitelisted":true,"poolToken":false},{"mint":"C7TH2jEJJaxVwwuvkbcDGfHUiZvEkkeYjyAcdTMi5ujb","symbol":"ORCA/PAI[aquafarm]","name":"ORCA/PAI[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"2uVjAuRXavpM6h1scGQaxqb6HVaNRn6T2X7HHXTabz25","symbol":"ORCA/SOL[aquafarm]","name":"ORCA/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"n8Mpu28RjeYD7oUX3LG1tPxzhRZh3YYLRSHcHRdS3Zx","symbol":"ORCA/USDC[aquafarm]","name":"ORCA/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Gx4PoxenyQwhGGnKagAT35iVg4im1iKhJxDWqVhgu6tk","symbol":"ORCA/USDT[aquafarm]","name":"ORCA/USDT[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CVapmQn7HaU1yMDW3q6oUV4hx6XoYv54T4zfGXkuJqkA","symbol":"ORCA/mSOL[aquafarm]","name":"ORCA/mSOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GsfyYHkSgC3Ta6aWR9MjB2sxoBrkGGeR2tAwXbpphf3","symbol":"ORCA/whETH[aquafarm]","name":"ORCA/whETH[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6TgvYd7eApfcZ7K5Mur7MaUQ2xT7THB4cLHWuMkQdU5Z","symbol":"OTR","name":"Otter Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20157/large/VAPiUujl_400x400.png?1636590602","coingeckoId":"otter-finance","whitelisted":false,"poolToken":false},{"mint":"4TGxgCSJQx2GQk9oHZ8dC5m3JNXTYZHjXumKAW3vLnNx","symbol":"OXS","name":"Oxbull Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17304/large/9xPPXxJC_400x400.jpg?1627269668","coingeckoId":"oxbull-solana","whitelisted":false,"poolToken":false},{"mint":"z3dn17yLaGMKffVogeFHQ9zWVcXgqgf3PQnDsNs2g6M","symbol":"OXY","name":"Oxygen","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13509/large/8DjBZ79V_400x400.jpg?1609236331","coingeckoId":"oxygen","whitelisted":true,"poolToken":false},{"mint":"ELLELFtgvWBgLkdY9EFx4Vb3SLNj4DJEhzZLWy1wCh4Y","symbol":"OXY/SOL","name":"OXY/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7tYCdLN84EnTMkxM7HNamWJx7F4xgKe9KiiWvLyWjbgT","symbol":"OXY/SOL[aquafarm]","name":"OXY/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS","symbol":"PAI","name":"Parrot USD","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18439/large/pai.png?1632004568","coingeckoId":"parrot-usd","whitelisted":true,"poolToken":false},{"mint":"Aw8qLRHGhMcKq7rxs5XBNCd9oe3BvoAhpNMVz7AdGmty","symbol":"PANDA","name":"Panda Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20500/large/panda.png?1638349709","coingeckoId":"panda-coin","whitelisted":false,"poolToken":false},{"mint":"AVKnbqNQgXDY8kbnno9eSGfwpVz5idimBnDKiz1vbWAh","symbol":"PART","name":"Particle Technology","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21302/large/logo.png?1638882252","coingeckoId":"particle-technology","whitelisted":false,"poolToken":false},{"mint":"6bLp99VoqKU1C3Qp6VTNvSoCoc78jMGxPkGSSopq8wHB","symbol":"PAWS","name":"Solana Paws","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/20779/large/logo-1.png?1637667957","coingeckoId":"solana-paws","whitelisted":false,"poolToken":false},{"mint":"C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe","symbol":"PAXG","name":"Paxos Gold (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23011/large/PAXG_wh_small.png?1644226788","coingeckoId":"paxos-gold-wormhole","whitelisted":false,"poolToken":false},{"mint":"GWsZd8k85q2ie9SNycVSLeKkX7HLZfSsgx6Jdat9cjY1","symbol":"PCN","name":"Pollen Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25687/large/97762641.png?1653374572","coingeckoId":"pollen-coin","whitelisted":false,"poolToken":false},{"mint":"CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA","symbol":"PEOPLE","name":"ConstitutionDAO (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/23009/large/PEOPLE_wh_small.png?1644226832","coingeckoId":"constitutiondao-wormhole","whitelisted":false,"poolToken":false},{"mint":"BxHJqGtC629c55swCqWXFGA2rRF1igbbTmh22H8ePUWG","symbol":"PGNT","name":"Pigeon Sol","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/19579/large/logo-1024x1024.png?1635470197","coingeckoId":"pigeon-sol","whitelisted":false,"poolToken":false},{"mint":"EswgBj2hZKdgovX2ihWSUDnuBg9VNbGmSGoH5yjNsPRa","symbol":"PHY","name":"Physis","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23087/large/PHY-icon-200x200.png?1643181312","coingeckoId":"physis","whitelisted":false,"poolToken":false},{"mint":"5L2YboFbHAUpBDDJjvDB5M6pu9CW2FRjyDB2asZyvjtE","symbol":"PIXL","name":"Pixels.so","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/21390/large/logo.png?1639036659","coingeckoId":"pixels-so","whitelisted":false,"poolToken":false},{"mint":"E6oCGvmSYW7qhy7oeDfiNZLX6hEmPCVxBC8AknwAj82B","symbol":"PLAYA","name":"Playground","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24387/large/playa.PNG?1647502195","coingeckoId":"playground","whitelisted":false,"poolToken":false},{"mint":"2cJgFtnqjaoiu9fKVX3fny4Z4pRzuaqfJ3PBTMk2D9ur","symbol":"PLD","name":"Plutonian DAO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25092/large/logo-pld_200.png?1650270204","coingeckoId":"plutonian-dao","whitelisted":false,"poolToken":false},{"mint":"AKxR1NLTtPnsVcWwPSEGat1TC9da3Z2vX7sY4G7ZLj1r","symbol":"PNT","name":"Phant","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22799/large/logogradientsm.png?1642583142","coingeckoId":"phant","whitelisted":false,"poolToken":false},{"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk","symbol":"POLIS","name":"Star Atlas DAO","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006","coingeckoId":"star-atlas-dao","whitelisted":true,"poolToken":false},{"mint":"GteBdo9sqE7T41G8AJsaG9WHW48uXBwsLLznmu2TBdgy","symbol":"POLIS/USDC[aquafarm]","name":"POLIS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"PoRTjZMPXb9T7dyU7tpLEZRQj7e6ssfAE62j2oQuc6y","symbol":"PORT","name":"Port Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17607/large/d-k0Ezts_400x400.jpg?1628648715","coingeckoId":"port-finance","whitelisted":true,"poolToken":false},{"mint":"F8gPSpwVHj8FdAJAYULDuZBxFEJut87hUbARYYx3471w","symbol":"PORT/USDC[aquafarm]","name":"PORT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9iz45n44TQUPyoRymdZXEunqvZUksZyhzS6zQ7sLMadj","symbol":"POT","name":"Positron","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23910/large/logo.png?1645682226","coingeckoId":"positron-token","whitelisted":false,"poolToken":false},{"mint":"GEYrotdkRitGUK5UMv3aMttEhVAZLhRJMcG82zKYsaWB","symbol":"POTATO","name":"Potato","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/18254/large/logocircle.png?1631151305","coingeckoId":"potato","whitelisted":false,"poolToken":false},{"mint":"E7WqtfRHcY8YW8z65u9WmD7CfMmvtrm2qPVicSzDxLaT","symbol":"PPUG","name":"Pizza Pug Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19574/large/zpWavjSG_400x400.jpg?1635459196","coingeckoId":"pizza-pug-coin","whitelisted":false,"poolToken":false},{"mint":"PRAxfbouRoJ9yZqhyejEAH6RvjJ86Y82vfiZTBSM3xG","symbol":"PRANA","name":"Nirvana prANA","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26176/large/prANA.png?1656379283","coingeckoId":"nirvana-prana","whitelisted":false,"poolToken":false},{"mint":"66edZnAPEJSxnAK4SckuupssXpbu5doV57FUcghaqPsY","symbol":"PRGC","name":"ProtoReality Games","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25525/large/Bjh4zRK1_400x400.png?1652235059","coingeckoId":"protoreality-games","whitelisted":false,"poolToken":false},{"mint":"PRiME7gDoiG1vGr95a3CRMv9xHY7UGjd4JKvfSkmQu2","symbol":"PRIME","name":"SolanaPrime","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25911/large/solana_black200x200.png?1654587637","coingeckoId":"solanaprime","whitelisted":false,"poolToken":false},{"mint":"PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x","symbol":"PRISM","name":"Prism","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21475/large/7KzeGb1.png?1639350211","coingeckoId":"prism","whitelisted":false,"poolToken":false},{"mint":"5idSc21Ht4FTC7jSNe34d6v5FmY8gonswYHpgC7QZCZW","symbol":"PRS","name":"Perseus Fintech","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/26310/large/D39-q9sY_400x400.jpg?1657232052","coingeckoId":"perseus-fintech","whitelisted":false,"poolToken":false},{"mint":"PRT88RkA4Kg5z7pKnezeNH4mafTvtQdfFgpQTGRjz44","symbol":"PRT","name":"Parrot Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18443/large/PRT.png?1634698095","coingeckoId":"parrot-protocol","whitelisted":true,"poolToken":false},{"mint":"6jCERp5hKj37PCXP3VTjCDJeoPuSpnMDMz5A6jWQv3yS","symbol":"PRT/USDC[aquafarm]","name":"PRT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Hmatmu1ktLbobSvim94mfpZmjL5iiyoM1zidtXJRAdLZ","symbol":"PSOL","name":"Parasol Finance","decimals":7,"logoURI":"https://assets.coingecko.com/coins/images/21551/large/icon.png?1642584584","coingeckoId":"parasol-finance","whitelisted":false,"poolToken":false},{"mint":"49jpm8SpyTwaGaJfUa4AmU28hmW1HoKuqzXkgykysowU","symbol":"PSY","name":"PSY Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22416/large/rHFKrmsJ_400x400.jpg?1641805324","coingeckoId":"psy-coin","whitelisted":false,"poolToken":false},{"mint":"PsyFiqqjiv41G7o5SMRzDJCu4psptThNR2GtfeGHfSq","symbol":"PSY","name":"PsyOptions","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22784/large/download.png?1642580392","coingeckoId":"psyoptions","whitelisted":true,"poolToken":false},{"mint":"3UcBMHnSTCXaxUbP6B96kHcED98DgEnNa9rGKzwXKMf4","symbol":"PTR","name":"Partner Coin","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/21381/large/144531867-a8016f41-3b31-4d6f-97a1-372a58d48626.png?1639034184","coingeckoId":"partneroid","whitelisted":false,"poolToken":false},{"mint":"G9tt98aYSznRk7jWsfuz9FnTdokxS6Brohdo9hSmjTRB","symbol":"PUFF","name":"PUFF","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22049/large/logo_%281%29.png?1640675965","coingeckoId":"puff","whitelisted":true,"poolToken":false},{"mint":"Eho8h1BcoG5QWU7X9FzJafw5ErKUXtR2LobAJJZfWff4","symbol":"PUFF/SOL[aquafarm]","name":"PUFF/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"DkNihsQs1hqEwf9TgKP8FmGv7dmMQ7hnKjS2ZSmMZZBE","symbol":"QTCON","name":"Quiztok","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/8208/large/QTCON.png?1587543372","coingeckoId":"quiztok","whitelisted":false,"poolToken":false},{"mint":"5xnRrqoyoLBixNwjVet6Xb2ZTyBSXhENyUWj4sqzRGrv","symbol":"QUID","name":"Quid","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20314/large/metallic.png?1636844606","coingeckoId":"quid-token","whitelisted":false,"poolToken":false},{"mint":"AAmGoPDFLG6bE82BgZWjVi8k95tj9Tf3vUN7WvtUm2BU","symbol":"RACEFI","name":"RaceFi","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21873/large/XIF9z8Z6_400x400.jpg?1640209612","coingeckoId":"racefi","whitelisted":false,"poolToken":false},{"mint":"B6aJ3TGfme3SMnLSouHXqWXjVFqYyqj7czzhzr8WJFAi","symbol":"RAD","name":"RAD","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/22854/large/unknown.png?1642750640","coingeckoId":"rad","whitelisted":false,"poolToken":false},{"mint":"ratioMVg27rSZbSvBopUvsdrGUzeALUfFma61mpxc8J","symbol":"RATIO","name":"Ratio Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24543/large/ratio.png?1648108625","coingeckoId":"ratio-finance","whitelisted":true,"poolToken":false},{"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R","symbol":"RAY","name":"Raydium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614","coingeckoId":"raydium","whitelisted":true,"poolToken":false},{"mint":"GWEmABT4rD3sGhyghv9rKbfdiaFe5uMHeJqr6hhu3XvA","symbol":"RAY/SOL","name":"RAY/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5kimD5W6yJpHRHCyPtnEyDsQRdiiJKivu5AqN3si82Jc","symbol":"RAY/SOL[aquafarm]","name":"RAY/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"4cXw2MYj94TFBXLL73fEpMCr8DPrW68JvrV8mzWgktbD","symbol":"RAY/USDC[aquafarm]","name":"RAY/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"AD27ov5fVU2XzwsbvnFvb1JpCBaCB5dRXrczV9CqSVGb","symbol":"REAL","name":"Realy Metaverse","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21448/large/2SIFWp0b_400x400.jpg?1639174188","coingeckoId":"realy-metaverse","whitelisted":false,"poolToken":false},{"mint":"ArUkYE2XDKzqy77PRRGjo4wREWwqk6RXTfM9NeqzPvjU","symbol":"RENDOGE","name":"renDOGE","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/13796/large/Dogecoin.jpg?1628072827","coingeckoId":"rendoge","whitelisted":false,"poolToken":false},{"mint":"5yw793FZPCaPcuUN4F61VJh2ehsFX87zvHbCA4oRebfn","symbol":"RICE","name":"Rice","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24010/large/rice_200_200.png?1646030160","coingeckoId":"rice","whitelisted":false,"poolToken":false},{"mint":"E5ndSkaB17Dm7CsD22dvcjfrYSDLCxFcMd6z8ddCk5wp","symbol":"RIN","name":"Aldrin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16849/large/Aldrin.png?1629959768","coingeckoId":"aldrin","whitelisted":false,"poolToken":false},{"mint":"RLBxxFkseAZ4RgJH3Sqn8jXxhmGoz9jWxDNJMh8pL7a","symbol":"RLB","name":"Rollbit Coin","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24552/large/unziL6wO_400x400.jpg?1648134494","coingeckoId":"rollbit-coin","whitelisted":false,"poolToken":false},{"mint":"DqxzPWQ2FKHn8pRoy9jCpA6M3GkEqYfieiAVwMYWVyXr","symbol":"ROAR","name":"SOL Tigers Roar","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20693/large/logo_-_2021-11-22T144644.880.png?1637563616","coingeckoId":"roar-token","whitelisted":false,"poolToken":false},{"mint":"76aYNHbDfHemxSS7vmh6eJGfjodK8m7srCxiYCrKxzY1","symbol":"ROLL","name":"High Roller Hippo Clique","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23458/large/OslGsgzd_400x400.jpg?1644215478","coingeckoId":"high-roller-hippo-clique","whitelisted":false,"poolToken":false},{"mint":"8PMHT4swUMtBzgHnh5U564N5sjPSiUz2cjEQzFnnP1Fo","symbol":"ROPE","name":"Rope Token","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14661/large/rope-v6.png?1619606776","coingeckoId":"rope-token","whitelisted":true,"poolToken":false},{"mint":"6SfhBAmuaGf9p3WAxeHJYCWMABnYUMrdzNdK5Stvvj4k","symbol":"ROPE/SOL","name":"ROPE/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ADrvfPBsRcJfGsN6Bs385zYddH52nuM5FA8UaAkX9o2V","symbol":"ROPE/SOL[aquafarm]","name":"ROPE/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EAefyXw6E8sny1cX3LTH6RSvtzH6E5EFy1XsE2AiH1f3","symbol":"RPC","name":"Republic Credits","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25094/large/logo-rpc_200.png?1650270552","coingeckoId":"republic-credits","whitelisted":false,"poolToken":false},{"mint":"6F9XriABHfWhit6zmMUYAQBSy6XK5VF1cHXuW5LDpRtC","symbol":"RUN","name":"Run","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21374/large/cZoMwlyl_400x400.jpg?1639032079","coingeckoId":"run","whitelisted":true,"poolToken":false},{"mint":"34Ppq6R8NfYBwWwPY4cBK4Afyb8hHaASQFukCzH6cV4n","symbol":"RUN/USDC[aquafarm]","name":"RUN/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GZL4yjPohDShW4RofJ6dEWu2Fv7qEa5mBT7Dpje5hqe7","symbol":"SAC","name":"Stoned Ape Crew Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24385/large/stone_ape.PNG?1647501586","coingeckoId":"stoned-ape-crew-index","whitelisted":false,"poolToken":false},{"mint":"GWgwUUrgai3BFeEJZp7bdsBSYiuDqNmHf9uRusWsf3Yi","symbol":"SAFU","name":"1SAFU","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/22792/large/145941796-8f7716f4-66bc-4a38-9ad5-441525c3b5b2.png?1642581127","coingeckoId":"1safu","whitelisted":false,"poolToken":false},{"mint":"6kwTqmdQkJd8qRr9RjSnUX9XJ24RmJRSrU1rsragP97Y","symbol":"SAIL","name":"SAIL","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/16657/large/SAIL.png?1624608515","coingeckoId":"sail","whitelisted":false,"poolToken":false},{"mint":"7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU","symbol":"SAMO","name":"Samoyedcoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15051/large/IXeEj5e.png?1619560738","coingeckoId":"samoyedcoin","whitelisted":true,"poolToken":false},{"mint":"9rguDaKqTrVjaDXafq6E7rKGn7NPHomkdb8RKpjKCDm2","symbol":"SAMO/SOL","name":"SAMO/SOL","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"D6N9j8F2DhtzDtrdpT74y3u2YmYAzcggiLc3nTjqux9M","symbol":"SAMO/SOL[aquafarm]","name":"SAMO/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6VK1ksrmYGMBWUUZfygGF8tHRGpNxQEWv8pfvzQHdyyc","symbol":"SAMO/USDC[aquafarm]","name":"SAMO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SAMUmmSvrE8yqtcG94oyP1Zu2P9t8PSRSV3vewsGtPM","symbol":"SAMU","name":"Samusky","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20187/large/tokenlogo200x200.png?1636635312","coingeckoId":"samusky-token","whitelisted":false,"poolToken":false},{"mint":"49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt","symbol":"SAND","name":"The Sandbox (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22984/large/SAND_wh_small.png?1644224523","coingeckoId":"the-sandbox-wormhole","whitelisted":false,"poolToken":false},{"mint":"EctmRn2jMAdTDvQdG7mxadyiTvhGZiGYNrt9PWe6zioG","symbol":"SANTA","name":"Santaclaus","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22211/large/logo_%281%29.png?1641195172","coingeckoId":"santaclaus","whitelisted":false,"poolToken":false},{"mint":"2HeykdKjzHKGm2LKHw8pDYwjKPiFEoXAz74dirhUgQvq","symbol":"SAO","name":"Sator","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19410/large/sator-logo-CMC.png?1635211626","coingeckoId":"sator","whitelisted":true,"poolToken":false},{"mint":"4iyU77yZbg8iD344vbwruAuDAf9i1EVV3FhZJDnWStBE","symbol":"SAO/USDC[aquafarm]","name":"SAO/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SuperbZyz7TsSdSoFAZ6RYHfAWe9NmjXBLVQpS8hqdx","symbol":"SB","name":"SuperBonds","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22743/large/ywws9ojM_400x400.jpg?1642548336","coingeckoId":"superbonds","whitelisted":true,"poolToken":false},{"mint":"2Reqt4Sw9xNY8BoJ3EZLpFu5yVgNxFrbw8M3KiJpPn6o","symbol":"SB/USDC[aquafarm]","name":"SB/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"BABYsocP6cB95xvBDXnjXKX96VBNC37dmNWUtaV9Jk6v","symbol":"SBABYDOGE","name":"SOL Baby Doge","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/21436/large/logo_%282%29.png?1639121887","coingeckoId":"sol-baby-doge","whitelisted":false,"poolToken":false},{"mint":"AWW5UQfMBnPsTaaxCK7cSEmkj1kbX2zUrqvgKXStjBKx","symbol":"SBFC","name":"SBF Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/16147/large/sbfcoin.png?1623123217","coingeckoId":"sbf-coin","whitelisted":false,"poolToken":false},{"mint":"uNrix3Q5g51MCEUrYBUEBDdQ96RQDQspQJJnnQ4T3Vc","symbol":"SBNK","name":"Solbank","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18513/large/yo_gS6Hi_400x400.png?1632218794","coingeckoId":"solbank-token","whitelisted":false,"poolToken":false},{"mint":"Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1","symbol":"SBR","name":"Saber","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/17162/large/oYs_YFz8_400x400.jpg?1626678457","coingeckoId":"saber","whitelisted":true,"poolToken":false},{"mint":"CS7fA5n4c2D82dUoHrYzS3gAqgqaoVSfgsr18kitp2xo","symbol":"SBR/USDC[aquafarm]","name":"SBR/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6naWDMGNWwqffJnnXFLBCLaYu1y5U9Rohe5wwJPHvf1p","symbol":"SCRAP","name":"Scrap","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/23086/large/bd1b1275fdc0ac1.png?1643181131","coingeckoId":"scrap","whitelisted":true,"poolToken":false},{"mint":"4Te4KJgjtnZe4aE2zne8G4NPfrPjCwDmaiEx9rKnyDVZ","symbol":"SCT","name":"SolClout","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21638/large/solclout.jpg?1639630028","coingeckoId":"solclout","whitelisted":false,"poolToken":false},{"mint":"SCYfrGCw8aDiqdgcpdGjV6jp4UVVQLuphxTDLNWu36f","symbol":"SCY","name":"Synchrony","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19308/large/SYNCHRONY-LOGO.png?1634973091","coingeckoId":"synchrony","whitelisted":true,"poolToken":false},{"mint":"99ZHUQsgxL7K6PHrGNi1gSwawwPr7UA5fbWrYoHQ6qhX","symbol":"SCY/USDC[aquafarm]","name":"SCY/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7SZUnH7H9KptyJkUhJ5L4Kee5fFAbqVgCHvt7B6wg4Xc","symbol":"SDO","name":"TheSolanDAO","decimals":5,"logoURI":"https://assets.coingecko.com/coins/images/22427/large/sdo-new_osvgbz.jpg?1641821718","coingeckoId":"thesolandao","whitelisted":false,"poolToken":false},{"mint":"8ymi88q5DtmdNTn2sPRNFkvMkszMHuLJ1e3RVdWjPa3s","symbol":"SDOGE","name":"SolDoge","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/19746/large/2L4aX1r.png?1635822424","coingeckoId":"soldoge","whitelisted":true,"poolToken":false},{"mint":"CHTKUJGYRtBDqnxCFjxe5KEkZgxV98udbhuYYyzGxup5","symbol":"SDOGE/USDC[aquafarm]","name":"SDOGE/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"seedEDBqu63tJ7PFqvcbwvThrYUkQeqT6NLf81kLibs","symbol":"SEEDED","name":"Seeded Network","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23618/large/seeded.png?1644761600","coingeckoId":"seeded-network","whitelisted":true,"poolToken":false},{"mint":"H7gyTmNCDXkD8MGMqnxqoD8ANszjcju4tjT6ERZ5dakf","symbol":"SEEDED/USDC[aquafarm]","name":"SEEDED/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HNpdP2rL6FR6jM3bDxFX2Zo32D1YG2ZCztf9zzCrKMEX","symbol":"SER","name":"Secretum","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25378/large/ser.png?1651410512","coingeckoId":"secretum","whitelisted":false,"poolToken":false},{"mint":"3eLpKZBgu6pKG2TSpvTfTeeimT294yxV2AEiBKZdY2ai","symbol":"SGG","name":"SolX Gaming Guild","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22673/large/YhhMhwOn_400x400.jpg?1642405643","coingeckoId":"solx-gaming-guild","whitelisted":false,"poolToken":false},{"mint":"8j3hXRK5rdoZ2vSpGLRmXtWmW6iYaRUw5xVk4Kzmc9Hp","symbol":"SHARDS","name":"SolChicks Shards","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23728/large/logo_%282%29.png?1645163819","coingeckoId":"solchicks-shards","whitelisted":false,"poolToken":false},{"mint":"7fCzz6ZDHm4UWC9Se1RPLmiyeuQ6kStxpcAP696EuE1E","symbol":"SHBL","name":"Shoebill Coin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16160/large/sbl.png?1635612720","coingeckoId":"shoebill-coin","whitelisted":false,"poolToken":false},{"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y","symbol":"SHDW","name":"GenesysGo Shadow","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974","coingeckoId":"genesysgo-shadow","whitelisted":true,"poolToken":false},{"mint":"2ws7g3LBPdctfKn42Di9qxzQtUJ8ZL1aEAX2rGEQMNqh","symbol":"SHDW/SOL[aquafarm]","name":"SHDW/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"DJqqvzSuPaWThfzwMjXx7H2ZmHDdwxza6NtFudtuXcpc","symbol":"SHDW/USDC[aquafarm]","name":"SHDW/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"BRg8CLYEStYAFQad3CVMCYy1cgeuvUnarAZLV8K8Hyfv","symbol":"SHELL","name":"MetaShells","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23230/large/metashellslogo.png?1643355563","coingeckoId":"metashells","whitelisted":false,"poolToken":false},{"mint":"CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z","symbol":"SHIB","name":"Shiba Inu (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22983/large/SHIB_wh_small.png?1644224437","coingeckoId":"shiba-inu-wormhole","whitelisted":false,"poolToken":false},{"mint":"Dhg9XnzJWzSQqH2aAnhPTEJHGQAkALDfD98MA499A7pa","symbol":"SHIBA","name":"Shibalana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20003/large/output-onlinepngtools_%2810%29.png?1636364960","coingeckoId":"shibalana","whitelisted":false,"poolToken":false},{"mint":"2946ofy854iifvXCQmHX2AJgxRBoQcchy1gfD26RtkHp","symbol":"SHIBT","name":"Shiba Light","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20744/large/logo_-_2021-11-23T101625.925.png?1637633795","coingeckoId":"shiba-light","whitelisted":false,"poolToken":false},{"mint":"6cVgJUqo4nmvQpbgrDZwyfd6RwWw5bfnCamS3M9N1fd","symbol":"SHILL","name":"Project SEED SHILL","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18176/large/SHILL_Logo.png?1630896205","coingeckoId":"shill-token","whitelisted":false,"poolToken":false},{"mint":"FGMTuwmVVz9hUJzA8shYiEnM16wsYDoSmYoy13UZe1kk","symbol":"SHIVER","name":"Shibaverse SHIVER","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19357/large/Shibaverse_Logo.png?1635128924","coingeckoId":"shibaverse-token","whitelisted":false,"poolToken":false},{"mint":"2vRgBSJEVPXxayrhXoazQyCKSGFYQG3ZdfT2Gv5gZykL","symbol":"SHROOMZ","name":"Crypto Mushroomz","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20990/large/6k8KBF3H_400x400.png?1638170123","coingeckoId":"crypto-mushroomz","whitelisted":false,"poolToken":false},{"mint":"Ac7GiHwC7vZU2y97GRh9rqCqqnKAAgopYrTAtKccHxUk","symbol":"SINU","name":"Samo INU","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21435/large/pWzeVcL.png?1639121293","coingeckoId":"samo-inu","whitelisted":false,"poolToken":false},{"mint":"2uRFEWRBQLEKpLmF8mohFZGDcFQmrkQEEZmHQvMUBvY7","symbol":"SLB","name":"Solberg","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18918/large/logo_%2822%29.png?1633922185","coingeckoId":"solberg","whitelisted":false,"poolToken":false},{"mint":"METAmTMXwdb8gYzyCPfXXFmZZw4rUsXX58PNsDg7zjL","symbol":"SLC","name":"Solice","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22115/large/solice_logo_200x200.png?1640845206","coingeckoId":"solice","whitelisted":true,"poolToken":false},{"mint":"E5kSBqTDxFLbLNQaVVtPtnhEYVLMCK2fVSEKoMKL98qR","symbol":"SLC/USDC[aquafarm]","name":"SLC/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SLCLww7nc1PD2gQPQdGayHviVVcpMthnqUz2iWKhNQV","symbol":"SLCL","name":"Solcial","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24583/large/1_N9szP0_400x400.jpg?1648217020","coingeckoId":"solcial","whitelisted":false,"poolToken":false},{"mint":"9ZLBKPCzkvDv85hojKofsogsESkJMN164QCVUtxvBxEQ","symbol":"SLDR","name":"Solderland","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25284/large/logo.jpg?1651128638","coingeckoId":"solderland","whitelisted":false,"poolToken":false},{"mint":"xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW","symbol":"SLIM","name":"Solanium","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15816/large/logo_cg.png?1659000206","coingeckoId":"solanium","whitelisted":true,"poolToken":false},{"mint":"BVWwyiHVHZQMPHsiW7dZH7bnBVKmbxdeEjWqVRciHCyo","symbol":"SLIM/USDC[aquafarm]","name":"SLIM/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SLNAAQ8VT6DRDc3W9UPDjFyRt7u4mzh8Z4WYMDjJc35","symbol":"SLNA","name":"Soluna","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24845/large/icon.f97a40025f9cd28101e4903f23b304ff.png?1649112521","coingeckoId":"soluna","whitelisted":false,"poolToken":false},{"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp","symbol":"SLND","name":"Solend","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597","coingeckoId":"solend","whitelisted":true,"poolToken":false},{"mint":"F59gkD7NnsdJbFKrRZsiBC8PAooN4c56T8QmahfW1iXN","symbol":"SLND/USDC[aquafarm]","name":"SLND/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SLRSSpSLUTP7okbCUBYStWCo1vUgyt775faPqz8HUMr","symbol":"SLRS","name":"Solrise Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15762/large/9989.png?1621825696","coingeckoId":"solrise-finance","whitelisted":true,"poolToken":false},{"mint":"AtB4nUmdyQfuWWJ9xAHw9xyVnJFfSjSuVWkiYan8y86w","symbol":"SLRS/USDC[aquafarm]","name":"SLRS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"SLT3iSYKeBuCyxvnfij4RUhMfKxZCY3s12Z5pfkTXhV","symbol":"SLT","name":"Solit","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20553/large/logo_-_2021-11-18T112941.579.png?1637206190","coingeckoId":"solit","whitelisted":false,"poolToken":false},{"mint":"AASdD9rAefJ4PP7iM89MYUsQEyCQwvBofhceZUGDh5HZ","symbol":"SLX","name":"Solex Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19392/large/logo_-_2021-10-25T161153.717.png?1635149522","coingeckoId":"solex-finance","whitelisted":false,"poolToken":false},{"mint":"95KN8q3qubEVjPf9trgyur2nHx8T5RCmztRbLuQ5E5i","symbol":"SMRT","name":"Solminter","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/17937/large/apple-touch-icon.png?1629868107","coingeckoId":"solminter","whitelisted":false,"poolToken":false},{"mint":"Hj4sTP4L4rvR9WBR6KyK99sxPptBQQczNWe4y15mxhRD","symbol":"SNJ","name":"Sola Ninja","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19730/large/logo_-_2021-11-01T200443.131.png?1635768291","coingeckoId":"sola-ninja","whitelisted":false,"poolToken":false},{"mint":"SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd","symbol":"SNS","name":"Synesis One","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23289/large/sns.png?1643549030","coingeckoId":"synesis-one","whitelisted":true,"poolToken":false},{"mint":"SENBBKVCM7homnf5RX9zqpf1GFe935hnbU4uVzY1Y6M","symbol":"SNTR","name":"Sentre","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19268/large/sentre.PNG?1634866010","coingeckoId":"sentre","whitelisted":false,"poolToken":false},{"mint":"4dmKkXNHdgYsXqBHCuMikNQWwVomZURhYvkkX5c4pQ7y","symbol":"SNY","name":"Synthetify","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/14835/large/synthetify_token.png?1618611507","coingeckoId":"synthetify-token","whitelisted":true,"poolToken":false},{"mint":"AZpo4BJHHRetF96v6SGinFZBMXM4yWMo4RA8C4PriDLk","symbol":"SNY/USDC[aquafarm]","name":"SNY/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EkDf4Nt89x4Usnxkj4sGHX7sWxkmmpiBzA4qdDkgEN6b","symbol":"SOB","name":"SolaLambo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19908/large/SOLA-LAMBO-2.png?1636104328","coingeckoId":"solalambo","whitelisted":false,"poolToken":false},{"mint":"sodaNXUbtjMvHe9c5Uw7o7VAcVpXPHAvtaRaiPVJQuE","symbol":"SODA","name":"CheeseSoda","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/18451/large/soda_200.png?1632093508","coingeckoId":"cheesesoda-token","whitelisted":false,"poolToken":false},{"mint":"So11111111111111111111111111111111111111112","symbol":"SOL","name":"Wrapped Solana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543","coingeckoId":"wrapped-solana","whitelisted":true,"poolToken":false},{"mint":"6ojPekCSQimAjDjaMApLvh3jF6wnZeNEVRVVoGNzEXvV","symbol":"SOL/SRM","name":"SOL/SRM","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9r1n79TmerAgQJboUT8QvrChX3buZBfuSrBTtYM1cW4h","symbol":"SOL/STEP","name":"SOL/STEP","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ECFcUGwHHMaZynAQpqRHkYeTBnS5GnPWZywM8aggcs3A","symbol":"SOL/USDC","name":"SOL/USDC","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"APDFRM3HMr8CAGXwKHiu2f5ePSpaiEJhaURwhsRrUUt9","symbol":"SOL/USDC[aquafarm]","name":"SOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"BmZNYGt7aApGTUUxAQUYsW64cMbb6P7uniokCWaptj4D","symbol":"SOL/USDT","name":"SOL/USDT","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"FZthQCuYHhcfiDma7QrX7buDHwrZEd7vL8SjS6LQa3Tx","symbol":"SOL/USDT[aquafarm]","name":"SOL/USDT[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"FYfQ9uaRaYvRiaEGUmct45F9WKam3BYXArTrotnTNFXF","symbol":"SOLA","name":"SOLA","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18263/large/sola-new.png?1632238376","coingeckoId":"sola-token","whitelisted":false,"poolToken":false},{"mint":"GLmaRDRmYd4u3YLfnj9eq1mrwxa1YfSweZYYZXZLTRdK","symbol":"SOLAB","name":"Solabrador","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21014/large/2ZR6Gkz.png?1638190959","coingeckoId":"solabrador","whitelisted":false,"poolToken":false},{"mint":"GHvFFSZ9BctWsEc5nujR1MTmmJWY7tgQz2AXE6WVFtGN","symbol":"SOLAPE","name":"SOLAPE","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16930/large/128px-coin.png?1625753550","coingeckoId":"solape-token","whitelisted":false,"poolToken":false},{"mint":"2wmKXX1xsxLfrvjEPrt2UHiqj8Gbzwxvffr9qmNjsw8g","symbol":"SOLAR","name":"Solar","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21605/large/pl_YJ2Ug_400x400.jpg?1639553279","coingeckoId":"solar","whitelisted":false,"poolToken":false},{"mint":"DktNJUJAWJyeLw3ykCkFNpGohE24SoEhevKBskRi6P1y","symbol":"SOLBEAR","name":"Solar Bear","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20778/large/logo.png?1637665136","coingeckoId":"solar-bear","whitelisted":false,"poolToken":false},{"mint":"EWS2ATMt5fQk89NWLJYNRmGaNoji8MhFZkUB4DiWCCcz","symbol":"SOLBERRY","name":"SolBerry","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18562/large/logo200_%2826%29.png?1632441730","coingeckoId":"solberry","whitelisted":false,"poolToken":false},{"mint":"Bx1fDtvTN6NvE4kjdPHQXtmGSg582bZx9fGy4DQNMmAT","symbol":"SOLC","name":"Solcubator","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18682/large/Solcubator-Logo-Icon.png?1632966591","coingeckoId":"solcubator","whitelisted":false,"poolToken":false},{"mint":"5v6tZ1SiAi7G8Qg4rBF1ZdAn4cn6aeQtefewMr1NLy61","symbol":"SOLD","name":"Solanax","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17634/large/sold.png?1639988619","coingeckoId":"solanax","whitelisted":false,"poolToken":false},{"mint":"3CaBxqxWsP5oqS84Pkja4wLxyZYsHzMivQbnfwFJQeL1","symbol":"SOLFI","name":"Solfina","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20729/large/dDDqpMiA_400x400.jpg?1637616143","coingeckoId":"solfina","whitelisted":false,"poolToken":false},{"mint":"8JnNWJ46yfdq8sKgT1Lk4G7VWkAA8Rhh7LhqgJ6WY41G","symbol":"SOLI","name":"Solana Ecosystem Index","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23550/large/Token-SOLI-200x200.png?1644460319","coingeckoId":"solana-ecosystem-index","whitelisted":false,"poolToken":false},{"mint":"A5UevXJdphkzXhRtTXj8JyoYYrWnkCLHVS986JHtRLyj","symbol":"SOLID","name":"Solid Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22100/large/logo.png?1640797686","coingeckoId":"solid-protocol","whitelisted":false,"poolToken":false},{"mint":"CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG","symbol":"SOLINK","name":"Wrapped Chainlink (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24705/large/qvSHhRyC_400x400.jpg?1648646324","coingeckoId":"wrapped-chainlink-sollet","whitelisted":false,"poolToken":false},{"mint":"Gro98oTmXxCVX8HKr3q2tMnP5ztoC77q6KehFDnAB983","symbol":"SOLMO","name":"SolMoon","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/22113/large/solmo.png?1640842991","coingeckoId":"solmoon","whitelisted":false,"poolToken":false},{"mint":"Fv3ZG56M2cWvF8sy9VWzWyvtHPhugNc1BAzpyoAPvL7r","symbol":"SOLNUT","name":"Solana Nut","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/21961/large/20211210_004320.png?1640521375","coingeckoId":"solana-nut","whitelisted":false,"poolToken":false},{"mint":"GfJ3Vq2eSTYf1hJP6kKLE9RT6u7jF9gNszJhZwo5VPZp","symbol":"SOLPAD","name":"Solpad Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16368/large/solpad.PNG?1623820231","coingeckoId":"solpad-finance","whitelisted":false,"poolToken":false},{"mint":"zwqe1Nd4eiWyCcqdo4FgCq7LYZHdSeGKKudv6RwiAEn","symbol":"SOLPAY","name":"SolPay Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22766/large/1_wTkhKXbxhBQxR1BW5WKSNA.png?1642575140","coingeckoId":"solpay-finance","whitelisted":false,"poolToken":false},{"mint":"7j7H7sgsnNDeCngAPjpaCN4aaaru4HS7NAFYSEUyzJ3k","symbol":"SOLR","name":"SolRazr","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18390/large/Sol-Razr-Logo-TICKER.png?1631759669","coingeckoId":"solrazr","whitelisted":false,"poolToken":false},{"mint":"9XtRZwKzDXEJ61A7qCqbPz8jXMYHGT3LwxqrEzB6fqxv","symbol":"SOLUM","name":"Solum","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18945/large/logo_-_2021-10-12T103445.624.png?1634006093","coingeckoId":"solum","whitelisted":false,"poolToken":false},{"mint":"JAa3gQySiTi8tH3dpkvgztJWHQC1vGXr5m6SQ9LEM55T","symbol":"SOLUST","name":"solUST","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/25372/large/solust.png?1651406405","coingeckoId":"solust","whitelisted":false,"poolToken":false},{"mint":"7q3AdgKuMeDRnjaMQs7ppXjaw4HUxjsdyMrrfiSZraiN","symbol":"SOLV","name":"Solview","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20482/large/solview_logo_515x515.png?1645502773","coingeckoId":"solview","whitelisted":false,"poolToken":false},{"mint":"CH74tuRLTYcxG7qNJCsV9rghfLXJCQJbsu7i52a8F1Gn","symbol":"SOLX","name":"Soldex","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21362/large/output-onlinepngtools_%2811%29.png?1639014832","coingeckoId":"soldex","whitelisted":false,"poolToken":false},{"mint":"sonarX4VtVkQemriJeLm6CKeW3GDMyiBnnAEMw1MRAE","symbol":"SONAR","name":"SonarWatch","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20494/large/S_7gaWIC_400x400.png?1637131427","coingeckoId":"sonarwatch","whitelisted":true,"poolToken":false},{"mint":"5MvQHx8eftU39JTucFsT315JFnQASuDQg3FqxTw7xcvN","symbol":"SONAR/USDC[aquafarm]","name":"SONAR/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Gz3u6eJaKEviYpPC5AwUziz891kNX76PNdsmJrnaNNY4","symbol":"SOULO","name":"SouloCoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22082/large/logo.png?1640759758","coingeckoId":"soulocoin","whitelisted":false,"poolToken":false},{"mint":"3JSf5tPeuscJGtaCp5giEiDhv51gQ4v3zWg8DGgyLfAB","symbol":"SOYFI","name":"Wrapped YFI (Sollet)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24704/large/yl4nOJno_400x400.jpg?1648646042","coingeckoId":"wrapped-yfi-sollet","whitelisted":false,"poolToken":false},{"mint":"31tCNEE6LiL9yW4Bu153Dq4vi2GuorXxCA9pW9aA6ecU","symbol":"SPKL","name":"Spookeletons","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20086/large/14169.png?1636458787","coingeckoId":"spookeletons-token","whitelisted":false,"poolToken":false},{"mint":"5U9QqCPhqXAJcEv9uyzFJd5zhN93vuPk1aNNkXnUfPnt","symbol":"SPWN","name":"Bitspawn","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16513/large/token_logo.png?1631603192","coingeckoId":"bitspawn","whitelisted":false,"poolToken":false},{"mint":"H6JocWxg5g1Lcs4oPnBecmjQ4Y1bkZhGJHtjMunmjyrp","symbol":"SPX","name":"Sphinxel","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20249/large/logo_-_2021-11-12T151134.139.png?1636701101","coingeckoId":"sphinxel","whitelisted":false,"poolToken":false},{"mint":"SQRNmMb9mKjjkihQS7fCmAwo3gVs1FSQBVeDZzA7CP3","symbol":"SQR","name":"Magic Square","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/26377/large/A-WlK2Dl_400x400.jpeg?1657615169","coingeckoId":"magic-square","whitelisted":false,"poolToken":false},{"mint":"SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt","symbol":"SRM","name":"Serum","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/11970/large/serum-logo.png?1597121577","coingeckoId":"serum","whitelisted":true,"poolToken":false},{"mint":"9tf8rBSEQYG7AqL896fN2nZi1iYPqpWaLEdpbeQaC1Vy","symbol":"SRM/SOL[aquafarm]","name":"SRM/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG","symbol":"SRMET","name":"Serum (Wormhole from Ethereum)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22978/large/SRMet_wh_small.png?1644224116","coingeckoId":"serum-wormhole-from-ethereum","whitelisted":false,"poolToken":false},{"mint":"AGkFkKgXUEP7ZXazza5a25bSKbz5dDpgafPhqywuQnpf","symbol":"SSU","name":"SunnySideUp","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23369/large/logo.png?1643954242","coingeckoId":"sunnysideup","whitelisted":false,"poolToken":false},{"mint":"EXGqHqvKBs4Z1mCwhiGE7kT2TXGFirAjvQzPSQP8nvuw","symbol":"STAR","name":"Star Chain","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25848/large/logo.png?1654150342","coingeckoId":"star-chain","whitelisted":false,"poolToken":false},{"mint":"HCgybxq5Upy8Mccihrp7EsmwwFqYZtrHrsmsKwtGXLgW","symbol":"STARS","name":"StarLaunch","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20109/large/OP3eksDQ_400x400.png?1636513478","coingeckoId":"starlaunch","whitelisted":false,"poolToken":false},{"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT","symbol":"STEP","name":"Step Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762","coingeckoId":"step-finance","whitelisted":true,"poolToken":false},{"mint":"8nTzqDXHriG2CXKbybeuEh1EqDQMtrbYMFWcP7AkiDaP","symbol":"STEP/SOL[aquafarm]","name":"STEP/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9zoqdwEBKWEi9G5Ze8BSkdmppxGgVv1Kw4LuigDiNr9m","symbol":"STR","name":"Solster","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18621/large/log-350.png?1632701442","coingeckoId":"solster","whitelisted":false,"poolToken":false},{"mint":"HnZiKrSKYQkEfzjQs6qkvuGbBmrBP9YzjB1SMM7tiGZ1","symbol":"SUCH","name":"Such Shiba","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25100/large/1CA10540-30AB-4F34-AF3A-9E8F88471FDF.png?1650284205","coingeckoId":"such-shiba","whitelisted":false,"poolToken":false},{"mint":"SUNNYWgPQmFxe9wTZzNK7iPnJ3vYDrkgnxJRJm1s3ag","symbol":"SUNNY","name":"Sunny Aggregator","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18039/large/90dbe787-8e5f-473c-b923-fe138a7a30ea.png?1630314924","coingeckoId":"sunny-aggregator","whitelisted":true,"poolToken":false},{"mint":"GHuoeq9UnFBsBhMwH43eL3RWX5XVXbSRYJymmyMYpT7n","symbol":"SUNNY/USDC[aquafarm]","name":"SUNNY/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj","symbol":"SUSHI","name":"Sushi","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/12271/large/512x512_Logo_no_chop.png?1606986688","coingeckoId":"sushi","whitelisted":false,"poolToken":false},{"mint":"svtMpL5eQzdmB3uqK9NXaQkq8prGZoKQFNVJghdWCkV","symbol":"SVT","name":"Solvent","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22387/large/svt.png?1641789503","coingeckoId":"solvent","whitelisted":true,"poolToken":false},{"mint":"SWANaZUGxF82KyVsbxeeNsMaVECtimze5VyCdywkvkH","symbol":"SWAN","name":"Swanlana","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18425/large/SWANLANA_PNG.png?1631866031","coingeckoId":"swanlana","whitelisted":false,"poolToken":false},{"mint":"4dydh8EGNEdTz6grqnGBxpduRg55eLnwNZXoNZJetadu","symbol":"SWARM","name":"MIM","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19927/large/13988.png?1636323160","coingeckoId":"mim","whitelisted":false,"poolToken":false},{"mint":"45ojchnvC3agGNvs86MWBq8N4miiTY6X8ECQzgQNDE4v","symbol":"SWERVE","name":"SWERVE Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20858/large/94614403.png?1637801748","coingeckoId":"swerve-protocol","whitelisted":false,"poolToken":false},{"mint":"4BzxVoBQzwKoqm1dQc78r42Yby3EzAeZmMiYFdCjeu5Z","symbol":"SWOLE","name":"Swole Doge","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19643/large/swole.png?1635853067","coingeckoId":"swole-doge","whitelisted":false,"poolToken":false},{"mint":"FnKE9n6aGjQoNWRBZXy4RW6LZVao7qwBonUbiD7edUmZ","symbol":"SYP","name":"Sypool","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18518/large/sypool.PNG?1632268218","coingeckoId":"sypool","whitelisted":true,"poolToken":false},{"mint":"qJxKN9BhxbYvRNbjfK2uAVWboto6sonj8XC1ZEW5XTB","symbol":"SYP/USDC[aquafarm]","name":"SYP/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"94jMUy411XNUw1CnkFr2514fq6KRc49W3kAmrjJiuZLx","symbol":"SYX","name":"Solanyx","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21964/large/logo.png?1640524913","coingeckoId":"solanyx","whitelisted":false,"poolToken":false},{"mint":"C5xtJBKm24WTt3JiXrvguv7vHCe7CknDB7PNabp4eYX6","symbol":"T1NY","name":"Tiny Bonez","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24426/large/coin.png?1647848074","coingeckoId":"tiny-bonez","whitelisted":false,"poolToken":false},{"mint":"Taki7fi3Zicv7Du1xNAWLaf6mRK7ikdn77HeGzgwvo4","symbol":"TAKI","name":"Taki","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25271/large/logo.png?1651118069","coingeckoId":"taki","whitelisted":true,"poolToken":false},{"mint":"3xaK5aWWLNRB73xUVX3cusLhDp65mTvP4fwW5Jwxakgs","symbol":"TAKI/sRLY[aquafarm]","name":"TAKI/sRLY[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6atKbS2Xz5vu7cqWBNk8KYkuakRzckZ9nvtUKf2k8Sc3","symbol":"TAKI/sRLYv2[aquafarm]","name":"TAKI/sRLYv2[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"2mDJPcvv7vigZo9ZPxhHLpKQSixCkbohVY35eX6NkN6m","symbol":"TBK","name":"TokenBook","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20334/large/RyESzumQ_400x400.jpg?1636937939","coingeckoId":"tokenbook","whitelisted":false,"poolToken":false},{"mint":"FYUkUybywqUUyrUwiAezbvhTp2DUgx1eg8tQNiKkXqJ9","symbol":"TFMC","name":"Tap Fantasy MC","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26483/large/Tap-Fantasy-MC-Logo.png?1658279327","coingeckoId":"tap-fantasy-mc","whitelisted":false,"poolToken":false},{"mint":"FciGvHj9FjgSGgCBF1b9HY814FM9D28NijDd5SJrKvPo","symbol":"TGT","name":"Twirl Governance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/16725/large/Yn1ebvX.png?1624850650","coingeckoId":"twirl-governance-token","whitelisted":false,"poolToken":false},{"mint":"D3cm6WRnyBct3p7vFqyTt2CaynsGPuVQT2zW6WHSTX6q","symbol":"THECA","name":"Theca","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21782/large/logo_%281%29.png?1640007283","coingeckoId":"theca","whitelisted":false,"poolToken":false},{"mint":"7osS84AkAG2TCrUvrE1wfKwfAqWTCrHnaCsrsyVJd5pY","symbol":"THUG","name":"Fraktionalized THUG 2856","decimals":3,"logoURI":"https://assets.coingecko.com/coins/images/22678/large/q4h6GvG6MQfhXXNJTbLILbZY1OIgLqkJNHzNLClHDiw.png?1642406678","coingeckoId":"fraktionalized-thug-2856","whitelisted":false,"poolToken":false},{"mint":"AymKzSDznoLT7Vhsb4wSRnCj1gjcG3zkgYFY8fxsHHer","symbol":"TICKET","name":"Ticket Finance","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22756/large/PK65p32H_400x400.jpg?1642573249","coingeckoId":"ticket-finance","whitelisted":false,"poolToken":false},{"mint":"HKfs24UEDQpHS5hUyKYkHd9q7GY5UQ679q2bokeL2whu","symbol":"TINY","name":"Tiny Colony","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22264/large/Kq4gAMJi_400x400.png?1641336657","coingeckoId":"tiny-colony","whitelisted":false,"poolToken":false},{"mint":"2pVkjwPJHXopCknbdsHgXQnhptEWWWkfiw6pDcnNnBPC","symbol":"TOPSS","name":"TOPSS","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/27508/large/Topss_logo_final_logo_light.png?1664334182","coingeckoId":"topss","whitelisted":false,"poolToken":false},{"mint":"AbnTggpTujbdAiJtyhH9WtK2CqXk44W7GipyJXkopBDd","symbol":"TORG","name":"TORG","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/17596/large/TORG_Logo_200x200.png?1628586056","coingeckoId":"torg","whitelisted":false,"poolToken":false},{"mint":"Bx4ykEMurwPQBAFNvthGj73fMBVTvHa8e9cbAyaK4ZSh","symbol":"TOX","name":"trollbox","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/16903/large/trollbox-200.png?1625578606","coingeckoId":"trollbox","whitelisted":false,"poolToken":false},{"mint":"3CKQgrcvwhvFqVXXxLTb1u262nh26SJ3uutkSCTtbZxH","symbol":"TRBL","name":"Tribeland","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21728/large/15994.png?1639964642","coingeckoId":"tribeland","whitelisted":false,"poolToken":false},{"mint":"q4bpaRKw3fJB1AJBeeBaKv3TjYzWsmntLgnSB275YUb","symbol":"TRTLS","name":"Turtles","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21017/large/turtles200x200.png?1638191778","coingeckoId":"turtles-token","whitelisted":false,"poolToken":false},{"mint":"A94X2fRy3wydNShU4dRaDyap2UuoeWJGWyATtyp61WZf","symbol":"TRYB","name":"BiLira","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/10119/large/JBs9jiXO_400x400.jpg?1642668342","coingeckoId":"bilira","whitelisted":false,"poolToken":false},{"mint":"FNFKRV3V8DtA3gVJN6UshMiLGYA8izxFwkNWmJbFjmRj","symbol":"TTT","name":"TabTrader","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21060/large/xFYsZV9U_400x400.jpg?1638268495","coingeckoId":"tabtrader","whitelisted":true,"poolToken":false},{"mint":"FGgP1npQTsC5Q4xBmQtNYSh51NKqNwdxBZy8JCo3igcu","symbol":"TTT/USDC[aquafarm]","name":"TTT/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs","symbol":"TULIP","name":"Tulip Protocol","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/15764/large/TqrUdBG.png?1621827144","coingeckoId":"solfarm","whitelisted":true,"poolToken":false},{"mint":"4SBx8GXu8HhcVHWydQv1vsDdZs3G93XSL9CtMBny6hS5","symbol":"TULIP/USDC[aquafarm]","name":"TULIP/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"6wShYhqA2gs3HUAZ4MyaPDpKPBWFJUQQUGaCoy2k1Tgz","symbol":"TUT","name":"Turnt Up Tikis","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22007/large/exiled.2e9d4c91.png?1640589892","coingeckoId":"turnt-up-tikis","whitelisted":false,"poolToken":false},{"mint":"DMCUFm2ZAnSU7UgsdVq23gRogMU3MEBjPgQF1gK53rEn","symbol":"UM","name":"UncleMine","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22871/large/unclemine_icon_400.png?1642756525","coingeckoId":"unclemine","whitelisted":false,"poolToken":false},{"mint":"8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36","symbol":"UNI","name":"Uniswap (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22969/large/UNI_wh_small.png?1644223592","coingeckoId":"uniswap-wormhole","whitelisted":false,"poolToken":false},{"mint":"UNQtEecZ5Zb4gSSVHCAWUQEoNnSVEbWiKCi1v9kdUJJ","symbol":"UNQ","name":"Unique Venture clubs","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21730/large/unq.png?1659789179","coingeckoId":"unq","whitelisted":true,"poolToken":false},{"mint":"2VuGzaMrDnDyZfYvDwSXk38s7M2wpud7LDY3dGA1J9sy","symbol":"UNQ/USDC[aquafarm]","name":"UNQ/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EwJN2GqUGXXzYmoAciwuABtorHczTA5LqbukKXV1viH7","symbol":"UPS","name":"UPFI Network","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20179/large/logo_-_2021-11-11T122041.439.png?1636604452","coingeckoId":"upfi-network","whitelisted":true,"poolToken":false},{"mint":"E1U63VXhNiWoUkVvjrfLDdV1oJrwE6zLde3bohr6jCqz","symbol":"UPS/USDC[aquafarm]","name":"UPS/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","symbol":"USDC","name":"USD Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389","coingeckoId":"usd-coin","whitelisted":true,"poolToken":false},{"mint":"3H5XKkE9uVvxsdrFeN4BLLGCmohiQN6aZJVVcJiXQ4WC","symbol":"USDC/USDT","name":"USDC/USDT","decimals":9,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"33k9G5HeH5JFukXTVxx3EmZrqjhb19Ej2GC2kqVPCKnM","symbol":"USDC/USDT[stable]","name":"USDC/USDT[stable]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"H2uzgruPvonVpCRhwwdukcpXK8TG17swFNzYFr2rtPxy","symbol":"USDC/USDT[stable][aquafarm]","name":"USDC/USDT[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M","symbol":"USDCPO","name":"USD Coin (PoS) (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22945/large/USDCpo_wh_small.png?1644223406","coingeckoId":"usd-coin-pos-wormhole","whitelisted":false,"poolToken":false},{"mint":"A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM","symbol":"USDCet","name":"USD Coin (Wormhole from Ethereum)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23019/large/USDCet_wh_small.png?1644223449","coingeckoId":"usd-coin-wormhole-from-ethereum","whitelisted":true,"poolToken":false},{"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX","symbol":"USDH","name":"USDH","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131","coingeckoId":"usdh","whitelisted":true,"poolToken":false},{"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB","symbol":"USDT","name":"Tether","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707","coingeckoId":"tether","whitelisted":true,"poolToken":false},{"mint":"Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1","symbol":"USDTET","name":"Tether USD (Wormhole from Ethereum)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23025/large/USDTet_wh_small.png?1644223203","coingeckoId":"tether-usd-wormhole-from-ethereum","whitelisted":false,"poolToken":false},{"mint":"5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1","symbol":"USDTPO","name":"Tether USD (PoS) (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22944/large/USDTpo_wh_small.png?1644223159","coingeckoId":"tether-usd-pos-wormhole","whitelisted":false,"poolToken":false},{"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2","symbol":"USDr","name":"Ratio Stable Coin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254","coingeckoId":"ratio-stable-coin","whitelisted":true,"poolToken":false},{"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6","symbol":"USH","name":"Hedge USD","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029","coingeckoId":"hedge-usd","whitelisted":true,"poolToken":false},{"mint":"CXLBjMMcwkc17GfJtBos6rQCo1ypeH6eDbB82Kby4MRm","symbol":"USTC","name":"Wrapped USTC","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/15462/large/ust.png?1620910058","coingeckoId":"wrapped-ust","whitelisted":false,"poolToken":false},{"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT","symbol":"UXD","name":"UXD Stablecoin","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473","coingeckoId":"uxd-stablecoin","whitelisted":true,"poolToken":false},{"mint":"UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M","symbol":"UXP","name":"UXD Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20319/large/UXP.jpg?1636864568","coingeckoId":"uxd-protocol-token","whitelisted":true,"poolToken":false},{"mint":"HjR8JgqNKQVMvdryqJw5RJ4PCE9WGk8sgbEF7S9S3obv","symbol":"UXP/USDC[aquafarm]","name":"UXP/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7zBWymxbZt7PVHQzfi3i85frc1YRiQc23K7bh3gos8ZC","symbol":"VI","name":"Vybit","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/10978/large/vi.png?1639659576","coingeckoId":"vybit","whitelisted":false,"poolToken":false},{"mint":"CgbJxXyaHeU8VsquBpySuFXA94b6LWXxioZ28wRr8fs9","symbol":"VINU","name":"Viral Inu","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20698/large/vinu.png?1642917940","coingeckoId":"viral-inu","whitelisted":false,"poolToken":false},{"mint":"HVkFqcMHevVPb4XKrf4XowjEaVVsBoqJ2U1EG59Dfk5j","symbol":"VISION","name":"VisionGame","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24460/large/eQh2HGH3_400x400.jpg?1647679828","coingeckoId":"visiongame","whitelisted":false,"poolToken":false},{"mint":"2FKuYE5D75e9Fjg3ymGBrFfVc8tVKac4SeyvZn5dGNUz","symbol":"VITAL","name":"Vitall Markets","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21923/large/logo.png?1640267906","coingeckoId":"vitall-markets","whitelisted":false,"poolToken":false},{"mint":"2jw1uFmc1hhfJH3EqGhaE2rfZMMC2YBpxkZcdUbPppMn","symbol":"VIVAION","name":"Vivaion","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22797/large/zCKgUOy13nTdqluJ1VWG2aqDfMgD4axJt_g4C9T-W3I.png?1650957408","coingeckoId":"vivaion","whitelisted":false,"poolToken":false},{"mint":"DjPt6xxMoZx1DyyWUHGs4mwqWWX48Fwf6ZJgqv2F9qwc","symbol":"VOID","name":"Void Games","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21307/large/h5lkasZH_400x400.jpg?1638886042","coingeckoId":"void-games","whitelisted":false,"poolToken":false},{"mint":"55t1PfJngPgMS4c4HeSHPy54VWfkMEk7XBQhSkdz6Cm6","symbol":"VOO","name":"VooVoo","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22827/large/WhatsApp_Image_2021-11-02_at_16.53.29.jpeg?1642664051","coingeckoId":"voovoo","whitelisted":false,"poolToken":false},{"mint":"2YCQcQgy9nNhgukjAur1jCvMXgSTQ5FVDc3ae3BcspXS","symbol":"VRS","name":"Verasaw Plant","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26110/large/17-56-48-vrs.png?1655884668","coingeckoId":"verasaw-plant-token","whitelisted":false,"poolToken":false},{"mint":"A5NF1e6RnYkVwtg3V3z1qeUz4PZfHCXmQ9RotuJWgi6F","symbol":"VYNC","name":"VYNK Chain","decimals":4,"logoURI":"https://assets.coingecko.com/coins/images/17743/large/vynk_chain.PNG?1629150126","coingeckoId":"vynk-chain","whitelisted":false,"poolToken":false},{"mint":"5tN42n9vMi6ubp67Uy4NnmM5DMZYN8aS8GeB3bEDHr6E","symbol":"WAG","name":"Waggle Network","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18696/large/waggle.PNG?1633750177","coingeckoId":"waggle-network","whitelisted":true,"poolToken":false},{"mint":"Df6XNHMF3uRVZnz7LCEGiZVax6rXgz76owtVkBHEjSb6","symbol":"WAG/USDC[aquafarm]","name":"WAG/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"3m7A2A8HHdqmiDrjAfaddj7Hxd88FrBHA1KSoqjoELtu","symbol":"WAGMI","name":"WAGMI On Solana","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21069/large/logo.png?1638279903","coingeckoId":"wagmi-on-solana","whitelisted":false,"poolToken":false},{"mint":"4nQqJkBx3Dnovc6ueEdkJfFr2zi2fc77834czmoymR1b","symbol":"WAMO","name":"WAMO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21242/large/symbol.png?1638762408","coingeckoId":"wamo","whitelisted":false,"poolToken":false},{"mint":"4NGNdLiQ1KG8GgqZimKku4WCLdXbNw6UQJvqax3fE6CJ","symbol":"WAV","name":"Fractionalized WAVE-999","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/22176/large/IMG-20220101-021048.jpg?1641176801","coingeckoId":"fractionalized-wave-999","whitelisted":false,"poolToken":false},{"mint":"4uRn7vxRPWYP4HuAa4UNXwEPLRL8oQ71YByMhr6yBnL4","symbol":"WAVES","name":"Playground Waves Floor Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/24388/large/playgorund_waves.PNG?1647502973","coingeckoId":"playground-waves-floor-index","whitelisted":false,"poolToken":false},{"mint":"DmXfDUeyRJqnpvdjssGgUXwZrRFPXvu2DfMq4jfTTC9C","symbol":"WEENS","name":"Ween","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/21764/large/logo_%281%29.png?1639991986","coingeckoId":"ween-token","whitelisted":false,"poolToken":false},{"mint":"EHaEBhYHWA7HSphorXXosysJem6qF4agccoqDqQKCUge","symbol":"WEYU","name":"WEYU","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/18112/large/weyu.PNG?1630542552","coingeckoId":"weyu","whitelisted":false,"poolToken":false},{"mint":"DSXWF79VQ3RzFBB67WeNfCzfzAQq5X6m97zi85bq1TRx","symbol":"WHALES","name":"Catalina Whales Index","decimals":2,"logoURI":"https://assets.coingecko.com/coins/images/27053/large/whales.png?1661507402","coingeckoId":"catalina-whales-index","whitelisted":false,"poolToken":false},{"mint":"5fTwKZP2AK39LtFN9Ayppu6hdCVKfMGVm79F2EgHCtsi","symbol":"WHEY","name":"Shredded Apes Whey","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23256/large/whey-coin-2048x2048.png?1643360509","coingeckoId":"whey-token","whitelisted":false,"poolToken":false},{"mint":"9ae76zqD3cgzR9gvf5Thc2NN3ACF7rqqnrLqxNzgcre6","symbol":"WIPE","name":"WipeMyAss","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19967/large/wipemyass.jpeg?1636344049","coingeckoId":"wipemyass","whitelisted":false,"poolToken":false},{"mint":"EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az","symbol":"WLKN","name":"Walken","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25566/large/wlkn.jpg?1652523301","coingeckoId":"walken","whitelisted":false,"poolToken":false},{"mint":"BygDd5LURoqztD3xETc99WCxLUbTi6WYSht9XiBgZ4HW","symbol":"WMP","name":"Whalemap","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/21892/large/logo-token_%281%29.png?1640228860","coingeckoId":"whalemap","whitelisted":true,"poolToken":false},{"mint":"HDgxKmiA8Pv82fNguhVeMkZqQkos2YksFPoP1KttWxX8","symbol":"WMP/USDC[aquafarm]","name":"WMP/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"3KnVxWhoYdc9UwDr5WMVkZp2LpF7gnojg7We7MUd6ixQ","symbol":"WOLFE","name":"Wolfecoin","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/19647/large/ea2e65_7f14054a4493484ca8b88e2af221a28e_mv2.png?1635730036","coingeckoId":"wolfecoin","whitelisted":false,"poolToken":false},{"mint":"E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy","symbol":"WOO","name":"WOO Network","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/12921/large/w2UiemF__400x400.jpg?1603670367","coingeckoId":"woo-network","whitelisted":false,"poolToken":false},{"mint":"9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE","symbol":"WOOF","name":"WOOF","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/18319/large/woof-logo-svg-true-solana-radient-blackinside.png?1637655115","coingeckoId":"woof-token","whitelisted":true,"poolToken":false},{"mint":"9EjcYfHcG8f1mccpHyaAwpoxaUPiheC6KgLQjyD9aTb6","symbol":"WOOF/USDC[aquafarm]","name":"WOOF/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"A3HyGZqe451CBesNqieNPfJ4A9Mu332ui8ni6dobVSLB","symbol":"WOOP","name":"WOOP","decimals":5,"logoURI":"https://assets.coingecko.com/coins/images/24904/large/coin-gecko.png?1649335210","coingeckoId":"woop","whitelisted":false,"poolToken":false},{"mint":"4TyXexYsJqy9n1vVFVkHn1CUxabP2cht3BSE74PSG1pq","symbol":"WSO","name":"Widi Soul","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22832/large/wso2_200x200.png?1642668402","coingeckoId":"widi-soul","whitelisted":false,"poolToken":false},{"mint":"xALGoH1zUfRmpCriy94qbfoMXHtK6NDnMKzT4Xdvgms","symbol":"XALGO","name":"Wrapped ALGO","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/26335/large/xALGO.png?1657494713","coingeckoId":"wrapped-algo","whitelisted":false,"poolToken":false},{"mint":"35r2jMGKytAJ7FyKfKRHPanT8kpjg3emPy7WG6GANCNB","symbol":"XCUR","name":"Curate","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/13327/large/400x400_%281%29_%283%29_%282%29.png?1613998208","coingeckoId":"curate","whitelisted":false,"poolToken":false},{"mint":"Bwfe7DwmEDvjEBZGbQnDU8CrwZsuvYaed1VuQ8KDTGsS","symbol":"XENO","name":"The Xenobots Project","decimals":0,"logoURI":"https://assets.coingecko.com/coins/images/24054/large/W3OlCRoK_400x400.jpg?1646201237","coingeckoId":"the-xenobots-project","whitelisted":false,"poolToken":false},{"mint":"Fr3W7NPVvdVbwMcHgA7Gx2wUxP43txdsn3iULJGFbKz9","symbol":"XFTT","name":"Synthetic FTT","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/20025/large/BGYHyQ4.png?1636418021","coingeckoId":"synthetic-ftt","whitelisted":false,"poolToken":false},{"mint":"FsPncBfeDV3Uv9g6yyx1NnKidvUeCaAiT2NtBAPy17xg","symbol":"XGLI","name":"Glitter Finance","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/23292/large/glitter_finance.png?1660285639","coingeckoId":"glitter-finance","whitelisted":false,"poolToken":false},{"mint":"4UuGQgkD3rSeoXatXRWwRfRd21G87d5LiCfkVzNNv1Tt","symbol":"XSB","name":"Solareum Wallet","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20958/large/xsb-200.png?1638141904","coingeckoId":"solareum-wallet","whitelisted":false,"poolToken":false},{"mint":"BdUJucPJyjkHxLMv6ipKNUhSeY3DWrVtgxAES1iSBAov","symbol":"XSOL","name":"Synthetic SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/20022/large/mmJpy6j.png?1636417738","coingeckoId":"synthetic-sol","whitelisted":false,"poolToken":false},{"mint":"5gs8nf4wojB5EXgDUWNLwXpknzgV2YWDhveAeBZpVLbp","symbol":"XTAG","name":"xHashtag","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/20912/large/xtag.png?1637922382","coingeckoId":"xhashtag","whitelisted":false,"poolToken":false},{"mint":"83LGLCm7QKpYZbX8q4W2kYWbtt8NJBwbVwEepzkVnJ9y","symbol":"XUSD","name":"Synthetic USD","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/19596/large/uJzDI4j.png?1635488810","coingeckoId":"synthetic-usd","whitelisted":false,"poolToken":false},{"mint":"25Vu6457o2gdZRGVVt5K8NbAvaP3esYaQNHbNDitVtw1","symbol":"XVC","name":"Xverse","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17709/large/1_y5qvEWJiA4dFjoQNcqth3g.png?1629081157","coingeckoId":"xverse","whitelisted":false,"poolToken":false},{"mint":"NGK3iHqqQkyRZUj4uhJDQqEyKKcZ7mdawWpqwMffM3s","symbol":"YAKU","name":"Yaku","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/26785/large/_YAKU_logo.png?1660101303","coingeckoId":"yaku","whitelisted":false,"poolToken":false},{"mint":"8RYSc3rrS4X4bvBCtSJnhcpPpMaAJkXnVKZPzANxQHgz","symbol":"YARD","name":"Solyard Finance","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18400/large/IMG_7306.JPG?1631775657","coingeckoId":"solyard-finance","whitelisted":false,"poolToken":false},{"mint":"YAWtS7vWCSRPckx1agB6sKidVXiXiDUfehXdEUSRGKE","symbol":"YAW","name":"Yawww","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/24233/large/yaw.PNG?1646982198","coingeckoId":"yawww","whitelisted":false,"poolToken":false},{"mint":"HxPoEHMt1vKeqjKCePcqTj6yYgn6Xqq1fKTY3Pjx4YrX","symbol":"ZAP","name":"Zap","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/2180/large/zap.png?1547036476","coingeckoId":"zap","whitelisted":false,"poolToken":false},{"mint":"zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF","symbol":"ZBC","name":"Zebec Protocol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/24342/large/zbc.PNG?1647400775","coingeckoId":"zebec-protocol","whitelisted":true,"poolToken":false},{"mint":"2LYgm6nGXmSSjfoEriPuYeGoNiWNxUs7n3rnTbDWN5c7","symbol":"ZBC/USDC[aquafarm]","name":"ZBC/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ANqY8h3sRSwkC29FvGJenAh7VGRABVVx7Ls6Mq4BuGT","symbol":"ZIG","name":"ZIG Coin","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ANqY8h3sRSwkC29FvGJenAh7VGRABVVx7Ls6Mq4BuGT/logo.png","coingeckoId":"zignaly","whitelisted":true,"poolToken":false},{"mint":"5vhh9ZnD9vnahRhFLP1EUEyYRSzvJwgw9U2xygsSJSrp","symbol":"ZIG/USDC[aquafarm]","name":"ZIG/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"A7rqejP8LKN8syXMr4tvcKjs2iJ4WtZjXNs1e6qP3m9g","symbol":"ZION","name":"Zion","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/22150/large/Ziontoken_2_84.png?1640931619","coingeckoId":"zion","whitelisted":false,"poolToken":false},{"mint":"SoLW9muuNQmEAoBws7CWfYQnXRXMVEG12cQhy6LE2Zf","symbol":"amtSol","name":"Amulet Staked Sol","decimals":9,"logoURI":"https://files.amulet.org/public/asset/img/logo/amtSOL.png","coingeckoId":"amtSOL","whitelisted":true,"poolToken":false},{"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh","symbol":"daoSOL","name":"daoSOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503","coingeckoId":"daosol","whitelisted":true,"poolToken":false},{"mint":"CCyDxjdW3G7hPTthTMPTZ4bnhFF19XG6rx2fNiKeRQww","symbol":"daoSOL/USDC[aquafarm]","name":"daoSOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5","symbol":"depKI","name":"Genopets Ki","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"Hg35Vd8K3BS2pLB3xwC2WqQV8pmpCm3oNRGYP1PEpmCM","symbol":"eSOL","name":"Eversol Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23056/large/SUWTLy9j_400x400.jpeg?1657789195","coingeckoId":"eversol-staked-sol","whitelisted":true,"poolToken":false},{"mint":"Ez2zVjw85tZan1ycnJ5PywNNxR6Gm4jbXQtZKyQNu3Lv","symbol":"fUSDC","name":"Fluid USDC","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So","symbol":"mSOL","name":"Marinade staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955","coingeckoId":"msol","whitelisted":true,"poolToken":false},{"mint":"29cdoMgu6MS2VXpcMo1sqRdWEzdUR9tjvoh8fcK8Z87R","symbol":"mSOL/SOL[stable][aquafarm]","name":"mSOL/SOL[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"8PSfyiTVwPb6Rr2iZ8F3kNpbg65BCfJM9v8LfB916r44","symbol":"mSOL/USDC[aquafarm]","name":"mSOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9cMWe4UYRPGAUUsTkjShJWVM7bk8DUBgxtwwH8asFJoV","symbol":"mSOL/USDT[aquafarm]","name":"mSOL/USDT[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"68YVjgPnTUPcBqZyghqvD2WPNsrLKsjYTmBKJzHRr4qd","symbol":"mSOL/wUST[aquafarm]","name":"mSOL/wUST[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5qoTq3qC4U7vFxo3iCzbXcaD1UEmDeCD63Dsuoct71oV","symbol":"mSOL/whETH[aquafarm]","name":"mSOL/whETH[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9EaLkQrbjmbbuZG9Wdpo8qfNUEjHATJFSycEmw6f1rGX","symbol":"pSOL","name":"pSOL (Parrot SOL)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/9EaLkQrbjmbbuZG9Wdpo8qfNUEjHATJFSycEmw6f1rGX/logo.svg","coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"C2YzN6MymD5HM2kPaH7bzcbqciyjfmpqyVaR3KA5V6z1","symbol":"pSOL/USDC[aquafarm]","name":"pSOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5","symbol":"renBTC","name":"renBTC","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5/logo.png","coingeckoId":"renbtc","whitelisted":true,"poolToken":false},{"mint":"sRLY3migNrkC1HLgqotpvi66qGkdNedqPZ9TJpAQhyh","symbol":"sRLY","name":"Rally (Solana)","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/23239/large/srly.png?1643531979","coingeckoId":"rally-solana","whitelisted":true,"poolToken":false},{"mint":"HfRgvhgscGX5GaP3rUrZAhh7gS4aJ2UQ7rNVX976rG6P","symbol":"sRLY/SOL[aquafarm]","name":"sRLY/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"RLYv2ubRMDLcGG2UyvPmnPmkfuQTsMbg4Jtygc7dmnq","symbol":"sRLYv2","name":"Rally (Solana)","decimals":9,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/RLYv2ubRMDLcGG2UyvPmnPmkfuQTsMbg4Jtygc7dmnq/logo.png","coingeckoId":"rally-solana","whitelisted":true,"poolToken":false},{"mint":"3dXdXg5HPyZ73GFC9LkSn3thdJUGeXWB8iSTHs5UcqiH","symbol":"sRLYv2/SOL[aquafarm]","name":"sRLYv2/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm","symbol":"scnSOL","name":"Socean Staked Sol","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18468/large/biOTzfxE_400x400.png?1633662119","coingeckoId":"socean-staked-sol","whitelisted":true,"poolToken":false},{"mint":"APNpzQvR91v1THbsAyG3HHrUEwvexWYeNCFLQuVnxgMc","symbol":"scnSOL/SOL[stable][aquafarm]","name":"scnSOL/SOL[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Dkr8B675PGnNwEr9vTKXznjjHke5454EQdz3iaSbparB","symbol":"scnSOL/USDC[aquafarm]","name":"scnSOL/SOL[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj","symbol":"stSOL","name":"Lido Staked SOL","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781","coingeckoId":"lido-staked-sol","whitelisted":true,"poolToken":false},{"mint":"4jjQSgFx33DUb1a7pgPsi3FbtZXDQ94b6QywjNK3NtZw","symbol":"stSOL/SOL[stable][aquafarm]","name":"stSOL/SOL[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"GtQ1NT7R5aaTiST7K6ZWdMhwDdFxsSFvVFhBo8vyHGAq","symbol":"stSOL/USDC[aquafarm]","name":"stSOL/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"4ni1nho89cDKAQ9ddbNQA9ieLYpzvJVmJpuogu5Ct5ur","symbol":"stSOL/USDT[aquafarm]","name":"stSOL/USDT[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"74B9aMS7SA832xKngt5VLKmWAP3pa3qkUzWncTmQSsGF","symbol":"stSOL/wLDO[aquafarm]","name":"stSOL/wLDO[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HTZd53fYwYQRyAjiaPsZy9Gf41gobFdqkF4oKe3XLi95","symbol":"stSOL/wUST[aquafarm]","name":"stSOL/wUST[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"FWurFWADrgmhb6Y44LEaCMnEHS2Tu3QGqd9oBcZtr8gT","symbol":"stSOL/whETH[aquafarm]","name":"stSOL/whETH[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"Eswigpwm3xsipkTqahGi2PEJsJcULQBwZgxhQpr6yBEa","symbol":"stSOL/wstETH[aquafarm]","name":"stSOL/wstETH[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg","symbol":"svtAURY","name":"Aurory - Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg/logo.png","coingeckoId":"svtAURY","whitelisted":true,"poolToken":false},{"mint":"8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D","symbol":"svtCWM","name":"The Catalina Whale Mixer Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D/logo.png","coingeckoId":"svtCWM","whitelisted":true,"poolToken":false},{"mint":"6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT","symbol":"svtDAPE","name":"Degenerate Ape Academy Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT/logo.png","coingeckoId":"svtDAPE","whitelisted":true,"poolToken":false},{"mint":"DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v","symbol":"svtDGOD","name":"DeGods Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v/logo.png","coingeckoId":"svtDGOD","whitelisted":true,"poolToken":false},{"mint":"BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK","symbol":"svtFFF","name":"Famous Fox Federation Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK/logo.png","coingeckoId":"svtFFF","whitelisted":true,"poolToken":false},{"mint":"4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2","symbol":"svtFLARE","name":"Lifinity Flares Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2/logo.png","coingeckoId":"svtFLARE","whitelisted":true,"poolToken":false},{"mint":"3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT","symbol":"svtGGSG","name":"Galactic Geckos Space Garage Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT/logo.png","coingeckoId":"svtGGSG","whitelisted":true,"poolToken":false},{"mint":"AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh","symbol":"svtOKAY","name":"Okay Bears Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U","symbol":"svtPSK","name":"Pesky Penguins Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U/logo.png","coingeckoId":"svtPSK","whitelisted":true,"poolToken":false},{"mint":"Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz","symbol":"svtSMB","name":"Solana Monkey Business Solvent Droplet","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz/logo.png","coingeckoId":"svtSMB","whitelisted":true,"poolToken":false},{"mint":"KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE","symbol":"wAVAX","name":"Avalanche (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22943/large/AVAX_wh_small.png?1644224391","coingeckoId":"avalanche-wormhole","whitelisted":true,"poolToken":false},{"mint":"6VNKqgz9hk7zRShTFdg5AnkfKwZUcojzwAkzxSH3bnUm","symbol":"wHAPI","name":"HAPI","decimals":9,"logoURI":"https://assets.coingecko.com/coins/images/14298/large/R9i2HjAL_400x400.jpg?1615332438","coingeckoId":"hapi","whitelisted":true,"poolToken":false},{"mint":"ELfBngAgvLEHVBuJQhhE7AW6eqLX7id2sfrBngVNVAUW","symbol":"wHAPI/USDC[aquafarm]","name":"wHAPI/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p","symbol":"wLDO","name":"Lido DAO (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22995/large/LDO_wh_small.png?1644226233","coingeckoId":"lido-dao-wormhole","whitelisted":true,"poolToken":false},{"mint":"F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W","symbol":"wLUNA","name":"Terra Classic (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/22951/large/LUNA_wh_small.png?1644226405","coingeckoId":"luna-wormhole","whitelisted":true,"poolToken":false},{"mint":"8Mh7drLbt3jFJYwp948XyvQscGLaLkChNcaH5wwaAoWA","symbol":"wLUNA/wUST[aquafarm]","name":"wLUNA/wUST[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i","symbol":"wUST","name":"TerraUSD (Wormhole)","decimals":6,"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065","coingeckoId":"terrausd-wormhole","whitelisted":true,"poolToken":false},{"mint":"6c13xsmyk7UaHUWZ2rm1MM3ZdrQRSBkQ9waaG25ridVs","symbol":"wUST/SOL[aquafarm]","name":"wUST/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"J1KfRtP5y2warpD7LdJhfBLPKoWwSqYuovdArSv1mpQ7","symbol":"wUST/USDC[stable][aquafarm]","name":"wUST/USDC[stable][aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs","symbol":"whETH","name":"Ethereum (Wormhole)","decimals":8,"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466","coingeckoId":"ethereum-wormhole","whitelisted":true,"poolToken":false},{"mint":"7aYnrdmdCRodDy2Czn6keUquUhjF1jPEmfwZPh488z8U","symbol":"whETH/SOL[aquafarm]","name":"whETH/SOL[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"7NPtjjAP7vhp4t5NCLyY4DY5rurvyc8cgZ2a2rYabRia","symbol":"whETH/USDC[aquafarm]","name":"whETH/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true},{"mint":"ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo","symbol":"wstETH","name":"Lido Wrapped Staked ETH","decimals":8,"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo/logo.png","coingeckoId":null,"whitelisted":true,"poolToken":false},{"mint":"5a6Y1ephcbKSoyLMQyD1JWbtqawCy8p2FtRL9v3zhaG5","symbol":"wstETH/USDC[aquafarm]","name":"wstETH/USDC[aquafarm]","decimals":6,"logoURI":null,"coingeckoId":null,"whitelisted":false,"poolToken":true}],"hasMore":false}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaWhirlPool.meta
|
fileFormatVersion: 2
guid: 91676dae09ea45808390634024f67394
timeCreated: 1663853986
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaSwapWidget.cs.meta
|
fileFormatVersion: 2
guid: 3dc643d3c49a44620940d80c59b72712
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Pools.txt.meta
|
fileFormatVersion: 2
guid: b3683f8cb2c84139af1db464253fac5e
timeCreated: 1666025020
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/OrcaMainNetTokenList.txt.meta
|
fileFormatVersion: 2
guid: 164d8a9d7268740d6a23d625f267d7eb
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Pools.txt
|
{
"whirlpools":[
{
"address":"2AEWSvUds1wsufnsDPCXjFsJCMJH5SNNm7fSF4kxys9a",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9416273926398187,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3012384.9249370154,
"volume":{
"day":2722166.2327487813,
"week":22339854.06882742,
"month":56847112.84948871
},
"volumeDenominatedA":{
"day":79242.46900469712,
"week":650314.8750878964,
"month":1651299.4909889596
},
"volumeDenominatedB":{
"day":74743.61309214596,
"week":613394.358128287,
"month":1558613.291008592
},
"priceRange":{
"day":{
"min":0.9396983321756353,
"max":0.9430515161971197
},
"week":{
"min":0.9383826795318304,
"max":0.9466712257460538
},
"month":{
"min":0.9365758662717657,
"max":0.956641391698993
}
},
"feeApr":{
"day":0.033445610880882985,
"week":0.033139666007002924,
"month":0.0314124771296432
},
"reward0Apr":{
"day":0.028911506986602886,
"week":0.027733243800876342,
"month":0.025886961724595998
},
"reward1Apr":{
"day":0.05111376964511764,
"week":0.04903067265939312,
"month":0.046181877045464954
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.11347088751260351,
"week":0.10990358246727239,
"month":0.10348131589970416
}
},
{
"address":"HQcY5n2zP6rW74fyFEhWeBd3LnJpBcZechkvJpmdb8cx",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9356470910481582,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":971410.304917337,
"volume":{
"day":2207001.813415301,
"week":15849958.004581774,
"month":39965408.566824436
},
"volumeDenominatedA":{
"day":64245.99302162167,
"week":461393.5000712841,
"month":1161139.56264933
},
"volumeDenominatedB":{
"day":60185.26120674722,
"week":432230.6655224406,
"month":1088446.6223254737
},
"priceRange":{
"day":{
"min":0.9270986400490968,
"max":0.9409057465631075
},
"week":{
"min":0.9270986400490968,
"max":0.9510131343746848
},
"month":{
"min":0.9270986400490968,
"max":0.9510131343746848
}
},
"feeApr":{
"day":0.07722613340502885,
"week":0.07677400975351585,
"month":0.06015680106689438
},
"reward0Apr":{
"day":0.08614293680043439,
"week":0.08715941657755974,
"month":0.07363423057671022
},
"reward1Apr":{
"day":0.012343421285423208,
"week":0.0408968224984709,
"month":0.04443604871958512
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.17571249149088644,
"week":0.2048302488295465,
"month":0.1782270803631897
}
},
{
"address":"HJPjoWUrhoZzkNfRpHuieeFk9WcZWjwy6PBjZ81ngndJ",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":30.879856021253733,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":5744065.328584377,
"volume":{
"day":1822112.3025398806,
"week":18829175.314093154,
"month":76116870.84916982
},
"volumeDenominatedA":{
"day":53041.829672280306,
"week":548118.7457477115,
"month":2207317.138542189
},
"volumeDenominatedB":{
"day":1822112.3025398806,
"week":18829175.314093154,
"month":76116870.84916982
},
"priceRange":{
"day":{
"min":29.8410043023991,
"max":31.119901402778147
},
"week":{
"min":28.453973183378523,
"max":32.6343564602958
},
"month":{
"min":28.453973183378523,
"max":35.0349194796623
}
},
"feeApr":{
"day":0.34568508991397107,
"week":0.4546894948206701,
"month":0.7087772174746307
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.34568508991397107,
"week":0.4546894948206701,
"month":0.7087772174746307
}
},
{
"address":"ApLVWYdXzjoDhBHeRx6SnbFWv4MYjFMih5FijDQUJk5R",
"tokenA":{
"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6",
"symbol":"USH",
"name":"Hedge USD",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029",
"coingeckoId":"hedge-usd",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.994962563523877,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":873805.2481943512,
"volume":{
"day":312965.86228039744,
"week":4893773.297093002,
"month":10909388.680976052
},
"volumeDenominatedA":{
"day":314717.28290087177,
"week":4921159.8478241265,
"month":10971135.903790396
},
"volumeDenominatedB":{
"day":312965.86228039744,
"week":4893773.297093002,
"month":10909388.680976052
},
"priceRange":{
"day":{
"min":0.9867513976266584,
"max":1.0051396780341038
},
"week":{
"min":0.9844276608503544,
"max":1.0114293956088958
},
"month":{
"min":0.9785909492748345,
"max":1.0114293956088958
}
},
"feeApr":{
"day":0.01395161354852668,
"week":0.023634190107871773,
"month":0.02412276162307577
},
"reward0Apr":{
"day":0.12882216031848168,
"week":0.11009644724237189,
"month":0.12500930401489826
},
"reward1Apr":{
"day":0.012387209166693634,
"week":0.010586592532911065,
"month":0.011299508414678238
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.155160983033702,
"week":0.1443172298831547,
"month":0.1604315740526523
}
},
{
"address":"Fvtf8VCjnkqbETA6KtyHYqHm26ut6w184Jqm4MQjPvv7",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9978197429203841,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2569894.843185322,
"volume":{
"day":301315.9487931628,
"week":4072050.5208620485,
"month":10659804.053580305
},
"volumeDenominatedA":{
"day":301512.5618602907,
"week":4074707.5934319287,
"month":10668675.757669672
},
"volumeDenominatedB":{
"day":301315.9487931628,
"week":4072050.5208620485,
"month":10659804.053580305
},
"priceRange":{
"day":{
"min":0.9868220382135324,
"max":1.0069913299002764
},
"week":{
"min":0.9868220382135324,
"max":1.0146583116114922
},
"month":{
"min":0.9727772263332685,
"max":1.0146583116114922
}
},
"feeApr":{
"day":0.004234191742930871,
"week":0.007230409376549705,
"month":0.00715867781280533
},
"reward0Apr":{
"day":0.033185018879055686,
"week":0.019871018730399616,
"month":0.013124901876738993
},
"reward1Apr":{
"day":0.004155138341873107,
"week":0.004117370580989306,
"month":0.003992750747241947
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.04157434896385966,
"week":0.03121879868793863,
"month":0.024276330436786273
}
},
{
"address":"67S6KLCtgFZmRYzy6dCDc1v754mmcpK33pZd7Hg2yeVj",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs",
"symbol":"MEDIA",
"name":"Media Network",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15142/large/media50x50.png?1620122020",
"coingeckoId":"media-network",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.13537029865433123,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":265485.13148643076,
"volume":{
"day":298771.78157966107,
"week":3249868.225119727,
"month":9150881.05893753
},
"volumeDenominatedA":{
"day":298771.78157966107,
"week":3249868.225119727,
"month":9150881.05893753
},
"volumeDenominatedB":{
"day":34309.12764352539,
"week":373195.02923183877,
"month":1115244.2929129126
},
"priceRange":{
"day":{
"min":0.13191720294801898,
"max":0.13672842973251034
},
"week":{
"min":0.10962921592988957,
"max":0.13672842973251034
},
"month":{
"min":0.10962921592988957,
"max":7.374136628887234
}
},
"feeApr":{
"day":1.455770145307598,
"week":1.7313991046595494,
"month":1.5860290894482871
},
"reward0Apr":{
"day":3.243426504839356,
"week":3.2415751203034917,
"month":3.0940783675424566
},
"reward1Apr":{
"day":0.03718523419025312,
"week":0.037164008437969284,
"month":0.0369616105007527
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":4.736381884337207,
"week":5.01013823340101,
"month":4.717069067491496
}
},
{
"address":"AXtdSZ2mpagmtM5aipN5kV9CyGBA8dxhSBnqMRp7UpdN",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":32.751911333286486,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1214992.1477163716,
"volume":{
"day":280901.617944049,
"week":3269257.59212192,
"month":13167012.11954886
},
"volumeDenominatedA":{
"day":7712.828700900795,
"week":89765.32058344442,
"month":360605.0295121164
},
"volumeDenominatedB":{
"day":280901.617944049,
"week":3269257.59212192,
"month":13167012.11954886
},
"priceRange":{
"day":{
"min":31.7260457425586,
"max":33.07688067470296
},
"week":{
"min":30.188188518933647,
"max":34.600468988392606
},
"month":{
"min":30.188188518933647,
"max":37.0126849360167
}
},
"feeApr":{
"day":0.2538480020772108,
"week":0.3639423459741534,
"month":0.47371497453307576
},
"reward0Apr":{
"day":0.008958596129151807,
"week":0.008626514465048666,
"month":0.007685368292383604
},
"reward1Apr":{
"day":0.08452165225933816,
"week":0.08138856192572091,
"month":0.08718463061114017
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.34732825046570076,
"week":0.453957422364923,
"month":0.5685849734365995
}
},
{
"address":"8nJ76wCnqDK7REWwforxhDmvaF8bw8TPrGUwW3UNEeGk",
"tokenA":{
"mint":"METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m",
"symbol":"MPLX",
"name":"Metaplex",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/27344/large/mplx.png?1663636769",
"coingeckoId":"metaplex",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.09404398944895415,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":149251.20583270967,
"volume":{
"day":177343.56938372663,
"week":1117213.9441774148,
"month":1117213.9441774148
},
"volumeDenominatedA":{
"day":61722.07784391852,
"week":388831.4996165702,
"month":388831.4996165702
},
"volumeDenominatedB":{
"day":177343.56938372663,
"week":1117213.9441774148,
"month":1117213.9441774148
},
"priceRange":{
"day":{
"min":0.09447242050702387,
"max":0.09939845718311527
},
"week":{
"min":0.09447242050702387,
"max":0.34307034460241725
},
"month":{
"min":0.09447242050702387,
"max":0.8834266776091652
}
},
"feeApr":{
"day":1.4963398478311984,
"week":4.100967822839695,
"month":2.6534252619198497
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.4963398478311984,
"week":4.100967822839695,
"month":2.6534252619198497
}
},
{
"address":"AiMZS5U3JMvpdvsr1KeaMiS354Z1DeSg5XjA4yYRxtFf",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":33.018666824603166,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":905713.3373101866,
"volume":{
"day":174133.63788078335,
"week":2450731.4538558344,
"month":6288964.501945533
},
"volumeDenominatedA":{
"day":4748.649691645704,
"week":66831.804034476,
"month":171113.06224742148
},
"volumeDenominatedB":{
"day":174133.63788078335,
"week":2450731.4538558344,
"month":6288964.501945533
},
"priceRange":{
"day":{
"min":31.934795053609168,
"max":33.13637427666323
},
"week":{
"min":30.33413008123974,
"max":34.82061373147609
},
"month":{
"min":30.33413008123974,
"max":37.20757178303779
}
},
"feeApr":{
"day":0.20854138872392528,
"week":0.3509305084837956,
"month":0.3906033009498453
},
"reward0Apr":{
"day":0.011711474314457635,
"week":0.011070223403735438,
"month":0.012085741465458018
},
"reward1Apr":{
"day":0.00816079775306189,
"week":0.10358528432775717,
"month":0.12230162504893692
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.2284136607914448,
"week":0.46558601621528817,
"month":0.5249906674642403
}
},
{
"address":"FAbwB8VgdgSGty5E8dnmNbu5PZnQcvSuLnboJVpw1Rty",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":32.80522488668517,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":663168.448800852,
"volume":{
"day":165267.3361138906,
"week":2021908.2925760115,
"month":5681073.4542814605
},
"volumeDenominatedA":{
"day":4537.811717248739,
"week":55516.349189116416,
"month":155678.97737177202
},
"volumeDenominatedB":{
"day":165239.3326528937,
"week":2021565.6935401629,
"month":5680333.954245125
},
"priceRange":{
"day":{
"min":31.720739594752217,
"max":33.05328434530101
},
"week":{
"min":30.14521587097198,
"max":34.64887529778647
},
"month":{
"min":30.14521587097198,
"max":37.01256867641037
}
},
"feeApr":{
"day":0.2755950960049185,
"week":0.42345239596367934,
"month":0.4665731850942995
},
"reward0Apr":{
"day":0.016430695970423608,
"week":0.016084239992213673,
"month":0.01622140817396483
},
"reward1Apr":{
"day":0.15501866042068568,
"week":0.1517499527692558,
"month":0.18902621015730822
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.4470444523960278,
"week":0.5912865887251488,
"month":0.6718208034255726
}
},
{
"address":"CPsTfDvZYeVB5uTqQZcwwTTBJ7KPFvB6JKLGSWsFZEL7",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ",
"symbol":"DUST",
"name":"DUST Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854",
"coingeckoId":"dust-protocol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":27.14484227892105,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":488310.7287524808,
"volume":{
"day":161725.79829109597,
"week":2153082.153230661,
"month":5286115.101402655
},
"volumeDenominatedA":{
"day":4707.850462681414,
"week":62676.38755465118,
"month":154051.82751711886
},
"volumeDenominatedB":{
"day":101895.3972689062,
"week":1356550.183546745,
"month":3432056.931265992
},
"priceRange":{
"day":{
"min":26.32546761321008,
"max":27.48504328573227
},
"week":{
"min":23.420639045406663,
"max":27.48504328573227
},
"month":{
"min":19.019524314586434,
"max":28.726638105573315
}
},
"feeApr":{
"day":0.3622712251722961,
"week":0.6275458731943326,
"month":0.6229599440314699
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.3622712251722961,
"week":0.6275458731943326,
"month":0.6229599440314699
}
},
{
"address":"GpqMSH1YM6oPmJ5xxEE2KfePf7uf5rXFbTW2TnxicRj6",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03043289888243017,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":314701.4264632379,
"volume":{
"day":115646.77180595024,
"week":1131102.2726917837,
"month":3263120.4168354007
},
"volumeDenominatedA":{
"day":115722.23301734404,
"week":1131840.3334813283,
"month":3265912.4873363683
},
"volumeDenominatedB":{
"day":3175.35992594077,
"week":31057.130024110298,
"month":89350.81652831096
},
"priceRange":{
"day":{
"min":0.030130080579192253,
"max":0.03142556154706224
},
"week":{
"min":0.028882564879026892,
"max":0.03339017459778821
},
"month":{
"min":0.02699717754323489,
"max":0.03339017459778821
}
},
"feeApr":{
"day":0.36819657491954505,
"week":0.49268869851289954,
"month":0.5905938908908365
},
"reward0Apr":{
"day":0.1545200632655881,
"week":0.09707958137938195,
"month":0.0666509237571481
},
"reward1Apr":{
"day":0.2920981780802221,
"week":0.1948878485434788,
"month":0.20297912484683459
},
"reward2Apr":{
"day":0.03095999116833002,
"week":0.03324660114372617,
"month":0.03369076334362647
},
"totalApr":{
"day":0.8457748074336853,
"week":0.8179027295794864,
"month":0.8939147028384455
}
},
{
"address":"4fuUiYxTQ6QCrdSq9ouBYcTM7bqSwYTSyLueGZLTy4T4",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9998905184544754,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":546881.8749670867,
"volume":{
"day":103898.10619852334,
"week":1201029.4233894343,
"month":1720605.4172284708
},
"volumeDenominatedA":{
"day":103898.10619852334,
"week":1201029.4233894343,
"month":1720605.4172284708
},
"volumeDenominatedB":{
"day":103880.50134911391,
"week":1200825.9168683959,
"month":1720333.8117376561
},
"priceRange":{
"day":{
"min":0.999013075870122,
"max":1.0013999175520785
},
"week":{
"min":0.9968758388761035,
"max":1.003483449852528
},
"month":{
"min":0.9949104481874305,
"max":1.0053298116702563
}
},
"feeApr":{
"day":0.007430522974018408,
"week":0.010732549569471018,
"month":0.005895966044873138
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.007430522974018408,
"week":0.010732549569471018,
"month":0.005895966044873138
}
},
{
"address":"3K92dMW5CNKa6ShbJtWHicBQrMHujWLGwHWDHWJvqesi",
"tokenA":{
"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6",
"symbol":"USH",
"name":"Hedge USD",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029",
"coingeckoId":"hedge-usd",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9949254506830467,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":77502.18552685816,
"volume":{
"day":102290.26915856174,
"week":1076290.7009023125,
"month":2067620.8935218665
},
"volumeDenominatedA":{
"day":102862.70630992638,
"week":1082313.8425748576,
"month":2079246.7650077294
},
"volumeDenominatedB":{
"day":102272.93674654313,
"week":1076108.3305357737,
"month":2067352.5731233761
},
"priceRange":{
"day":{
"min":0.9877733104903959,
"max":1.0044673208061579
},
"week":{
"min":0.9852138673754243,
"max":1.0112355788182243
},
"month":{
"min":0.9786658500100341,
"max":1.0112355788182243
}
},
"feeApr":{
"day":0.05351295891925452,
"week":0.05993583935864181,
"month":0.045928579143582046
},
"reward0Apr":{
"day":0.024502443433572225,
"week":0.02683405343239329,
"month":0.026499565888623084
},
"reward1Apr":{
"day":0.25668039389103336,
"week":0.2811056547643076,
"month":0.2894915878159429
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.33469579624386014,
"week":0.3678755475553427,
"month":0.36191973284814805
}
},
{
"address":"6jZQFLhSAzTYfo33MSQYvwKvZYwxat8kUa29Mz63oHN9",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
"symbol":"whETH",
"name":"Ethereum (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466",
"coingeckoId":"ethereum-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.024848869965194784,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1023071.0512111757,
"volume":{
"day":102055.16536570719,
"week":1355842.7034345297,
"month":3084811.425401302
},
"volumeDenominatedA":{
"day":2783.059237965864,
"week":36974.02818858224,
"month":83962.37142771891
},
"volumeDenominatedB":{
"day":74.2232105621816,
"week":986.0843212158891,
"month":2246.075157464401
},
"priceRange":{
"day":{
"min":0.02464394222139803,
"max":0.025090327412834127
},
"week":{
"min":0.02464394222139803,
"max":0.02669164888224024
},
"month":{
"min":0.02386555000088784,
"max":0.2368925169346332
}
},
"feeApr":{
"day":0.1086516546143217,
"week":0.20423651899870568,
"month":0.20137117638796392
},
"reward0Apr":{
"day":0.01053016648284458,
"week":0.011492484055318587,
"month":0.012248315803031375
},
"reward1Apr":{
"day":0.1746811436843027,
"week":0.21513805928859434,
"month":0.24598870849375246
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.293862964781469,
"week":0.4308670623426186,
"month":0.4596082006847477
}
},
{
"address":"963Do8Jw6aKaRB7YLorAGrqAJqhWqVGAStkewfne1SX5",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9977717466854641,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":163362.8975964289,
"volume":{
"day":86344.2539100111,
"week":1058324.4035952738,
"month":2023878.8542936526
},
"volumeDenominatedA":{
"day":86400.59479955946,
"week":1059014.9757599432,
"month":2025416.587344397
},
"volumeDenominatedB":{
"day":86329.62344519253,
"week":1058145.0774994164,
"month":2023583.7589367672
},
"priceRange":{
"day":{
"min":0.9878440242350324,
"max":1.006317734066848
},
"week":{
"min":0.9878440242350324,
"max":1.0134475491406907
},
"month":{
"min":0.973203055886737,
"max":1.0134475491406907
}
},
"feeApr":{
"day":0.01888605974014614,
"week":0.04537630163636352,
"month":0.0404834100776612
},
"reward0Apr":{
"day":0.26135466361095105,
"week":0.1883701202856554,
"month":0.16210178159515234
},
"reward1Apr":{
"day":0.012994736251087387,
"week":0.019948657450110988,
"month":0.02521365944612951
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.29323545960218456,
"week":0.25369507937212993,
"month":0.22779885111894307
}
},
{
"address":"8Ej6U2za4nwsCUyEXidzG9aWcd69PPtrA3hnVYWgJUx1",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn",
"symbol":"JSOL",
"name":"JPool",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897",
"coingeckoId":"jpool",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.94526061314369,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":103239.15280689966,
"volume":{
"day":60081.68225990104,
"week":743342.9878868049,
"month":1768131.757187027
},
"volumeDenominatedA":{
"day":1748.982404877861,
"week":21638.771713804832,
"month":51433.95883622008
},
"volumeDenominatedB":{
"day":1010.2609035293204,
"week":12499.156653539809,
"month":29730.765174776425
},
"priceRange":{
"day":{
"min":0.935989643974531,
"max":0.9510986100639722
},
"week":{
"min":0.935989643974531,
"max":0.9589252730352206
},
"month":{
"min":0.935989643974531,
"max":0.9593604973302521
}
},
"feeApr":{
"day":0.02105581912987841,
"week":0.033191897943989024,
"month":0.0303032108116088
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.02105581912987841,
"week":0.033191897943989024,
"month":0.0303032108116088
}
},
{
"address":"2HtfXbKo531ghGgFYzcnJQJ9GNKAdeEJBbMgfF2zagQK",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT",
"symbol":"UXD",
"name":"UXD Stablecoin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473",
"coingeckoId":"uxd-stablecoin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":30.885916896668327,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":434301.132458357,
"volume":{
"day":57539.022355238296,
"week":745584.6977770855,
"month":1823445.937762568
},
"volumeDenominatedA":{
"day":1674.9653789296447,
"week":21704.02806162117,
"month":52913.083314719675
},
"volumeDenominatedB":{
"day":57488.23216863575,
"week":744926.563794649,
"month":1821826.2998557594
},
"priceRange":{
"day":{
"min":29.899586591502203,
"max":579.8664760973371
},
"week":{
"min":28.396588507905914,
"max":579.8664760973371
},
"month":{
"min":28.396588507905914,
"max":579.8664760973371
}
},
"feeApr":{
"day":0.14440300717560306,
"week":0.23897347838608407,
"month":0.23673940796948353
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.14440300717560306,
"week":0.23897347838608407,
"month":0.23673940796948353
}
},
{
"address":"AiZa55wSymdzwU9VDoWBrjizFjHdzDJFRNks2enP35sw",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":30.955792601826392,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":180400.79043272507,
"volume":{
"day":57457.156621861606,
"week":733790.631147688,
"month":1883330.9906470065
},
"volumeDenominatedA":{
"day":1672.5822611164838,
"week":21360.701872325368,
"month":54590.543911389635
},
"volumeDenominatedB":{
"day":57494.64825759186,
"week":734269.4402754402,
"month":1884934.1291578305
},
"priceRange":{
"day":{
"min":29.956557206669117,
"max":31.22578554233002
},
"week":{
"min":28.228459256284857,
"max":32.61833404907356
},
"month":{
"min":28.228459256284857,
"max":35.138002427729774
}
},
"feeApr":{
"day":0.3472343097132455,
"week":0.6883412944021122,
"month":0.6131849600368915
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.3472343097132455,
"week":0.6883412944021122,
"month":0.6131849600368915
}
},
{
"address":"DZiV1HEnLE8hU16Xs1cjThAY2twAke4QSpJpHgNwpd3h",
"tokenA":{
"mint":"kiGenopAScF8VF31Zbtx2Hg8qA5ArGqvnVtXb83sotc",
"symbol":"KI",
"name":"Genopets KI",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/26135/large/genopets_ki.png?1660017469",
"coingeckoId":"genopet-ki",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.04765179397036562,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2713586.6137959356,
"volume":{
"day":53618.48119162421,
"week":697043.0305137957,
"month":3277450.3863477656
},
"volumeDenominatedA":{
"day":1071068.0991510958,
"week":13923940.722057484,
"month":65305554.55641753
},
"volumeDenominatedB":{
"day":53618.48119162421,
"week":697043.0305137957,
"month":3277450.3863477656
},
"priceRange":{
"day":{
"min":0.04750047770195111,
"max":0.04868813286952518
},
"week":{
"min":0.04630190650625718,
"max":0.053569119137552565
},
"month":{
"min":0.038885137569374104,
"max":0.05495266920947912
}
},
"feeApr":{
"day":0.021593918928601435,
"week":0.03537081764075115,
"month":0.03584840647414351
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.021593918928601435,
"week":0.03537081764075115,
"month":0.03584840647414351
}
},
{
"address":"E5KuHFnU2VuuZFKeghbTLazgxeni4dhQ7URE4oBtJju2",
"tokenA":{
"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
"symbol":"whETH",
"name":"Ethereum (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466",
"coingeckoId":"ethereum-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1328.8540044248375,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":255617.39049719262,
"volume":{
"day":47049.965150814794,
"week":769963.1955182743,
"month":1967047.1337159076
},
"volumeDenominatedA":{
"day":34.21874294964095,
"week":559.9828306709745,
"month":1432.0185991858712
},
"volumeDenominatedB":{
"day":47049.965150814794,
"week":769963.1955182743,
"month":1967047.1337159076
},
"priceRange":{
"day":{
"min":1282.5606157504328,
"max":1335.2394604058513
},
"week":{
"min":1201.9599966698622,
"max":1335.2394604058513
},
"month":{
"min":147.65226672041896,
"max":1487.9189794192685
}
},
"feeApr":{
"day":0.19916684093402187,
"week":0.4043709017380962,
"month":0.42998779545709354
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.19916684093402187,
"week":0.4043709017380962,
"month":0.42998779545709354
}
},
{
"address":"ErSQss3jrqDpQoLEYvo6onzjsi6zm4Sjpoz1pjqz2o6D",
"tokenA":{
"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
"symbol":"BTC",
"name":"Wrapped Bitcoin (Sollet)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256",
"coingeckoId":"wrapped-bitcoin-sollet",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":19518.019089415287,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":372657.011233218,
"volume":{
"day":44949.34133309827,
"week":807579.9155846385,
"month":2578264.509186333
},
"volumeDenominatedA":{
"day":2.210319154006654,
"week":39.7115798111467,
"month":127.66260554189974
},
"volumeDenominatedB":{
"day":44949.34133309827,
"week":807579.9155846385,
"month":2578264.509186333
},
"priceRange":{
"day":{
"min":19049.284766501485,
"max":20030.052945908436
},
"week":{
"min":18101.996727875314,
"max":20030.052945908436
},
"month":{
"min":18101.996727875314,
"max":20709.04804733657
}
},
"feeApr":{
"day":0.1286622610447844,
"week":0.28589724445275705,
"month":0.3471733100564402
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.1286622610447844,
"week":0.28589724445275705,
"month":0.3471733100564402
}
},
{
"address":"5kDjnhGz9jjwUE84syEjUJjPyQNo4eA5uxs9fd5zzswS",
"tokenA":{
"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2",
"symbol":"USDr",
"name":"Ratio Stable Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254",
"coingeckoId":"ratio-stable-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9923681197348913,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":434338.05328832706,
"volume":{
"day":43406.05830397392,
"week":1059527.03759244,
"month":3067741.2564733024
},
"volumeDenominatedA":{
"day":43760.86033432781,
"week":1068187.6338050705,
"month":3094274.608132742
},
"volumeDenominatedB":{
"day":43406.05830397392,
"week":1059527.03759244,
"month":3067741.2564733024
},
"feeApr":{
"day":0.003668840452947349,
"week":0.014623520811555336,
"month":0.011934175735405068
},
"reward0Apr":{
"day":0.004957935072459326,
"week":0.005460806465689531,
"month":0.005350470902590265
},
"reward1Apr":{
"day":0.042685581933955025,
"week":0.04701507752924963,
"month":0.04819762136043623
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0513123574593617,
"week":0.0670994048064945,
"month":0.06548226799843157
}
},
{
"address":"4eJ1jCPysCrEH53VUAxgNT8BMccXsgHX1nX4FxXAUVWy",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03023308872744999,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":128095.18711470733,
"volume":{
"day":40770.85086031492,
"week":562761.2796810895,
"month":1320587.0336030135
},
"volumeDenominatedA":{
"day":40797.454437288405,
"week":563128.4896535521,
"month":1321687.466790927
},
"volumeDenominatedB":{
"day":1111.8270468714131,
"week":15346.582140880279,
"month":35932.24220492326
},
"priceRange":{
"day":{
"min":0.029896390812220335,
"max":0.03126501048627295
},
"week":{
"min":0.028662177950358584,
"max":0.0332296506148414
},
"month":{
"min":0.026750883009488035,
"max":0.0332296506148414
}
},
"feeApr":{
"day":0.3590530274212667,
"week":0.5911662819389073,
"month":0.6628176610800784
},
"reward0Apr":{
"day":0.017291935811248486,
"week":0.016406550367190503,
"month":0.020201995652965352
},
"reward1Apr":{
"day":0.19212098288984025,
"week":0.19310307317862807,
"month":0.23652277598773414
},
"reward2Apr":{
"day":0.3477814385615432,
"week":0.20228983757311125,
"month":0.14861311260942497
},
"totalApr":{
"day":0.9162473846838987,
"week":1.0029657430578371,
"month":1.068155545330203
}
},
{
"address":"H1fREbTWrkhCs2stH3tKANWJepmqeF9hww4nWRYrM7uV",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
"symbol":"BTC",
"name":"Wrapped Bitcoin (Sollet)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256",
"coingeckoId":"wrapped-bitcoin-sollet",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0016904344247189044,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":797862.6247143676,
"volume":{
"day":35583.375173310116,
"week":596932.0350878112,
"month":1650747.9427271413
},
"volumeDenominatedA":{
"day":970.3638286138375,
"week":16278.423622515933,
"month":44942.637363542424
},
"volumeDenominatedB":{
"day":1.7497612507139926,
"week":29.3532735222356,
"month":81.87302671814884
},
"priceRange":{
"day":{
"min":0.0016445396931163276,
"max":0.0016818382288250353
},
"week":{
"min":0.0016445396931163276,
"max":0.0018099039786826621
},
"month":{
"min":0.0016445396931163276,
"max":0.001991112141703699
}
},
"feeApr":{
"day":0.04865400842155219,
"week":0.10371721826717141,
"month":0.10968512915753588
},
"reward0Apr":{
"day":0,
"week":0,
"month":0.00010060690945587658
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.04865400842155219,
"week":0.10371721826717141,
"month":0.10978573606699175
}
},
{
"address":"Db4AyCBKyH5pcCxJuvQzWfFsVsSH6rM9sm21HbA4WU5",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
"symbol":"whETH",
"name":"Ethereum (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466",
"coingeckoId":"ethereum-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.024697238457675973,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":550955.6146961997,
"volume":{
"day":33267.19087889299,
"week":656857.586594139,
"month":2537474.975631357
},
"volumeDenominatedA":{
"day":913.4306398341157,
"week":18035.60293944913,
"month":69903.20782404701
},
"volumeDenominatedB":{
"day":24.194735313672496,
"week":477.72279614105315,
"month":1856.1036240905546
},
"priceRange":{
"day":{
"min":0.024487451860471146,
"max":0.024802826074211377
},
"week":{
"min":0.024487451860471146,
"max":0.02650445436531272
},
"month":{
"min":0.0237153404279941,
"max":0.23543944559722071
}
},
"feeApr":{
"day":0.06566833086702785,
"week":0.1818022367603589,
"month":0.221572155455354
},
"reward0Apr":{
"day":0.019531446999153865,
"week":0.020728606974940535,
"month":0.0187187407127532
},
"reward1Apr":{
"day":0.09213620974613676,
"week":0.09778360405509602,
"month":0.12403105896835677
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.17733598761231847,
"week":0.30031444779039546,
"month":0.364321955136464
}
},
{
"address":"F7qyox3dAegTNfd8oBQD97LuCHWzQ9hSjbsF7Kv8kTNc",
"tokenA":{
"mint":"a11bdAAuV8iB2fu7X6AxAvDTo1QZ8FXB3kk5eecdasp",
"symbol":"ABR",
"name":"Allbridge",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18690/large/abr.png?1640742053",
"coingeckoId":"allbridge",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.5188076896507396,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":506497.9631685205,
"volume":{
"day":28890.3564072961,
"week":211289.58743025793,
"month":579371.3702707822
},
"volumeDenominatedA":{
"day":48840.72855831727,
"week":357196.6105711981,
"month":960772.2293084804
},
"volumeDenominatedB":{
"day":28890.3564072961,
"week":211289.58743025793,
"month":579371.3702707822
},
"priceRange":{
"day":{
"min":0.5172821754409277,
"max":0.5265485182843508
},
"week":{
"min":0.5172821754409277,
"max":0.5669923786842135
},
"month":{
"min":0.5172821754409277,
"max":0.6658138781505327
}
},
"feeApr":{
"day":0.06143706089902752,
"week":0.056390753754802556,
"month":0.05392379955719465
},
"reward0Apr":{
"day":0.17967559944779782,
"week":0.17955410350884862,
"month":0.17941737485982892
},
"reward1Apr":{
"day":0.025184365306111872,
"week":0.02516733573660372,
"month":0.025011582507743536
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.2662970256529372,
"week":0.2611121930002549,
"month":0.2583527569247671
}
},
{
"address":"6BFWHpnQA7BTHq8XXzuPFmKiZxwH866udVVXNvMrWPqB",
"tokenA":{
"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2",
"symbol":"USDr",
"name":"Ratio Stable Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254",
"coingeckoId":"ratio-stable-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9923364211502346,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":68376.09578495641,
"volume":{
"day":27551.16006919864,
"week":425391.5100912449,
"month":1022959.1943242287
},
"volumeDenominatedA":{
"day":27776.36382906785,
"week":428868.66921080183,
"month":1031269.6034565076
},
"volumeDenominatedB":{
"day":27546.49170668637,
"week":425319.4303031792,
"month":1022813.9004427465
},
"feeApr":{
"day":0.015214781737703739,
"week":0.03685821105086554,
"month":0.025259679215342477
},
"reward0Apr":{
"day":0.03192850665516702,
"week":0.034800365354672715,
"month":0.032254321114999075
},
"reward1Apr":{
"day":0.2748900231527064,
"week":0.2996154296029537,
"month":0.2882949331554964
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.32203331154557713,
"week":0.3712740060084919,
"month":0.34580893348583797
}
},
{
"address":"3db3DPqaS6x3S9oKTzZfu38kJSDFbLsvUDQ9LuRWHUxn",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p",
"symbol":"wLDO",
"name":"Lido DAO (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22995/large/LDO_wh_small.png?1644226233",
"coingeckoId":"lido-dao-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.6921191928069076,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":27875.630663065156,
"volume":{
"day":27497.739794719884,
"week":145047.01685691217,
"month":497838.81011061533
},
"volumeDenominatedA":{
"day":27497.739794719884,
"week":145047.01685691217,
"month":497838.81011061533
},
"volumeDenominatedB":{
"day":17590.36490418062,
"week":92786.897171303,
"month":313582.949333721
},
"priceRange":{
"day":{
"min":0.6870458291972346,
"max":0.7888860719442592
},
"week":{
"min":0.6870458291972346,
"max":0.8784315594710639
},
"month":{
"min":0.526260086730074,
"max":1.7199413494672224
}
},
"feeApr":{
"day":1.0224256294095082,
"week":0.623117840340448,
"month":0.6464255543743423
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.0224256294095082,
"week":0.623117840340448,
"month":0.6464255543743423
}
},
{
"address":"9vqYJjDUFecLL2xPUC4Rc7hyCtZ6iJ4mDiVZX7aFXoAe",
"tokenA":{
"mint":"7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
"symbol":"SAMO",
"name":"Samoyedcoin",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/15051/large/IXeEj5e.png?1619560738",
"coingeckoId":"samoyedcoin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.006346255359435822,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":62313.02347411834,
"volume":{
"day":24818.661323216147,
"week":321650.82437543944,
"month":795743.3325528492
},
"volumeDenominatedA":{
"day":3272890.587969982,
"week":42416790.41433253,
"month":103052668.57864083
},
"volumeDenominatedB":{
"day":24818.661323216147,
"week":321650.82437543944,
"month":795743.3325528492
},
"priceRange":{
"day":{
"min":0.00617125854141479,
"max":0.006394786779912861
},
"week":{
"min":0.005857207131826485,
"max":0.006978318866920338
},
"month":{
"min":0.005857207131826485,
"max":0.010111884342840428
}
},
"feeApr":{
"day":0.42837581384212364,
"week":0.7236657284393199,
"month":0.6953723299195455
},
"reward0Apr":{
"day":0.1706660226604518,
"week":0.1737741893673612,
"month":0.1800446522075073
},
"reward1Apr":{
"day":0.6248728691177345,
"week":0.6362530432002281,
"month":0.6864141325471534
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.22391470562031,
"week":1.5336929610069092,
"month":1.5618311146742063
}
},
{
"address":"3jLRacqwVaxLC6fSNaZSHiC7samXPkSkJ3j5d6QJUaEL",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
"symbol":"whETH",
"name":"Ethereum (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22990/large/ETH_wh_small.png?1644225466",
"coingeckoId":"ethereum-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.000751093010915795,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":135690.80584873114,
"volume":{
"day":24403.0467602747,
"week":311717.0327124622,
"month":1049706.3588327544
},
"volumeDenominatedA":{
"day":24418.970105487657,
"week":311920.43263909424,
"month":1050622.2059330035
},
"volumeDenominatedB":{
"day":17.747974554311593,
"week":226.70718206106537,
"month":763.3684912446372
},
"priceRange":{
"day":{
"min":0.0007463897747106755,
"max":0.0007779422057812925
},
"week":{
"min":0.0007463897747106755,
"max":0.0008386209925711866
},
"month":{
"min":0.0006724145487173658,
"max":0.006778910444188061
}
},
"feeApr":{
"day":0.1976762952347531,
"week":0.32924532458019895,
"month":0.3747204802962921
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.1976762952347531,
"week":0.32924532458019895,
"month":0.3747204802962921
}
},
{
"address":"J7qn7AvZ4QK9qT6BikVBKA3hUp89Lg9UkqJmXZQEjRxq",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
"symbol":"BTC",
"name":"Wrapped Bitcoin (Sollet)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256",
"coingeckoId":"wrapped-bitcoin-sollet",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0016799923285825467,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":330139.18274631316,
"volume":{
"day":24061.96144761825,
"week":435165.3711193316,
"month":1437244.303248954
},
"volumeDenominatedA":{
"day":660.6789530494062,
"week":11948.510615826557,
"month":39396.52809299943
},
"volumeDenominatedB":{
"day":1.1832123162053552,
"week":21.398630689994473,
"month":71.31798518345867
},
"priceRange":{
"day":{
"min":0.0016375988405651761,
"max":0.0016693185131324314
},
"week":{
"min":0.0016375988405651761,
"max":0.0017982175580132892
},
"month":{
"min":0.0016375988405651761,
"max":0.001972947278514084
}
},
"feeApr":{
"day":0.07962456650013121,
"week":0.1576849456412981,
"month":0.21260022353249913
},
"reward0Apr":{
"day":0.03278815943428941,
"week":0.02906751261397601,
"month":0.02904924641023669
},
"reward1Apr":{
"day":0.09280287054578014,
"week":0.08227203529398369,
"month":0.10781184801297439
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.20521559648020077,
"week":0.2690244935492578,
"month":0.3494613179557102
}
},
{
"address":"CpbNcvqxXdQyQ3SRPDPSwLfzd9sgzBm8TjRFsfJL7Pf4",
"tokenA":{
"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ",
"symbol":"DUST",
"name":"DUST Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854",
"coingeckoId":"dust-protocol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.138897642019018,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":131355.03784965663,
"volume":{
"day":21614.307704755185,
"week":599870.3233169836,
"month":1867806.834100536
},
"volumeDenominatedA":{
"day":13618.102328388166,
"week":377948.51254462206,
"month":1223215.1563678063
},
"volumeDenominatedB":{
"day":21614.307704755185,
"week":599870.3233169836,
"month":1867806.834100536
},
"priceRange":{
"day":{
"min":1.0917132661228333,
"max":1.1569731765004145
},
"week":{
"min":1.0521762505442398,
"max":1.333698076070161
},
"month":{
"min":1.0521762505442398,
"max":1.7259686452358498
}
},
"feeApr":{
"day":0.17902698331249145,
"week":0.5831477811342248,
"month":0.6254576077697597
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.17902698331249145,
"week":0.5831477811342248,
"month":0.6254576077697597
}
},
{
"address":"96UbjyFmQY1JLpTvRujrkABxm1ft5hQvSVnv4JbagTMZ",
"tokenA":{
"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
"symbol":"RAY",
"name":"Raydium",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614",
"coingeckoId":"raydium",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.4923602821647724,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":14029.242398536122,
"volume":{
"day":20071.476545617727,
"week":262114.6056926536,
"month":319868.6182810437
},
"volumeDenominatedA":{
"day":34471.034311397016,
"week":450159.28677765746,
"month":549187.0592272202
},
"volumeDenominatedB":{
"day":20071.476545617727,
"week":262114.6056926536,
"month":319868.6182810437
},
"priceRange":{
"day":{
"min":0.48358570481470103,
"max":0.49701954974276746
},
"week":{
"min":0.4721020612276853,
"max":0.5465149192236038
},
"month":{
"min":0.4721020612276853,
"max":0.6208548176007588
}
},
"feeApr":{
"day":1.302529363439282,
"week":2.7376663971202135,
"month":2.8450374985893885
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.302529363439282,
"week":2.7376663971202135,
"month":2.8450374985893885
}
},
{
"address":"5Z66YYYaTmmx1R4mATAGLSc8aV4Vfy5tNdJQzk1GP9RF",
"tokenA":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.8280222084471498,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":270250.10635376215,
"volume":{
"day":18223.215768761766,
"week":657980.7828198007,
"month":1454007.0708537414
},
"volumeDenominatedA":{
"day":21977.818790580124,
"week":793547.2309605554,
"month":1742520.6406028096
},
"volumeDenominatedB":{
"day":18223.215768761766,
"week":657980.7828198007,
"month":1454007.0708537414
},
"priceRange":{
"day":{
"min":0.8237973167483331,
"max":0.8298133380157409
},
"week":{
"min":0.8197314189670686,
"max":0.8376854215096139
},
"month":{
"min":0.8183889543309608,
"max":0.8595074983918854
}
},
"feeApr":{
"day":0.07398515101738541,
"week":0.36659860256241944,
"month":0.30063124878926023
},
"reward0Apr":{
"day":0.6470186002521646,
"week":0.6358268148970666,
"month":0.6612960262133025
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.7210037512695501,
"week":1.002425417459486,
"month":0.9619272750025627
}
},
{
"address":"GLNvG5Ly4cK512oQeJqnwLftwfoPZ4skyDwZWzxorYQ9",
"tokenA":{
"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT",
"symbol":"UXD",
"name":"UXD Stablecoin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473",
"coingeckoId":"uxd-stablecoin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":1.0001324629696906,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1155233.1539956892,
"volume":{
"day":18166.420393181463,
"week":615014.4452692785,
"month":1005125.9086023573
},
"volumeDenominatedA":{
"day":18150.384738700344,
"week":614471.5667642244,
"month":1004234.7986141234
},
"volumeDenominatedB":{
"day":18166.420393181463,
"week":615014.4452692785,
"month":1005125.9086023573
},
"priceRange":{
"day":{
"min":0.05260067168581821,
"max":1.002448020836412
},
"week":{
"min":0.05260067168581821,
"max":1.0058457731784474
},
"month":{
"min":0.05260067168581821,
"max":1.0360146992857207
}
},
"feeApr":{
"day":0.0005729311457811962,
"week":0.0023779033561663557,
"month":0.0014743031693413666
},
"reward0Apr":{
"day":0.0018557125777539968,
"week":0.0017225734948092687,
"month":0.001562393283979325
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.002428643723535193,
"week":0.004100476850975625,
"month":0.0030366964533206915
}
},
{
"address":"GpVjnSuCA9rfrWS13nL1wPmzqNzqLrP5ih1vhu7yhiPv",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
"symbol":"BTC",
"name":"Wrapped Bitcoin (Sollet)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256",
"coingeckoId":"wrapped-bitcoin-sollet",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"whitelisted":true,
"tickSpacing":64,
"price":0.000051100121336834564,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":98181.9585392205,
"volume":{
"day":13499.36684645482,
"week":146440.58660782326,
"month":678443.8493418307
},
"volumeDenominatedA":{
"day":13508.175380920376,
"week":146536.1412341226,
"month":679071.0438853675
},
"volumeDenominatedB":{
"day":0.663811931893882,
"week":7.201005040420942,
"month":33.63264521391444
},
"priceRange":{
"day":{
"min":0.000049691856956172896,
"max":0.00005233766245012852
},
"week":{
"min":0.000049691856956172896,
"max":0.00005595668673865274
},
"month":{
"min":0.000048307313656515464,
"max":0.00005595668673865274
}
},
"feeApr":{
"day":0.15009912659277716,
"week":0.21595681366342923,
"month":0.3216782324950605
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.15009912659277716,
"week":0.21595681366342923,
"month":0.3216782324950605
}
},
{
"address":"7A1R3L7AxcxuZHMJjFgskKGeBR5Rwst3Ai5bv5uAWZFG",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":33.01220146806203,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":74449.1233788665,
"volume":{
"day":11765.553308776694,
"week":106845.35273494928,
"month":374120.4728965944
},
"volumeDenominatedA":{
"day":320.8483540096602,
"week":2913.6883458780867,
"month":10226.762991853111
},
"volumeDenominatedB":{
"day":11763.559713303222,
"week":106827.24849403661,
"month":374077.1688373067
},
"priceRange":{
"day":{
"min":31.93179072461267,
"max":33.15144425810366
},
"week":{
"min":30.290949686616624,
"max":34.804593091122776
},
"month":{
"min":30.290949686616624,
"max":37.23579597045367
}
},
"feeApr":{
"day":0.1806870824238569,
"week":0.22917009786999418,
"month":0.25622475161030317
},
"reward0Apr":{
"day":0.15484851602461208,
"week":0.16605620075144742,
"month":0.1585552120465331
},
"reward1Apr":{
"day":0.0009092778435317181,
"week":0.0009750899007669275,
"month":0.0009572513117205138
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.3364448762920007,
"week":0.39620138852220854,
"month":0.4157372149685568
}
},
{
"address":"6mCQsuigSQhr5t1Kui1yE5bcEqxe44RR2XFAuLi8C27q",
"tokenA":{
"mint":"4SZjjNABoqhbd4hnapbvoEPEqT8mnNkfbEoAwALf1V8t",
"symbol":"CAVE",
"name":"CaveWorld",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/19358/large/token.png?1650866628",
"coingeckoId":"cave",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.20141048849186363,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":23504.806257860317,
"volume":{
"day":11186.343412365442,
"week":226659.32422392003,
"month":866312.8627693624
},
"volumeDenominatedA":{
"day":53165.15952745739,
"week":1077240.2282438232,
"month":3721618.682424361
},
"volumeDenominatedB":{
"day":11186.343412365442,
"week":226659.32422392003,
"month":866312.8627693624
},
"priceRange":{
"day":{
"min":0.1941725740018901,
"max":0.202617421194819
},
"week":{
"min":0.17929377649273237,
"max":4.964842344522029
},
"month":{
"min":0.01463536084693757,
"max":4.964842344522029
}
},
"feeApr":{
"day":0.5739670886564601,
"week":2.168248275097666,
"month":2.308233738201694
},
"reward0Apr":{
"day":0.4971820969613246,
"week":0.6963220697981124,
"month":0.6570053254564459
},
"reward1Apr":{
"day":5.050844063493904,
"week":7.073895488222217,
"month":7.159275783005909
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":6.121993249111688,
"week":9.938465833117995,
"month":10.124514846664049
}
},
{
"address":"CFikKJGqYk2HYgvzeb9yebJ2pSPaxoef7wz6NL7HYyTH",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"FoRGERiW7odcCBGU1bztZi16osPBHjxharvDathL5eds",
"symbol":"FORGE",
"name":"Blocksmith Labs Forge",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25411/large/Logo_%281%29.png?1651733020",
"coingeckoId":"blocksmith-labs-forge",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":2.657974659013248,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3772.7228429124016,
"volume":{
"day":10768.633263887014,
"week":128483.41327224423,
"month":751608.5707547824
},
"volumeDenominatedA":{
"day":10768.633263887014,
"week":128483.41327224423,
"month":751608.5707547824
},
"volumeDenominatedB":{
"day":20919.649754649086,
"week":249597.8773788227,
"month":1429525.1103978397
},
"priceRange":{
"day":{
"min":2.524061170975289,
"max":2.7271954080904757
},
"week":{
"min":1.8398194088152893,
"max":2.9641075540776027
},
"month":{
"min":1.304287151959406,
"max":2.9641075540776027
}
},
"feeApr":{
"day":3.271927312244085,
"week":2.5039877536413675,
"month":2.890591515745266
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":3.271927312244085,
"week":2.5039877536413675,
"month":2.890591515745266
}
},
{
"address":"6EfX4sGXsqpAKrE5JaGg3JZgsPeraut3WpQN9FZd9nwg",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e",
"symbol":"CELO",
"name":"CELO (Allbridge from Celo)",
"decimals":9,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/GNCjk3FmPPgZTkbQRSxr6nCvLtYMbXKMnRxg8BgJs62e/logo.png",
"coingeckoId":"celo",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.326820031553818,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":40343.88626107634,
"volume":{
"day":10408.737979225789,
"week":172284.98444810882,
"month":255095.06371204794
},
"volumeDenominatedA":{
"day":10408.737979225789,
"week":172284.98444810882,
"month":255095.06371204794
},
"volumeDenominatedB":{
"day":13196.855986623324,
"week":218433.79408311774,
"month":322853.58081200044
},
"priceRange":{
"day":{
"min":1.3242328096864584,
"max":1.355967448457154
},
"week":{
"min":1.272044727786765,
"max":1.4649116457069502
},
"month":{
"min":1.201383572391151,
"max":1.4649116457069502
}
},
"feeApr":{
"day":0.2838313988051764,
"week":0.6224366926613204,
"month":0.4204666108115018
},
"reward0Apr":{
"day":0.3088494692308338,
"week":0.3258216810523431,
"month":0.38601547347518056
},
"reward1Apr":{
"day":0.21601439242477133,
"week":0.22788503618484862,
"month":0.2660463208910984
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.8086952604607816,
"week":1.1761434098985122,
"month":1.0725284051777808
}
},
{
"address":"5AX84BrKDWpUZ87fbQpkm7XsSx8bWwANePRmAx17tQjM",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT",
"symbol":"STEP",
"name":"Step Finance",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762",
"coingeckoId":"step-finance",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1212.738387299149,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":388153.0928271059,
"volume":{
"day":10138.988356885067,
"week":63993.028008145375,
"month":146418.38001738375
},
"volumeDenominatedA":{
"day":295.1467331214949,
"week":1862.8419813038477,
"month":4267.997634814263
},
"volumeDenominatedB":{
"day":114842.16624444516,
"week":724835.4275903995,
"month":1658449.8716560986
},
"priceRange":{
"day":{
"min":1149.715249202202,
"max":1217.040826102155
},
"week":{
"min":1106.377633767034,
"max":1252.7640682022666
},
"month":{
"min":998.0820570012918,
"max":1423.7190924754714
}
},
"feeApr":{
"day":0.028541134491835818,
"week":0.021523746887295598,
"month":0.01889882769363245
},
"reward0Apr":{
"day":0.07979689088269255,
"week":0.08011384726655023,
"month":0.08119123868167451
},
"reward1Apr":{
"day":0.013935975175447287,
"week":0.013991329416048453,
"month":0.014064587756601181
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.12227400054997566,
"week":0.11562892356989428,
"month":0.11415465413190815
}
},
{
"address":"2Ap6aVgADL2xDpazbv6SN9J1S6jraGp3aq7bh4kvyVgE",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"USDrbBQwQbQ2oWHUPfA8QBHcyVxKUq1xHyXsSLKdUq2",
"symbol":"USDr",
"name":"Ratio Stable Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/26066/large/usdr_logo.png?1655469254",
"coingeckoId":"ratio-stable-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":31.138872862959776,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":19844.552579390296,
"volume":{
"day":8920.619657528425,
"week":88868.85567647796,
"month":183466.45982931516
},
"volumeDenominatedA":{
"day":259.6799263065521,
"week":2586.979243481089,
"month":5329.426203250553
},
"volumeDenominatedB":{
"day":8993.536989582419,
"week":89595.27156544036,
"month":184914.3946871632
},
"feeApr":{
"day":0.49308185508604047,
"week":0.6547908614895307,
"month":0.5895724861949668
},
"reward0Apr":{
"day":0.05475871167102706,
"week":0.056673990315601136,
"month":0.06299604503790146
},
"reward1Apr":{
"day":0.47116257068363177,
"week":0.48764227924899006,
"month":0.5712714771188026
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.0190031374406994,
"week":1.199107131054122,
"month":1.223840008351671
}
},
{
"address":"GE3FFK5V76w7X1KyYMyP8cHQykkuav2tTBXjn9xiwcpq",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GePFQaZKHcWE5vpxHfviQtH5jgxokSs51Y5Q4zgBiMDs",
"symbol":"JFI",
"name":"Jungle DeFi",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/23679/large/logo.png?1644997055",
"coingeckoId":"jungle-defi",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.2766496907020783,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":34459.65716733912,
"volume":{
"day":6556.362602103427,
"week":118725.96645954692,
"month":262069.8552082304
},
"volumeDenominatedA":{
"day":6556.362602103427,
"week":118725.96645954692,
"month":262069.8552082304
},
"volumeDenominatedB":{
"day":7780.329008328779,
"week":140890.1759934284,
"month":333074.04708208056
},
"priceRange":{
"day":{
"min":1.269396345464953,
"max":1.2816820478809523
},
"week":{
"min":1.189280853819317,
"max":1.3974136263683994
},
"month":{
"min":1.1732450102083818,
"max":1.8206216054356057
}
},
"feeApr":{
"day":0.23038015050048527,
"week":0.5980125858540533,
"month":0.5894451062670398
},
"reward0Apr":{
"day":2.968383555452953,
"week":3.2658150874055347,
"month":3.6327976089859466
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":3.1987637059534384,
"week":3.863827673259588,
"month":4.222242715252986
}
},
{
"address":"HZUXGiKoFMqEaBRvJZJs4ueFRdK8zrVMb9akHSatNt64",
"tokenA":{
"mint":"5PmpMzWjraf3kSsGEKtqdUsCoLhptg4yriZ17LKKdBBy",
"symbol":"HDG",
"name":"Hedge Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25482/large/hdg.png?1652011201",
"coingeckoId":"hedge-protocol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.4555686811771833,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":6557.174067477921,
"volume":{
"day":5956.8934456727475,
"week":45666.29759500365,
"month":151168.91197769615
},
"volumeDenominatedA":{
"day":13828.351987795017,
"week":106009.89305622687,
"month":340851.26608258515
},
"volumeDenominatedB":{
"day":5956.8934456727475,
"week":45666.29759500365,
"month":151168.91197769615
},
"priceRange":{
"day":{
"min":0.41834379513766473,
"max":0.45495376764796136
},
"week":{
"min":0.41199678862387806,
"max":0.4613618244565228
},
"month":{
"min":0.1575684694364816,
"max":6.197212354459171
}
},
"feeApr":{
"day":1.2223228907987833,
"week":1.5065937257944617,
"month":1.994151329981735
},
"reward0Apr":{
"day":0.9973560597926624,
"week":1.2790532700971737,
"month":1.4783071671907961
},
"reward1Apr":{
"day":1.9180675920585761,
"week":2.4598142276289447,
"month":2.686972381609467
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":4.137746542650022,
"week":5.24546122352058,
"month":6.159430878781999
}
},
{
"address":"EyQSeSAD3CnehcRw8bChebQgKSaxq88v8fxxcQuCmoue",
"tokenA":{
"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i",
"symbol":"wUST",
"name":"TerraUSD (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065",
"coingeckoId":"terrausd-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W",
"symbol":"wLUNA",
"name":"Terra Classic (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22951/large/LUNA_wh_small.png?1644226405",
"coingeckoId":"luna-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":152.23065176318156,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":7805.808887285768,
"volume":{
"day":4445.07527223915,
"week":18427.441945551596,
"month":57057.6005403816
},
"volumeDenominatedA":{
"day":13656.800211363798,
"week":56615.44015431993,
"month":175300.5749950483
},
"volumeDenominatedB":{
"day":1393996.7192513112,
"week":5778933.323518954,
"month":18647601.90782086
},
"priceRange":{
"day":{
"min":150.5623366940011,
"max":170.55114704468005
},
"week":{
"min":136.1686578936326,
"max":219.97867313515866
},
"month":{
"min":6.5014925867478635,
"max":970.0181941589663
}
},
"feeApr":{
"day":0.6192597575816399,
"week":0.3350486950650277,
"month":0.3302590186502783
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.6192597575816399,
"week":0.3350486950650277,
"month":0.3302590186502783
}
},
{
"address":"5bztdsTnxGD2zoe2bP1hzUUqdUfE9Zt5DokUWnbxqcCk",
"tokenA":{
"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp",
"symbol":"SLND",
"name":"Solend",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597",
"coingeckoId":"solend",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.705446794454967,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1616338.0832391111,
"volume":{
"day":4200.016218309214,
"week":122333.74578683446,
"month":513126.63801190635
},
"volumeDenominatedA":{
"day":6540.557425084678,
"week":190506.61896410657,
"month":784271.0744316151
},
"volumeDenominatedB":{
"day":4200.016218309214,
"week":122333.74578683446,
"month":513126.63801190635
},
"priceRange":{
"day":{
"min":0.6991063710460587,
"max":0.7153405080021918
},
"week":{
"min":0.6199957448041202,
"max":0.7153405080021918
},
"month":{
"min":0.6199957448041202,
"max":0.7426204087253557
}
},
"feeApr":{
"day":0.002840647353359356,
"week":0.010734681143464661,
"month":0.010221526872398945
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0.005338890680295445,
"week":0.0053426627967797765,
"month":0.005300467645255195
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.008179538033654801,
"week":0.01607734394024444,
"month":0.015521994517654139
}
},
{
"address":"2fPqLazJ91cKRoZoH9XHC2YQnRq2wBZZpbcNx4HYoQXY",
"tokenA":{
"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT",
"symbol":"STEP",
"name":"Step Finance",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762",
"coingeckoId":"step-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.025503783462842624,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":703322.5701397321,
"volume":{
"day":4037.671293051411,
"week":24950.259916022,
"month":184001.16678859052
},
"volumeDenominatedA":{
"day":45733.84459625633,
"week":282606.2913044135,
"month":2084142.1098149004
},
"volumeDenominatedB":{
"day":4040.3059326719167,
"week":24966.540325828984,
"month":184164.37124013883
},
"priceRange":{
"day":{
"min":0.025409239934821113,
"max":0.02609176441996925
},
"week":{
"min":0.02532649180990688,
"max":0.026411671394516258
},
"month":{
"min":0.024337693168774467,
"max":0.03237084346164801
}
},
"feeApr":{
"day":0.006280813873904681,
"week":0.004868897000530036,
"month":0.012100503892504269
},
"reward0Apr":{
"day":0.007669108824527564,
"week":0.0076742237871811995,
"month":0.008535579723334179
},
"reward1Apr":{
"day":0,
"week":0,
"month":0.00892237043743732
},
"reward2Apr":{
"day":0.09211559136532031,
"week":0.05553714442580551,
"month":0.03752517252783012
},
"totalApr":{
"day":0.10606551406375256,
"week":0.06808026521351675,
"month":0.06708362658110589
}
},
{
"address":"GWRhd3hqQaBWheXsbzHRu7n2gB7CXV6NN9PuSATLrMBA",
"tokenA":{
"mint":"SNSNkV9zfG5ZKWQs6x4hxvBRV6s8SqMfSGCtECDvdMd",
"symbol":"SNS",
"name":"Synesis One",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/23289/large/sns.png?1643549030",
"coingeckoId":"synesis-one",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00022091162648006033,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":49636.594162533635,
"volume":{
"day":2510.812381551126,
"week":33635.28811117157,
"month":71546.85912125403
},
"volumeDenominatedA":{
"day":337294.168076501,
"week":4518452.515540949,
"month":9541059.766051443
},
"volumeDenominatedB":{
"day":73.08994209393546,
"week":979.1258313134563,
"month":2082.421369520637
},
"priceRange":{
"day":{
"min":0.00021746214817638924,
"max":0.00022610947492806936
},
"week":{
"min":0.00021746214817638924,
"max":0.00023989667356032478
},
"month":{
"min":0.0002139883676121782,
"max":0.0002597784538182522
}
},
"feeApr":{
"day":0.05510630135997843,
"week":0.09509077952662223,
"month":0.07698615754491639
},
"reward0Apr":{
"day":0.04313516912456576,
"week":0.043253251193934666,
"month":0.04383986482185043
},
"reward1Apr":{
"day":0.42166215990493844,
"week":0.4228164556090383,
"month":0.42914550035118976
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.5199036303894826,
"week":0.5611604863295951,
"month":0.5499715227179566
}
},
{
"address":"7wp9f3smjBFGk9AAAZkLJUrSLq8p1SUQ4uuNKrAp75AV",
"tokenA":{
"mint":"SoLW9muuNQmEAoBws7CWfYQnXRXMVEG12cQhy6LE2Zf",
"symbol":"amtSol",
"name":"Amulet Staked Sol",
"decimals":9,
"logoURI":"https://files.amulet.org/public/asset/img/logo/amtSOL.png",
"coingeckoId":"amtSOL",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":30.41553899682883,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":61920.697044,
"volume":{
"day":2372.7305179705504,
"week":172134.2971846372,
"month":172134.2971846372
},
"volumeDenominatedA":{
"day":2.3727305179705502,
"week":172.13429718463723,
"month":172.13429718463723
},
"volumeDenominatedB":{
"day":2372.7305179705504,
"week":172134.2971846372,
"month":172134.2971846372
},
"feeApr":{
"day":0.0295055647761386,
"week":833.1560940158856,
"month":833.1560940158856
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0295055647761386,
"week":833.1560940158856,
"month":833.1560940158856
}
},
{
"address":"GyEEixChou5PomH9ccN8r5uybBSg9K3cLHJBFtmBMmYC",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh",
"symbol":"daoSOL",
"name":"daoSOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503",
"coingeckoId":"daosol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03125392248871565,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":11015.866620168317,
"volume":{
"day":1990.8136421516776,
"week":25679.092821799324,
"month":64290.75248902092
},
"volumeDenominatedA":{
"day":1992.112677193902,
"week":25695.84880574565,
"month":64345.47704706799
},
"volumeDenominatedB":{
"day":55.98792141851269,
"week":722.1766018499367,
"month":1805.144296285954
},
"priceRange":{
"day":{
"min":0.030911941502507298,
"max":0.03203301459598669
},
"week":{
"min":0.029414790998802377,
"max":0.03333723884613965
},
"month":{
"min":0.0014798151210737374,
"max":0.5600398391298544
}
},
"feeApr":{
"day":0.19664387908466183,
"week":0.3275469000249933,
"month":0.3374775487856806
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.19664387908466183,
"week":0.3275469000249933,
"month":0.3374775487856806
}
},
{
"address":"7gkFzzqrKRS26KUEQXSEPDcjivsKN8sEiioUHGstjA2B",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4",
"symbol":"FTM",
"name":"FTM (Allbridge from Fantom)",
"decimals":9,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EsPKhGTMf3bGoy4Qm7pCv3UCcWqAmbC1UGHBTDxRjjD4/logo.png",
"coingeckoId":"fantom",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":4.761973848320175,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":20184.071516459826,
"volume":{
"day":1919.640738624322,
"week":26205.378881274617,
"month":60329.84547884245
},
"volumeDenominatedA":{
"day":1919.640738624322,
"week":26205.378881274617,
"month":60329.84547884245
},
"volumeDenominatedB":{
"day":8435.265175993405,
"week":115151.40070393588,
"month":262721.21951168997
},
"priceRange":{
"day":{
"min":4.726747916715487,
"max":4.882160075213401
},
"week":{
"min":4.623225360446277,
"max":5.174155603626774
},
"month":{
"min":3.9471498708888846,
"max":5.174155603626774
}
},
"feeApr":{
"day":0.10424385978349336,
"week":0.17471325624087417,
"month":0.17081098006493925
},
"reward0Apr":{
"day":0.3063835206668227,
"week":0.29921961471553177,
"month":0.30746550846831777
},
"reward1Apr":{
"day":0.21428999149636327,
"week":0.2092794304125244,
"month":0.2120067262960102
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.6249173719466793,
"week":0.6832123013689303,
"month":0.6902832148292672
}
},
{
"address":"ACWqC57o4SRRQNWKs5RU4jKWV4LmdTWsP9E4noRFkS1j",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Hg35Vd8K3BS2pLB3xwC2WqQV8pmpCm3oNRGYP1PEpmCM",
"symbol":"eSOL",
"name":"Eversol Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/23056/large/SUWTLy9j_400x400.jpeg?1657789195",
"coingeckoId":"eversol-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.031228502348527323,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":39928.69204529598,
"volume":{
"day":1649.4081439141373,
"week":19756.434457485757,
"month":52706.83805839911
},
"volumeDenominatedA":{
"day":1650.4844068714067,
"week":19769.325820155904,
"month":52751.90282588808
},
"volumeDenominatedB":{
"day":45.969443979245476,
"week":550.6170867253236,
"month":1466.7349972818622
},
"priceRange":{
"day":{
"min":0.03081828834582551,
"max":0.031829697208608364
},
"week":{
"min":0.028938410813679854,
"max":0.033229297633021314
},
"month":{
"min":0.02722597696123656,
"max":0.033229297633021314
}
},
"feeApr":{
"day":0.04506001605162763,
"week":0.06953117186053723,
"month":0.0744189884913138
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.04506001605162763,
"week":0.06953117186053723,
"month":0.0744189884913138
}
},
{
"address":"6mPWsaeCR4hEJGk9Kk6rDGGBSaTpMY3R5EA5gVwQ8zeX",
"tokenA":{
"mint":"iRAYYHCNhEpbDiVt6QKK3Q57DMgw4p8zEKsVz3WfMjW",
"symbol":"I-RAY-Q4",
"name":"I-RAY-Q4",
"decimals":6,
"logoURI":null,
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03679700938889393,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2208.442982294408,
"volume":{
"day":1529.4697248569546,
"week":6471.805707865508,
"month":22622.292019641707
},
"volumeDenominatedA":{
"day":37934.91457089818,
"week":160517.9838850949,
"month":558452.5073842573
},
"volumeDenominatedB":{
"day":1529.4697248569546,
"week":6471.805707865508,
"month":22622.292019641707
},
"feeApr":{
"day":0.80233797137553,
"week":0.44222160737209243,
"month":0.7370053992263914
},
"reward0Apr":{
"day":6.411355578060453,
"week":8.675630864182077,
"month":8.291880966025424
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":7.213693549435983,
"week":9.11785247155417,
"month":9.028886365251815
}
},
{
"address":"HcKo7AZ7gYtTUhZqBWUhYxWzz4SPy2WBMhwWKyQYGRBG",
"tokenA":{
"mint":"9nEqaUcb16sQ3Tn1psbkWqyhPdLmfHWjKGymREjsAgTE",
"symbol":"WOOF",
"name":"WOOF",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/18319/large/woof-logo-svg-true-solana-radient-blackinside.png?1637655115",
"coingeckoId":"woof-token",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00009202865494856407,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1676.820922000443,
"volume":{
"day":1452.1058168199775,
"week":7656.473226600768,
"month":37788.41420199631
},
"volumeDenominatedA":{
"day":19087927.575276162,
"week":100644322.70607352,
"month":501412101.8470306
},
"volumeDenominatedB":{
"day":1452.1058168199775,
"week":7656.473226600768,
"month":37788.41420199631
},
"priceRange":{
"day":{
"min":0.00007969897295664972,
"max":0.00009285017490224203
},
"week":{
"min":0.00006783117842191446,
"max":0.00009285017490224203
},
"month":{
"min":0.0000662488797207546,
"max":0.00009285017490224203
}
},
"feeApr":{
"day":0.9581265494783936,
"week":0.7744419328967115,
"month":1.2965939235365767
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.9581265494783936,
"week":0.7744419328967115,
"month":1.2965939235365767
}
},
{
"address":"5tvF8KfcaYoqYRz1CTTuvHKmCcTqeaSLXvQSGQkGy16U",
"tokenA":{
"mint":"CLAsHPfTPpsXmzZzdexdEuKeRzZrWjZFRHQEPu2kSgWM",
"symbol":"CLH",
"name":"Clash",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/27836/large/New-Clash-Icon_copy.png?1665996878",
"coingeckoId":"clash",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0036066267013853755,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1113.080108459656,
"volume":{
"day":1121.4985704056814,
"week":1131.2445075389141,
"month":1350.665346137028
},
"volumeDenominatedA":{
"day":436531.1076218686,
"week":440324.6075369369,
"month":525853.5652768079
},
"volumeDenominatedB":{
"day":1121.4985704056814,
"week":1131.2445075389141,
"month":1350.665346137028
},
"priceRange":{
"day":{
"min":0.002823232140392419,
"max":0.002823232140392419
},
"week":{
"min":0.002823232140392419,
"max":0.002823232140392419
},
"month":{
"min":0.002823232140392419,
"max":0.002823232140392419
}
},
"feeApr":{
"day":1.1229525965329616,
"week":0.14769115289706494,
"month":0.08684830430551137
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.1229525965329616,
"week":0.14769115289706494,
"month":0.08684830430551137
}
},
{
"address":"3dvV75ULxUzuyg57ZwQiay5xfNNdxT6Y98LA11vQyneF",
"tokenA":{
"mint":"MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey",
"symbol":"MNDE",
"name":"Marinade",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18867/large/MNDE.png?1643187748",
"coingeckoId":"marinade",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.057038869849276704,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":4153.167879540093,
"volume":{
"day":1039.9294574651265,
"week":6791.858691025161,
"month":11322.130648689503
},
"volumeDenominatedA":{
"day":17956.78452573995,
"week":117277.1308366394,
"month":188680.65790384635
},
"volumeDenominatedB":{
"day":1039.9294574651265,
"week":6791.858691025161,
"month":11322.130648689503
},
"priceRange":{
"day":{
"min":0.022441551207335843,
"max":0.15748830311156564
},
"week":{
"min":0.0025607594796496044,
"max":0.27249493069998965
},
"month":{
"min":0.0025607594796496044,
"max":0.27249493069998965
}
},
"feeApr":{
"day":0.27313147157326056,
"week":0.2541291181316132,
"month":0.326810468862621
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.27313147157326056,
"week":0.2541291181316132,
"month":0.326810468862621
}
},
{
"address":"6jwmmjnx3mDbA6QauSZ7DY8Z1B8wZncxXM1tJd2unpuS",
"tokenA":{
"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y",
"symbol":"SHDW",
"name":"GenesysGo Shadow",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974",
"coingeckoId":"genesysgo-shadow",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.007806112294145142,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":12281.843727782209,
"volume":{
"day":730.3637442793756,
"week":12114.850483749402,
"month":27124.304409128225
},
"volumeDenominatedA":{
"day":2722.6891739211915,
"week":45162.38999284322,
"month":100586.15125155302
},
"volumeDenominatedB":{
"day":21.260944931262063,
"week":352.6642320390753,
"month":789.6011479751812
},
"priceRange":{
"day":{
"min":0.008007071794601058,
"max":0.008152481305711364
},
"week":{
"min":0.00757961221912744,
"max":0.012187462534518618
},
"month":{
"min":0.007193173610135218,
"max":0.012187462534518618
}
},
"feeApr":{
"day":0.06491599929269294,
"week":0.13958458379793498,
"month":0.12639082056326206
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.06491599929269294,
"week":0.13958458379793498,
"month":0.12639082056326206
}
},
{
"address":"EYh4771fqdF57MmC6UzjA6B41ttsZvSfhn4a4eNv959B",
"tokenA":{
"mint":"jJF1SrhzpyqYawE9ruSVKrHjfxjaG5TUMFB5vnXUWVm",
"symbol":"J-JFI",
"name":"Jungle-Staked JFI",
"decimals":9,
"logoURI":null,
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GePFQaZKHcWE5vpxHfviQtH5jgxokSs51Y5Q4zgBiMDs",
"symbol":"JFI",
"name":"Jungle DeFi",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/23679/large/logo.png?1644997055",
"coingeckoId":"jungle-defi",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9308566133042765,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":81037.8363070431,
"volume":{
"day":703.6561701183663,
"week":65635.59387677313,
"month":204699.40907511348
},
"volumeDenominatedA":{
"day":897.2159464458048,
"week":83690.44994059432,
"month":278848.70200734417
},
"volumeDenominatedB":{
"day":835.0173479583111,
"week":77888.69316875664,
"month":258579.24868499796
},
"feeApr":{
"day":0.00031792313756174694,
"week":0.004155600841321409,
"month":0.00618905417166812
},
"reward0Apr":{
"day":0.6793026876947741,
"week":0.7247246410290402,
"month":0.8072775177759349
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.6796206108323358,
"week":0.7288802418703616,
"month":0.8134665719476031
}
},
{
"address":"DxD41srN8Xk9QfYjdNXF9tTnP6qQxeF2bZF8s1eN62Pe",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm",
"symbol":"scnSOL",
"name":"Socean Staked Sol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18468/large/biOTzfxE_400x400.png?1633662119",
"coingeckoId":"socean-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9371381745138534,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1297.2032336513844,
"volume":{
"day":499.36549157353625,
"week":6873.344026677067,
"month":21160.23119647455
},
"volumeDenominatedA":{
"day":14.53656797736171,
"week":200.0835747795578,
"month":613.2395248008733
},
"volumeDenominatedB":{
"day":10.32778631403009,
"week":142.15325161266668,
"month":437.6320547581941
},
"priceRange":{
"day":{
"min":0.9332419248339079,
"max":0.9627811225542761
},
"week":{
"min":0.9093736651934632,
"max":0.9641977557993454
},
"month":{
"min":0.8907059769776712,
"max":0.9743891218795789
}
},
"feeApr":{
"day":0.014090017294943519,
"week":0.02536997097448974,
"month":0.027246314605066147
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.014090017294943519,
"week":0.02536997097448974,
"month":0.027246314605066147
}
},
{
"address":"9DwqiMmwh4sqaGFFWPAaRpTQufXzAciwKgRL3sreFyfP",
"tokenA":{
"mint":"Lrxqnh6ZHKbGy3dcrCED43nsoLkM1LTzU2jRfWe8qUC",
"symbol":"LARIX",
"name":"Larix",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/18450/large/larix.PNG?1632092483",
"coingeckoId":"larix",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0005615501454406059,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":18425.763301087463,
"volume":{
"day":419.7662728349069,
"week":13524.135285931747,
"month":35554.883281167036
},
"volumeDenominatedA":{
"day":692964.6670461833,
"week":22326109.81871122,
"month":56753796.257084616
},
"volumeDenominatedB":{
"day":419.7662728349069,
"week":13524.135285931747,
"month":35554.883281167036
},
"priceRange":{
"day":{
"min":0.0005610285777575818,
"max":0.0005676990245296023
},
"week":{
"min":0.0005560137985332717,
"max":0.0005900767225273029
},
"month":{
"min":0.0005560137985332717,
"max":0.0008367356718443717
}
},
"feeApr":{
"day":0.024942068686655883,
"week":0.10983161650190555,
"month":0.10085068203667082
},
"reward0Apr":{
"day":0.23454203744655283,
"week":0.24372861341962584,
"month":0.24308206262742185
},
"reward1Apr":{
"day":0.4292597496150342,
"week":0.4460730567089444,
"month":0.45615219801019363
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.6887438557482429,
"week":0.7996332866304758,
"month":0.8000849426742863
}
},
{
"address":"6jYALVrSAEw4oFXHnH5uSnx5Sgs2b6hCZgc9eequnTDy",
"tokenA":{
"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk",
"symbol":"POLIS",
"name":"Star Atlas DAO",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006",
"coingeckoId":"star-atlas-dao",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"ATLASXmbPQxBUYbxPsV97usA3fPQYEqzQBUHgiFCUsXx",
"symbol":"ATLAS",
"name":"Star Atlas",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/17659/large/Icon_Reverse.png?1628759092",
"coingeckoId":"star-atlas",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":78.56070287810591,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2274.1475573894268,
"volume":{
"day":290.3431299315601,
"week":3324.1716537521543,
"month":3324.1716537521543
},
"volumeDenominatedA":{
"day":875.1609595779423,
"week":10019.81777555847,
"month":10019.81777555847
},
"volumeDenominatedB":{
"day":67063.20941323663,
"week":767814.3436480652,
"month":767814.3436480652
},
"priceRange":{
"day":{
"min":77.72632782564074,
"max":78.76232653407813
},
"week":{
"min":75.53889997720299,
"max":80.62372320724836
},
"month":{
"min":69.5030361970642,
"max":84.67706005738665
}
},
"feeApr":{
"day":0.14027443572591802,
"week":0.3048267585683501,
"month":0.3048267585683501
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.14027443572591802,
"week":0.3048267585683501,
"month":0.3048267585683501
}
},
{
"address":"E662YnSzFiQWPvkJfQWXrXjHyh8nStFVpYfY9jfBFWW2",
"tokenA":{
"mint":"MNDEFzGvMt87ueuHvVU9VcTqsAP5b3fTGPsHuuPA5ey",
"symbol":"MNDE",
"name":"Marinade",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18867/large/MNDE.png?1643187748",
"coingeckoId":"marinade",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0017332188368047296,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":504.5446229135737,
"volume":{
"day":180.05898495895224,
"week":294.8494462655881,
"month":294.8494462655881
},
"volumeDenominatedA":{
"day":3109.134347162949,
"week":5091.256850277708,
"month":5091.256850277708
},
"volumeDenominatedB":{
"day":4.910234770313297,
"week":8.040587385244681,
"month":8.040587385244681
},
"priceRange":{
"day":{
"min":0.0006772482414631774,
"max":0.00481535317548883
},
"week":{
"min":0.00008019123359730122,
"max":0.008342379542249234
},
"month":{
"min":0.00008019123359730122,
"max":0.008342379542249234
}
},
"feeApr":{
"day":0.3929693066738573,
"week":0.07430129396032828,
"month":0.03400701157500644
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.3929693066738573,
"week":0.07430129396032828,
"month":0.03400701157500644
}
},
{
"address":"CeGZNd2ap2ke8JreVqDXikSrxhnSERh9G8WAt4yqMcBs",
"tokenA":{
"mint":"AUrMpCDYYcPuHhyNX8gEEqbmDPFUpBpHrNW3vPeCFn5Z",
"symbol":"AVAX",
"name":"AVAX (Allbridge from Avalanche)",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/12559/small/coin-round-red.png",
"coingeckoId":"avalanche-2",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":16.170895332166896,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":396.3862865111013,
"volume":{
"day":161.70889837798225,
"week":819.0366937889307,
"month":3358.235883545969
},
"volumeDenominatedA":{
"day":9.273671021638627,
"week":46.97006119660322,
"month":189.71584390315033
},
"volumeDenominatedB":{
"day":161.70889837798225,
"week":819.0366937889307,
"month":3358.235883545969
},
"priceRange":{
"day":{
"min":15.571744223753285,
"max":16.20209438282311
},
"week":{
"min":14.918697064780723,
"max":16.711795415500724
},
"month":{
"min":14.918697064780723,
"max":18.62928616267228
}
},
"feeApr":{
"day":0.7847777834024013,
"week":0.4993057441814151,
"month":0.3317952860761214
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.7847777834024013,
"week":0.4993057441814151,
"month":0.3317952860761214
}
},
{
"address":"HZ79XxH47FqjKyXC3cGEsqLiTZptaKEyJ3Qkr1cBd3Po",
"tokenA":{
"mint":"AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3",
"symbol":"FTT",
"name":"FTX",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/9026/large/F.png?1609051564",
"coingeckoId":"ftx-token",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":24.1757711151762,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":359.81069660043295,
"volume":{
"day":108.88651207245506,
"week":374.03405830679725,
"month":616.6832730838876
},
"volumeDenominatedA":{
"day":4.364114494057909,
"week":14.99108956710648,
"month":24.716343274157236
},
"volumeDenominatedB":{
"day":108.88651207245506,
"week":374.03405830679725,
"month":616.6832730838876
},
"priceRange":{
"day":{
"min":23.535640594702148,
"max":24.22673183557146
},
"week":{
"min":22.319508459961042,
"max":24.22673183557146
},
"month":{
"min":22.319508459961042,
"max":25.408476159850675
}
},
"feeApr":{
"day":0.3302536465099179,
"week":0.16254744723377265,
"month":0.12261545874473863
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.3302536465099179,
"week":0.16254744723377265,
"month":0.12261545874473863
}
},
{
"address":"6wKCFZ4VnYtNVmQYAZzs5CHsodG32vPcBQifQkGFYDkK",
"tokenA":{
"mint":"ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo",
"symbol":"wstETH",
"name":"Lido Wrapped Staked ETH",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ZScHuTtqZukUrtZS43teTKGs2VqkKL8k4QCouR2n6Uo/logo.png",
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":43.95358496670178,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":12461.564155245556,
"volume":{
"day":108.48131242362052,
"week":2117.768005515362,
"month":8858.323668579435
},
"volumeDenominatedA":{
"day":0.07329459801905386,
"week":1.430854321302112,
"month":6.009162458858447
},
"volumeDenominatedB":{
"day":2.9786150257736965,
"week":58.148407881515965,
"month":243.57171556380928
},
"feeApr":{
"day":0.009496887247918202,
"week":0.02340486164661537,
"month":0.0430535906946411
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.009496887247918202,
"week":0.02340486164661537,
"month":0.0430535906946411
}
},
{
"address":"5rnFMYT3tmYRChrtNjuvyrB4jzVD2WYuBSvHWqKc2sAw",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh",
"symbol":"daoSOL",
"name":"daoSOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503",
"coingeckoId":"daosol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03131844321996785,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1237.4678845246608,
"volume":{
"day":95.16783641663514,
"week":339.52476668049957,
"month":819.9158410379143
},
"volumeDenominatedA":{
"day":95.16783641663514,
"week":339.52476668049957,
"month":819.9158410379143
},
"volumeDenominatedB":{
"day":2.6764179399060426,
"week":9.548500951601559,
"month":23.06659417617027
},
"priceRange":{
"day":{
"min":0.031017118067352665,
"max":0.03213750917202001
},
"week":{
"min":0.029518487045780743,
"max":0.03307302226020978
},
"month":{
"min":0.0014784939297647695,
"max":0.5604042845852687
}
},
"feeApr":{
"day":0.08448830516116794,
"week":0.04020002093878816,
"month":0.040286693883641686
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.08448830516116794,
"week":0.04020002093878816,
"month":0.040286693883641686
}
},
{
"address":"7GZXejXCyJ3R78d71328wqMWT7Ejwu7pxxWRWvHSeVfb",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HBB111SCo9jkCejsZfz8Ec8nH7T6THF8KEKSnvwT6XK6",
"symbol":"HBB",
"name":"Hubble",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22070/large/hubble.PNG?1640749942",
"coingeckoId":"hubble",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":5.800100968145632,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1384.7180257083528,
"volume":{
"day":89.77636406313944,
"week":65660.65656772869,
"month":259703.51769264007
},
"volumeDenominatedA":{
"day":89.83494445480035,
"week":65703.5011072538,
"month":259903.43676664756
},
"volumeDenominatedB":{
"day":108.52200269581623,
"week":216023.97117368376,
"month":1210818.7759660983
},
"priceRange":{
"day":{
"min":5.706602858915483,
"max":5.843636652289024
},
"week":{
"min":5.31113271263761,
"max":5.843636652289024
},
"month":{
"min":3.467821897297942,
"max":5.843636652289024
}
},
"feeApr":{
"day":0.0006397341585187745,
"week":0.08160195650769217,
"month":0.1343336772667624
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0006397341585187745,
"week":0.08160195650769217,
"month":0.1343336772667624
}
},
{
"address":"53izNbSmy63u7XqoyAVQEvRyuhYcMNphTtZEqxdgcxdF",
"tokenA":{
"mint":"iJF17JCu78E51eAgwtCwvgULHh2ZqCeRrcFP7wgcc6w",
"symbol":"I-JFI-Q4",
"name":"I-JFI-Q4",
"decimals":9,
"logoURI":null,
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.08125501501765017,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":5362.924600049218,
"volume":{
"day":79.55349398968397,
"week":7368.394375060273,
"month":67561.98569827934
},
"volumeDenominatedA":{
"day":973.0894478308242,
"week":90129.37652690578,
"month":878930.5977923851
},
"volumeDenominatedB":{
"day":79.55349398968397,
"week":7368.394375060273,
"month":67561.98569827934
},
"feeApr":{
"day":0.016782946799159145,
"week":0.21569313589160372,
"month":0.28541708165893886
},
"reward0Apr":{
"day":2.716490220682659,
"week":2.8775768951915723,
"month":2.8026206453254434
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":2.7332731674818183,
"week":3.093270031083176,
"month":3.0880377269843824
}
},
{
"address":"HPh1hkQFYchT3bfeYQTx4uLRXuj7eRMjdJZJjtRY6gDq",
"tokenA":{
"mint":"5Wsd311hY8NXQhkt9cWHwTnqafk7BGEbLu8Py3DSnPAr",
"symbol":"CMFI",
"name":"Compendium.Fi",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22269/large/ckxanb97x357108l6qrnrjxtr.png?1641340080",
"coingeckoId":"compendium-fi",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.017802157624697463,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":46796.41604677667,
"volume":{
"day":66.99032335173496,
"week":375.79465335892235,
"month":516.3990141011993
},
"volumeDenominatedA":{
"day":3748.0081872866517,
"week":21025.147619194355,
"month":28792.700526575358
},
"volumeDenominatedB":{
"day":66.99032335173496,
"week":375.79465335892235,
"month":516.3990141011993
},
"priceRange":{
"day":{
"min":0.017677650830724367,
"max":0.017852412215755866
},
"week":{
"min":0.01758883016641088,
"max":0.01798219560816183
},
"month":{
"min":0.01758883016641088,
"max":0.018215595679383904
}
},
"feeApr":{
"day":0.0015577450880667476,
"week":0.0011093942690291309,
"month":0.0006917438245746418
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0015577450880667476,
"week":0.0011093942690291309,
"month":0.0006917438245746418
}
},
{
"address":"94kzEWvzeFNbQstgiE7EX1M9B1XsFzFtKA4jXrC5GRF2",
"tokenA":{
"mint":"jRAYPwLn4ZRGRSKu7GWu6B3Qx3Vj2JU88agUweEceyo",
"symbol":"J-RAY",
"name":"Jungle-Staked RAY",
"decimals":6,
"logoURI":null,
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
"symbol":"RAY",
"name":"Raydium",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614",
"coingeckoId":"raydium",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9357391823294934,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":81333.54998931738,
"volume":{
"day":62.02157792298658,
"week":35665.62082230341,
"month":139647.12712486277
},
"volumeDenominatedA":{
"day":113.83144792363802,
"week":65458.98049126503,
"month":256510.60696901073
},
"volumeDenominatedB":{
"day":106.51672465506974,
"week":61252.6356149579,
"month":239633.12280489918
},
"feeApr":{
"day":0.000027776081502952963,
"week":0.0021352979799458016,
"month":0.004222904527373008
},
"reward0Apr":{
"day":1.3523778896580505,
"week":1.419348643311181,
"month":1.4434709430174257
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":1.3524056657395536,
"week":1.4214839412911269,
"month":1.4476938475447987
}
},
{
"address":"ACzntjZuqxCDEAmCEZ9TWJU24jv5DZYCSiDPsNe3PQnk",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GEJpt3Wjmr628FqXxTgxMce1pLntcPV4uFi8ksxMyPQh",
"symbol":"daoSOL",
"name":"daoSOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25488/large/logo_%284%29.png?1652071503",
"coingeckoId":"daosol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9659460335618648,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1205.6031655126483,
"volume":{
"day":21.25864904249131,
"week":487.197981814682,
"month":19064.24104789187
},
"volumeDenominatedA":{
"day":0.6188409133744539,
"week":14.182370829762554,
"month":559.2160154687627
},
"volumeDenominatedB":{
"day":0.5978598633513189,
"week":13.701534761243206,
"month":541.0829153773228
},
"priceRange":{
"day":{
"min":0.9571061672851625,
"max":0.9661313785317579
},
"week":{
"min":0.9410588884852898,
"max":0.9709815728487962
},
"month":{
"min":0.050845556678675616,
"max":18.36700298499124
}
},
"feeApr":{
"day":0.0006406196961801021,
"week":0.0019529877357664063,
"month":0.03150496241133208
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0006406196961801021,
"week":0.0019529877357664063,
"month":0.03150496241133208
}
},
{
"address":"4RGgiAMx3YED2nPTvTrVuy7u93pw9AtJBQjGJ4gLiTiz",
"tokenA":{
"mint":"kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5",
"symbol":"depKI",
"name":"Genopets Ki",
"decimals":9,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/kiTkNc7nYAu8dLKjQFYPx3BqdzwagZGBUrcb7d4nbN5/logo.png",
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0007880521656817288,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":311.0518889190406,
"volume":{
"day":14.821010239265869,
"week":25.718215576519746,
"month":25.718993618627692
},
"volumeDenominatedA":{
"day":19049.302505298707,
"week":33055.37615213718,
"month":33056.37615213718
},
"volumeDenominatedB":{
"day":14.821010239265869,
"week":25.718215576519746,
"month":25.718993618627692
},
"feeApr":{
"day":0.05212780172616088,
"week":0.010577252973176658,
"month":0.004841274288073422
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.05212780172616088,
"week":0.010577252973176658,
"month":0.004841274288073422
}
},
{
"address":"99NGdDEUbCrXdrhsrW63jRUAtYSRC8zme2TXeE82jTmC",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh",
"symbol":"svtOKAY",
"name":"Okay Bears Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh/logo.png",
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":2.2808914943770984,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":7890.270607892094,
"volume":{
"day":11.071815801276562,
"week":2184.7794227061163,
"month":3589.238198275661
},
"volumeDenominatedA":{
"day":0.32230141197969303,
"week":63.59909751399331,
"month":103.66650730224026
},
"volumeDenominatedB":{
"day":0.6032222222222222,
"week":119.03264307180898,
"month":193.9618364647954
},
"feeApr":{
"day":0.0015343687954848149,
"week":0.02646402998535025,
"month":0.019118161218403287
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0.05755759711927976
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0015343687954848149,
"week":0.02646402998535025,
"month":0.07667575833768304
}
},
{
"address":"B5oDCz864YBrEanXu3aNnD9vbRi72mzK338QzrQ3KYBU",
"tokenA":{
"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT",
"symbol":"STEP",
"name":"Step Finance",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762",
"coingeckoId":"step-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HBB111SCo9jkCejsZfz8Ec8nH7T6THF8KEKSnvwT6XK6",
"symbol":"HBB",
"name":"Hubble",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22070/large/hubble.PNG?1640749942",
"coingeckoId":"hubble",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.11090053720549378,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":508.4262532088511,
"volume":{
"day":10.61833048004214,
"week":545.1596673145141,
"month":545.1596673145141
},
"volumeDenominatedA":{
"day":120.27157259721884,
"week":6174.907687016446,
"month":6174.907687016446
},
"volumeDenominatedB":{
"day":12.835477366512347,
"week":658.9910329220679,
"month":658.9910329220679
},
"priceRange":{
"day":{
"min":0.1464350080132868,
"max":0.15065558023820946
},
"week":{
"min":0.1387732023413197,
"max":0.15081404543926502
},
"month":{
"min":0.1051210413860252,
"max":0.15081404543926502
}
},
"feeApr":{
"day":0.022846595871722383,
"week":0.4621669673305333,
"month":0.4621669673305333
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.022846595871722383,
"week":0.4621669673305333,
"month":0.4621669673305333
}
},
{
"address":"7yPe2XMn5mE8aHAbAZp8sk4Y5ec2F6erhREipG3P5YN1",
"tokenA":{
"mint":"isktkk27QaTpoRUhwwS5n9YUoYf8ydCuoTz5R2tFEKu",
"symbol":"ISKT",
"name":"Rafkróna",
"decimals":2,
"logoURI":"https://rafmyntasjodur.github.io/iskt-metadata/logo.png",
"coingeckoId":"ISKT",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":0.006916256189697162,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":975.9933225171542,
"volume":{
"day":1.9630850477682769,
"week":8.192927174329974,
"month":8.192927174329974
},
"volumeDenominatedA":{
"day":283.79990716578664,
"week":1184.4377166105128,
"month":1184.4377166105128
},
"volumeDenominatedB":{
"day":1.9630850477682769,
"week":8.192927174329974,
"month":8.192927174329974
},
"feeApr":{
"day":0.0021878846889976013,
"week":0.0034716214203434513,
"month":0.0034716214203434513
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0021878846889976013,
"week":0.0034716214203434513,
"month":0.0034716214203434513
}
},
{
"address":"CjC6wbikEuEaskpRbuh6CVzHDpgiD3fjYKka8niSojTt",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EdAhkbj5nF9sRM7XN7ewuW8C9XEUMs8P7cnoQ57SYE96",
"symbol":"FAB",
"name":"Fabric",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/16649/large/FABLOGO_TRANS200.png?1624592643",
"coingeckoId":"fabric",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":537631.4491119172,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":272.5697410481776,
"volume":{
"day":1.1217514624549416,
"week":100.38816428847841,
"month":613.0221694097648
},
"volumeDenominatedA":{
"day":1.1217514624549416,
"week":100.38816428847841,
"month":613.0221694097648
},
"volumeDenominatedB":{
"day":552257.7101527387,
"week":49422835.264294505,
"month":295275479.705032
},
"priceRange":{
"day":{
"min":523351.7347287768,
"max":543331.2698144043
},
"week":{
"min":456235.89565288275,
"max":550063.8100672207
},
"month":{
"min":276456.1530624531,
"max":608094.1930011159
}
},
"feeApr":{
"day":0.004497466607611938,
"week":0.05235827274111287,
"month":0.05093994469357077
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.004497466607611938,
"week":0.05235827274111287,
"month":0.05093994469357077
}
},
{
"address":"83v8iPyZihDEjDdY8RdZddyZNyUtXngz69Lgo9Kt5d6d",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":30.42985428486959,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":13.5599422156661,
"volume":{
"day":0.09160630713773524,
"week":16.12890584727579,
"month":41.71439700531855
},
"volumeDenominatedA":{
"day":0.0026666666666666666,
"week":0.4695136932882455,
"month":1.213065357595802
},
"volumeDenominatedB":{
"day":0.09160630713773524,
"week":16.12890584727579,
"month":41.71439700531855
},
"priceRange":{
"day":{
"min":29.8410043023991,
"max":31.119901402778147
},
"week":{
"min":28.453973183378523,
"max":32.6343564602958
},
"month":{
"min":28.453973183378523,
"max":35.0349194796623
}
},
"feeApr":{
"day":0.0002445344714133102,
"week":0.00570010062009918,
"month":0.004714448037996487
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0.0002445344714133102,
"week":0.00570010062009918,
"month":0.004714448037996487
}
},
{
"address":"2B6rktciJxwjZYxT8xnFLW8uKmRQozXRtMzxmMf73PDF",
"tokenA":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.8306134783941547,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.8246504688970124,
"max":0.8297573466369795
},
"week":{
"min":0.8200891705050353,
"max":0.835374430873075
},
"month":{
"min":0.8176057834865429,
"max":0.8621921179216209
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2LHbbgcpUZSoTBpujNXzw5cr4fx99g85L6E3JrqAwd52",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg",
"symbol":"svtAURY",
"name":"Aurory - Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/HYtdDGdMFqBrtyUe5z74bKCtH2WUHZiWRicjNVaHSfkg/logo.png",
"coingeckoId":"svtAURY",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.19655392848619835,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0000017820846766711459,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2TfyAUoWzbGVec82aTFuv7RrwQ8L2p8SY3CWEbT7rE5Y",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o",
"symbol":"DAI",
"name":"Dai Stablecoin (Portal)",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png",
"coingeckoId":"dai",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9981785615920693,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":21.459389067437684,
"volume":{
"day":0,
"week":57280.96490392646,
"month":147957.14518385218
},
"volumeDenominatedA":{
"day":0,
"week":57318.34157198177,
"month":148053.22227880443
},
"volumeDenominatedB":{
"day":0,
"week":57109.36291726633,
"month":147513.89601553424
},
"priceRange":{
"day":{
"min":0.9887658029416138,
"max":1.0068363897927568
},
"week":{
"min":0.9887658029416138,
"max":1.0169317889542446
},
"month":{
"min":0.972178783483735,
"max":1.0169317889542446
}
},
"feeApr":{
"day":0,
"week":0.0022822536772149323,
"month":0.003134211421659799
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.0022822536772149323,
"month":0.003134211421659799
}
},
{
"address":"2ofRuCsErorddmxrEfK4p8wdp9k3ziRLmKPixpxEW9m8",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HonyeYAaTPgKUgQpayL914P6VAqbQZPrbkGMETZvW4iN",
"symbol":"HONEY",
"name":"Honey Finance",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24781/large/honey.png?1648902423",
"coingeckoId":"honey-finance",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":132.86791790278565,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.00012600241722854978,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":141.18042762427388,
"max":1274.1113514311123
},
"week":{
"min":128.3562962726474,
"max":1274.1113514311123
},
"month":{
"min":111.08018049340093,
"max":1274.1113514311123
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2tXTC9cw5zzyQkVho3R51M9cRdH1BSTgBUagcCo5P67a",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG",
"symbol":"MATICPO",
"name":"MATIC (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22947/large/MATICpo_wh_small.png?1644226625",
"coingeckoId":"matic-wormhole",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":1.34956223,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":1.198819421707849,
"max":1.2623518412364447
},
"week":{
"min":1.198819421707849,
"max":1.3612610674911638
},
"month":{
"min":1.1821696769524486,
"max":1.401029311256553
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2tpF88VHajuuv8Ad1wHMq3NmxyRLfSdqv6Jy4X6xc7p1",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"F3nefJBcejYbtdREjui1T9DPh5dBgpkKq7u2GAAMXs5B",
"symbol":"AART",
"name":"ALL.ART",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22012/large/all-art.PNG?1640590472",
"coingeckoId":"all-art",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":202.169276,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":229.04999966840074,
"max":230.31322912310733
},
"week":{
"min":228.03674959384452,
"max":230.57364369347854
},
"month":{
"min":223.47426891347413,
"max":230.72003553445174
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2x2Us1DLYd6mWfXWuVfYyvb6BJmKG22rdCW7hBCcjKsf",
"tokenA":{
"mint":"iVNcrNE9BRZBC9Aqf753iZiZfbszeAVUoikgT9yvr2a",
"symbol":"IVN",
"name":"Investin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15588/large/ivn_logo.png?1621267247",
"coingeckoId":"investin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.284475524,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.09843330553807883,
"max":0.10198975712879044
},
"week":{
"min":0.094499776627675,
"max":0.10753912901914696
},
"month":{
"min":0.094499776627675,
"max":0.12443327370447561
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"2zCzbdiV9ynK8XrMg6ztBbHNHALrv3eoMfQ1xN8CUrPB",
"tokenA":{
"mint":"MAPS41MDahZ9QdKXhVa4dWB9RuyfV4XqhyAZ8XcYepb",
"symbol":"MAPS",
"name":"MAPS",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/13556/large/Copy_of_image_%28139%29.png?1609768934",
"coingeckoId":"maps",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.363015,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.14357983880871347,
"max":0.14663488222973373
},
"week":{
"min":0.13706684553351517,
"max":0.14663488222973373
},
"month":{
"min":0.13699542755643168,
"max":0.14756202068820126
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"3KWGKCGYD98pQQMe25rKRPGEYKmuPLNezAUcB7BN2KNJ",
"tokenA":{
"mint":"seedEDBqu63tJ7PFqvcbwvThrYUkQeqT6NLf81kLibs",
"symbol":"SEEDED",
"name":"Seeded Network",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/23618/large/seeded.png?1644761600",
"coingeckoId":"seeded-network",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00610556443,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"3SiDaf1TBi3v6VJEwnpPBViYBdJMFqLjVpQGduAViw2N",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK",
"symbol":"svtFFF",
"name":"Famous Fox Federation Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/BoeDfSFRyaeuaLP97dhxkHnsn7hhhes3w3X8GgQj5obK/logo.png",
"coingeckoId":"svtFFF",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":9.74726149167296,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.4352365176650716e-8,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"3YFpvPT7YGRbBPaTrr4fRwT2XqM2zgyeDqAFzwZCNRCk",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT",
"symbol":"svtGGSG",
"name":"Galactic Geckos Space Garage Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/3GQqCi9cuGhAH4VwkmWD32gFHHJhxujurzkRCQsjxLCT/logo.png",
"coingeckoId":"svtGGSG",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.015003229385595129,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":4.434330123570453,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"42Cdv57nAWBG8B4jV2F657S2EARywC8oR6ERCzxinSWZ",
"tokenA":{
"mint":"PoRTjZMPXb9T7dyU7tpLEZRQj7e6ssfAE62j2oQuc6y",
"symbol":"PORT",
"name":"Port Finance",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17607/large/d-k0Ezts_400x400.jpg?1628648715",
"coingeckoId":"port-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.172021,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.043110148883377636,
"max":0.044079747272328135
},
"week":{
"min":0.042371980804038215,
"max":0.04891619435598163
},
"month":{
"min":0.03905783903883486,
"max":0.051272091356062574
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"4ACxxCjBEXGXr7T8stpM6q8BHKNEJEuhSGVLP3pi6BaX",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EchesyfXePKdLtoiZSL8pBe8Myagyy8ZRqsACNCFGnvp",
"symbol":"FIDA",
"name":"Bonfida",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/13395/large/bonfida.png?1658327819",
"coingeckoId":"bonfida",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.7450307230920235,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.10284022773773,
"volume":{
"day":0,
"week":0,
"month":556.4305788972431
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":556.4305788972431
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":235
},
"priceRange":{
"day":{
"min":2.4430440946172367,
"max":2.5258774616181228
},
"week":{
"min":2.283965279376544,
"max":2.8460250502132816
},
"month":{
"min":1.9810326352385974,
"max":2.8460250502132816
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.05671244622763706
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.05671244622763706
}
},
{
"address":"4TYRTTJo6WnY6eMTMA9YruDbAsKNJQz4KqvHi7scY7MS",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Ez2zVjw85tZan1ycnJ5PywNNxR6Gm4jbXQtZKyQNu3Lv",
"symbol":"fUSDC",
"name":"Fluid USDC",
"decimals":6,
"logoURI":null,
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":28.46,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"4ZU5mDh2RTfS76AdK5kcmfNuJq6RTEDTVL7gtVeGbBUQ",
"tokenA":{
"mint":"5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2",
"symbol":"BUSD",
"name":"BUSD Token (Portal from BSC)",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png",
"coingeckoId":"binance-usd",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":1,
"price":1,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.9947491785200632,
"max":1.0034223529531434
},
"week":{
"min":0.9935519993372649,
"max":1.0049459741517788
},
"month":{
"min":0.9883321064719369,
"max":1.0111332158135597
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"4dMCeFsjsGgakprFMtTY4uwuRL2p55Y6pJuQBcUFyu1v",
"tokenA":{
"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk",
"symbol":"POLIS",
"name":"Star Atlas DAO",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006",
"coingeckoId":"star-atlas-dao",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.3317596914647356,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.3262579515423912,
"max":0.332204611702015
},
"week":{
"min":0.31665903772440135,
"max":0.342297290212219
},
"month":{
"min":0.31665903772440135,
"max":0.3923455251142585
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"4gnf3XVk8A3vxFnnPtVqSFZa1SEPeXogvcetpZm6Q3pS",
"tokenA":{
"mint":"9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa",
"symbol":"BNB",
"name":"Binance Coin (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22884/large/BNB_wh_small.png?1644224553",
"coingeckoId":"binance-coin-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":281.74962359997386,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.006489634992472,
"volume":{
"day":0,
"week":0,
"month":4.944444444444445
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0.01801878949017052
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":4.944444444444445
},
"priceRange":{
"day":{
"min":266.6399640245732,
"max":282.7223581862427
},
"week":{
"min":251.4720094345649,
"max":282.7223581862427
},
"month":{
"min":251.4720094345649,
"max":303.58448850227785
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.007561546078626789
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.007561546078626789
}
},
{
"address":"59m534G5c5vubq29GgMcQ5m2sXKMsevF1Dpb6ZKP81Ui",
"tokenA":{
"mint":"SuperbZyz7TsSdSoFAZ6RYHfAWe9NmjXBLVQpS8hqdx",
"symbol":"SB",
"name":"SuperBonds",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22743/large/ywws9ojM_400x400.jpg?1642548336",
"coingeckoId":"superbonds",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00561521478,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.0005897942533690251,
"max":0.0006496485983048137
},
"week":{
"min":0.0005897942533690251,
"max":0.0010053051934337137
},
"month":{
"min":0.0005495122596921309,
"max":0.004838688429100939
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"5JCSBX7uvR1Jz7k6EjqeH3g4d1WfnqS9n9pYbiQ67GHS",
"tokenA":{
"mint":"MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD",
"symbol":"MEAN",
"name":"Mean DAO",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21557/large/89934951.png?1639466364",
"coingeckoId":"meanfi",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.004470612900531087,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":13326.110459745141,
"volume":{
"day":0,
"week":17.541948506815512,
"month":17.541948506815512
},
"volumeDenominatedA":{
"day":0,
"week":93.81288093083045,
"month":93.81288093083045
},
"volumeDenominatedB":{
"day":0,
"week":0.5106474740999425,
"month":0.5106474740999425
},
"priceRange":{
"day":{
"min":0.0038190835881581754,
"max":0.003957258463347752
},
"week":{
"min":0.003747062546860832,
"max":0.004139109009240242
},
"month":{
"min":0.0036332784432497223,
"max":0.00478766440483826
}
},
"feeApr":{
"day":0,
"week":0.00018614404751780548,
"month":0.00008519640023949579
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.00018614404751780548,
"month":0.00008519640023949579
}
},
{
"address":"5YsEBnd1qcai6ktgu7WcRiUPkwJyvMixoLK1mf7ai8n2",
"tokenA":{
"mint":"8HGyAAB1yoM1ttS7pXjHMa3dukTFGQggnFFH3hJZgzQh",
"symbol":"COPE",
"name":"Cope",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/14567/large/COPE.png?1617162230",
"coingeckoId":"cope",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.04018139751072074,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":182.17430183234768,
"volume":{
"day":0,
"week":6.42690148258192,
"month":11.814628830607036
},
"volumeDenominatedA":{
"day":0,
"week":146.14193602679637,
"month":268.65399063955687
},
"volumeDenominatedB":{
"day":0,
"week":6.42690148258192,
"month":11.814628830607036
},
"priceRange":{
"day":{
"min":0.04031885110096902,
"max":0.04079571056491585
},
"week":{
"min":0.040174277638728106,
"max":0.08701820615428434
},
"month":{
"min":0.040174277638728106,
"max":0.7683443499428425
}
},
"feeApr":{
"day":0,
"week":0.005062143872630073,
"month":0.0039026350382666327
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.005062143872630073,
"month":0.0039026350382666327
}
},
{
"address":"64SUepq75CUbbmKKvh3begwTYkmosyEZUVGC1sCziovt",
"tokenA":{
"mint":"UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M",
"symbol":"UXP",
"name":"UXD Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/20319/large/UXP.jpg?1636864568",
"coingeckoId":"uxd-protocol-token",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.02665994,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.01,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.01710226453644273,
"max":0.018762793878212673
},
"week":{
"min":0.01710226453644273,
"max":0.018762793878212673
},
"month":{
"min":0.01710226453644273,
"max":0.01890225363786164
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6G9jxYwfDvFmzQnb163LEPHHR5GUM8mqka6KU9KhKN2s",
"tokenA":{
"mint":"SUNNYWgPQmFxe9wTZzNK7iPnJ3vYDrkgnxJRJm1s3ag",
"symbol":"SUNNY",
"name":"Sunny Aggregator",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/18039/large/90dbe787-8e5f-473c-b923-fe138a7a30ea.png?1630314924",
"coingeckoId":"sunny-aggregator",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00056059,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.00011411472212979376,
"max":0.0001229285342717711
},
"week":{
"min":0.00011411472212979376,
"max":0.00013209144334205898
},
"month":{
"min":0.00011411472212979376,
"max":0.00015936269051619774
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6apMj56v2L2YcKojA56o2yXD4LZv7jG7WnhCpyim15AV",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.0015054610196652,
"lpFeeRate":0.002,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.1510543604925405,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.999013075870122,
"max":1.0013999175520785
},
"week":{
"min":0.9968758388761035,
"max":1.003483449852528
},
"month":{
"min":0.9949104481874305,
"max":1.0053298116702563
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6cJMeEsryHfWFUASXGN3DeWSoL8pk9x5Vyjg3s8F82Pd",
"tokenA":{
"mint":"9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
"symbol":"BTC",
"name":"Wrapped Bitcoin (Sollet)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24917/large/opengraph.png?1649344256",
"coingeckoId":"wrapped-bitcoin-sollet",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"tokenB":{
"mint":"CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5",
"symbol":"renBTC",
"name":"renBTC",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/CDJWUqTcYTVAKXAVXoQZFes5JUFc7owSeq7eMQcDSbo5/logo.png",
"coingeckoId":"renbtc",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.996530347,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.020540201029505215,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.995507196325459,
"max":1.0246147538517625
},
"week":{
"min":0.9580765428765471,
"max":1.0246147538517625
},
"month":{
"min":0.9219638828353265,
"max":1.0732450922359673
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6fhhFuck92ionTDAQe6VzMhUTA6QJadjDuAMfMZWXZFg",
"tokenA":{
"mint":"r8nuuzXCchjtqsmQZVZDPXXq928tuk7KVH479GsKVpy",
"symbol":"DAOJONES",
"name":"Fractionalized SMB-2367",
"decimals":2,
"logoURI":"https://assets.coingecko.com/coins/images/22611/large/daojones.png?1642228974",
"coingeckoId":"fractionalized-smb-2367",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":0.587940059,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6rHfbVkY7HHh8Jfin8wykX5HvNec3fzwFUDkJuJJVRR2",
"tokenA":{
"mint":"zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF",
"symbol":"ZBC",
"name":"Zebec Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/24342/large/zbc.PNG?1647400775",
"coingeckoId":"zebec-protocol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk",
"symbol":"NGNC",
"name":"NGN Coin",
"decimals":2,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png",
"coingeckoId":"NGN",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":6.587719826230948,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1671002.5524552702,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6rJwX56s3rhprMvXZB4GZ8Vk9xfLi2Gp5eKAUv73UgY2",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":8,
"price":32.535329080740695,
"lpFeeRate":0.0005,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0000010364200514282448,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":31.7260457425586,
"max":33.07688067470296
},
"week":{
"min":30.188188518933647,
"max":34.600468988392606
},
"month":{
"min":30.188188518933647,
"max":37.0126849360167
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"6upZT3murB7Rae3461JU1PUpuEpT13SrfcU4uawkSZsZ",
"tokenA":{
"mint":"Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1",
"symbol":"SBR",
"name":"Saber",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17162/large/oYs_YFz8_400x400.jpg?1626678457",
"coingeckoId":"saber",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.00242089722584359,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":9.59886030278135,
"volume":{
"day":0,
"week":4.8407843702762,
"month":51.301383285846654
},
"volumeDenominatedA":{
"day":0,
"week":2009.1777777777777,
"month":20614.76905573825
},
"volumeDenominatedB":{
"day":0,
"week":4.8407843702762,
"month":51.301383285846654
},
"priceRange":{
"day":{
"min":0.0019829928920964703,
"max":0.0020633717704299985
},
"week":{
"min":0.0019412047220509758,
"max":0.002841738850817807
},
"month":{
"min":0.0019412047220509758,
"max":0.0035264991981829134
}
},
"feeApr":{
"day":0,
"week":0.0657342503861177,
"month":0.2768421164486924
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.0657342503861177,
"month":0.2768421164486924
}
},
{
"address":"7A5TQA7xjmc1pbq6F85Eij4SSJkAW1Ex8FkuPhGBQjY2",
"tokenA":{
"mint":"TuLipcqtGVXP9XR62wM8WWCm6a9vhLs7T1uoWBk6FDs",
"symbol":"TULIP",
"name":"Tulip Protocol",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15764/large/TqrUdBG.png?1621827144",
"coingeckoId":"solfarm",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":3.5235411482961907,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.139682584366772,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":3.542709692717777,
"max":3.590197237156344
},
"week":{
"min":3.515191803691842,
"max":3.610531785881595
},
"month":{
"min":3.408414736830117,
"max":3.610531785881595
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"7AevFJJqycVQ2chzf414cpFTfLKmVZKRuaidZbJV6Sus",
"tokenA":{
"mint":"METAmTMXwdb8gYzyCPfXXFmZZw4rUsXX58PNsDg7zjL",
"symbol":"SLC",
"name":"Solice",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22115/large/solice_logo_200x200.png?1640845206",
"coingeckoId":"solice",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.07981041749499979,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0002276941137197,
"volume":{
"day":0,
"week":0,
"month":2.4721883560344446
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":25.07777777777778
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":2.4721883560344446
},
"priceRange":{
"day":{
"min":0.027539746337664997,
"max":0.028954828820378163
},
"week":{
"min":0.027539746337664997,
"max":0.033418802020839716
},
"month":{
"min":0.027539746337664997,
"max":0.04944572118486596
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.03448340736022602
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.03448340736022602
}
},
{
"address":"7J6Hks51jL1gzdJ53GiAYzY1Hyxra6drfZcDMpJKXs6e",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn",
"symbol":"JSOL",
"name":"JPool",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897",
"coingeckoId":"jpool",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0280073211,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.030230143945319067,
"max":0.031603620228349644
},
"week":{
"min":0.028928247073306795,
"max":0.03364860964714092
},
"month":{
"min":0.027039577622018342,
"max":0.03364860964714092
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"7egJoBbcdSn493DXiQpCHqwjLYoqYAGoWWsuou3BBgBa",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i",
"symbol":"wUST",
"name":"TerraUSD (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065",
"coingeckoId":"terrausd-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":2729.2884386368564,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":974.7867521231474,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":720.1278690978892,
"max":776.3073892949244
},
"week":{
"min":509.6472117472913,
"max":820.4851345349358
},
"month":{
"min":509.6472117472913,
"max":1099.2594145869414
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"7qbRF6YsyGuLUVs6Y1q64bdVrfe4ZcUUz1JRdoVNUJnm",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":8,
"price":31.333298943137798,
"lpFeeRate":0.0005,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.636199848560396,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":29.8410043023991,
"max":31.119901402778147
},
"week":{
"min":28.453973183378523,
"max":32.6343564602958
},
"month":{
"min":28.453973183378523,
"max":35.0349194796623
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"7tsKu5WacMTV2ayD2C79gtgMZrj9XThoo7idFU39CCyt",
"tokenA":{
"mint":"7fCzz6ZDHm4UWC9Se1RPLmiyeuQ6kStxpcAP696EuE1E",
"symbol":"SHBL",
"name":"Shoebill Coin",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/16160/large/sbl.png?1635612720",
"coingeckoId":"shoebill-coin",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":128,
"price":0.00002685729446786462,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":4.002716563165647,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.00003871958720141865,
"max":0.000038761716787907726
},
"week":{
"min":0.0000385404577402418,
"max":0.00004055176091077013
},
"month":{
"min":0.0000385404577402418,
"max":0.00007447985026782967
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8AshhNK9Ti4d7NPLcYFZQS8HSdYHkHigNM9GVLfpuJXY",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3",
"symbol":"FTT",
"name":"FTX",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/9026/large/F.png?1609051564",
"coingeckoId":"ftx-token",
"whitelisted":true,
"poolToken":false,
"wrapper":"SRM"
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0402930185,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.0411367528563565,
"max":0.04247633994865026
},
"week":{
"min":0.0411367528563565,
"max":0.04528874710632862
},
"month":{
"min":0.03950017513822058,
"max":0.04528874710632862
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8NqZpF3VMBUv4sSkjvCNBKCcQtxUhaXnSBc1N6nR9BWF",
"tokenA":{
"mint":"ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj",
"symbol":"SUSHI",
"name":"Sushi",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/12271/large/512x512_Logo_no_chop.png?1606986688",
"coingeckoId":"sushi",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":1.04095904,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":1.4129531634237478,
"max":1.4721269849654006
},
"week":{
"min":1.1159686751667752,
"max":1.4822511679871533
},
"month":{
"min":1.0031460381545798,
"max":1.4822511679871533
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8Yw67NmNJSUdzGa2p1Af6JzHmDr9rGt3XEUrTHajvkU5",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D",
"symbol":"svtCWM",
"name":"The Catalina Whale Mixer Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/8W2ZFYag9zTdnVpiyR4sqDXszQfx2jAZoMcvPtCSQc7D/logo.png",
"coingeckoId":"svtCWM",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":9.50091065870506,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.4352365176650716e-8,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8hcwA1hr1bLGLHXBCadXWDgxsc1BTe4hAKPcQgTVNXL4",
"tokenA":{
"mint":"A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM",
"symbol":"USDCet",
"name":"USD Coin (Wormhole from Ethereum)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/23019/large/USDCet_wh_small.png?1644223449",
"coingeckoId":"usd-coin-wormhole-from-ethereum",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":1,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.9965599461857371,
"max":18.9912506277028
},
"week":{
"min":0.9958186684577861,
"max":18.9912506277028
},
"month":{
"min":0.9915515862836202,
"max":18.9912506277028
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8o4xKJDptG3xNQnYjYn4xBCTxv2Jwpq8AyzSA2AnqWuU",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i",
"symbol":"wUST",
"name":"TerraUSD (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065",
"coingeckoId":"terrausd-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":108.53419221566158,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":408.88742007276005,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":770.0424040443921,
"max":830.2060205967465
},
"week":{
"min":543.2860305620492,
"max":875.1551740436844
},
"month":{
"min":543.2860305620492,
"max":1173.6700601458297
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8oJkhFkAHLPPzmyYrTtRCmoTYPSm4NKWfkaGUgy5AKS8",
"tokenA":{
"mint":"PRSMNsEPqhGVCH1TtWiJqPjJyh2cKrLostPZTNy1o5x",
"symbol":"PRISM",
"name":"Prism",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21475/large/7KzeGb1.png?1639350211",
"coingeckoId":"prism",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":128,
"price":0.005535683811230049,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2.0000000013301378,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.005435147484320188,
"max":0.005476536011793339
},
"week":{
"min":0.005301168385638106,
"max":0.006374743630656006
},
"month":{
"min":0.005301168385638106,
"max":0.006374743630656006
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"8ypKNFNikPbvjgHYA3poXYkw8eHQ6imVbqsTocapRw9B",
"tokenA":{
"mint":"5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm",
"symbol":"scnSOL",
"name":"Socean Staked Sol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18468/large/biOTzfxE_400x400.png?1633662119",
"coingeckoId":"socean-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":48.3516483,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":31.41411719295726,
"max":32.937421531515994
},
"week":{
"min":30.622499304577524,
"max":35.292915199515825
},
"month":{
"min":30.622499304577524,
"max":37.69812418117877
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"9EPPETPH7KcKoqDH8gMA3Xx8PRh4LUsxzLoZKzvDFm9t",
"tokenA":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk",
"symbol":"NGNC",
"name":"NGN Coin",
"decimals":2,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png",
"coingeckoId":"NGN",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":351.8861623296611,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1656612.5849409616,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"9NjpbDB5ZW9GHmQVVY99daUyhk6g1agC8VDsh6JQezk8",
"tokenA":{
"mint":"ratioMVg27rSZbSvBopUvsdrGUzeALUfFma61mpxc8J",
"symbol":"RATIO",
"name":"Ratio Protocol",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/24543/large/ratio.png?1648108625",
"coingeckoId":"ratio-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.3541292498050528,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.020703400133937566,
"volume":{
"day":0,
"week":0,
"month":259.3060647747992
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":633.2714584776967
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":259.3060647747992
},
"priceRange":{
"day":{
"min":0.22812206847563876,
"max":0.24210853683056857
},
"week":{
"min":0.22812206847563876,
"max":0.3234048874309654
},
"month":{
"min":0.22812206847563876,
"max":0.46625925669798785
}
},
"feeApr":{
"day":0,
"week":0,
"month":824.2071808529636
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":824.2071808529636
}
},
{
"address":"9TAPfa5hhKdjWrxt2b4cyHWDGWsEe9horBuapV6CebKx",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"DUSTawucrTsGU8hcqRdHDCbuYhCPADMLM2VcCb8VnFnQ",
"symbol":"DUST",
"name":"DUST Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/24289/large/dust-protocol-degod.png?1647306854",
"coingeckoId":"dust-protocol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.757315544597793,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2.814168112430719,
"volume":{
"day":0,
"week":0.3450827437142853,
"month":9.037077469064034
},
"volumeDenominatedA":{
"day":0,
"week":0.3453079152557398,
"month":9.042882052850558
},
"volumeDenominatedB":{
"day":0,
"week":0.2174195065534399,
"month":5.786076577703698
},
"priceRange":{
"day":{
"min":0.8562497520224697,
"max":0.9115194507199854
},
"week":{
"min":0.7434499412884283,
"max":0.9588347099615482
},
"month":{
"min":0.5806800153467732,
"max":0.9588347099615482
}
},
"feeApr":{
"day":0,
"week":0.005915896908168236,
"month":0.026977235520732428
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.005915896908168236,
"month":0.026977235520732428
}
},
{
"address":"9uTcHbFLYGrf72hFzpwLbmhnHnYqzPF75ve8HCoaJmqA",
"tokenA":{
"mint":"PsyFiqqjiv41G7o5SMRzDJCu4psptThNR2GtfeGHfSq",
"symbol":"PSY",
"name":"PsyOptions",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22784/large/download.png?1642580392",
"coingeckoId":"psyoptions",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.03279664250804176,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1.0339997257715747,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.03268515176442554,
"max":0.03284069128421233
},
"week":{
"min":0.03267206750366699,
"max":0.03290726373261033
},
"month":{
"min":0.03248583104749549,
"max":0.03363269138011028
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"AEa2wnd72T4KFgmwa6ZjFPSmJhdCGacoXnKZj5r79G5m",
"tokenA":{
"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp",
"symbol":"SLND",
"name":"Solend",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597",
"coingeckoId":"solend",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":8,
"price":0.6272984308150681,
"lpFeeRate":0.0005,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.00007870009945426563,
"volume":{
"day":0,
"week":5.094386685982154,
"month":5.094386685982154
},
"volumeDenominatedA":{
"day":0,
"week":7.933333333333334,
"month":7.933333333333334
},
"volumeDenominatedB":{
"day":0,
"week":5.094386685982154,
"month":5.094386685982154
},
"priceRange":{
"day":{
"min":0.6991063710460587,
"max":0.7153405080021918
},
"week":{
"min":0.6199957448041202,
"max":0.7153405080021918
},
"month":{
"min":0.6199957448041202,
"max":0.7426204087253557
}
},
"feeApr":{
"day":0,
"week":0.001888757406302525,
"month":0.001888757406302525
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.001888757406302525,
"month":0.001888757406302525
}
},
{
"address":"ATK8VNxGGu94T3L1SDmtxGqDUu5VPRNnAFKzDP3A5DCh",
"tokenA":{
"mint":"SLRSSpSLUTP7okbCUBYStWCo1vUgyt775faPqz8HUMr",
"symbol":"SLRS",
"name":"Solrise Finance",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15762/large/9989.png?1621825696",
"coingeckoId":"solrise-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.089683,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.016771484998526105,
"max":0.01692371632036743
},
"week":{
"min":0.016504710743563727,
"max":0.017471527591119817
},
"month":{
"min":0.016210652258254497,
"max":0.017471527591119817
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"AVftUsHvETWNeF21sap8pAwtjbq4Re5NEmHQKrBmsYi4",
"tokenA":{
"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y",
"symbol":"SHDW",
"name":"GenesysGo Shadow",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974",
"coingeckoId":"genesysgo-shadow",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.2682508717025207,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":5244.208349580213,
"volume":{
"day":0,
"week":0,
"month":536.7418826192601
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":1972.331561491801
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":536.7418826192601
},
"priceRange":{
"day":{
"min":0.2432300692672876,
"max":0.24917928477295082
},
"week":{
"min":0.23070543144069608,
"max":0.36514602900745324
},
"month":{
"min":0.23070543144069608,
"max":0.36514602900745324
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.005231870008338198
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.005231870008338198
}
},
{
"address":"AVgL9mKtkaJjuomWtyqdv52j9RQZHtdbK2sgfkwNofck",
"tokenA":{
"mint":"poLisWXnNRwC6oBu1vHiuKQzFjGL4XDSu4g9qjz9qVk",
"symbol":"POLIS",
"name":"Star Atlas DAO",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/17789/large/POLIS.jpg?1629256006",
"coingeckoId":"star-atlas-dao",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.33603329455280373,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.3262579515423912,
"max":0.332204611702015
},
"week":{
"min":0.31665903772440135,
"max":0.342297290212219
},
"month":{
"min":0.31665903772440135,
"max":0.3923455251142585
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"AnkN85KVdj4znCa7Pz95zn8K5rDGtu6HuPBRNPuF7mAj",
"tokenA":{
"mint":"SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y",
"symbol":"SHDW",
"name":"GenesysGo Shadow",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/22271/large/logo_-_2022-01-05T083602.373.png?1641342974",
"coingeckoId":"genesysgo-shadow",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.264513085,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.24394478140811213,
"max":0.2500271066802522
},
"week":{
"min":0.228876959630776,
"max":0.36614614016696095
},
"month":{
"min":0.228876959630776,
"max":0.36614614016696095
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"AqJ5JYNb7ApkJwvbuXxPnTtKeuizjvC1s2fkp382y9LC",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":8,
"price":32.770416996892116,
"lpFeeRate":0.0005,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.05664846752002983,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":31.934795053609168,
"max":33.13637427666323
},
"week":{
"min":30.33413008123974,
"max":34.72909806238625
},
"month":{
"min":30.33413008123974,
"max":37.20757178303779
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"BKPtLwYEaVe9xXs7oBRPn4dqHuxi5QJGEGFamTHX2vaq",
"tokenA":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol":"USDT",
"name":"Tether",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/325/large/Tether-logo.png?1598003707",
"coingeckoId":"tether",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.8359461844831203,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.8246504688970124,
"max":0.8297573466369795
},
"week":{
"min":0.8200891705050353,
"max":0.835374430873075
},
"month":{
"min":0.8176057834865429,
"max":0.8621921179216209
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"BTVdTpn91aEDWQ9gdoGWUZsbFqUKkrYfbQp7Aw8tbw6y",
"tokenA":{
"mint":"SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp",
"symbol":"SLND",
"name":"Solend",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/19573/large/i6AMOwun_400x400.jpg?1635458597",
"coingeckoId":"solend",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.6348431734640428,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.6991063710460587,
"max":0.7153405080021918
},
"week":{
"min":0.6199957448041202,
"max":0.7153405080021918
},
"month":{
"min":0.6199957448041202,
"max":0.7426204087253557
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"BuBqqUZA8zwRRrVQsXesz3q8VDqLbGV9X3Srx8Dyu2WB",
"tokenA":{
"mint":"2HeykdKjzHKGm2LKHw8pDYwjKPiFEoXAz74dirhUgQvq",
"symbol":"SAO",
"name":"Sator",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/19410/large/sator-logo-CMC.png?1635211626",
"coingeckoId":"sator",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0102725948,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.004416517639467877,
"max":0.004475974158768127
},
"week":{
"min":0.004363557640904873,
"max":0.005290121131110638
},
"month":{
"min":0.0042328463856941105,
"max":0.006769922852334418
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"C27mQeymc9eB9du2GJkUf4wGYgdmHDzByZmc9AyLja2u",
"tokenA":{
"mint":"7Q2afV64in6N6SeZsAAB81TJzwDoD6zpqmHkzi9Dcavn",
"symbol":"JSOL",
"name":"JPool",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/20664/large/jsol.png?1637545897",
"coingeckoId":"jpool",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":59.47145143398823,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0038375733896710553,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":31.626834117324286,
"max":32.770535173998915
},
"week":{
"min":29.956330915556492,
"max":34.39115756880092
},
"month":{
"min":29.956330915556492,
"max":36.91032881417636
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"C9KsVuMmNVStsbcSXDTLxT3dFWvsKQannmbvWFVo7SZX",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9iLH8T7zoWhY7sBmj1WK9ENbWdS1nL8n9wAxaeRitTa6",
"symbol":"USH",
"name":"Hedge USD",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/25481/large/ush.png?1652011029",
"coingeckoId":"hedge-usd",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":36.89009893259352,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0017983837785224845,
"volume":{
"day":0,
"week":0,
"month":19.891558574775978
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0.546511685582978
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":20.00253728721338
},
"priceRange":{
"day":{
"min":32.0435582158295,
"max":33.48366419441906
},
"week":{
"min":30.18710264901139,
"max":35.092416061188594
},
"month":{
"min":30.18710264901139,
"max":37.70317476305686
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.0312697787536817
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.0312697787536817
}
},
{
"address":"CB4HeabuJhC6tgKHMJr3sHkyURAHbtK5qaSpLgCK7CCW",
"tokenA":{
"mint":"8upjSpvjcdpuzhfR1zriwg5NXkwDruejqNE9WNbPRtyA",
"symbol":"GRAPE",
"name":"Grape Protocol",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/18149/large/fRsuAlcV_400x400.png?1632437325",
"coingeckoId":"grape-2",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.01222663,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.005110045180155109,
"max":0.005211824311452256
},
"week":{
"min":0.0005703562953446154,
"max":0.005400555449512705
},
"month":{
"min":0.0005703562953446154,
"max":0.0056204213701951024
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"CFsL32bC7qCzs5bEkgo4DCmov1RzgyhUhruG3DJmLjCD",
"tokenA":{
"mint":"2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX",
"symbol":"LINK",
"name":"Chainlink (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22993/large/LINK_wh_small.png?1644226275",
"coingeckoId":"chainlink-wormhole",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":7.1028971,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":6.856204620488027,
"max":7.257697814004785
},
"week":{
"min":6.614259625164759,
"max":7.432069724449219
},
"month":{
"min":6.614259625164759,
"max":8.484761114387918
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"CJX9KVBAwobF7ijE7cd4kujyaHw2QCjyN9be94i5Seyo",
"tokenA":{
"mint":"kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6",
"symbol":"KIN",
"name":"Kin",
"decimals":5,
"logoURI":"https://assets.coingecko.com/coins/images/959/large/kin-logo-social.png?1665793119",
"coingeckoId":"kin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.000014,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.000011563488123500054,
"max":0.000011867681467222499
},
"week":{
"min":0.00001145931298734335,
"max":0.000012320947655212285
},
"month":{
"min":0.000010973182482065066,
"max":0.000012610635397413222
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"CXfp1XZ1Zn6pR8BaEiqoeJ5tDt1Vs5v79ybbiYsEktap",
"tokenA":{
"mint":"2zzC22UBgJGCYPdFyo7GDwz7YHq5SozJc1nnBqLU8oZb",
"symbol":"1SP",
"name":"Onespace",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/26474/large/1SP_logo.png?1658195640",
"coingeckoId":"onespace",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":0.0014126857998633699,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":32.38645716309924,
"volume":{
"day":0,
"week":16.945369771830993,
"month":16.945369771830993
},
"volumeDenominatedA":{
"day":0,
"week":11194.404255555557,
"month":11194.404255555557
},
"volumeDenominatedB":{
"day":0,
"week":16.945369771830993,
"month":16.945369771830993
},
"priceRange":{
"day":{
"min":0.0008737958576379865,
"max":0.0012020328928994285
},
"week":{
"min":0.0008737958576379865,
"max":0.0019876379795557013
},
"month":{
"min":0.0008737958576379865,
"max":0.005214997066392129
}
},
"feeApr":{
"day":0,
"week":0.12099670652706677,
"month":0.12099670652706677
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.12099670652706677,
"month":0.12099670652706677
}
},
{
"address":"Cbuc6RwKvkdUXz2f1DKeSZsknrwvqXdWSjYqxQKaUDwp",
"tokenA":{
"mint":"xxxxa1sKNGwFtw2kFn8XauW9xq8hBZ5kVtcSesTT9fW",
"symbol":"SLIM",
"name":"Solanium",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15816/large/logo_cg.png?1659000206",
"coingeckoId":"solanium",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.128945054,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.07836347008178696,
"max":0.08095644401545703
},
"week":{
"min":0.07403975800712047,
"max":0.08095644401545703
},
"month":{
"min":0.07403975800712047,
"max":0.0905921577987409
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"ChhZisuRoHYVDv99EVTozUEecw46MNpUuYzTUKPeHVEZ",
"tokenA":{
"mint":"METAewgxyPbgwsseH8T16a39CQ5VyVxZi9zXiDPY18m",
"symbol":"MPLX",
"name":"Metaplex",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/27344/large/mplx.png?1663636769",
"coingeckoId":"metaplex",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":87.47241339329443,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.018730654742780725,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.0030436115766513667,
"max":0.0033238071086079384
},
"week":{
"min":0.0030436115766513667,
"max":0.010824862271585326
},
"month":{
"min":0.0030436115766513667,
"max":0.02731747769489105
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"Cik5LzEFNH2wqJtkCrnwT5Bpv9rdaiLkEbVczgedmeNz",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"FgX1WD9WzMU3yLwXaFSarPfkgzjLb2DZCqmkx9ExpuvJ",
"symbol":"NINJA",
"name":"Ninja Protocol",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/18442/large/ninja.PNG?1632006127",
"coingeckoId":"ninja-protocol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1756.9689611161548,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.004711153600076327,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":235.27696369893374,
"max":11684.569257778361
},
"week":{
"min":229.22399211879934,
"max":11684.569257778361
},
"month":{
"min":229.22399211879934,
"max":11684.569257778361
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"Cst4B1VGkirLHFW5iVUYYL3uc4Wys5uQVVnvNaYPs4XA",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"GFX1ZjR2P15tmrSwow6FjyDYcEkoFb4p4gJCpLBjaxHD",
"symbol":"GOFX",
"name":"GooseFX",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/19793/large/0Kjm9f4.png?1635906737",
"coingeckoId":"goosefx",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":23.640910721748117,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.344637611862743,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":68.43318605885844,
"max":69.38914305960377
},
"week":{
"min":63.665945978812545,
"max":69.62267687100329
},
"month":{
"min":23.20298195296887,
"max":70.11511003280157
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"D4fchweMF4LHasUHWEkbQzp4V4mLPhdMw39Qt7wmXCcu",
"tokenA":{
"mint":"4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF",
"symbol":"1SOL",
"name":"1sol.io (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22923/large/1SOL_wh_small.png?1644222565",
"coingeckoId":"1sol-io-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.166468531,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.008772669595105639,
"max":0.009250871804544128
},
"week":{
"min":0.008176944120476835,
"max":0.1651706535692141
},
"month":{
"min":0.008176944120476835,
"max":0.1651706535692141
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"D7SVPZarGEEBLwBDDmo9H2kjqbrgMkjqzqppEvVRJe5r",
"tokenA":{
"mint":"MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac",
"symbol":"MNGO",
"name":"Mango",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/14773/large/token-mango.png?1628171237",
"coingeckoId":"mango-markets",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.057239,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.02359703677591416,
"max":0.024830286052478376
},
"week":{
"min":0.01884284822259456,
"max":0.040251193532122594
},
"month":{
"min":0.01884284822259456,
"max":0.04315287900725263
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"DANSehZZqY1Rbhz27szFsa73JUYQHXdHtCneFvrewqLT",
"tokenA":{
"mint":"8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36",
"symbol":"UNI",
"name":"Uniswap (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22969/large/UNI_wh_small.png?1644223592",
"coingeckoId":"uniswap-wormhole",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":5.34465534,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":6.097105544988138,
"max":6.324880439735103
},
"week":{
"min":5.598652579546321,
"max":6.5914653158202645
},
"month":{
"min":5.182724060271885,
"max":6.952675707514086
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"DGP8mVP3eDrwjftyFnsntvqZyvSJhHjd4at1rDcr78J4",
"tokenA":{
"mint":"KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE",
"symbol":"wAVAX",
"name":"Avalanche (Wormhole)",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/22943/large/AVAX_wh_small.png?1644224391",
"coingeckoId":"avalanche-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":14.502477467389722,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0010648778981889495,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":15.584918004623997,
"max":16.214396706163235
},
"week":{
"min":14.733449026741106,
"max":16.822350374089968
},
"month":{
"min":14.733449026741106,
"max":18.92277249592412
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"DS5CFC9mF1fjRXBnR1yRnSWn8SWTthDSVPobcuHH2sX5",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o",
"symbol":"DAI",
"name":"Dai Stablecoin (Portal)",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png",
"coingeckoId":"dai",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.9970042057261437,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0003060200600959205,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.9988826640904425,
"max":1.0019697216446444
},
"week":{
"min":0.996101253254257,
"max":1.002240633439588
},
"month":{
"min":0.9907358684417817,
"max":1.007003142097005
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"DrjwVP82MsyjMxs8Niw2WEtxJntaVfFtSHPRKpJi41LB",
"tokenA":{
"mint":"zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF",
"symbol":"ZBC",
"name":"Zebec Protocol",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/24342/large/zbc.PNG?1647400775",
"coingeckoId":"zebec-protocol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":2552.94654,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":100.00000755294654,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.015710258264426534,
"max":0.016307579630134985
},
"week":{
"min":0.014246309835933038,
"max":0.016753197448756973
},
"month":{
"min":0.010982904964164224,
"max":0.016753197448756973
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"DvgSQJyx6JNaPzmhBwzWw6rntGBQCr5fmNnV2AfyEfCg",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":1.0069467546780504,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.04891881681972601,
"volume":{
"day":0,
"week":16305.480587903356,
"month":16305.480587903356
},
"volumeDenominatedA":{
"day":0,
"week":444.6528327794558,
"month":444.6528327794558
},
"volumeDenominatedB":{
"day":0,
"week":447.70613847233665,
"month":447.70613847233665
},
"priceRange":{
"day":{
"min":0.999925271979277,
"max":1.0145455380756927
},
"week":{
"min":0.9937947615318501,
"max":1.0145455380756927
},
"month":{
"min":0.9937947615318501,
"max":1.0145455380756927
}
},
"feeApr":{
"day":0,
"week":0.04027349357074058,
"month":0.04027349357074058
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.04027349357074058,
"month":0.04027349357074058
}
},
{
"address":"E29n1h3hAcXW2EbM1tZ5JUbJH3zgFSiGFm9JPN2d3nDX",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT",
"symbol":"UXD",
"name":"UXD Stablecoin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22850/large/UXD-White.png?1642747473",
"coingeckoId":"uxd-stablecoin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":36.99841,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":31.947910607268334,
"max":617.3685776996498
},
"week":{
"min":30.272953591080093,
"max":617.3685776996498
},
"month":{
"min":30.272953591080093,
"max":617.3685776996498
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"E3FD9CQ1kG3PKzyd28w9MwSxtYPQGKbTBdX5L8HY34NZ",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"G9tt98aYSznRk7jWsfuz9FnTdokxS6Brohdo9hSmjTRB",
"symbol":"PUFF",
"name":"PUFF",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/22049/large/logo_%281%29.png?1640675965",
"coingeckoId":"puff",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":379.3545153056159,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.002063843199223885,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":1163.3504072917654,
"max":1264.940800666994
},
"week":{
"min":1021.4579161166553,
"max":1264.940800666994
},
"month":{
"min":570.8351725330641,
"max":7181.620979250964
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"E7Jv2LYn3nKnBe36FUhZV2cDqjaKVZUFjH1hr1HY5Jds",
"tokenA":{
"mint":"SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt",
"symbol":"SRM",
"name":"Serum",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/11970/large/serum-logo.png?1597121577",
"coingeckoId":"serum",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.12,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.7145997327682695,
"max":0.7530708029171073
},
"week":{
"min":0.6953278932274999,
"max":0.7668807110036824
},
"month":{
"min":0.6953278932274999,
"max":0.8104286956371485
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"EMWr3CqvDTykzTXPLEPtq2fU6sVQo4T15SGfgy4Xf8U7",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"ETAtLmCmsoiEEKfNrHKJ2kYy3MoABhU6NQvpSfij5tDs",
"symbol":"MEDIA",
"name":"Media Network",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/15142/large/media50x50.png?1620122020",
"coingeckoId":"media-network",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.115490046,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.13162700134319194,
"max":0.1354511121232707
},
"week":{
"min":0.10967248950403313,
"max":0.1354511121232707
},
"month":{
"min":0.10967248950403313,
"max":7.282391362078912
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"EYY3smYi4c8qHep4ChUu4khnxdApZJmgn4CpS8fWwwTQ",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U",
"symbol":"svtPSK",
"name":"Pesky Penguins Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Bp6k6xacSc4KJ5Bmk9D5xfbw8nN42ZHtPAswEPkNze6U/logo.png",
"coingeckoId":"svtPSK",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.003029342093146578,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1.4889470311874744,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"EdYh1YZf2HyRDgiVKBF731uEecQQA4qDieEp31WoVprv",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT",
"symbol":"svtDAPE",
"name":"Degenerate Ape Academy Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/6F5A4ZAtQfhvi3ZxNex9E1UN5TK7VM2enDCYG1sx1AXT/logo.png",
"coingeckoId":"svtDAPE",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":0.7845508066981361,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":4.401554391841889,
"volume":{
"day":0,
"week":2.290252072958226,
"month":2.290252072958226
},
"volumeDenominatedA":{
"day":0,
"week":0.06666941449827476,
"month":0.06666941449827476
},
"volumeDenominatedB":{
"day":0,
"week":0.042,
"month":0.042
},
"feeApr":{
"day":0,
"week":0.3247243712412893,
"month":0.3247243712412893
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.3247243712412893,
"month":0.3247243712412893
}
},
{
"address":"FUBwPtH1n7iUMdeyhULzaZWUHUNEvdakKaEmZxP2aDme",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"FoXyMu5xwXre7zEoSvzViRk3nGawHUp9kUh97y2NDhcq",
"symbol":"FOXY",
"name":"Famous Fox Federation",
"decimals":0,
"logoURI":"https://assets.coingecko.com/coins/images/26191/large/uFYaQEsU_400x400.jpg?1656397523",
"coingeckoId":"famous-fox-federation",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":190.818195,
"lpFeeRate":0.002,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":208.0562738916264,
"max":235.23019807815803
},
"week":{
"min":177.1917378120419,
"max":246.5317383186983
},
"month":{
"min":165.31128802147128,
"max":256.48479090808775
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"FdEdEn3FXuLjjsPVJkhdbnJb7ZohRGHWGHM1qVYs3GEw",
"tokenA":{
"mint":"USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX",
"symbol":"USDH",
"name":"USDH",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22941/large/USDH_icon.png?1643008131",
"coingeckoId":"usdh",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"kiGenopAScF8VF31Zbtx2Hg8qA5ArGqvnVtXb83sotc",
"symbol":"KI",
"name":"Genopets KI",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/26135/large/genopets_ki.png?1660017469",
"coingeckoId":"genopet-ki",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":20.981871,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":20.470147294220997,
"max":20.915580036785617
},
"week":{
"min":18.637414700620717,
"max":21.556600386329396
},
"month":{
"min":18.20213258844811,
"max":25.66647747638209
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"Fq48tf4mBsjPcG9bLxCoWCwqaeeAwbSrV7DmcWccHEZN",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh",
"symbol":"svtOKAY",
"name":"Okay Bears Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/AG5j4hhrd1ReYi7d1JsZL8ZpcoHdjXvc8sdpWF74RaQh/logo.png",
"coingeckoId":null,
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":2.2596995288096156,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":4908.616777303973,
"volume":{
"day":0,
"week":3.1731279713672267,
"month":3.1731279713672267
},
"volumeDenominatedA":{
"day":0,
"week":0.09237000000000001,
"month":0.09237000000000001
},
"volumeDenominatedB":{
"day":0,
"week":0.17288052299993445,
"month":0.17288052299993445
},
"feeApr":{
"day":0,
"week":0.00043689142229216853,
"month":0.00043689142229216853
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.00043689142229216853,
"month":0.00043689142229216853
}
},
{
"address":"FqvDvMbTTo5cFuVB3UDuLXycdDwZKgTXhyu4dfJGmU56",
"tokenA":{
"mint":"JET6zMJWkCN9tpRT2v2jfAmm5VnQFDpUBCyaKojmGtz",
"symbol":"JET",
"name":"JET",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18437/large/jet_logomark_color.png?1631972990",
"coingeckoId":"jet",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.1725117255427515,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0032876467664016335,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.08426686283002421,
"max":0.0846377322628411
},
"week":{
"min":0.08426686283002421,
"max":0.08633051534900106
},
"month":{
"min":0.08426686283002421,
"max":0.08770478163932152
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"GSmUufJKwoVNhbbvbGRzSN9cfbLW5C3u1SpzWD7wPLhG",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"FANTafPFBAt93BNJVpdu25pGPmca3RfwdsDsRrT3LX1r",
"symbol":"FANT",
"name":"Phantasia",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21604/large/Phantasia_Logo.png?1639553227",
"coingeckoId":"phantasia",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":40.0781083,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":350.5515693937119,
"max":354.7441693322643
},
"week":{
"min":344.9239273716071,
"max":400.7411711655139
},
"month":{
"min":233.39189772844213,
"max":400.7411711655139
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"Gb5zwZWFuJd2wnGb86KrmPRsLc2YL5oZRiLcsKKn2Xat",
"tokenA":{
"mint":"BKipkearSqAUdNKa1WDstvcMjoPsSKBuNyvKDQDDu9WE",
"symbol":"HAWK",
"name":"Hawksight",
"decimals":8,
"logoURI":"https://assets.coingecko.com/coins/images/24459/large/3CnlKM0x_400x400.jpg?1647679676",
"coingeckoId":"hawksight",
"whitelisted":false,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":0.362052947,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.003583044259987727,
"max":0.004083016804889705
},
"week":{
"min":0.0028058553507503015,
"max":0.004086492524241857
},
"month":{
"min":0.0028058553507503015,
"max":0.00470469305811016
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"GgjNX2EAbwyNdU2CRszN5P6ph3BZCFvCNX4VfTjSkUhM",
"tokenA":{
"mint":"7dHbWXmci3dT8UFYWYZweBLXgycu7Y3iL6trKn1Y7ARj",
"symbol":"stSOL",
"name":"Lido Staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/18369/large/logo_-_2021-09-15T100934.765.png?1631671781",
"coingeckoId":"lido-staked-sol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i",
"symbol":"wUST",
"name":"TerraUSD (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065",
"coingeckoId":"terrausd-wormhole",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":712.3418942245002,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1002.637210354042,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":764.9528579924458,
"max":823.1866191418732
},
"week":{
"min":540.9073361023597,
"max":870.7435547488893
},
"month":{
"min":540.9073361023597,
"max":1164.8938800837452
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"Gr7WKYBqRLt7oUkjZ54LSbiUf8EgNWcj3ogtN8dKbfeb",
"tokenA":{
"mint":"AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP",
"symbol":"AURY",
"name":"Aurory",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/19324/large/logo.png?1635076945",
"coingeckoId":"aurory",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":1.1811807720374408,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":12.207843295850672,
"volume":{
"day":0,
"week":1.4678061074536817,
"month":1.4678061074536817
},
"volumeDenominatedA":{
"day":0,
"week":0.6785111111111111,
"month":0.6785111111111111
},
"volumeDenominatedB":{
"day":0,
"week":1.4678061074536817,
"month":1.4678061074536817
},
"priceRange":{
"day":{
"min":1.0423389340127316,
"max":1.0613403763421165
},
"week":{
"min":1.0423389340127316,
"max":1.24777738280038
},
"month":{
"min":1.0423389340127316,
"max":1.4428031289491157
}
},
"feeApr":{
"day":0,
"week":0.12025981420654439,
"month":0.055041799082445074
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.12025981420654439,
"month":0.055041799082445074
}
},
{
"address":"H7CbuFTu5aAbCzbR9NFrnq6dirfWGQ1LveszgoVUvbiJ",
"tokenA":{
"mint":"4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
"symbol":"RAY",
"name":"Raydium",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/13928/large/PSigc4ie_400x400.jpg?1612875614",
"coingeckoId":"raydium",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk",
"symbol":"NGNC",
"name":"NGN Coin",
"decimals":2,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png",
"coingeckoId":"NGN",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":64,
"price":213.60588947529524,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1246510.3797646635,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"HAZyxUax8NMTQXESN2mKWYUn1GfDKXxr6bv4DgbEaUCL",
"tokenA":{
"mint":"UNQtEecZ5Zb4gSSVHCAWUQEoNnSVEbWiKCi1v9kdUJJ",
"symbol":"UNQ",
"name":"Unique Venture clubs",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21730/large/unq.png?1659789179",
"coingeckoId":"unq",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0100524051,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.00690725287300164,
"max":0.0070132735806121005
},
"week":{
"min":0.00689432679091716,
"max":0.007099686511281036
},
"month":{
"min":0.00689432679091716,
"max":0.007694901056223709
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"HTCoEpbQujFWS2a9nx3CSPHiDhTs94gwsiPNVwKJcAQg",
"tokenA":{
"mint":"6naWDMGNWwqffJnnXFLBCLaYu1y5U9Rohe5wwJPHvf1p",
"symbol":"SCRAP",
"name":"Scrap",
"decimals":3,
"logoURI":"https://assets.coingecko.com/coins/images/23086/large/bd1b1275fdc0ac1.png?1643181131",
"coingeckoId":"scrap",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.8669270329960953,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0.0017448540659921906,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.4861267114476659,
"max":0.5770261109458426
},
"week":{
"min":0.07500162559906672,
"max":0.7281465836945135
},
"month":{
"min":0.07500162559906672,
"max":0.9698985444910632
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"HiqVrTjxi8ykkuj6z8jNCZdkVBUrjK5GumLSQzVfai6k",
"tokenA":{
"mint":"mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So",
"symbol":"mSOL",
"name":"Marinade staked SOL",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17752/large/mSOL.png?1644541955",
"coingeckoId":"msol",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":26.846518746464763,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":8.658341207810897e-7,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":38.58016251945929,
"max":40.01304066033085
},
"week":{
"min":36.65702890532795,
"max":42.07210910074338
},
"month":{
"min":36.65702890532795,
"max":44.52342174647692
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"HtzAU1NXrZ6HkV2YDMKa13d8Y9Msufgrcca266StEmJ7",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2",
"symbol":"svtFLARE",
"name":"Lifinity Flares Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/4wGimtLPQhbRT1cmKFJ7P7jDTgBqDnRBWsFXEhLoUep2/logo.png",
"coingeckoId":"svtFLARE",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":9.2607860599421,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":3.4352365176650716e-8,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"HyBtxWGiYKzHG5WERyA6Ks9tq6k33UyXrU9Aj1BUFK2J",
"tokenA":{
"mint":"9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i",
"symbol":"wUST",
"name":"TerraUSD (Wormhole)",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21150/large/UST_wh_small.png?1644223065",
"coingeckoId":"terrausd-wormhole",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":1,
"price":0.32548438898157217,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2954.591679098618,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.03895997826654298,
"max":0.04152046128953913
},
"week":{
"min":0.03895997826654298,
"max":0.06072002096731721
},
"month":{
"min":0.030400896139993958,
"max":0.06072002096731721
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"J3jpswsy9FACeXvcypU6nJEygUiBKBNRuniPBYC2GGhZ",
"tokenA":{
"mint":"ANAxByE6G2WjFp7A4NqtWYXb3mgruyzZYg3spfxe6Lbo",
"symbol":"ANA",
"name":"Nirvana ANA",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/25012/large/ANA_Logo.png?1649822203",
"coingeckoId":"nirvana-ana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":8.697988979942622,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":2357.442764592115,
"volume":{
"day":0,
"week":0,
"month":0.19329859008477265
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0.022222222222222223
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0.19329859008477265
},
"priceRange":{
"day":{
"min":0.08504172912550273,
"max":0.09184543643899007
},
"week":{
"min":0.0793669621152321,
"max":0.10930208784532056
},
"month":{
"min":0.0793669621152321,
"max":0.1792749310422233
}
},
"feeApr":{
"day":0,
"week":0,
"month":0.000005365425812963837
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0.000005365425812963837
}
},
{
"address":"J4FtCLc1JR5iQyHJDKjc46woDuHXTL3BSm89LgzzCKh",
"tokenA":{
"mint":"StepAscQoEioFxxWGnh2sLBDFp9d8rvKz2Yp39iDpyT",
"symbol":"STEP",
"name":"Step Finance",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/14988/large/step.png?1619274762",
"coingeckoId":"step-finance",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0882862862,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.025403531252583676,
"max":0.0260494378243121
},
"week":{
"min":0.025403531252583676,
"max":0.02624986568196351
},
"month":{
"min":0.024348439212830333,
"max":0.03238764602825925
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"J5bmVtSn4RVUoT7FLSx55zUiUxmDapBUH8FXRrgyTt1H",
"tokenA":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"HEhMLvpSdPviukafKwVN8BnBUTamirptsQ6Wxo5Cyv8s",
"symbol":"FTR",
"name":"Future",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/17316/large/logo_-_2021-07-26T164152.450.png?1627288961",
"coingeckoId":"future",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":1,
"price":1.6999057541866793,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":297.33854123955825,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":1.6518744318690837,
"max":1.7440481462574329
},
"week":{
"min":1.5533594937128063,
"max":1.855105598811717
},
"month":{
"min":1.4245292727330334,
"max":2.390752992700791
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"J9dVGwSfo8Rwd4i9s7J41wk5Nv6xzrbFLQz9xzriC3wc",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz",
"symbol":"svtSMB",
"name":"Solana Monkey Business Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/Ca5eaXbfQQ6gjZ5zPVfybtDpqWndNdACtKVtxxNHsgcz/logo.png",
"coingeckoId":"svtSMB",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":9.62329780269846,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"aamqgeNPwYGFisY9ARtc9V4tDiBKCfoytH2EaQLjiwa",
"tokenA":{
"mint":"orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE",
"symbol":"ORCA",
"name":"Orca",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/17547/large/Orca_Logo.png?1628781615",
"coingeckoId":"orca",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk",
"symbol":"NGNC",
"name":"NGN Coin",
"decimals":2,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/52GzcLDMfBveMRnWXKX7U3Pa5Lf7QLkWWvsJRDjWDBSk/logo.png",
"coingeckoId":"NGN",
"whitelisted":false,
"poolToken":false
},
"whitelisted":false,
"tickSpacing":1,
"price":361.80533946612616,
"lpFeeRate":0.0001,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":8.29163983123402e-7,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"iJ736stFxuZfQdWtdtnk5UErbj1sj3KC4EmnHVr522c",
"tokenA":{
"mint":"svtMpL5eQzdmB3uqK9NXaQkq8prGZoKQFNVJghdWCkV",
"symbol":"SVT",
"name":"Solvent",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/22387/large/svt.png?1641789503",
"coingeckoId":"solvent",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.0338361838,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":0,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.024792672838902977,
"max":0.025146003694290583
},
"week":{
"min":0.024792672838902977,
"max":0.0254821969772512
},
"month":{
"min":0.024792672838902977,
"max":0.03298935471084061
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"xLeM685ZkAZYXDKwzfB9eyszw1oELAmzCn45amKscmh",
"tokenA":{
"mint":"MEANeD3XDdUmNMsRGjASkSWdC8prLYsoRJ61pPeHctD",
"symbol":"MEAN",
"name":"Mean DAO",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/21557/large/89934951.png?1639466364",
"coingeckoId":"meanfi",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol":"USDC",
"name":"USD Coin",
"decimals":6,
"logoURI":"https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png?1547042389",
"coingeckoId":"usd-coin",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":64,
"price":0.1869875157878814,
"lpFeeRate":0.003,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":103364.1023981986,
"volume":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedA":{
"day":0,
"week":0,
"month":0
},
"volumeDenominatedB":{
"day":0,
"week":0,
"month":0
},
"priceRange":{
"day":{
"min":0.11803634723467636,
"max":0.11884950471245061
},
"week":{
"min":0.11777409675200227,
"max":0.12228297483328023
},
"month":{
"min":0.11777409675200227,
"max":0.15034210257517397
}
},
"feeApr":{
"day":0,
"week":0,
"month":0
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0,
"month":0
}
},
{
"address":"yWtKJS6e3K5HzBE9JeKZc322tUanJ3UraSUWf4fgCrR",
"tokenA":{
"mint":"So11111111111111111111111111111111111111112",
"symbol":"SOL",
"name":"Wrapped Solana",
"decimals":9,
"logoURI":"https://assets.coingecko.com/coins/images/21629/large/solana.jpg?1639626543",
"coingeckoId":"wrapped-solana",
"whitelisted":true,
"poolToken":false
},
"tokenB":{
"mint":"DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v",
"symbol":"svtDGOD",
"name":"DeGods Solvent Droplet",
"decimals":8,
"logoURI":"https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/DCgRa2RR7fCsD63M3NgHnoQedMtwH1jJCwZYXQqk9x3v/logo.png",
"coingeckoId":"svtDGOD",
"whitelisted":true,
"poolToken":false
},
"whitelisted":true,
"tickSpacing":128,
"price":1.0511635836327988,
"lpFeeRate":0.01,
"protocolFeeRate":0.03,
"whirlpoolsConfig":"2LecshUwdy9xi7meFgHtFJQNSKk4KdTrcpvaB56dP2NQ",
"modifiedTimeMs":1666023974502,
"tvl":1.7089545069098298,
"volume":{
"day":0,
"week":0.5559357764421308,
"month":0.5559357764421308
},
"volumeDenominatedA":{
"day":0,
"week":0.016183333333333334,
"month":0.016183333333333334
},
"volumeDenominatedB":{
"day":0,
"week":0.01701133066179079,
"month":0.01701133066179079
},
"feeApr":{
"day":0,
"week":0.3078274993259465,
"month":0.3078274993259465
},
"reward0Apr":{
"day":0,
"week":0,
"month":0
},
"reward1Apr":{
"day":0,
"week":0,
"month":0
},
"reward2Apr":{
"day":0,
"week":0,
"month":0
},
"totalApr":{
"day":0,
"week":0.3078274993259465,
"month":0.3078274993259465
}
}
],
"hasMore":false
}
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Resources/ORCA.png.meta
|
fileFormatVersion: 2
guid: 7e6718b3099e04ab597ccd4d5e7d792f
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca
|
solana_public_repos/solana-game-examples/seven-seas/unity/Assets/SolPlay/Orca/Resources/SOL.png.meta
|
fileFormatVersion: 2
guid: a693a59324bf646de950c4f1328cc670
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.