Skip to content

Commit 2c270d4

Browse files
committed
chore: bump version to 0.2.0
1 parent 53e430d commit 2c270d4

6 files changed

Lines changed: 41 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0] - 2026-01-23
11+
12+
### Changed
13+
- Updated to latest Vortex SDK
14+
1015
## [0.1.0] - 2025-11-04
1116

1217
### Added

examples/brl_onramp_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
def main():
1111
# Initialize the SDK
1212
config = {
13-
"apiBaseUrl": "https://api-staging.vortexfinance.co",
14-
"moonbeamWsUrl": "wss://moonbeam.ibp.network"
13+
"apiBaseUrl": "https://api.vortexfinance.co",
14+
"moonbeamWsUrl": "wss://wss.api.moonbeam.network"
1515
}
1616

1717
sdk = VortexSDK(config)
@@ -37,7 +37,7 @@ def main():
3737
print("\nRegistering ramp...")
3838
onramp_data = {
3939
"destinationAddress": "0x1234567890123456789012345678901234567890", # Your wallet address
40-
"taxId": "123.456.789-00" # Your CPF
40+
"taxId": "08786985906" # Your CPF
4141
}
4242

4343
result = sdk.register_ramp(quote, onramp_data)

package.json

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,39 @@
11
{
22
"dependencies": {
3-
"@vortexfi/sdk": "0.4.7"
3+
"@vortexfi/sdk": "0.5.0"
4+
},
5+
"overrides": {
6+
"@polkadot/api": "16.4.9",
7+
"@polkadot/api-augment": "16.4.9",
8+
"@polkadot/api-base": "16.4.9",
9+
"@polkadot/api-derive": "16.4.9",
10+
"@polkadot/rpc-augment": "16.4.9",
11+
"@polkadot/rpc-core": "16.4.9",
12+
"@polkadot/rpc-provider": "16.4.9",
13+
"@polkadot/types": "16.4.9",
14+
"@polkadot/types-augment": "16.4.9",
15+
"@polkadot/types-codec": "16.4.9",
16+
"@polkadot/types-create": "16.4.9",
17+
"@polkadot/types-known": "16.4.9"
18+
},
19+
"resolutions": {
20+
"@polkadot/api": "16.4.9",
21+
"@polkadot/api-augment": "16.4.9",
22+
"@polkadot/api-base": "16.4.9",
23+
"@polkadot/api-derive": "16.4.9",
24+
"@polkadot/rpc-augment": "16.4.9",
25+
"@polkadot/rpc-core": "16.4.9",
26+
"@polkadot/rpc-provider": "16.4.9",
27+
"@polkadot/types": "16.4.9",
28+
"@polkadot/types-augment": "16.4.9",
29+
"@polkadot/types-codec": "16.4.9",
30+
"@polkadot/types-create": "16.4.9",
31+
"@polkadot/types-known": "16.4.9"
432
},
533
"description": "Node.js dependencies for Vortex SDK Python wrapper",
634
"devDependencies": {},
735
"name": "vortex-sdk-python-deps",
836
"private": true,
937
"scripts": {},
10-
"version": "0.1.0"
38+
"version": "0.2.0"
1139
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "vortex-sdk-python"
7-
version = "0.1.3"
7+
version = "0.2.0"
88
description = "Python wrapper for Vortex SDK using Node.js subprocess"
99
readme = "README.md"
1010
authors = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="vortex-sdk-python",
8-
version="0.1.3",
8+
version="0.2.0",
99
author="Pendulum Chain",
1010
author_email="info@pendulumchain.tech",
1111
description="Python wrapper for Vortex SDK using Node.js subprocess",

src/vortex_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
APIError,
1919
)
2020

21-
__version__ = "0.1.3"
21+
__version__ = "0.2.0"
2222
__all__ = [
2323
"VortexSDK",
2424
"FiatToken",

0 commit comments

Comments
 (0)