circle-developer-controlled-wallets 1.0__py3-none-any.whl → 1.1.1__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.
Potentially problematic release.
This version of circle-developer-controlled-wallets might be problematic. Click here for more details.
- circle/web3/developer_controlled_wallets/__init__.py +26 -24
- circle/web3/developer_controlled_wallets/api/signing_api.py +2 -2
- circle/web3/developer_controlled_wallets/api/token_lookup_api.py +1 -1
- circle/web3/developer_controlled_wallets/api/transactions_api.py +25 -23
- circle/web3/developer_controlled_wallets/api/wallet_sets_api.py +118 -80
- circle/web3/developer_controlled_wallets/api/wallets_api.py +240 -209
- circle/web3/developer_controlled_wallets/api_client.py +1 -1
- circle/web3/developer_controlled_wallets/configuration.py +3 -3
- circle/web3/developer_controlled_wallets/models/__init__.py +25 -23
- circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_response.py +1 -1
- circle/web3/developer_controlled_wallets/models/account_type.py +1 -1
- circle/web3/developer_controlled_wallets/models/bad_request_response.py +85 -0
- circle/web3/developer_controlled_wallets/models/balance.py +1 -1
- circle/web3/developer_controlled_wallets/models/blockchain.py +3 -1
- circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_response.py +1 -1
- circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py +4 -4
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py +6 -5
- circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py +1 -1
- circle/web3/developer_controlled_wallets/models/{create_developer_wallet_request.py → create_wallet_request.py} +9 -9
- circle/web3/developer_controlled_wallets/models/{create_developer_wallet_set_request.py → create_wallet_set_request.py} +11 -11
- circle/web3/developer_controlled_wallets/models/custody_type.py +1 -1
- circle/web3/developer_controlled_wallets/models/{update_wallet_set_metadata_response.py → developer_wallet_set.py} +26 -17
- circle/web3/developer_controlled_wallets/models/{wallet_set_response.py → end_user_wallet_set.py} +24 -20
- circle/web3/developer_controlled_wallets/models/{ext_wallet_response_wallet.py → eoa_wallet.py} +29 -25
- circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py +2 -2
- circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request_blockchain.py +40 -0
- circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py +2 -1
- circle/web3/developer_controlled_wallets/models/nft.py +1 -1
- circle/web3/developer_controlled_wallets/models/not_authorized_response.py +85 -0
- circle/web3/developer_controlled_wallets/models/not_found_response.py +85 -0
- circle/web3/developer_controlled_wallets/models/sca_wallet.py +117 -0
- circle/web3/developer_controlled_wallets/models/token_blockchain.py +42 -0
- circle/web3/developer_controlled_wallets/models/token_response.py +3 -3
- circle/web3/developer_controlled_wallets/models/transaction.py +3 -3
- circle/web3/developer_controlled_wallets/models/{ext_update_wallet_metadata_request.py → update_wallet_request.py} +9 -9
- circle/web3/developer_controlled_wallets/models/{update_wallet_set_metadata_request.py → update_wallet_set_request.py} +8 -8
- circle/web3/developer_controlled_wallets/models/{wallet_response.py → wallet.py} +17 -22
- circle/web3/developer_controlled_wallets/models/{update_wallet200_response.py → wallet2.py} +13 -13
- circle/web3/developer_controlled_wallets/models/{ext_wallet_response.py → wallet2_data.py} +13 -13
- circle/web3/developer_controlled_wallets/models/wallet_metadata.py +1 -1
- circle/web3/developer_controlled_wallets/models/wallet_set.py +87 -0
- circle/web3/developer_controlled_wallets/models/{get_wallet200_response.py → wallet_set2.py} +13 -13
- circle/web3/developer_controlled_wallets/models/{get_wallet_set_by_id_response.py → wallet_set2_data.py} +12 -12
- circle/web3/developer_controlled_wallets/models/{list_wallets200_response.py → wallet_sets.py} +13 -13
- circle/web3/developer_controlled_wallets/models/{get_wallet_sets_response.py → wallet_sets_data.py} +12 -12
- circle/web3/developer_controlled_wallets/models/wallet_sets_data_wallet_sets_inner.py +140 -0
- circle/web3/developer_controlled_wallets/models/wallet_state.py +1 -1
- circle/web3/developer_controlled_wallets/models/{get_wallet_set200_response.py → wallets.py} +13 -13
- circle/web3/developer_controlled_wallets/models/{ext_get_all_wallets_response.py → wallets_data.py} +13 -13
- circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py +140 -0
- {circle_developer_controlled_wallets-1.0.dist-info → circle_developer_controlled_wallets-1.1.1.dist-info}/METADATA +4 -4
- {circle_developer_controlled_wallets-1.0.dist-info → circle_developer_controlled_wallets-1.1.1.dist-info}/RECORD +54 -52
- circle/web3/developer_controlled_wallets/models/create_developer_wallet200_response.py +0 -87
- circle/web3/developer_controlled_wallets/models/create_developer_wallet_response.py +0 -91
- circle/web3/developer_controlled_wallets/models/create_developer_wallet_set_response.py +0 -87
- circle/web3/developer_controlled_wallets/models/create_wallet_set200_response.py +0 -87
- circle/web3/developer_controlled_wallets/models/ext_get_wallet_by_id_response.py +0 -87
- circle/web3/developer_controlled_wallets/models/list_wallet_sets200_response.py +0 -87
- circle/web3/developer_controlled_wallets/models/update_wallet_set200_response.py +0 -87
- {circle_developer_controlled_wallets-1.0.dist-info → circle_developer_controlled_wallets-1.1.1.dist-info}/WHEEL +0 -0
- {circle_developer_controlled_wallets-1.0.dist-info → circle_developer_controlled_wallets-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,54 +1,50 @@
|
|
|
1
1
|
circle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
circle/web3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
circle/web3/developer_controlled_wallets/__init__.py,sha256=
|
|
4
|
-
circle/web3/developer_controlled_wallets/api_client.py,sha256=
|
|
3
|
+
circle/web3/developer_controlled_wallets/__init__.py,sha256=91ZdtBRn8ElxENL2dtq7HDP4S_kax7KKgivVWRQrE70,9997
|
|
4
|
+
circle/web3/developer_controlled_wallets/api_client.py,sha256=RoaVOZ3MM7aI0qqpM0b9NFuDCk9sttvovof0yySSQAI,31612
|
|
5
5
|
circle/web3/developer_controlled_wallets/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
|
|
6
|
-
circle/web3/developer_controlled_wallets/configuration.py,sha256=
|
|
6
|
+
circle/web3/developer_controlled_wallets/configuration.py,sha256=_seV9byqUn7E4hg7_2p8LRmbR1TX33aHXpsfc5DhWdI,15101
|
|
7
7
|
circle/web3/developer_controlled_wallets/exceptions.py,sha256=_2uyalsxooiwXa05bg46v7jt1aSrhzOD9etoqSyZEac,5218
|
|
8
8
|
circle/web3/developer_controlled_wallets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
circle/web3/developer_controlled_wallets/rest.py,sha256=L2w4OU_OfcJNZ3nwckgwq21B3gIOXkpFjsOP4QliIeY,12814
|
|
10
10
|
circle/web3/developer_controlled_wallets/api/__init__.py,sha256=OdeJef0RSUikrtSOaxsOkocXjHQYocnuXjq7TnT6W_Y,474
|
|
11
|
-
circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=
|
|
12
|
-
circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=
|
|
13
|
-
circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=
|
|
14
|
-
circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=
|
|
15
|
-
circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=
|
|
16
|
-
circle/web3/developer_controlled_wallets/models/__init__.py,sha256=
|
|
11
|
+
circle/web3/developer_controlled_wallets/api/signing_api.py,sha256=kvPHTMn2ppdl93LcxxxazFcfZ1j_rxilq0iFp7vpqzo,17295
|
|
12
|
+
circle/web3/developer_controlled_wallets/api/token_lookup_api.py,sha256=PX9uKAgBAW7F53__73xey_KY8hz41Q5unEF65WzwN7I,7847
|
|
13
|
+
circle/web3/developer_controlled_wallets/api/transactions_api.py,sha256=ms_8L-homN291gwi5CzLjLV0nZFsZ546fI71CaEPpwE,82262
|
|
14
|
+
circle/web3/developer_controlled_wallets/api/wallet_sets_api.py,sha256=VgBub1ntX4V5l30V6rUEJ119gOBeSsTQ-IGF7qFQC1E,39325
|
|
15
|
+
circle/web3/developer_controlled_wallets/api/wallets_api.py,sha256=dLZN0bTTMkFXL3BPRTnnbZ0TVE0XOzkvMSHTEKLZb7E,69656
|
|
16
|
+
circle/web3/developer_controlled_wallets/models/__init__.py,sha256=8eqMzcigNHDStozXJ4TvnuhD9jBRq4qAr7miNFVodDw,8793
|
|
17
17
|
circle/web3/developer_controlled_wallets/models/abi_parameters_inner.py,sha256=YX5BNB39myCXozO8yBzN-PnPC_81HovQEL8_i_irhpU,6093
|
|
18
18
|
circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_request.py,sha256=KN0KmXqM6BaiIfX5XDtfk_mIwkBqD7UykN2l2rnKLq4,3606
|
|
19
|
-
circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_response.py,sha256
|
|
20
|
-
circle/web3/developer_controlled_wallets/models/account_type.py,sha256=
|
|
21
|
-
circle/web3/developer_controlled_wallets/models/
|
|
22
|
-
circle/web3/developer_controlled_wallets/models/
|
|
19
|
+
circle/web3/developer_controlled_wallets/models/accelerate_transaction_for_developer_response.py,sha256=bo9jCA5rF9jyTWMtLzIDWSKeDI0wQl663f7zXvXjCis,2845
|
|
20
|
+
circle/web3/developer_controlled_wallets/models/account_type.py,sha256=u4F1PwPi6kNoXOcYtDHSXeNyoEDaCEm-glihpTwuhWE,981
|
|
21
|
+
circle/web3/developer_controlled_wallets/models/bad_request_response.py,sha256=ZaL7FhSV-tA8AFmXPXfcMblCzl8HT8LK5vzPhhM4KIs,2765
|
|
22
|
+
circle/web3/developer_controlled_wallets/models/balance.py,sha256=X_Itqp8ayUB2TI_7ai6j8MWWL5uUP624VbQWFmpURsI,3190
|
|
23
|
+
circle/web3/developer_controlled_wallets/models/blockchain.py,sha256=PwjSpv7-L6wnAs7Zc_OKOSMgWu3ZnTgoPhA8rXJQLBA,849
|
|
23
24
|
circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_request.py,sha256=PQaehF6SPZguQZcTJPwA8Z5xaGEe_JLekM_EkvEc6Ns,3574
|
|
24
|
-
circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_response.py,sha256=
|
|
25
|
-
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=
|
|
25
|
+
circle/web3/developer_controlled_wallets/models/cancel_transaction_for_developer_response.py,sha256=Un-RcFVY6dDvD-9Z5J9mImyen-9HchxmtotSnbBq0mE,2959
|
|
26
|
+
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_request.py,sha256=USGHNmPuVjKkfwrZjEX0GYg5NFnnM6TI3yNx63h-Pfs,8954
|
|
26
27
|
circle/web3/developer_controlled_wallets/models/create_contract_execution_transaction_for_developer_response.py,sha256=u46b7tNIaK-BwtIOC3LNpfMTuxq-dDlIgUX-7MBMrG8,3098
|
|
27
28
|
circle/web3/developer_controlled_wallets/models/create_developer_transaction_accelerate200_response.py,sha256=404Ij-YbLUElxuRulhLQFUIkCD269u2xLCzNSoY28jI,3236
|
|
28
29
|
circle/web3/developer_controlled_wallets/models/create_developer_transaction_cancel200_response.py,sha256=H7oa8-cKJV54XB6ULNT8cWvIy2CZU06rL39hX8Cftro,3188
|
|
29
30
|
circle/web3/developer_controlled_wallets/models/create_developer_transaction_contract_execution200_response.py,sha256=q5c0nENESRnol0SJnmkIuW0CjDf0PSeu1w6WGoHz1YU,3346
|
|
30
31
|
circle/web3/developer_controlled_wallets/models/create_developer_transaction_transfer200_response.py,sha256=_7MDTHhGRudKEX0-Ie6my2pfOf-ta5M3gG5ciEmZFgE,3237
|
|
31
|
-
circle/web3/developer_controlled_wallets/models/create_developer_wallet200_response.py,sha256=WBuglKOUB3FcG7bLjjbQ6zXd1StDeppET6CO5-dUiWE,3067
|
|
32
|
-
circle/web3/developer_controlled_wallets/models/create_developer_wallet_request.py,sha256=URjXw2QH_7g6DkhpzGOdh4O9LIMdzWBbSNLTP5X-g20,5239
|
|
33
|
-
circle/web3/developer_controlled_wallets/models/create_developer_wallet_response.py,sha256=PrShFK_c9qvG1y9YAGy6Dq5kRmsH9PscOBYFUIDhlTc,3265
|
|
34
|
-
circle/web3/developer_controlled_wallets/models/create_developer_wallet_set_request.py,sha256=mrUBgi_M6A2IWqs7n_--tG5f9W2FPCwgN6zIJIl3oD0,3626
|
|
35
|
-
circle/web3/developer_controlled_wallets/models/create_developer_wallet_set_response.py,sha256=xjhNtn5OWgVow_epmV1ALsSjYDopFqS4MJe7V8Z_KgI,3101
|
|
36
32
|
circle/web3/developer_controlled_wallets/models/create_transfer_estimate_fee200_response.py,sha256=lSbhN4gaNJ7T7EYUHzmTIZkrOFKV1SPl0gebe7aROfk,3103
|
|
37
|
-
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=
|
|
38
|
-
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=
|
|
33
|
+
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_request.py,sha256=_nOm26gkX37pGj72NH8DGGG0OAbWSxkOCZ4fAUDD-X0,8073
|
|
34
|
+
circle/web3/developer_controlled_wallets/models/create_transfer_transaction_for_developer_response.py,sha256=T-H962jF_ldBViaMQo17MydBDiZTIrrqlL9xeQrrQuA,3023
|
|
39
35
|
circle/web3/developer_controlled_wallets/models/create_validate_address200_response.py,sha256=w1cgkjyAoAg_-dqJTC2I8rGFtsX6bEJUdYkcSbyBvL4,3042
|
|
40
|
-
circle/web3/developer_controlled_wallets/models/
|
|
41
|
-
circle/web3/developer_controlled_wallets/models/
|
|
36
|
+
circle/web3/developer_controlled_wallets/models/create_wallet_request.py,sha256=nEGgLhxmeygJDlXDgRoj4RySzzkt8uMA93iqCQFkHOA,5142
|
|
37
|
+
circle/web3/developer_controlled_wallets/models/create_wallet_set_request.py,sha256=x0lU4OtovUcVwjSQqYTewA232SKffyO5rdC18l65rzg,3554
|
|
38
|
+
circle/web3/developer_controlled_wallets/models/custody_type.py,sha256=-jwmNI1fRdu99uU6d8ewv6zXp7Of769WhIL0Qy1i_KI,704
|
|
39
|
+
circle/web3/developer_controlled_wallets/models/developer_wallet_set.py,sha256=P1ON_uNz_fTfSNtEZ9hxKu6J7uTFINoyTmrASDDjMe0,3447
|
|
40
|
+
circle/web3/developer_controlled_wallets/models/end_user_wallet_set.py,sha256=_-vg7A8IQUWm0OeAASrpwXaeN6F6FaqcgNC7kq_GJK4,3642
|
|
41
|
+
circle/web3/developer_controlled_wallets/models/eoa_wallet.py,sha256=DCKx9rWWW-fbejVx4sgx9Xz2QcPGx4usW3aAEQjiO3c,5269
|
|
42
42
|
circle/web3/developer_controlled_wallets/models/error.py,sha256=wjixjKwVrbtKCq8vsXwaD91UzZr0rrweK_QvA7YIAdE,2692
|
|
43
|
-
circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=
|
|
43
|
+
circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request.py,sha256=iqwUWmelzD2NQKRG8-Zq7wSYKPzKlhjXvaC5qZOBr3I,6112
|
|
44
|
+
circle/web3/developer_controlled_wallets/models/estimate_contract_execution_transaction_fee_request_blockchain.py,sha256=uNNTp1jk6gUZc6O7Ysotw5mdR18mSjhxUk9h47ElIXM,981
|
|
44
45
|
circle/web3/developer_controlled_wallets/models/estimate_transaction_fee_response.py,sha256=fmP78V4stl8Vf33WV49vG8SQTQXlnwF_AhHvFEJYHHw,4712
|
|
45
|
-
circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=
|
|
46
|
+
circle/web3/developer_controlled_wallets/models/estimate_transfer_transaction_fee_request.py,sha256=vB16j0a-q5iakFM-cgRcifWTKOFMlmzbIPwMDk6a1-c,4937
|
|
46
47
|
circle/web3/developer_controlled_wallets/models/estimated_transaction_fee.py,sha256=0gn2-aMidyPOyzbRWK61wCRE1jFDCQuPuNOfO75w9zw,4154
|
|
47
|
-
circle/web3/developer_controlled_wallets/models/ext_get_all_wallets_response.py,sha256=JQaLD5LOB_ODbDGA6An015ghTBMu8R6XDEFWnUF9f4o,3153
|
|
48
|
-
circle/web3/developer_controlled_wallets/models/ext_get_wallet_by_id_response.py,sha256=WAl0p8o1bhk4VEDsHgCyI_q7Q-F2Tq-LW4mEKuEnKKk,2959
|
|
49
|
-
circle/web3/developer_controlled_wallets/models/ext_update_wallet_metadata_request.py,sha256=17wrIsRxbFXP7sXrkvDIehNLTSN9uIR7Fwti24Y26D8,2958
|
|
50
|
-
circle/web3/developer_controlled_wallets/models/ext_wallet_response.py,sha256=D-Pn_froEuKQch-Cx1POn96VY3hoGt_ZMb5Mzmublvs,2941
|
|
51
|
-
circle/web3/developer_controlled_wallets/models/ext_wallet_response_wallet.py,sha256=HvfFlo70I3ifU-_RFdMlifjVbZAbFqt1hu-gAD_lDbw,5277
|
|
52
48
|
circle/web3/developer_controlled_wallets/models/fee_level.py,sha256=XlrkP59Z6Z0Xqd9xqzPSzX0IAcYVjeLhdiW_UKuxEyM,997
|
|
53
49
|
circle/web3/developer_controlled_wallets/models/get_balances_response.py,sha256=03akv-W8Zejvd2HGeooiPDQa8rnMpKxWH1YWQQxUgkQ,3251
|
|
54
50
|
circle/web3/developer_controlled_wallets/models/get_nfts_response.py,sha256=WaRCpRT27B0JFwrr9EdmUk13nxvOkqTOrAjMz3CT32o,3009
|
|
@@ -57,39 +53,45 @@ circle/web3/developer_controlled_wallets/models/get_token_id200_response.py,sha2
|
|
|
57
53
|
circle/web3/developer_controlled_wallets/models/get_transaction200_response.py,sha256=gbr2g7Wk2-NNZk_j6JF6axpOi5IoxMFF6UVQSuTtlQU,3000
|
|
58
54
|
circle/web3/developer_controlled_wallets/models/get_transaction_by_id_response.py,sha256=TvHzmLdSFwVSTQkSYhO_lo1WuBHVuTzcv_i97WHAJM0,3007
|
|
59
55
|
circle/web3/developer_controlled_wallets/models/get_transactions_response.py,sha256=i7ba3yJcc-rlvKb12oZHKPL9M9raURCe5EMpoQsIURw,3177
|
|
60
|
-
circle/web3/developer_controlled_wallets/models/get_wallet200_response.py,sha256=WQJ56DbC7YK3yb6Sev_47Ojycw3-7OK7KgooCshwqs0,2953
|
|
61
|
-
circle/web3/developer_controlled_wallets/models/get_wallet_set200_response.py,sha256=kXraGq_zbxkoMFyL4A6MyHIa4NdIwTgNe9TdtDt1xr0,2977
|
|
62
|
-
circle/web3/developer_controlled_wallets/models/get_wallet_set_by_id_response.py,sha256=Az5mn6a7FVPSLaHx1Yd1McPHRoDuLOZML5CWuT9dwyA,3037
|
|
63
|
-
circle/web3/developer_controlled_wallets/models/get_wallet_sets_response.py,sha256=t9siFFDx_lq97t3wVjrn6JmuOJtEWB1SEz815MI32RI,3208
|
|
64
56
|
circle/web3/developer_controlled_wallets/models/list_transactions200_response.py,sha256=d2EbrzcnxZalEj1KkNHL65ZOxQ722bUAsVK9Yw1ea58,3002
|
|
65
57
|
circle/web3/developer_controlled_wallets/models/list_wallet_ballance200_response.py,sha256=C9b8nLsjH1-bnMO9VVkK4WeuQw15qMLzkzRN7ATXF50,3002
|
|
66
58
|
circle/web3/developer_controlled_wallets/models/list_wallet_nfts200_response.py,sha256=xyN1MKdQ6LbNleFVaTszZoxGl8R0N-BKe5xm-ZnpNms,2954
|
|
67
|
-
circle/web3/developer_controlled_wallets/models/
|
|
68
|
-
circle/web3/developer_controlled_wallets/models/
|
|
69
|
-
circle/web3/developer_controlled_wallets/models/
|
|
59
|
+
circle/web3/developer_controlled_wallets/models/nft.py,sha256=sqnmBsdrbkGlzM3-uy1W9EWPjUaWSUwCVdLTJzQet_0,3635
|
|
60
|
+
circle/web3/developer_controlled_wallets/models/not_authorized_response.py,sha256=81b7Zng2hXjon9HIZZeepD0EzqWlH2a49zCxShpi59M,2789
|
|
61
|
+
circle/web3/developer_controlled_wallets/models/not_found_response.py,sha256=WE6zRsWFahscJptM9q9DSWWBOU0Kc1ar4ztFO0494Go,2749
|
|
70
62
|
circle/web3/developer_controlled_wallets/models/operation.py,sha256=3mOuUFtG28hzJNRei0aHeMZjSI649I0V3ZKg2U9oKoA,705
|
|
63
|
+
circle/web3/developer_controlled_wallets/models/sca_wallet.py,sha256=SqM5ljTWvoK0T8QrkjV5Um5eNWw5cp0oCAdpdKdZWtI,5589
|
|
71
64
|
circle/web3/developer_controlled_wallets/models/sign_developer_message200_response.py,sha256=_Nu3kaiZi25FWkG710On0LBOCvUbvdlJcrphqRXH_Jg,3068
|
|
72
65
|
circle/web3/developer_controlled_wallets/models/sign_developer_typed_data200_response.py,sha256=Hp-Ezd70nGLAaLrSdVlurrR-2uoE_UMGh0bTiy6OkrY,3093
|
|
73
66
|
circle/web3/developer_controlled_wallets/models/sign_message_for_developer_request.py,sha256=zq7b_Ny55AUL9hQ1DnOXb7rNHsPIwXuSrnkqRUAB7wk,4166
|
|
74
67
|
circle/web3/developer_controlled_wallets/models/sign_message_for_developer_response.py,sha256=RVcL0fmaiTFsm0qkktXcGONNFe708pdZbb1uUqjBkb0,2762
|
|
75
68
|
circle/web3/developer_controlled_wallets/models/sign_typed_data_for_developer_request.py,sha256=NFMvNFEXZePXyjA6jDkzK4q9o96R-RdblfwJnqTjul8,3750
|
|
76
69
|
circle/web3/developer_controlled_wallets/models/sign_typed_data_for_developer_response.py,sha256=NUFFxSEV8h5lI3BuOeH8dk7eOMrcxGfv5nMJbRiJpG4,2778
|
|
77
|
-
circle/web3/developer_controlled_wallets/models/
|
|
70
|
+
circle/web3/developer_controlled_wallets/models/token_blockchain.py,sha256=gdQNZnHjL6dYBa9bY7wg5YyITAL7_q_7FYL9Kblcahg,887
|
|
71
|
+
circle/web3/developer_controlled_wallets/models/token_response.py,sha256=gYZO2vtboKtoPLmSyuJb6VUCb4smekdTez3vZv_ra0I,4356
|
|
78
72
|
circle/web3/developer_controlled_wallets/models/token_standard.py,sha256=XrJIGZchpJNp1KNy-vwaUuRcJ4eAnz3UVDGZn1IY150,646
|
|
79
|
-
circle/web3/developer_controlled_wallets/models/transaction.py,sha256=
|
|
73
|
+
circle/web3/developer_controlled_wallets/models/transaction.py,sha256=BoQ1FBuyOg2ihMyAKga-APTcMkkXr_ZW4g_E90XWeyk,10528
|
|
80
74
|
circle/web3/developer_controlled_wallets/models/transaction_state.py,sha256=8cjEEbnPwkUfVnPY8_yVdMttS9r-U5qDF5b_MPpGgZc,860
|
|
81
75
|
circle/web3/developer_controlled_wallets/models/transaction_type.py,sha256=OmQinsZ-TZxCRQDKxZCYy5Yqb61IXDGl3J5O2YqafRU,640
|
|
82
|
-
circle/web3/developer_controlled_wallets/models/
|
|
83
|
-
circle/web3/developer_controlled_wallets/models/
|
|
84
|
-
circle/web3/developer_controlled_wallets/models/update_wallet_set_metadata_request.py,sha256=_BcxXruJ6muPE2bzYpLTuhL-UccRusMmRtoPkpV2yvM,2705
|
|
85
|
-
circle/web3/developer_controlled_wallets/models/update_wallet_set_metadata_response.py,sha256=2tGFEhKZimfafo3SALgnFJVFMpkCy5v1jIqQmvQfJnU,3093
|
|
76
|
+
circle/web3/developer_controlled_wallets/models/update_wallet_request.py,sha256=Jzgn_q0QnVEIiOztclxN7AVl1diM1xZELGdgupAPu8w,2861
|
|
77
|
+
circle/web3/developer_controlled_wallets/models/update_wallet_set_request.py,sha256=rt7obKc9WNBcQtzuiu6FgjR_1lAYky4O2Akg9ArlIjw,2641
|
|
86
78
|
circle/web3/developer_controlled_wallets/models/validate_address_request.py,sha256=1URC5TIBEscZNHEynijX67mmLQuceXUZqVFjN9K0jbA,2863
|
|
87
79
|
circle/web3/developer_controlled_wallets/models/validate_address_response.py,sha256=e1e99BD50xoiomme8RFzPsKihNgg2dlS8ZVzd01CkIc,2637
|
|
88
|
-
circle/web3/developer_controlled_wallets/models/
|
|
89
|
-
circle/web3/developer_controlled_wallets/models/
|
|
90
|
-
circle/web3/developer_controlled_wallets/models/
|
|
91
|
-
circle/web3/developer_controlled_wallets/models/
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
80
|
+
circle/web3/developer_controlled_wallets/models/wallet.py,sha256=T2AHNo-DwCiPh_0KQJAHDjcoM4jd6z11dS2Q-m0GUTk,4465
|
|
81
|
+
circle/web3/developer_controlled_wallets/models/wallet2.py,sha256=N35JVn59roLI2ILbY84lYFyL5RDGLrp_GoPeXn9wBrc,2769
|
|
82
|
+
circle/web3/developer_controlled_wallets/models/wallet2_data.py,sha256=dGFA46bPCJHz1EK2-k5ZaoraI5zv4JSC5zNjhy-XNqQ,2869
|
|
83
|
+
circle/web3/developer_controlled_wallets/models/wallet_metadata.py,sha256=Px7sIcHQF9rYNoAtsDkq2fAjMs3qD-rUh3gUqaazXC0,2821
|
|
84
|
+
circle/web3/developer_controlled_wallets/models/wallet_set.py,sha256=36XfbZN1HNSlupjl-9MXkd3vzI5VxOXCFDLKLZEkLJs,2989
|
|
85
|
+
circle/web3/developer_controlled_wallets/models/wallet_set2.py,sha256=6TyUejQYBdsgztJ750lmIubF2CoXLoPV15x6Y-h1usM,2806
|
|
86
|
+
circle/web3/developer_controlled_wallets/models/wallet_set2_data.py,sha256=OFBfvhy9ktN1btGcgDjPJbz3z3rxQ3a__meptkvvHN4,2970
|
|
87
|
+
circle/web3/developer_controlled_wallets/models/wallet_sets.py,sha256=NQlF3XZ-6BwGGpRU8fN4NqdcE7BNVOl53YZVloi_Yko,2806
|
|
88
|
+
circle/web3/developer_controlled_wallets/models/wallet_sets_data.py,sha256=o_D6cQ9MG8YFXNdkae99RV4g0Ua2qJ4bpv4Fa0AhZH4,3182
|
|
89
|
+
circle/web3/developer_controlled_wallets/models/wallet_sets_data_wallet_sets_inner.py,sha256=r6OiKzBkNR398FfGs_W3YGquUw14y8TwjZnTzZKJwzo,5478
|
|
90
|
+
circle/web3/developer_controlled_wallets/models/wallet_state.py,sha256=sM_nM5aSIeEo2YvjfXDc5lR-eWwMEYVjxeoplRxfbxo,651
|
|
91
|
+
circle/web3/developer_controlled_wallets/models/wallets.py,sha256=FtATAK5iH8ZBPEiG-kphwFrxu_zqca16ptkXJPpYFBk,2769
|
|
92
|
+
circle/web3/developer_controlled_wallets/models/wallets_data.py,sha256=WBtomlq7WnzoNQ6ujPCqR_JbNh1sDkYzfdEp7afOdwk,3080
|
|
93
|
+
circle/web3/developer_controlled_wallets/models/wallets_data_wallets_inner.py,sha256=Qob2-DdcoyAx3pzDq8YJvB7u9RGqWJ5FP9M6M6c_Fzg,5163
|
|
94
|
+
circle_developer_controlled_wallets-1.1.1.dist-info/METADATA,sha256=KVdp1slqR-HfIgaNk1_cVWbnmWspeDhjh4ehDtKoWtE,4330
|
|
95
|
+
circle_developer_controlled_wallets-1.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
96
|
+
circle_developer_controlled_wallets-1.1.1.dist-info/top_level.txt,sha256=yrA-kPXovTlZknK2uc3iesulUvyL15VSSoCtXIEdqm4,7
|
|
97
|
+
circle_developer_controlled_wallets-1.1.1.dist-info/RECORD,,
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
The version of the OpenAPI document: 1.0
|
|
5
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
6
|
-
|
|
7
|
-
Do not edit the class manually.
|
|
8
|
-
""" # noqa: E501
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
from __future__ import annotations
|
|
12
|
-
import pprint
|
|
13
|
-
import re # noqa: F401
|
|
14
|
-
import json
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
from typing import Optional
|
|
18
|
-
from pydantic import BaseModel
|
|
19
|
-
from circle.web3.developer_controlled_wallets.models.create_developer_wallet_response import CreateDeveloperWalletResponse
|
|
20
|
-
|
|
21
|
-
class CreateDeveloperWallet200Response(BaseModel):
|
|
22
|
-
"""
|
|
23
|
-
CreateDeveloperWallet200Response
|
|
24
|
-
"""
|
|
25
|
-
data: Optional[CreateDeveloperWalletResponse] = None
|
|
26
|
-
__properties = ["data"]
|
|
27
|
-
|
|
28
|
-
def __init__(self, **kwargs):
|
|
29
|
-
if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
|
|
30
|
-
kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
|
|
31
|
-
|
|
32
|
-
if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
|
|
33
|
-
kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
|
|
34
|
-
super().__init__(**kwargs)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
"""Pydantic configuration"""
|
|
39
|
-
allow_population_by_field_name = True
|
|
40
|
-
validate_assignment = True
|
|
41
|
-
|
|
42
|
-
def to_str(self) -> str:
|
|
43
|
-
"""Returns the string representation of the model using alias"""
|
|
44
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
45
|
-
|
|
46
|
-
def to_json(self) -> str:
|
|
47
|
-
"""Returns the JSON representation of the model using alias"""
|
|
48
|
-
return json.dumps(self.to_dict())
|
|
49
|
-
|
|
50
|
-
@classmethod
|
|
51
|
-
def from_json(cls, json_str: str) -> CreateDeveloperWallet200Response:
|
|
52
|
-
"""Create an instance of CreateDeveloperWallet200Response from a JSON string"""
|
|
53
|
-
return cls.from_dict(json.loads(json_str))
|
|
54
|
-
|
|
55
|
-
def to_dict(self):
|
|
56
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
57
|
-
_dict = self.dict(by_alias=True,
|
|
58
|
-
exclude={
|
|
59
|
-
},
|
|
60
|
-
exclude_none=True)
|
|
61
|
-
# override the default output from pydantic by calling `to_dict()` of data
|
|
62
|
-
if self.data:
|
|
63
|
-
_dict['data'] = self.data.to_dict()
|
|
64
|
-
return _dict
|
|
65
|
-
|
|
66
|
-
@classmethod
|
|
67
|
-
def from_dict(cls, obj: dict) -> CreateDeveloperWallet200Response:
|
|
68
|
-
"""Create an instance of CreateDeveloperWallet200Response from a dict"""
|
|
69
|
-
if obj is None:
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if not isinstance(obj, dict):
|
|
73
|
-
return CreateDeveloperWallet200Response.parse_obj(obj)
|
|
74
|
-
|
|
75
|
-
# fill idempotency_key and ciphertext with placeholder for auto_fill
|
|
76
|
-
if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
|
|
77
|
-
obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
|
|
78
|
-
|
|
79
|
-
if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
|
|
80
|
-
obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
|
|
81
|
-
|
|
82
|
-
_obj = CreateDeveloperWallet200Response.parse_obj({
|
|
83
|
-
"data": CreateDeveloperWalletResponse.from_dict(obj.get("data")) if obj.get("data") is not None else None
|
|
84
|
-
})
|
|
85
|
-
return _obj
|
|
86
|
-
|
|
87
|
-
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
The version of the OpenAPI document: 1.0
|
|
5
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
6
|
-
|
|
7
|
-
Do not edit the class manually.
|
|
8
|
-
""" # noqa: E501
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
from __future__ import annotations
|
|
12
|
-
import pprint
|
|
13
|
-
import re # noqa: F401
|
|
14
|
-
import json
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
from typing import List, Optional
|
|
18
|
-
from pydantic import BaseModel, Field, conlist
|
|
19
|
-
from circle.web3.developer_controlled_wallets.models.wallet_response import WalletResponse
|
|
20
|
-
|
|
21
|
-
class CreateDeveloperWalletResponse(BaseModel):
|
|
22
|
-
"""
|
|
23
|
-
CreateDeveloperWalletResponse
|
|
24
|
-
"""
|
|
25
|
-
wallets: Optional[conlist(WalletResponse)] = Field(None, description="Lists the details for the created wallets.")
|
|
26
|
-
__properties = ["wallets"]
|
|
27
|
-
|
|
28
|
-
def __init__(self, **kwargs):
|
|
29
|
-
if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
|
|
30
|
-
kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
|
|
31
|
-
|
|
32
|
-
if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
|
|
33
|
-
kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
|
|
34
|
-
super().__init__(**kwargs)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
"""Pydantic configuration"""
|
|
39
|
-
allow_population_by_field_name = True
|
|
40
|
-
validate_assignment = True
|
|
41
|
-
|
|
42
|
-
def to_str(self) -> str:
|
|
43
|
-
"""Returns the string representation of the model using alias"""
|
|
44
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
45
|
-
|
|
46
|
-
def to_json(self) -> str:
|
|
47
|
-
"""Returns the JSON representation of the model using alias"""
|
|
48
|
-
return json.dumps(self.to_dict())
|
|
49
|
-
|
|
50
|
-
@classmethod
|
|
51
|
-
def from_json(cls, json_str: str) -> CreateDeveloperWalletResponse:
|
|
52
|
-
"""Create an instance of CreateDeveloperWalletResponse from a JSON string"""
|
|
53
|
-
return cls.from_dict(json.loads(json_str))
|
|
54
|
-
|
|
55
|
-
def to_dict(self):
|
|
56
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
57
|
-
_dict = self.dict(by_alias=True,
|
|
58
|
-
exclude={
|
|
59
|
-
},
|
|
60
|
-
exclude_none=True)
|
|
61
|
-
# override the default output from pydantic by calling `to_dict()` of each item in wallets (list)
|
|
62
|
-
_items = []
|
|
63
|
-
if self.wallets:
|
|
64
|
-
for _item in self.wallets:
|
|
65
|
-
if _item:
|
|
66
|
-
_items.append(_item.to_dict())
|
|
67
|
-
_dict['wallets'] = _items
|
|
68
|
-
return _dict
|
|
69
|
-
|
|
70
|
-
@classmethod
|
|
71
|
-
def from_dict(cls, obj: dict) -> CreateDeveloperWalletResponse:
|
|
72
|
-
"""Create an instance of CreateDeveloperWalletResponse from a dict"""
|
|
73
|
-
if obj is None:
|
|
74
|
-
return None
|
|
75
|
-
|
|
76
|
-
if not isinstance(obj, dict):
|
|
77
|
-
return CreateDeveloperWalletResponse.parse_obj(obj)
|
|
78
|
-
|
|
79
|
-
# fill idempotency_key and ciphertext with placeholder for auto_fill
|
|
80
|
-
if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
|
|
81
|
-
obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
|
|
82
|
-
|
|
83
|
-
if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
|
|
84
|
-
obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
|
|
85
|
-
|
|
86
|
-
_obj = CreateDeveloperWalletResponse.parse_obj({
|
|
87
|
-
"wallets": [WalletResponse.from_dict(_item) for _item in obj.get("wallets")] if obj.get("wallets") is not None else None
|
|
88
|
-
})
|
|
89
|
-
return _obj
|
|
90
|
-
|
|
91
|
-
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
The version of the OpenAPI document: 1.0
|
|
5
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
6
|
-
|
|
7
|
-
Do not edit the class manually.
|
|
8
|
-
""" # noqa: E501
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
from __future__ import annotations
|
|
12
|
-
import pprint
|
|
13
|
-
import re # noqa: F401
|
|
14
|
-
import json
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
from typing import Optional
|
|
18
|
-
from pydantic import BaseModel, Field
|
|
19
|
-
from circle.web3.developer_controlled_wallets.models.wallet_set_response import WalletSetResponse
|
|
20
|
-
|
|
21
|
-
class CreateDeveloperWalletSetResponse(BaseModel):
|
|
22
|
-
"""
|
|
23
|
-
CreateDeveloperWalletSetResponse
|
|
24
|
-
"""
|
|
25
|
-
wallet_set: Optional[WalletSetResponse] = Field(None, alias="walletSet")
|
|
26
|
-
__properties = ["walletSet"]
|
|
27
|
-
|
|
28
|
-
def __init__(self, **kwargs):
|
|
29
|
-
if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
|
|
30
|
-
kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
|
|
31
|
-
|
|
32
|
-
if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
|
|
33
|
-
kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
|
|
34
|
-
super().__init__(**kwargs)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
"""Pydantic configuration"""
|
|
39
|
-
allow_population_by_field_name = True
|
|
40
|
-
validate_assignment = True
|
|
41
|
-
|
|
42
|
-
def to_str(self) -> str:
|
|
43
|
-
"""Returns the string representation of the model using alias"""
|
|
44
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
45
|
-
|
|
46
|
-
def to_json(self) -> str:
|
|
47
|
-
"""Returns the JSON representation of the model using alias"""
|
|
48
|
-
return json.dumps(self.to_dict())
|
|
49
|
-
|
|
50
|
-
@classmethod
|
|
51
|
-
def from_json(cls, json_str: str) -> CreateDeveloperWalletSetResponse:
|
|
52
|
-
"""Create an instance of CreateDeveloperWalletSetResponse from a JSON string"""
|
|
53
|
-
return cls.from_dict(json.loads(json_str))
|
|
54
|
-
|
|
55
|
-
def to_dict(self):
|
|
56
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
57
|
-
_dict = self.dict(by_alias=True,
|
|
58
|
-
exclude={
|
|
59
|
-
},
|
|
60
|
-
exclude_none=True)
|
|
61
|
-
# override the default output from pydantic by calling `to_dict()` of wallet_set
|
|
62
|
-
if self.wallet_set:
|
|
63
|
-
_dict['walletSet'] = self.wallet_set.to_dict()
|
|
64
|
-
return _dict
|
|
65
|
-
|
|
66
|
-
@classmethod
|
|
67
|
-
def from_dict(cls, obj: dict) -> CreateDeveloperWalletSetResponse:
|
|
68
|
-
"""Create an instance of CreateDeveloperWalletSetResponse from a dict"""
|
|
69
|
-
if obj is None:
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if not isinstance(obj, dict):
|
|
73
|
-
return CreateDeveloperWalletSetResponse.parse_obj(obj)
|
|
74
|
-
|
|
75
|
-
# fill idempotency_key and ciphertext with placeholder for auto_fill
|
|
76
|
-
if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
|
|
77
|
-
obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
|
|
78
|
-
|
|
79
|
-
if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
|
|
80
|
-
obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
|
|
81
|
-
|
|
82
|
-
_obj = CreateDeveloperWalletSetResponse.parse_obj({
|
|
83
|
-
"wallet_set": WalletSetResponse.from_dict(obj.get("walletSet")) if obj.get("walletSet") is not None else None
|
|
84
|
-
})
|
|
85
|
-
return _obj
|
|
86
|
-
|
|
87
|
-
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
The version of the OpenAPI document: 1.0
|
|
5
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
6
|
-
|
|
7
|
-
Do not edit the class manually.
|
|
8
|
-
""" # noqa: E501
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
from __future__ import annotations
|
|
12
|
-
import pprint
|
|
13
|
-
import re # noqa: F401
|
|
14
|
-
import json
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
from typing import Optional
|
|
18
|
-
from pydantic import BaseModel
|
|
19
|
-
from circle.web3.developer_controlled_wallets.models.create_developer_wallet_set_response import CreateDeveloperWalletSetResponse
|
|
20
|
-
|
|
21
|
-
class CreateWalletSet200Response(BaseModel):
|
|
22
|
-
"""
|
|
23
|
-
CreateWalletSet200Response
|
|
24
|
-
"""
|
|
25
|
-
data: Optional[CreateDeveloperWalletSetResponse] = None
|
|
26
|
-
__properties = ["data"]
|
|
27
|
-
|
|
28
|
-
def __init__(self, **kwargs):
|
|
29
|
-
if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
|
|
30
|
-
kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
|
|
31
|
-
|
|
32
|
-
if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
|
|
33
|
-
kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
|
|
34
|
-
super().__init__(**kwargs)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
"""Pydantic configuration"""
|
|
39
|
-
allow_population_by_field_name = True
|
|
40
|
-
validate_assignment = True
|
|
41
|
-
|
|
42
|
-
def to_str(self) -> str:
|
|
43
|
-
"""Returns the string representation of the model using alias"""
|
|
44
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
45
|
-
|
|
46
|
-
def to_json(self) -> str:
|
|
47
|
-
"""Returns the JSON representation of the model using alias"""
|
|
48
|
-
return json.dumps(self.to_dict())
|
|
49
|
-
|
|
50
|
-
@classmethod
|
|
51
|
-
def from_json(cls, json_str: str) -> CreateWalletSet200Response:
|
|
52
|
-
"""Create an instance of CreateWalletSet200Response from a JSON string"""
|
|
53
|
-
return cls.from_dict(json.loads(json_str))
|
|
54
|
-
|
|
55
|
-
def to_dict(self):
|
|
56
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
57
|
-
_dict = self.dict(by_alias=True,
|
|
58
|
-
exclude={
|
|
59
|
-
},
|
|
60
|
-
exclude_none=True)
|
|
61
|
-
# override the default output from pydantic by calling `to_dict()` of data
|
|
62
|
-
if self.data:
|
|
63
|
-
_dict['data'] = self.data.to_dict()
|
|
64
|
-
return _dict
|
|
65
|
-
|
|
66
|
-
@classmethod
|
|
67
|
-
def from_dict(cls, obj: dict) -> CreateWalletSet200Response:
|
|
68
|
-
"""Create an instance of CreateWalletSet200Response from a dict"""
|
|
69
|
-
if obj is None:
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if not isinstance(obj, dict):
|
|
73
|
-
return CreateWalletSet200Response.parse_obj(obj)
|
|
74
|
-
|
|
75
|
-
# fill idempotency_key and ciphertext with placeholder for auto_fill
|
|
76
|
-
if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
|
|
77
|
-
obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
|
|
78
|
-
|
|
79
|
-
if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
|
|
80
|
-
obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
|
|
81
|
-
|
|
82
|
-
_obj = CreateWalletSet200Response.parse_obj({
|
|
83
|
-
"data": CreateDeveloperWalletSetResponse.from_dict(obj.get("data")) if obj.get("data") is not None else None
|
|
84
|
-
})
|
|
85
|
-
return _obj
|
|
86
|
-
|
|
87
|
-
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
The version of the OpenAPI document: 1.0
|
|
5
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
6
|
-
|
|
7
|
-
Do not edit the class manually.
|
|
8
|
-
""" # noqa: E501
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
from __future__ import annotations
|
|
12
|
-
import pprint
|
|
13
|
-
import re # noqa: F401
|
|
14
|
-
import json
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
from typing import Optional
|
|
18
|
-
from pydantic import BaseModel
|
|
19
|
-
from circle.web3.developer_controlled_wallets.models.wallet_response import WalletResponse
|
|
20
|
-
|
|
21
|
-
class ExtGetWalletByIDResponse(BaseModel):
|
|
22
|
-
"""
|
|
23
|
-
ExtGetWalletByIDResponse
|
|
24
|
-
"""
|
|
25
|
-
wallet: Optional[WalletResponse] = None
|
|
26
|
-
__properties = ["wallet"]
|
|
27
|
-
|
|
28
|
-
def __init__(self, **kwargs):
|
|
29
|
-
if "idempotencyKey" in self.__properties and not kwargs.get("idempotency_key"):
|
|
30
|
-
kwargs["idempotency_key"] = "#REFILL_PLACEHOLDER"
|
|
31
|
-
|
|
32
|
-
if "entitySecretCiphertext" in self.__properties and not kwargs.get("entity_secret_ciphertext"):
|
|
33
|
-
kwargs["entity_secret_ciphertext"] = "#REFILL_PLACEHOLDER"
|
|
34
|
-
super().__init__(**kwargs)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
"""Pydantic configuration"""
|
|
39
|
-
allow_population_by_field_name = True
|
|
40
|
-
validate_assignment = True
|
|
41
|
-
|
|
42
|
-
def to_str(self) -> str:
|
|
43
|
-
"""Returns the string representation of the model using alias"""
|
|
44
|
-
return pprint.pformat(self.dict(by_alias=True))
|
|
45
|
-
|
|
46
|
-
def to_json(self) -> str:
|
|
47
|
-
"""Returns the JSON representation of the model using alias"""
|
|
48
|
-
return json.dumps(self.to_dict())
|
|
49
|
-
|
|
50
|
-
@classmethod
|
|
51
|
-
def from_json(cls, json_str: str) -> ExtGetWalletByIDResponse:
|
|
52
|
-
"""Create an instance of ExtGetWalletByIDResponse from a JSON string"""
|
|
53
|
-
return cls.from_dict(json.loads(json_str))
|
|
54
|
-
|
|
55
|
-
def to_dict(self):
|
|
56
|
-
"""Returns the dictionary representation of the model using alias"""
|
|
57
|
-
_dict = self.dict(by_alias=True,
|
|
58
|
-
exclude={
|
|
59
|
-
},
|
|
60
|
-
exclude_none=True)
|
|
61
|
-
# override the default output from pydantic by calling `to_dict()` of wallet
|
|
62
|
-
if self.wallet:
|
|
63
|
-
_dict['wallet'] = self.wallet.to_dict()
|
|
64
|
-
return _dict
|
|
65
|
-
|
|
66
|
-
@classmethod
|
|
67
|
-
def from_dict(cls, obj: dict) -> ExtGetWalletByIDResponse:
|
|
68
|
-
"""Create an instance of ExtGetWalletByIDResponse from a dict"""
|
|
69
|
-
if obj is None:
|
|
70
|
-
return None
|
|
71
|
-
|
|
72
|
-
if not isinstance(obj, dict):
|
|
73
|
-
return ExtGetWalletByIDResponse.parse_obj(obj)
|
|
74
|
-
|
|
75
|
-
# fill idempotency_key and ciphertext with placeholder for auto_fill
|
|
76
|
-
if "idempotencyKey" in cls.__properties and not obj.get("idempotencyKey"):
|
|
77
|
-
obj["idempotencyKey"] = "#REFILL_PLACEHOLDER"
|
|
78
|
-
|
|
79
|
-
if "entitySecretCiphertext" in cls.__properties and not obj.get("entitySecretCiphertext"):
|
|
80
|
-
obj["entitySecretCiphertext"] = "#REFILL_PLACEHOLDER"
|
|
81
|
-
|
|
82
|
-
_obj = ExtGetWalletByIDResponse.parse_obj({
|
|
83
|
-
"wallet": WalletResponse.from_dict(obj.get("wallet")) if obj.get("wallet") is not None else None
|
|
84
|
-
})
|
|
85
|
-
return _obj
|
|
86
|
-
|
|
87
|
-
|