uvd-x402-sdk 0.3.2__py3-none-any.whl → 0.3.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- uvd_x402_sdk/__init__.py +1 -1
- uvd_x402_sdk/networks/evm.py +7 -7
- {uvd_x402_sdk-0.3.2.dist-info → uvd_x402_sdk-0.3.3.dist-info}/METADATA +7 -2
- {uvd_x402_sdk-0.3.2.dist-info → uvd_x402_sdk-0.3.3.dist-info}/RECORD +7 -7
- {uvd_x402_sdk-0.3.2.dist-info → uvd_x402_sdk-0.3.3.dist-info}/LICENSE +0 -0
- {uvd_x402_sdk-0.3.2.dist-info → uvd_x402_sdk-0.3.3.dist-info}/WHEEL +0 -0
- {uvd_x402_sdk-0.3.2.dist-info → uvd_x402_sdk-0.3.3.dist-info}/top_level.txt +0 -0
uvd_x402_sdk/__init__.py
CHANGED
uvd_x402_sdk/networks/evm.py
CHANGED
|
@@ -76,13 +76,13 @@ ETHEREUM = NetworkConfig(
|
|
|
76
76
|
"eurc": TokenConfig(
|
|
77
77
|
address="0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c",
|
|
78
78
|
decimals=6,
|
|
79
|
-
name="
|
|
79
|
+
name="Euro Coin",
|
|
80
80
|
version="2",
|
|
81
81
|
),
|
|
82
82
|
"ausd": TokenConfig(
|
|
83
83
|
address="0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
|
|
84
84
|
decimals=6,
|
|
85
|
-
name="Agora
|
|
85
|
+
name="Agora Dollar",
|
|
86
86
|
version="1",
|
|
87
87
|
),
|
|
88
88
|
"pyusd": TokenConfig(
|
|
@@ -116,7 +116,7 @@ POLYGON = NetworkConfig(
|
|
|
116
116
|
"ausd": TokenConfig(
|
|
117
117
|
address="0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
|
|
118
118
|
decimals=6,
|
|
119
|
-
name="Agora
|
|
119
|
+
name="Agora Dollar",
|
|
120
120
|
version="1",
|
|
121
121
|
),
|
|
122
122
|
},
|
|
@@ -144,7 +144,7 @@ ARBITRUM = NetworkConfig(
|
|
|
144
144
|
"ausd": TokenConfig(
|
|
145
145
|
address="0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
|
|
146
146
|
decimals=6,
|
|
147
|
-
name="Agora
|
|
147
|
+
name="Agora Dollar",
|
|
148
148
|
version="1",
|
|
149
149
|
),
|
|
150
150
|
},
|
|
@@ -186,13 +186,13 @@ AVALANCHE = NetworkConfig(
|
|
|
186
186
|
"eurc": TokenConfig(
|
|
187
187
|
address="0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD",
|
|
188
188
|
decimals=6,
|
|
189
|
-
name="
|
|
189
|
+
name="Euro Coin",
|
|
190
190
|
version="2",
|
|
191
191
|
),
|
|
192
192
|
"ausd": TokenConfig(
|
|
193
193
|
address="0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
|
|
194
194
|
decimals=6,
|
|
195
|
-
name="Agora
|
|
195
|
+
name="Agora Dollar",
|
|
196
196
|
version="1",
|
|
197
197
|
),
|
|
198
198
|
},
|
|
@@ -266,7 +266,7 @@ MONAD = NetworkConfig(
|
|
|
266
266
|
"ausd": TokenConfig(
|
|
267
267
|
address="0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a",
|
|
268
268
|
decimals=6,
|
|
269
|
-
name="Agora
|
|
269
|
+
name="Agora Dollar",
|
|
270
270
|
version="1",
|
|
271
271
|
),
|
|
272
272
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: uvd-x402-sdk
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: Python SDK for x402 payments - gasless crypto payments across 14 blockchains with multi-stablecoin support (USDC, EURC, AUSD, PYUSD)
|
|
5
5
|
Author-email: Ultravioleta DAO <dev@ultravioletadao.xyz>
|
|
6
6
|
Project-URL: Homepage, https://github.com/UltravioletaDAO/uvd-x402-sdk-python
|
|
@@ -712,7 +712,7 @@ The same token may use **different EIP-712 domain names on different chains**. T
|
|
|
712
712
|
|-------|----------|------|-----------|
|
|
713
713
|
| EURC | `"Euro Coin"` | `"EURC"` | `"Euro Coin"` |
|
|
714
714
|
| USDC | `"USD Coin"` | `"USD Coin"` | `"USD Coin"` |
|
|
715
|
-
| AUSD | `"
|
|
715
|
+
| AUSD | `"Agora Dollar"` | N/A | `"Agora Dollar"` |
|
|
716
716
|
| PYUSD | `"PayPal USD"` | N/A | N/A |
|
|
717
717
|
|
|
718
718
|
**Important:** Always use `get_token_config()` to get the correct domain name. Never hardcode domain names.
|
|
@@ -926,6 +926,11 @@ MIT License - see LICENSE file.
|
|
|
926
926
|
|
|
927
927
|
## Changelog
|
|
928
928
|
|
|
929
|
+
### v0.3.3 (2025-12-22)
|
|
930
|
+
|
|
931
|
+
- Fixed EIP-712 domain names: AUSD uses "Agora Dollar" (not "Agora USD")
|
|
932
|
+
- Fixed EURC domain name on Ethereum/Avalanche: "Euro Coin" (not "EURC")
|
|
933
|
+
|
|
929
934
|
### v0.3.2 (2025-12-21)
|
|
930
935
|
|
|
931
936
|
- Added critical implementation notes for multi-token support:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
uvd_x402_sdk/__init__.py,sha256=
|
|
1
|
+
uvd_x402_sdk/__init__.py,sha256=weJYmfHwc8_a2CeId5PJsmaL5EUtKqS_hoPndm6fE8g,4901
|
|
2
2
|
uvd_x402_sdk/client.py,sha256=QbK22DtC3HmvvCezphQ-UsYX468vKrIN-M_wF4pv9cM,18389
|
|
3
3
|
uvd_x402_sdk/config.py,sha256=BNGnX2RwZ_ELIcSKU7RkwTUcln4LMFZdCwG1ptASKN8,8644
|
|
4
4
|
uvd_x402_sdk/decorators.py,sha256=XJ7V4554hsa-AVDrizF1oKmeTysg5zlkQRcaeGBI73E,9767
|
|
@@ -12,12 +12,12 @@ uvd_x402_sdk/integrations/flask_integration.py,sha256=0iQKO5-WRxE76Pv-1jEl4lYhjC
|
|
|
12
12
|
uvd_x402_sdk/integrations/lambda_integration.py,sha256=nRf4o3nS6Syx-d5P0kEhz66y7jb_S4w-mwaIazgiA9c,10184
|
|
13
13
|
uvd_x402_sdk/networks/__init__.py,sha256=5EECOYHl2OukNv55sIJlHlU4XI9s1Uv2ksoXnxkpduM,2039
|
|
14
14
|
uvd_x402_sdk/networks/base.py,sha256=At8ujOr7snjWqdQQ2-vACQ4AshVvSn0FsennGF6BpQk,14347
|
|
15
|
-
uvd_x402_sdk/networks/evm.py,sha256=
|
|
15
|
+
uvd_x402_sdk/networks/evm.py,sha256=Ah-retCWfwE1pFvywQXz03aoRbbziSiJbgw4wp4DDoE,8915
|
|
16
16
|
uvd_x402_sdk/networks/near.py,sha256=sxbxT1NqjcENh8ysFLDpAx5DGizf1EI0YjwgviLfqcY,11608
|
|
17
17
|
uvd_x402_sdk/networks/solana.py,sha256=kVSHRi57eTJdBtgI8SUbHfQUxYzx-_YvI_bEB0HIvNg,9351
|
|
18
18
|
uvd_x402_sdk/networks/stellar.py,sha256=c-6re-dVc2-6gJ5rL4krUTaFsPz5vkactOJD-0wowBA,3534
|
|
19
|
-
uvd_x402_sdk-0.3.
|
|
20
|
-
uvd_x402_sdk-0.3.
|
|
21
|
-
uvd_x402_sdk-0.3.
|
|
22
|
-
uvd_x402_sdk-0.3.
|
|
23
|
-
uvd_x402_sdk-0.3.
|
|
19
|
+
uvd_x402_sdk-0.3.3.dist-info/LICENSE,sha256=OcLzB_iSgMbvk7b0dlyvleY_IbL2WUaPxvn1CHw2uAc,1073
|
|
20
|
+
uvd_x402_sdk-0.3.3.dist-info/METADATA,sha256=Aj7XqVbaMBvAKlMvd8VnjCzYFpoOrUBGRI0gXEFL7IM,29338
|
|
21
|
+
uvd_x402_sdk-0.3.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
22
|
+
uvd_x402_sdk-0.3.3.dist-info/top_level.txt,sha256=Exyjj_Kl7CDAGFMi72lT9oFPOYiRNZb3l8tr906mMmc,13
|
|
23
|
+
uvd_x402_sdk-0.3.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|