├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── agentipy ├── __init__.py ├── agent │ └── __init__.py ├── constants │ └── __init__.py ├── helpers │ └── __init__.py ├── langchain │ ├── __init__.py │ ├── allora │ │ ├── __init__.py │ │ ├── allora_get_all_topics.py │ │ ├── allora_get_inference_by_topic_id.py │ │ └── allora_get_price_prediction.py │ ├── backpack │ │ ├── __init__.py │ │ ├── account.py │ │ ├── history.py │ │ ├── market.py │ │ ├── orders.py │ │ ├── positions.py │ │ └── system.py │ ├── coingecko │ │ ├── __init__.py │ │ ├── gainers.py │ │ ├── pools.py │ │ ├── token_data.py │ │ └── trending.py │ ├── core │ │ ├── __init__.py │ │ ├── balance.py │ │ ├── burn_and_close.py │ │ ├── burn_and_close_multiple.py │ │ ├── create_image.py │ │ ├── data.py │ │ ├── deploy_token.py │ │ ├── fetch_price.py │ │ ├── get_wallet_address.py │ │ ├── report.py │ │ ├── stake.py │ │ ├── tps_calculator.py │ │ ├── trade.py │ │ └── transfer.py │ ├── curve │ │ ├── __init__.py │ │ ├── calculate_pump_curve.py │ │ └── pump_curve_state.py │ ├── cybersmanager │ │ ├── __init__.py │ │ └── create_coin.py │ ├── debridge │ │ ├── __init__.py │ │ ├── status.py │ │ └── transaction.py │ ├── domain │ │ ├── __init__.py │ │ ├── all_domains.py │ │ ├── all_top_level_domain.py │ │ ├── get_all_domain.py │ │ └── owned_domains.py │ ├── drift │ │ ├── __init__.py │ │ ├── account.py │ │ ├── insurance.py │ │ ├── market.py │ │ └── vault.py │ ├── elfaai │ │ ├── __init__.py │ │ ├── api.py │ │ ├── mentions.py │ │ ├── tokens.py │ │ └── twitter.py │ ├── faucet │ │ ├── __init__.py │ │ └── solana_request_funds.py │ ├── flash │ │ ├── __init__.py │ │ ├── close_trade.py │ │ └── open_trade.py │ ├── fluxbeam │ │ ├── __init__.py │ │ └── create_pool.py │ ├── gibwork │ │ ├── __init__.py │ │ └── create_task.py │ ├── helius │ │ ├── __init__.py │ │ ├── active_listings.py │ │ ├── address_name.py │ │ ├── balances.py │ │ ├── mintlists.py │ │ ├── nft_events.py │ │ ├── nft_fingerprint.py │ │ ├── nft_metadata.py │ │ ├── parsed_transaction_history.py │ │ ├── parsed_transactions.py │ │ ├── raw_transcations.py │ │ └── webhooks.py │ ├── jito │ │ ├── __init__.py │ │ ├── bundles.py │ │ ├── send_txn.py │ │ └── tip.py │ ├── land3 │ │ ├── __init__.py │ │ ├── land_collection.py │ │ └── land_nft.py │ ├── lightprotocolmanager │ │ ├── __init__.py │ │ └── send.py │ ├── lulo │ │ ├── __init__.py │ │ ├── lend.py │ │ └── withdraw.py │ ├── manifest │ │ ├── __init__.py │ │ ├── market.py │ │ └── orders.py │ ├── metaplex │ │ ├── __init__.py │ │ ├── assets.py │ │ ├── collections.py │ │ └── minting.py │ ├── meteora │ │ ├── __init__.py │ │ └── dlmm.py │ ├── moonshot │ │ ├── __init__.py │ │ ├── buy.py │ │ └── sell.py │ ├── orca │ │ ├── __init__.py │ │ ├── clmm.py │ │ ├── liquidity_pool.py │ │ └── positions.py │ ├── perpetual │ │ ├── __init__.py │ │ ├── close_perp_trade_long.py │ │ ├── close_perp_trade_short.py │ │ ├── open_perp_trade_long.py │ │ └── open_perp_trade_short.py │ ├── pumpfun │ │ ├── __init__.py │ │ ├── buy_token.py │ │ ├── launch_token.py │ │ └── sell_token.py │ ├── raydium │ │ ├── __init__.py │ │ ├── buy.py │ │ └── sell.py │ ├── rugcheck │ │ ├── __init__.py │ │ ├── fetch_all_domains.py │ │ ├── fetch_domain_records.py │ │ ├── fetch_domains_csv.py │ │ ├── fetch_leaderboard.py │ │ ├── fetch_most_viewed_tokens.py │ │ ├── fetch_new_tokens.py │ │ ├── fetch_recently_verified_tokens.py │ │ ├── fetch_token_flux_lp_lockers.py │ │ ├── fetch_token_lp_lockers.py │ │ ├── fetch_token_votes.py │ │ ├── fetch_trending_tokens.py │ │ └── lookup_domain.py │ ├── sendarcade │ │ ├── __init__.py │ │ └── rock_paper_scissors.py │ ├── sns │ │ ├── __init__.py │ │ ├── all_domains.py │ │ ├── favourite_domain.py │ │ ├── register.py │ │ └── resolve.py │ ├── solayermanager │ │ ├── __init__.py │ │ └── solayer_restake.py │ ├── solutiofi │ │ ├── __init__.py │ │ ├── burn_accounts.py │ │ ├── close_accounts.py │ │ ├── merge_tokens.py │ │ └── spread_token.py │ ├── squads │ │ ├── __init__.py │ │ ├── approve_multisig_proposal.py │ │ ├── create_multisig.py │ │ ├── create_multisig_proposal.py │ │ ├── deposit_to_multisig_treasury.py │ │ ├── execute_multisig_proposal.py │ │ ├── reject_multisig_proposal.py │ │ └── transfer_from_multisig.py │ ├── stork │ │ ├── __init__.py │ │ └── get_price.py │ ├── switchboard │ │ ├── __init__.py │ │ └── simulate_switchboard_feed.py │ ├── tensor │ │ ├── __init__.py │ │ └── trade.py │ ├── tiplink │ │ ├── __init__.py │ │ └── create_tiplink.py │ └── voltr │ │ ├── __init__.py │ │ ├── deposit_strategy.py │ │ ├── get_position_values.py │ │ └── withdraw_strategy.py ├── mcp │ ├── __init__.py │ ├── all_actions.py │ ├── allora │ │ └── __init__.py │ ├── core │ │ └── __init__.py │ ├── jupiter │ │ └── __init__.py │ └── mcp_server.py ├── tools │ ├── __init__.py │ ├── burn_and_close_account.py │ ├── create_gibwork.py │ ├── create_image.py │ ├── create_meteora_dlmm_pool.py │ ├── deploy_token.py │ ├── fetch_price.py │ ├── get_balance.py │ ├── get_token_data.py │ ├── get_tps.py │ ├── launch_pumpfun_token.py │ ├── request_faucet_funds.py │ ├── rugcheck.py │ ├── stake_with_jup.py │ ├── trade.py │ ├── transfer.py │ ├── use_3land.py │ ├── use_adrena.py │ ├── use_alldomains.py │ ├── use_allora.py │ ├── use_backpack.py │ ├── use_coingecko.py │ ├── use_cybers.py │ ├── use_debridge.py │ ├── use_drift.py │ ├── use_elfa_ai.py │ ├── use_flash.py │ ├── use_fluxbeam.py │ ├── use_helius.py │ ├── use_jito.py │ ├── use_lightprotocol.py │ ├── use_lulo.py │ ├── use_manifest.py │ ├── use_metaplex.py │ ├── use_moonshot.py │ ├── use_openpook.py │ ├── use_orca.py │ ├── use_pumpfun.py │ ├── use_pyth.py │ ├── use_raydium.py │ ├── use_sendarcade.py │ ├── use_sns.py │ ├── use_solayer.py │ ├── use_solutiofi.py │ ├── use_squads.py │ ├── use_stork.py │ ├── use_switchboard.py │ ├── use_tensor.py │ ├── use_tiplink.py │ └── use_voltr.py ├── types │ └── __init__.py ├── utils │ ├── __init__.py │ ├── agentipy_proxy │ │ ├── __init__.py │ │ └── utils.py │ ├── elfa_ai │ │ └── __init__.py │ ├── fluxbeam │ │ └── __init__.py │ ├── helius │ │ ├── __init__.py │ │ └── helpers │ │ │ ├── __init__.py │ │ │ └── utility.py │ ├── jito │ │ └── __init__.py │ ├── keypair.py │ ├── meteora_dlmm │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── helpers.py │ │ ├── idl.json │ │ ├── types.py │ │ └── utils.py │ ├── moonshot │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── curve.py │ │ ├── idl.json │ │ └── utils.py │ ├── raydium │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layouts.py │ │ ├── types.py │ │ └── utils.py │ ├── send_tx.py │ ├── stork │ │ ├── __init__.py │ │ ├── constants.py │ │ └── utils.py │ └── toJSON.py └── wallet │ ├── __init__.py │ └── solana_wallet_client.py ├── examples ├── Allora │ ├── allora-dashboard │ │ ├── app.py │ │ ├── readme.md │ │ ├── requirements.txt │ │ └── templates │ │ │ └── index.html │ ├── main.py │ └── readme.md ├── CryptoMarketDashboard │ ├── main.py │ ├── readme.md │ └── requirements.txt ├── Elfaai │ ├── elfaai1.py │ ├── elfaai2.py │ └── readme.md ├── Image_Generation │ ├── gen_img.py │ └── readme.md ├── MCP Server + Discord Bot │ ├── .python-version │ ├── discord_server.py │ ├── readme.md │ ├── requirements.txt │ ├── run_mcp.bat │ ├── run_mcp.sh │ └── server.py ├── langChain │ ├── Agentipy_CoinGecko_Explorer │ │ ├── coingecko_explorer.py │ │ └── readme.md │ └── CoinGecko │ │ ├── coingecko_chatbot.py │ │ └── readme.md ├── pydantic-ai ├── pyth_tool │ ├── main1.py │ ├── main2.py │ └── readme.md ├── rugCheck │ ├── readme.md │ └── rugcheck_cli.py └── tools_example │ ├── checkBal.py │ ├── fetch_price.py │ ├── readme.md │ ├── reqFaucet.py │ ├── test_get_tps_tool.py │ ├── test_rugcheck_tool.py │ ├── test_stake_with_jup.py │ ├── test_token_data_tool.py │ └── tiplink_creation.py ├── llms.txt ├── poetry.lock ├── pyproject.toml ├── setup.py └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/README.md -------------------------------------------------------------------------------- /agentipy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/__init__.py -------------------------------------------------------------------------------- /agentipy/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/agent/__init__.py -------------------------------------------------------------------------------- /agentipy/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/constants/__init__.py -------------------------------------------------------------------------------- /agentipy/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/helpers/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/allora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/allora/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/allora/allora_get_all_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/allora/allora_get_all_topics.py -------------------------------------------------------------------------------- /agentipy/langchain/allora/allora_get_inference_by_topic_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/allora/allora_get_inference_by_topic_id.py -------------------------------------------------------------------------------- /agentipy/langchain/allora/allora_get_price_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/allora/allora_get_price_prediction.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/account.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/history.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/market.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/orders.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/positions.py -------------------------------------------------------------------------------- /agentipy/langchain/backpack/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/backpack/system.py -------------------------------------------------------------------------------- /agentipy/langchain/coingecko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/coingecko/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/coingecko/gainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/coingecko/gainers.py -------------------------------------------------------------------------------- /agentipy/langchain/coingecko/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/coingecko/pools.py -------------------------------------------------------------------------------- /agentipy/langchain/coingecko/token_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/coingecko/token_data.py -------------------------------------------------------------------------------- /agentipy/langchain/coingecko/trending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/coingecko/trending.py -------------------------------------------------------------------------------- /agentipy/langchain/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/core/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/balance.py -------------------------------------------------------------------------------- /agentipy/langchain/core/burn_and_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/burn_and_close.py -------------------------------------------------------------------------------- /agentipy/langchain/core/burn_and_close_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/burn_and_close_multiple.py -------------------------------------------------------------------------------- /agentipy/langchain/core/create_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/create_image.py -------------------------------------------------------------------------------- /agentipy/langchain/core/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/data.py -------------------------------------------------------------------------------- /agentipy/langchain/core/deploy_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/deploy_token.py -------------------------------------------------------------------------------- /agentipy/langchain/core/fetch_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/fetch_price.py -------------------------------------------------------------------------------- /agentipy/langchain/core/get_wallet_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/get_wallet_address.py -------------------------------------------------------------------------------- /agentipy/langchain/core/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/report.py -------------------------------------------------------------------------------- /agentipy/langchain/core/stake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/stake.py -------------------------------------------------------------------------------- /agentipy/langchain/core/tps_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/tps_calculator.py -------------------------------------------------------------------------------- /agentipy/langchain/core/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/trade.py -------------------------------------------------------------------------------- /agentipy/langchain/core/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/core/transfer.py -------------------------------------------------------------------------------- /agentipy/langchain/curve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/curve/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/curve/calculate_pump_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/curve/calculate_pump_curve.py -------------------------------------------------------------------------------- /agentipy/langchain/curve/pump_curve_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/curve/pump_curve_state.py -------------------------------------------------------------------------------- /agentipy/langchain/cybersmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/cybersmanager/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/cybersmanager/create_coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/cybersmanager/create_coin.py -------------------------------------------------------------------------------- /agentipy/langchain/debridge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/debridge/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/debridge/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/debridge/status.py -------------------------------------------------------------------------------- /agentipy/langchain/debridge/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/debridge/transaction.py -------------------------------------------------------------------------------- /agentipy/langchain/domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/domain/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/domain/all_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/domain/all_domains.py -------------------------------------------------------------------------------- /agentipy/langchain/domain/all_top_level_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/domain/all_top_level_domain.py -------------------------------------------------------------------------------- /agentipy/langchain/domain/get_all_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/domain/get_all_domain.py -------------------------------------------------------------------------------- /agentipy/langchain/domain/owned_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/domain/owned_domains.py -------------------------------------------------------------------------------- /agentipy/langchain/drift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/drift/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/drift/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/drift/account.py -------------------------------------------------------------------------------- /agentipy/langchain/drift/insurance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/drift/insurance.py -------------------------------------------------------------------------------- /agentipy/langchain/drift/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/drift/market.py -------------------------------------------------------------------------------- /agentipy/langchain/drift/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/drift/vault.py -------------------------------------------------------------------------------- /agentipy/langchain/elfaai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/elfaai/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/elfaai/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/elfaai/api.py -------------------------------------------------------------------------------- /agentipy/langchain/elfaai/mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/elfaai/mentions.py -------------------------------------------------------------------------------- /agentipy/langchain/elfaai/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/elfaai/tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/elfaai/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/elfaai/twitter.py -------------------------------------------------------------------------------- /agentipy/langchain/faucet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/faucet/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/faucet/solana_request_funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/faucet/solana_request_funds.py -------------------------------------------------------------------------------- /agentipy/langchain/flash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/flash/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/flash/close_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/flash/close_trade.py -------------------------------------------------------------------------------- /agentipy/langchain/flash/open_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/flash/open_trade.py -------------------------------------------------------------------------------- /agentipy/langchain/fluxbeam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/fluxbeam/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/fluxbeam/create_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/fluxbeam/create_pool.py -------------------------------------------------------------------------------- /agentipy/langchain/gibwork/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/gibwork/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/gibwork/create_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/gibwork/create_task.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/active_listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/active_listings.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/address_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/address_name.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/balances.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/mintlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/mintlists.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/nft_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/nft_events.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/nft_fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/nft_fingerprint.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/nft_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/nft_metadata.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/parsed_transaction_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/parsed_transaction_history.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/parsed_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/parsed_transactions.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/raw_transcations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/raw_transcations.py -------------------------------------------------------------------------------- /agentipy/langchain/helius/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/helius/webhooks.py -------------------------------------------------------------------------------- /agentipy/langchain/jito/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/jito/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/jito/bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/jito/bundles.py -------------------------------------------------------------------------------- /agentipy/langchain/jito/send_txn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/jito/send_txn.py -------------------------------------------------------------------------------- /agentipy/langchain/jito/tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/jito/tip.py -------------------------------------------------------------------------------- /agentipy/langchain/land3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/land3/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/land3/land_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/land3/land_collection.py -------------------------------------------------------------------------------- /agentipy/langchain/land3/land_nft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/land3/land_nft.py -------------------------------------------------------------------------------- /agentipy/langchain/lightprotocolmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/lightprotocolmanager/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/lightprotocolmanager/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/lightprotocolmanager/send.py -------------------------------------------------------------------------------- /agentipy/langchain/lulo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/lulo/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/lulo/lend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/lulo/lend.py -------------------------------------------------------------------------------- /agentipy/langchain/lulo/withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/lulo/withdraw.py -------------------------------------------------------------------------------- /agentipy/langchain/manifest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/manifest/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/manifest/market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/manifest/market.py -------------------------------------------------------------------------------- /agentipy/langchain/manifest/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/manifest/orders.py -------------------------------------------------------------------------------- /agentipy/langchain/metaplex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/metaplex/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/metaplex/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/metaplex/assets.py -------------------------------------------------------------------------------- /agentipy/langchain/metaplex/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/metaplex/collections.py -------------------------------------------------------------------------------- /agentipy/langchain/metaplex/minting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/metaplex/minting.py -------------------------------------------------------------------------------- /agentipy/langchain/meteora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/meteora/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/meteora/dlmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/meteora/dlmm.py -------------------------------------------------------------------------------- /agentipy/langchain/moonshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/moonshot/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/moonshot/buy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/moonshot/buy.py -------------------------------------------------------------------------------- /agentipy/langchain/moonshot/sell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/moonshot/sell.py -------------------------------------------------------------------------------- /agentipy/langchain/orca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/orca/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/orca/clmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/orca/clmm.py -------------------------------------------------------------------------------- /agentipy/langchain/orca/liquidity_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/orca/liquidity_pool.py -------------------------------------------------------------------------------- /agentipy/langchain/orca/positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/orca/positions.py -------------------------------------------------------------------------------- /agentipy/langchain/perpetual/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/perpetual/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/perpetual/close_perp_trade_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/perpetual/close_perp_trade_long.py -------------------------------------------------------------------------------- /agentipy/langchain/perpetual/close_perp_trade_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/perpetual/close_perp_trade_short.py -------------------------------------------------------------------------------- /agentipy/langchain/perpetual/open_perp_trade_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/perpetual/open_perp_trade_long.py -------------------------------------------------------------------------------- /agentipy/langchain/perpetual/open_perp_trade_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/perpetual/open_perp_trade_short.py -------------------------------------------------------------------------------- /agentipy/langchain/pumpfun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/pumpfun/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/pumpfun/buy_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/pumpfun/buy_token.py -------------------------------------------------------------------------------- /agentipy/langchain/pumpfun/launch_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/pumpfun/launch_token.py -------------------------------------------------------------------------------- /agentipy/langchain/pumpfun/sell_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/pumpfun/sell_token.py -------------------------------------------------------------------------------- /agentipy/langchain/raydium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/raydium/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/raydium/buy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/raydium/buy.py -------------------------------------------------------------------------------- /agentipy/langchain/raydium/sell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/raydium/sell.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_all_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_all_domains.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_domain_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_domain_records.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_domains_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_domains_csv.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_leaderboard.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_most_viewed_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_most_viewed_tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_new_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_new_tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_recently_verified_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_recently_verified_tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_token_flux_lp_lockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_token_flux_lp_lockers.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_token_lp_lockers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_token_lp_lockers.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_token_votes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_token_votes.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/fetch_trending_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/fetch_trending_tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/rugcheck/lookup_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/rugcheck/lookup_domain.py -------------------------------------------------------------------------------- /agentipy/langchain/sendarcade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sendarcade/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/sendarcade/rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sendarcade/rock_paper_scissors.py -------------------------------------------------------------------------------- /agentipy/langchain/sns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sns/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/sns/all_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sns/all_domains.py -------------------------------------------------------------------------------- /agentipy/langchain/sns/favourite_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sns/favourite_domain.py -------------------------------------------------------------------------------- /agentipy/langchain/sns/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sns/register.py -------------------------------------------------------------------------------- /agentipy/langchain/sns/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/sns/resolve.py -------------------------------------------------------------------------------- /agentipy/langchain/solayermanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solayermanager/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/solayermanager/solayer_restake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solayermanager/solayer_restake.py -------------------------------------------------------------------------------- /agentipy/langchain/solutiofi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solutiofi/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/solutiofi/burn_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solutiofi/burn_accounts.py -------------------------------------------------------------------------------- /agentipy/langchain/solutiofi/close_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solutiofi/close_accounts.py -------------------------------------------------------------------------------- /agentipy/langchain/solutiofi/merge_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solutiofi/merge_tokens.py -------------------------------------------------------------------------------- /agentipy/langchain/solutiofi/spread_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/solutiofi/spread_token.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/approve_multisig_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/approve_multisig_proposal.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/create_multisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/create_multisig.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/create_multisig_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/create_multisig_proposal.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/deposit_to_multisig_treasury.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/deposit_to_multisig_treasury.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/execute_multisig_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/execute_multisig_proposal.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/reject_multisig_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/reject_multisig_proposal.py -------------------------------------------------------------------------------- /agentipy/langchain/squads/transfer_from_multisig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/squads/transfer_from_multisig.py -------------------------------------------------------------------------------- /agentipy/langchain/stork/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/stork/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/stork/get_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/stork/get_price.py -------------------------------------------------------------------------------- /agentipy/langchain/switchboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/switchboard/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/switchboard/simulate_switchboard_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/switchboard/simulate_switchboard_feed.py -------------------------------------------------------------------------------- /agentipy/langchain/tensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/tensor/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/tensor/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/tensor/trade.py -------------------------------------------------------------------------------- /agentipy/langchain/tiplink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/tiplink/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/tiplink/create_tiplink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/tiplink/create_tiplink.py -------------------------------------------------------------------------------- /agentipy/langchain/voltr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/voltr/__init__.py -------------------------------------------------------------------------------- /agentipy/langchain/voltr/deposit_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/voltr/deposit_strategy.py -------------------------------------------------------------------------------- /agentipy/langchain/voltr/get_position_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/voltr/get_position_values.py -------------------------------------------------------------------------------- /agentipy/langchain/voltr/withdraw_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/langchain/voltr/withdraw_strategy.py -------------------------------------------------------------------------------- /agentipy/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/mcp/all_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/mcp/all_actions.py -------------------------------------------------------------------------------- /agentipy/mcp/allora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/mcp/allora/__init__.py -------------------------------------------------------------------------------- /agentipy/mcp/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/mcp/core/__init__.py -------------------------------------------------------------------------------- /agentipy/mcp/jupiter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/mcp/jupiter/__init__.py -------------------------------------------------------------------------------- /agentipy/mcp/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/mcp/mcp_server.py -------------------------------------------------------------------------------- /agentipy/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/tools/burn_and_close_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/burn_and_close_account.py -------------------------------------------------------------------------------- /agentipy/tools/create_gibwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/create_gibwork.py -------------------------------------------------------------------------------- /agentipy/tools/create_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/create_image.py -------------------------------------------------------------------------------- /agentipy/tools/create_meteora_dlmm_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/create_meteora_dlmm_pool.py -------------------------------------------------------------------------------- /agentipy/tools/deploy_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/deploy_token.py -------------------------------------------------------------------------------- /agentipy/tools/fetch_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/fetch_price.py -------------------------------------------------------------------------------- /agentipy/tools/get_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/get_balance.py -------------------------------------------------------------------------------- /agentipy/tools/get_token_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/get_token_data.py -------------------------------------------------------------------------------- /agentipy/tools/get_tps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/get_tps.py -------------------------------------------------------------------------------- /agentipy/tools/launch_pumpfun_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/launch_pumpfun_token.py -------------------------------------------------------------------------------- /agentipy/tools/request_faucet_funds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/request_faucet_funds.py -------------------------------------------------------------------------------- /agentipy/tools/rugcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/rugcheck.py -------------------------------------------------------------------------------- /agentipy/tools/stake_with_jup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/stake_with_jup.py -------------------------------------------------------------------------------- /agentipy/tools/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/trade.py -------------------------------------------------------------------------------- /agentipy/tools/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/transfer.py -------------------------------------------------------------------------------- /agentipy/tools/use_3land.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_3land.py -------------------------------------------------------------------------------- /agentipy/tools/use_adrena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_adrena.py -------------------------------------------------------------------------------- /agentipy/tools/use_alldomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_alldomains.py -------------------------------------------------------------------------------- /agentipy/tools/use_allora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_allora.py -------------------------------------------------------------------------------- /agentipy/tools/use_backpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_backpack.py -------------------------------------------------------------------------------- /agentipy/tools/use_coingecko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_coingecko.py -------------------------------------------------------------------------------- /agentipy/tools/use_cybers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_cybers.py -------------------------------------------------------------------------------- /agentipy/tools/use_debridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_debridge.py -------------------------------------------------------------------------------- /agentipy/tools/use_drift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_drift.py -------------------------------------------------------------------------------- /agentipy/tools/use_elfa_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_elfa_ai.py -------------------------------------------------------------------------------- /agentipy/tools/use_flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_flash.py -------------------------------------------------------------------------------- /agentipy/tools/use_fluxbeam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_fluxbeam.py -------------------------------------------------------------------------------- /agentipy/tools/use_helius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_helius.py -------------------------------------------------------------------------------- /agentipy/tools/use_jito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_jito.py -------------------------------------------------------------------------------- /agentipy/tools/use_lightprotocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_lightprotocol.py -------------------------------------------------------------------------------- /agentipy/tools/use_lulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_lulo.py -------------------------------------------------------------------------------- /agentipy/tools/use_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_manifest.py -------------------------------------------------------------------------------- /agentipy/tools/use_metaplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_metaplex.py -------------------------------------------------------------------------------- /agentipy/tools/use_moonshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_moonshot.py -------------------------------------------------------------------------------- /agentipy/tools/use_openpook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_openpook.py -------------------------------------------------------------------------------- /agentipy/tools/use_orca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_orca.py -------------------------------------------------------------------------------- /agentipy/tools/use_pumpfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_pumpfun.py -------------------------------------------------------------------------------- /agentipy/tools/use_pyth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_pyth.py -------------------------------------------------------------------------------- /agentipy/tools/use_raydium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_raydium.py -------------------------------------------------------------------------------- /agentipy/tools/use_sendarcade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_sendarcade.py -------------------------------------------------------------------------------- /agentipy/tools/use_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_sns.py -------------------------------------------------------------------------------- /agentipy/tools/use_solayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_solayer.py -------------------------------------------------------------------------------- /agentipy/tools/use_solutiofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_solutiofi.py -------------------------------------------------------------------------------- /agentipy/tools/use_squads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_squads.py -------------------------------------------------------------------------------- /agentipy/tools/use_stork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_stork.py -------------------------------------------------------------------------------- /agentipy/tools/use_switchboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_switchboard.py -------------------------------------------------------------------------------- /agentipy/tools/use_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_tensor.py -------------------------------------------------------------------------------- /agentipy/tools/use_tiplink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_tiplink.py -------------------------------------------------------------------------------- /agentipy/tools/use_voltr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/tools/use_voltr.py -------------------------------------------------------------------------------- /agentipy/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/types/__init__.py -------------------------------------------------------------------------------- /agentipy/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/agentipy_proxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/agentipy_proxy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/agentipy_proxy/utils.py -------------------------------------------------------------------------------- /agentipy/utils/elfa_ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/elfa_ai/__init__.py -------------------------------------------------------------------------------- /agentipy/utils/fluxbeam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/fluxbeam/__init__.py -------------------------------------------------------------------------------- /agentipy/utils/helius/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/helius/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/helius/helpers/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/helius/helpers/utility.py -------------------------------------------------------------------------------- /agentipy/utils/jito/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/jito/__init__.py -------------------------------------------------------------------------------- /agentipy/utils/keypair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/keypair.py -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/__init__.py -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/constants.py -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/helpers.py -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/idl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/idl.json -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/types.py -------------------------------------------------------------------------------- /agentipy/utils/meteora_dlmm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/meteora_dlmm/utils.py -------------------------------------------------------------------------------- /agentipy/utils/moonshot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/moonshot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/moonshot/constants.py -------------------------------------------------------------------------------- /agentipy/utils/moonshot/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/moonshot/curve.py -------------------------------------------------------------------------------- /agentipy/utils/moonshot/idl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/moonshot/idl.json -------------------------------------------------------------------------------- /agentipy/utils/moonshot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/moonshot/utils.py -------------------------------------------------------------------------------- /agentipy/utils/raydium/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/raydium/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/raydium/constants.py -------------------------------------------------------------------------------- /agentipy/utils/raydium/layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/raydium/layouts.py -------------------------------------------------------------------------------- /agentipy/utils/raydium/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/raydium/types.py -------------------------------------------------------------------------------- /agentipy/utils/raydium/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/raydium/utils.py -------------------------------------------------------------------------------- /agentipy/utils/send_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/send_tx.py -------------------------------------------------------------------------------- /agentipy/utils/stork/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agentipy/utils/stork/constants.py: -------------------------------------------------------------------------------- 1 | STORK_HTTPS_ENDPOINT = "https://rest.jp.stork-oracle.network" -------------------------------------------------------------------------------- /agentipy/utils/stork/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/stork/utils.py -------------------------------------------------------------------------------- /agentipy/utils/toJSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/utils/toJSON.py -------------------------------------------------------------------------------- /agentipy/wallet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/wallet/__init__.py -------------------------------------------------------------------------------- /agentipy/wallet/solana_wallet_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/agentipy/wallet/solana_wallet_client.py -------------------------------------------------------------------------------- /examples/Allora/allora-dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Allora/allora-dashboard/app.py -------------------------------------------------------------------------------- /examples/Allora/allora-dashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Allora/allora-dashboard/readme.md -------------------------------------------------------------------------------- /examples/Allora/allora-dashboard/requirements.txt: -------------------------------------------------------------------------------- 1 | agentipy 2 | allora-sdk 3 | flask 4 | python-dotenv -------------------------------------------------------------------------------- /examples/Allora/allora-dashboard/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Allora/allora-dashboard/templates/index.html -------------------------------------------------------------------------------- /examples/Allora/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Allora/main.py -------------------------------------------------------------------------------- /examples/Allora/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Allora/readme.md -------------------------------------------------------------------------------- /examples/CryptoMarketDashboard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/CryptoMarketDashboard/main.py -------------------------------------------------------------------------------- /examples/CryptoMarketDashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/CryptoMarketDashboard/readme.md -------------------------------------------------------------------------------- /examples/CryptoMarketDashboard/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | python-dotenv 3 | agentipy -------------------------------------------------------------------------------- /examples/Elfaai/elfaai1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Elfaai/elfaai1.py -------------------------------------------------------------------------------- /examples/Elfaai/elfaai2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Elfaai/elfaai2.py -------------------------------------------------------------------------------- /examples/Elfaai/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Elfaai/readme.md -------------------------------------------------------------------------------- /examples/Image_Generation/gen_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Image_Generation/gen_img.py -------------------------------------------------------------------------------- /examples/Image_Generation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/Image_Generation/readme.md -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/.python-version: -------------------------------------------------------------------------------- 1 | 3.13.2 2 | -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/discord_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/discord_server.py -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/readme.md -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/requirements.txt -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/run_mcp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/run_mcp.bat -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/run_mcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/run_mcp.sh -------------------------------------------------------------------------------- /examples/MCP Server + Discord Bot/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/MCP Server + Discord Bot/server.py -------------------------------------------------------------------------------- /examples/langChain/Agentipy_CoinGecko_Explorer/coingecko_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/langChain/Agentipy_CoinGecko_Explorer/coingecko_explorer.py -------------------------------------------------------------------------------- /examples/langChain/Agentipy_CoinGecko_Explorer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/langChain/Agentipy_CoinGecko_Explorer/readme.md -------------------------------------------------------------------------------- /examples/langChain/CoinGecko/coingecko_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/langChain/CoinGecko/coingecko_chatbot.py -------------------------------------------------------------------------------- /examples/langChain/CoinGecko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/langChain/CoinGecko/readme.md -------------------------------------------------------------------------------- /examples/pydantic-ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/pydantic-ai -------------------------------------------------------------------------------- /examples/pyth_tool/main1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/pyth_tool/main1.py -------------------------------------------------------------------------------- /examples/pyth_tool/main2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/pyth_tool/main2.py -------------------------------------------------------------------------------- /examples/pyth_tool/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/pyth_tool/readme.md -------------------------------------------------------------------------------- /examples/rugCheck/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/rugCheck/readme.md -------------------------------------------------------------------------------- /examples/rugCheck/rugcheck_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/rugCheck/rugcheck_cli.py -------------------------------------------------------------------------------- /examples/tools_example/checkBal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/checkBal.py -------------------------------------------------------------------------------- /examples/tools_example/fetch_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/fetch_price.py -------------------------------------------------------------------------------- /examples/tools_example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/readme.md -------------------------------------------------------------------------------- /examples/tools_example/reqFaucet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/reqFaucet.py -------------------------------------------------------------------------------- /examples/tools_example/test_get_tps_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/test_get_tps_tool.py -------------------------------------------------------------------------------- /examples/tools_example/test_rugcheck_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/test_rugcheck_tool.py -------------------------------------------------------------------------------- /examples/tools_example/test_stake_with_jup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/test_stake_with_jup.py -------------------------------------------------------------------------------- /examples/tools_example/test_token_data_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/test_token_data_tool.py -------------------------------------------------------------------------------- /examples/tools_example/tiplink_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/examples/tools_example/tiplink_creation.py -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/llms.txt -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niceberginc/agentipy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------