Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.3"
".": "0.1.0-alpha.4"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 77
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/coingecko%2Fcoingecko-672da434b7c16835742e7051aa49aa7c953646ea384ead8b64fcbfd611c9dc13.yml
openapi_spec_hash: 8c8c984aa692011f8b7b5f62d9ad3211
config_hash: ee0fcee03e9f9b77015be66024d42405
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/coingecko%2Fcoingecko-43b16535b1ce6386bbad2363e03bd69351eb520637ff2ac11d18f7fb4d09ed6c.yml
openapi_spec_hash: fc5235c0058e661a824821019684dc7c
config_hash: da49953fdfba4fd2615028c076537ed0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.4 (2025-06-02)

Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/coingecko/coingecko-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)

### Features

* **api:** update via SDK Studio ([0c72a75](https://github.com/coingecko/coingecko-python/commit/0c72a7510464ed2bc0620d1ed64b6ab40f7145b7))

## 0.1.0-alpha.3 (2025-05-29)

Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/coingecko/coingecko-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "coingecko_python"
version = "0.1.0-alpha.3"
version = "0.1.0-alpha.4"
description = "The official Python library for the coingecko API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/coingecko_python/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "coingecko_python"
__version__ = "0.1.0-alpha.3" # x-release-please-version
__version__ = "0.1.0-alpha.4" # x-release-please-version
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def get(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TradeGetResponse:
"""
This endpoint allows you to **query the last 300 trades in the past 24 hours
based on the provided token contract address on a network**
This endpoint allows you to **query the last 300 trades in the past 24 hours,
across all pools, based on the provided token contract address on a network**

Args:
trade_volume_in_usd_greater_than: filter trades by trade volume in USD greater than this value Default value: 0
Expand Down Expand Up @@ -123,8 +123,8 @@ async def get(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> TradeGetResponse:
"""
This endpoint allows you to **query the last 300 trades in the past 24 hours
based on the provided token contract address on a network**
This endpoint allows you to **query the last 300 trades in the past 24 hours,
across all pools, based on the provided token contract address on a network**

Args:
trade_volume_in_usd_greater_than: filter trades by trade volume in USD greater than this value Default value: 0
Expand Down
Loading