@privy-io/node 0.6.0 → 0.6.1
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.
- package/CHANGELOG.md +13 -0
- package/client.d.mts +8 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +8 -2
- package/client.d.ts.map +1 -1
- package/client.js +6 -0
- package/client.js.map +1 -1
- package/client.mjs +6 -0
- package/client.mjs.map +1 -1
- package/package.json +3 -3
- package/resources/analytics.d.mts +17 -0
- package/resources/analytics.d.mts.map +1 -0
- package/resources/analytics.d.ts +17 -0
- package/resources/analytics.d.ts.map +1 -0
- package/resources/analytics.js +9 -0
- package/resources/analytics.js.map +1 -0
- package/resources/analytics.mjs +5 -0
- package/resources/analytics.mjs.map +1 -0
- package/resources/apps.d.mts +126 -0
- package/resources/apps.d.mts.map +1 -0
- package/resources/apps.d.ts +126 -0
- package/resources/apps.d.ts.map +1 -0
- package/resources/apps.js +9 -0
- package/resources/apps.js.map +1 -0
- package/resources/apps.mjs +5 -0
- package/resources/apps.mjs.map +1 -0
- package/resources/index.d.mts +3 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +3 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +5 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +2 -0
- package/resources/index.mjs.map +1 -1
- package/resources/wallets/index.d.mts +1 -1
- package/resources/wallets/index.d.mts.map +1 -1
- package/resources/wallets/index.d.ts +1 -1
- package/resources/wallets/index.d.ts.map +1 -1
- package/resources/wallets/index.js.map +1 -1
- package/resources/wallets/index.mjs.map +1 -1
- package/resources/wallets/transactions.d.mts +1 -1
- package/resources/wallets/transactions.d.mts.map +1 -1
- package/resources/wallets/transactions.d.ts +1 -1
- package/resources/wallets/transactions.d.ts.map +1 -1
- package/resources/wallets/wallets.d.mts +13 -6
- package/resources/wallets/wallets.d.mts.map +1 -1
- package/resources/wallets/wallets.d.ts +13 -6
- package/resources/wallets/wallets.d.ts.map +1 -1
- package/resources/wallets/wallets.js.map +1 -1
- package/resources/wallets/wallets.mjs.map +1 -1
- package/src/client.ts +12 -0
- package/src/resources/analytics.ts +20 -0
- package/src/resources/apps.ts +213 -0
- package/src/resources/index.ts +3 -0
- package/src/resources/wallets/index.ts +1 -0
- package/src/resources/wallets/transactions.ts +1 -1
- package/src/resources/wallets/wallets.ts +15 -5
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.mjs";
|
|
2
|
+
import * as ClientAuthAPI from "./client-auth.mjs";
|
|
3
|
+
export declare class Apps extends APIResource {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* The response for getting an app.
|
|
7
|
+
*/
|
|
8
|
+
export interface AppResponse {
|
|
9
|
+
id: string;
|
|
10
|
+
accent_color: string | null;
|
|
11
|
+
allowed_domains: Array<string>;
|
|
12
|
+
allowed_native_app_ids: Array<string>;
|
|
13
|
+
allowed_native_app_url_schemes: Array<string>;
|
|
14
|
+
allowlist_config: AppResponse.AllowlistConfig;
|
|
15
|
+
allowlist_enabled: boolean;
|
|
16
|
+
apple_oauth: boolean;
|
|
17
|
+
captcha_enabled: boolean;
|
|
18
|
+
custom_api_url: string | null;
|
|
19
|
+
custom_jwt_auth: boolean;
|
|
20
|
+
custom_oauth_providers: Array<AppResponse.CustomOAuthProvider>;
|
|
21
|
+
disable_plus_emails: boolean;
|
|
22
|
+
discord_oauth: boolean;
|
|
23
|
+
email_auth: boolean;
|
|
24
|
+
embedded_wallet_config: AppResponse.EmbeddedWalletConfig;
|
|
25
|
+
enforce_wallet_uis: boolean;
|
|
26
|
+
farcaster_auth: boolean;
|
|
27
|
+
farcaster_link_wallets_enabled: boolean;
|
|
28
|
+
fiat_on_ramp_enabled: boolean;
|
|
29
|
+
github_oauth: boolean;
|
|
30
|
+
google_oauth: boolean;
|
|
31
|
+
guest_auth: boolean;
|
|
32
|
+
icon_url: string | null;
|
|
33
|
+
instagram_oauth: boolean;
|
|
34
|
+
legacy_wallet_ui_config: boolean;
|
|
35
|
+
line_oauth: boolean;
|
|
36
|
+
linkedin_oauth: boolean;
|
|
37
|
+
logo_url: string | null;
|
|
38
|
+
max_linked_wallets_per_user: number | null;
|
|
39
|
+
mfa_methods: Array<'sms' | 'totp' | 'passkey'>;
|
|
40
|
+
name: string;
|
|
41
|
+
passkey_auth: boolean;
|
|
42
|
+
passkeys_for_signup_enabled: boolean;
|
|
43
|
+
privacy_policy_url: string | null;
|
|
44
|
+
require_users_accept_terms: boolean | null;
|
|
45
|
+
show_wallet_login_first: boolean;
|
|
46
|
+
sms_auth: boolean;
|
|
47
|
+
solana_wallet_auth: boolean;
|
|
48
|
+
spotify_oauth: boolean;
|
|
49
|
+
telegram_auth: boolean;
|
|
50
|
+
terms_and_conditions_url: string | null;
|
|
51
|
+
theme: string;
|
|
52
|
+
tiktok_oauth: boolean;
|
|
53
|
+
twitch_oauth: boolean;
|
|
54
|
+
twitter_oauth: boolean;
|
|
55
|
+
twitter_oauth_on_mobile_enabled: boolean;
|
|
56
|
+
verification_key: string;
|
|
57
|
+
wallet_auth: boolean;
|
|
58
|
+
wallet_connect_cloud_project_id: string | null;
|
|
59
|
+
whatsapp_enabled: boolean;
|
|
60
|
+
captcha_site_key?: string;
|
|
61
|
+
funding_config?: AppResponse.FundingConfig;
|
|
62
|
+
telegram_auth_config?: AppResponse.TelegramAuthConfig;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace AppResponse {
|
|
65
|
+
interface AllowlistConfig {
|
|
66
|
+
cta_link: string | null;
|
|
67
|
+
cta_text: string | null;
|
|
68
|
+
error_detail: string | null;
|
|
69
|
+
error_title: string | null;
|
|
70
|
+
}
|
|
71
|
+
interface CustomOAuthProvider {
|
|
72
|
+
enabled: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* The ID of a custom OAuth provider, set up for this app. Must start with
|
|
75
|
+
* "custom:".
|
|
76
|
+
*/
|
|
77
|
+
provider: ClientAuthAPI.CustomOAuthProviderID;
|
|
78
|
+
provider_display_name: string;
|
|
79
|
+
provider_icon_url: string;
|
|
80
|
+
}
|
|
81
|
+
interface EmbeddedWalletConfig {
|
|
82
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
83
|
+
ethereum: EmbeddedWalletConfig.Ethereum;
|
|
84
|
+
mode: 'legacy-embedded-wallets-only' | 'user-controlled-server-wallets-only';
|
|
85
|
+
solana: EmbeddedWalletConfig.Solana;
|
|
86
|
+
user_owned_recovery_options: Array<'user-passcode' | 'google-drive' | 'icloud'>;
|
|
87
|
+
require_user_owned_recovery_on_create?: boolean;
|
|
88
|
+
require_user_password_on_create?: boolean;
|
|
89
|
+
}
|
|
90
|
+
namespace EmbeddedWalletConfig {
|
|
91
|
+
interface Ethereum {
|
|
92
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
93
|
+
}
|
|
94
|
+
interface Solana {
|
|
95
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
interface FundingConfig {
|
|
99
|
+
cross_chain_bridging_enabled: boolean;
|
|
100
|
+
default_recommended_amount: string;
|
|
101
|
+
default_recommended_currency: FundingConfig.DefaultRecommendedCurrency;
|
|
102
|
+
methods: Array<'moonpay' | 'coinbase-onramp' | 'external'>;
|
|
103
|
+
options: Array<FundingConfig.Option>;
|
|
104
|
+
prompt_funding_on_wallet_creation: boolean;
|
|
105
|
+
}
|
|
106
|
+
namespace FundingConfig {
|
|
107
|
+
interface DefaultRecommendedCurrency {
|
|
108
|
+
chain: string;
|
|
109
|
+
asset?: 'native-currency' | 'USDC';
|
|
110
|
+
}
|
|
111
|
+
interface Option {
|
|
112
|
+
method: string;
|
|
113
|
+
provider: string;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
interface TelegramAuthConfig {
|
|
117
|
+
bot_id: string;
|
|
118
|
+
bot_name: string;
|
|
119
|
+
link_enabled: boolean;
|
|
120
|
+
seamless_auth_enabled: boolean;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
export declare namespace Apps {
|
|
124
|
+
export { type AppResponse as AppResponse };
|
|
125
|
+
}
|
|
126
|
+
//# sourceMappingURL=apps.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apps.d.mts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import * as ClientAuthAPI from "./client-auth.js";
|
|
3
|
+
export declare class Apps extends APIResource {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* The response for getting an app.
|
|
7
|
+
*/
|
|
8
|
+
export interface AppResponse {
|
|
9
|
+
id: string;
|
|
10
|
+
accent_color: string | null;
|
|
11
|
+
allowed_domains: Array<string>;
|
|
12
|
+
allowed_native_app_ids: Array<string>;
|
|
13
|
+
allowed_native_app_url_schemes: Array<string>;
|
|
14
|
+
allowlist_config: AppResponse.AllowlistConfig;
|
|
15
|
+
allowlist_enabled: boolean;
|
|
16
|
+
apple_oauth: boolean;
|
|
17
|
+
captcha_enabled: boolean;
|
|
18
|
+
custom_api_url: string | null;
|
|
19
|
+
custom_jwt_auth: boolean;
|
|
20
|
+
custom_oauth_providers: Array<AppResponse.CustomOAuthProvider>;
|
|
21
|
+
disable_plus_emails: boolean;
|
|
22
|
+
discord_oauth: boolean;
|
|
23
|
+
email_auth: boolean;
|
|
24
|
+
embedded_wallet_config: AppResponse.EmbeddedWalletConfig;
|
|
25
|
+
enforce_wallet_uis: boolean;
|
|
26
|
+
farcaster_auth: boolean;
|
|
27
|
+
farcaster_link_wallets_enabled: boolean;
|
|
28
|
+
fiat_on_ramp_enabled: boolean;
|
|
29
|
+
github_oauth: boolean;
|
|
30
|
+
google_oauth: boolean;
|
|
31
|
+
guest_auth: boolean;
|
|
32
|
+
icon_url: string | null;
|
|
33
|
+
instagram_oauth: boolean;
|
|
34
|
+
legacy_wallet_ui_config: boolean;
|
|
35
|
+
line_oauth: boolean;
|
|
36
|
+
linkedin_oauth: boolean;
|
|
37
|
+
logo_url: string | null;
|
|
38
|
+
max_linked_wallets_per_user: number | null;
|
|
39
|
+
mfa_methods: Array<'sms' | 'totp' | 'passkey'>;
|
|
40
|
+
name: string;
|
|
41
|
+
passkey_auth: boolean;
|
|
42
|
+
passkeys_for_signup_enabled: boolean;
|
|
43
|
+
privacy_policy_url: string | null;
|
|
44
|
+
require_users_accept_terms: boolean | null;
|
|
45
|
+
show_wallet_login_first: boolean;
|
|
46
|
+
sms_auth: boolean;
|
|
47
|
+
solana_wallet_auth: boolean;
|
|
48
|
+
spotify_oauth: boolean;
|
|
49
|
+
telegram_auth: boolean;
|
|
50
|
+
terms_and_conditions_url: string | null;
|
|
51
|
+
theme: string;
|
|
52
|
+
tiktok_oauth: boolean;
|
|
53
|
+
twitch_oauth: boolean;
|
|
54
|
+
twitter_oauth: boolean;
|
|
55
|
+
twitter_oauth_on_mobile_enabled: boolean;
|
|
56
|
+
verification_key: string;
|
|
57
|
+
wallet_auth: boolean;
|
|
58
|
+
wallet_connect_cloud_project_id: string | null;
|
|
59
|
+
whatsapp_enabled: boolean;
|
|
60
|
+
captcha_site_key?: string;
|
|
61
|
+
funding_config?: AppResponse.FundingConfig;
|
|
62
|
+
telegram_auth_config?: AppResponse.TelegramAuthConfig;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace AppResponse {
|
|
65
|
+
interface AllowlistConfig {
|
|
66
|
+
cta_link: string | null;
|
|
67
|
+
cta_text: string | null;
|
|
68
|
+
error_detail: string | null;
|
|
69
|
+
error_title: string | null;
|
|
70
|
+
}
|
|
71
|
+
interface CustomOAuthProvider {
|
|
72
|
+
enabled: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* The ID of a custom OAuth provider, set up for this app. Must start with
|
|
75
|
+
* "custom:".
|
|
76
|
+
*/
|
|
77
|
+
provider: ClientAuthAPI.CustomOAuthProviderID;
|
|
78
|
+
provider_display_name: string;
|
|
79
|
+
provider_icon_url: string;
|
|
80
|
+
}
|
|
81
|
+
interface EmbeddedWalletConfig {
|
|
82
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
83
|
+
ethereum: EmbeddedWalletConfig.Ethereum;
|
|
84
|
+
mode: 'legacy-embedded-wallets-only' | 'user-controlled-server-wallets-only';
|
|
85
|
+
solana: EmbeddedWalletConfig.Solana;
|
|
86
|
+
user_owned_recovery_options: Array<'user-passcode' | 'google-drive' | 'icloud'>;
|
|
87
|
+
require_user_owned_recovery_on_create?: boolean;
|
|
88
|
+
require_user_password_on_create?: boolean;
|
|
89
|
+
}
|
|
90
|
+
namespace EmbeddedWalletConfig {
|
|
91
|
+
interface Ethereum {
|
|
92
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
93
|
+
}
|
|
94
|
+
interface Solana {
|
|
95
|
+
create_on_login: 'users-without-wallets' | 'all-users' | 'off';
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
interface FundingConfig {
|
|
99
|
+
cross_chain_bridging_enabled: boolean;
|
|
100
|
+
default_recommended_amount: string;
|
|
101
|
+
default_recommended_currency: FundingConfig.DefaultRecommendedCurrency;
|
|
102
|
+
methods: Array<'moonpay' | 'coinbase-onramp' | 'external'>;
|
|
103
|
+
options: Array<FundingConfig.Option>;
|
|
104
|
+
prompt_funding_on_wallet_creation: boolean;
|
|
105
|
+
}
|
|
106
|
+
namespace FundingConfig {
|
|
107
|
+
interface DefaultRecommendedCurrency {
|
|
108
|
+
chain: string;
|
|
109
|
+
asset?: 'native-currency' | 'USDC';
|
|
110
|
+
}
|
|
111
|
+
interface Option {
|
|
112
|
+
method: string;
|
|
113
|
+
provider: string;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
interface TelegramAuthConfig {
|
|
117
|
+
bot_id: string;
|
|
118
|
+
bot_name: string;
|
|
119
|
+
link_enabled: boolean;
|
|
120
|
+
seamless_auth_enabled: boolean;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
export declare namespace Apps {
|
|
124
|
+
export { type AppResponse as AppResponse };
|
|
125
|
+
}
|
|
126
|
+
//# sourceMappingURL=apps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apps.d.ts","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Apps = void 0;
|
|
5
|
+
const resource_1 = require("../core/resource.js");
|
|
6
|
+
class Apps extends resource_1.APIResource {
|
|
7
|
+
}
|
|
8
|
+
exports.Apps = Apps;
|
|
9
|
+
//# sourceMappingURL=apps.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apps.js","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAG/C,MAAa,IAAK,SAAQ,sBAAW;CAAG;AAAxC,oBAAwC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apps.mjs","sourceRoot":"","sources":["../src/resources/apps.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAGtB,MAAM,OAAO,IAAK,SAAQ,WAAW;CAAG"}
|
package/resources/index.d.mts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
export { Analytics, type AnalyticsEventInput } from "./analytics.mjs";
|
|
2
|
+
export { Apps, type AppResponse } from "./apps.mjs";
|
|
1
3
|
export { ClientAuth, type ExternalOAuthProviderID, type PrivyOAuthProviderID, type CustomOAuthProviderID, type OAuthProviderID, } from "./client-auth.mjs";
|
|
2
4
|
export { KeyQuorums, type KeyQuorum, type KeyQuorumDeleteResponse, type KeyQuorumCreateParams, type KeyQuorumDeleteParams, type KeyQuorumUpdateParams, } from "./key-quorums.mjs";
|
|
3
5
|
export { Policies, type Policy, type PolicyCreateRuleResponse, type PolicyDeleteResponse, type PolicyDeleteRuleResponse, type PolicyUpdateRuleResponse, type PolicyGetRuleResponse, type PolicyCreateParams, type PolicyCreateRuleParams, type PolicyDeleteParams, type PolicyDeleteRuleParams, type PolicyUpdateParams, type PolicyUpdateRuleParams, type PolicyGetRuleParams, } from "./policies.mjs";
|
|
4
6
|
export { Transactions, type TransactionGetResponse } from "./transactions.mjs";
|
|
5
7
|
export { Users, type AuthenticatedUser, type LinkedAccount, type User, type LinkedAccountEthereumEmbeddedWallet, type LinkedAccountSolanaEmbeddedWallet, type LinkedAccountBitcoinSegwitEmbeddedWallet, type LinkedAccountBitcoinTaprootEmbeddedWallet, type LinkedAccountCurveSigningEmbeddedWallet, type LinkedAccountEmbeddedWallet, type LinkedAccountEmbeddedWalletWithID, type SmartWalletType, type LinkedAccountSmartWallet, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.mjs";
|
|
6
|
-
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.mjs";
|
|
8
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type WalletCustodian, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.mjs";
|
|
7
9
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EAAE,SAAS,EAAE,KAAK,mBAAmB,EAAE;OACvC,EAAE,IAAI,EAAE,KAAK,WAAW,EAAE;OAC1B,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
package/resources/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
export { Analytics, type AnalyticsEventInput } from "./analytics.js";
|
|
2
|
+
export { Apps, type AppResponse } from "./apps.js";
|
|
1
3
|
export { ClientAuth, type ExternalOAuthProviderID, type PrivyOAuthProviderID, type CustomOAuthProviderID, type OAuthProviderID, } from "./client-auth.js";
|
|
2
4
|
export { KeyQuorums, type KeyQuorum, type KeyQuorumDeleteResponse, type KeyQuorumCreateParams, type KeyQuorumDeleteParams, type KeyQuorumUpdateParams, } from "./key-quorums.js";
|
|
3
5
|
export { Policies, type Policy, type PolicyCreateRuleResponse, type PolicyDeleteResponse, type PolicyDeleteRuleResponse, type PolicyUpdateRuleResponse, type PolicyGetRuleResponse, type PolicyCreateParams, type PolicyCreateRuleParams, type PolicyDeleteParams, type PolicyDeleteRuleParams, type PolicyUpdateParams, type PolicyUpdateRuleParams, type PolicyGetRuleParams, } from "./policies.js";
|
|
4
6
|
export { Transactions, type TransactionGetResponse } from "./transactions.js";
|
|
5
7
|
export { Users, type AuthenticatedUser, type LinkedAccount, type User, type LinkedAccountEthereumEmbeddedWallet, type LinkedAccountSolanaEmbeddedWallet, type LinkedAccountBitcoinSegwitEmbeddedWallet, type LinkedAccountBitcoinTaprootEmbeddedWallet, type LinkedAccountCurveSigningEmbeddedWallet, type LinkedAccountEmbeddedWallet, type LinkedAccountEmbeddedWalletWithID, type SmartWalletType, type LinkedAccountSmartWallet, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.js";
|
|
6
|
-
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.js";
|
|
8
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type WalletCustodian, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.js";
|
|
7
9
|
//# sourceMappingURL=index.d.ts.map
|
package/resources/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EAAE,SAAS,EAAE,KAAK,mBAAmB,EAAE;OACvC,EAAE,IAAI,EAAE,KAAK,WAAW,EAAE;OAC1B,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
package/resources/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Wallets = exports.Users = exports.Transactions = exports.Policies = exports.KeyQuorums = exports.ClientAuth = void 0;
|
|
4
|
+
exports.Wallets = exports.Users = exports.Transactions = exports.Policies = exports.KeyQuorums = exports.ClientAuth = exports.Apps = exports.Analytics = void 0;
|
|
5
|
+
var analytics_1 = require("./analytics.js");
|
|
6
|
+
Object.defineProperty(exports, "Analytics", { enumerable: true, get: function () { return analytics_1.Analytics; } });
|
|
7
|
+
var apps_1 = require("./apps.js");
|
|
8
|
+
Object.defineProperty(exports, "Apps", { enumerable: true, get: function () { return apps_1.Apps; } });
|
|
5
9
|
var client_auth_1 = require("./client-auth.js");
|
|
6
10
|
Object.defineProperty(exports, "ClientAuth", { enumerable: true, get: function () { return client_auth_1.ClientAuth; } });
|
|
7
11
|
var key_quorums_1 = require("./key-quorums.js");
|
package/resources/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAMuB;AALrB,yGAAA,UAAU,OAAA;AAMZ,gDAOuB;AANrB,yGAAA,UAAU,OAAA;AAOZ,0CAeoB;AAdlB,oGAAA,QAAQ,OAAA;AAeV,kDAA2E;AAAlE,4GAAA,YAAY,OAAA;AACrB,oCAiCiB;AAhCf,8FAAA,KAAK,OAAA;AAiCP,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,4CAAkE;AAAzD,sGAAA,SAAS,OAAA;AAClB,kCAAgD;AAAvC,4FAAA,IAAI,OAAA;AACb,gDAMuB;AALrB,yGAAA,UAAU,OAAA;AAMZ,gDAOuB;AANrB,yGAAA,UAAU,OAAA;AAOZ,0CAeoB;AAdlB,oGAAA,QAAQ,OAAA;AAeV,kDAA2E;AAAlE,4GAAA,YAAY,OAAA;AACrB,oCAiCiB;AAhCf,8FAAA,KAAK,OAAA;AAiCP,gDA6C2B;AA5CzB,kGAAA,OAAO,OAAA"}
|
package/resources/index.mjs
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
export { Analytics } from "./analytics.mjs";
|
|
3
|
+
export { Apps } from "./apps.mjs";
|
|
2
4
|
export { ClientAuth, } from "./client-auth.mjs";
|
|
3
5
|
export { KeyQuorums, } from "./key-quorums.mjs";
|
|
4
6
|
export { Policies, } from "./policies.mjs";
|
package/resources/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,UAAU,GAKX;OACM,EACL,UAAU,GAMX;OACM,EACL,QAAQ,GAcT;OACM,EAAE,YAAY,EAA+B;OAC7C,EACL,KAAK,GAgCN;OACM,EACL,OAAO,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,SAAS,EAA4B;OACvC,EAAE,IAAI,EAAoB;OAC1B,EACL,UAAU,GAKX;OACM,EACL,UAAU,GAMX;OACM,EACL,QAAQ,GAcT;OACM,EAAE,YAAY,EAA+B;OAC7C,EACL,KAAK,GAgCN;OACM,EACL,OAAO,GA4CR"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { Balance, type BalanceGetResponse, type BalanceGetParams } from "./balance.mjs";
|
|
2
2
|
export { Transactions, type TransactionGetResponse, type TransactionGetParams } from "./transactions.mjs";
|
|
3
|
-
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets.mjs";
|
|
3
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type WalletCustodian, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets.mjs";
|
|
4
4
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"OAEO,EAAE,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE;OAC3D,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE,KAAK,oBAAoB,EAAE;OACxE,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"OAEO,EAAE,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE;OAC3D,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE,KAAK,oBAAoB,EAAE;OACxE,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { Balance, type BalanceGetResponse, type BalanceGetParams } from "./balance.js";
|
|
2
2
|
export { Transactions, type TransactionGetResponse, type TransactionGetParams } from "./transactions.js";
|
|
3
|
-
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets.js";
|
|
3
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type ExtendedChainType, type WalletCustodian, type EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets.js";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"OAEO,EAAE,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE;OAC3D,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE,KAAK,oBAAoB,EAAE;OACxE,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"OAEO,EAAE,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE;OAC3D,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE,KAAK,oBAAoB,EAAE;OACxE,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,KAAK,eAAe,EACpB,KAAK,4BAA4B,EACjC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,qCAAqC,EAC1C,KAAK,6BAA6B,EAClC,KAAK,6BAA6B,EAClC,KAAK,oCAAoC,EACzC,KAAK,yBAAyB,EAC9B,KAAK,kCAAkC,EACvC,KAAK,kCAAkC,EACvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACrC,KAAK,oCAAoC,EACzC,KAAK,wCAAwC,EAC7C,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,uCAAuC,EAC5C,KAAK,4BAA4B,EACjC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,wCAAoF;AAA3E,kGAAA,OAAO,OAAA;AAChB,kDAAsG;AAA7F,4GAAA,YAAY,OAAA;AACrB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,wCAAoF;AAA3E,kGAAA,OAAO,OAAA;AAChB,kDAAsG;AAA7F,4GAAA,YAAY,OAAA;AACrB,wCA6CmB;AA5CjB,kGAAA,OAAO,OAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,OAAO,EAAkD;OAC3D,EAAE,YAAY,EAA0D;OACxE,EACL,OAAO,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/wallets/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,OAAO,EAAkD;OAC3D,EAAE,YAAY,EAA0D;OACxE,EACL,OAAO,GA4CR"}
|
|
@@ -63,7 +63,7 @@ export declare namespace TransactionGetResponse {
|
|
|
63
63
|
}
|
|
64
64
|
export interface TransactionGetParams {
|
|
65
65
|
asset: 'usdc' | 'eth' | 'pol' | 'usdt' | 'sol' | Array<'usdc' | 'eth' | 'pol' | 'usdt' | 'sol'>;
|
|
66
|
-
chain: 'ethereum' | 'arbitrum' | 'base' | 'linea' | 'optimism' | 'polygon' | 'solana';
|
|
66
|
+
chain: 'ethereum' | 'arbitrum' | 'base' | 'linea' | 'optimism' | 'polygon' | 'solana' | 'sepolia';
|
|
67
67
|
cursor?: string;
|
|
68
68
|
limit?: number | null;
|
|
69
69
|
tx_hash?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transactions.d.mts","sourceRoot":"","sources":["../../src/resources/wallets/transactions.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"transactions.d.mts","sourceRoot":"","sources":["../../src/resources/wallets/transactions.ts"],"names":[],"mappings":"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"}
|
|
@@ -63,7 +63,7 @@ export declare namespace TransactionGetResponse {
|
|
|
63
63
|
}
|
|
64
64
|
export interface TransactionGetParams {
|
|
65
65
|
asset: 'usdc' | 'eth' | 'pol' | 'usdt' | 'sol' | Array<'usdc' | 'eth' | 'pol' | 'usdt' | 'sol'>;
|
|
66
|
-
chain: 'ethereum' | 'arbitrum' | 'base' | 'linea' | 'optimism' | 'polygon' | 'solana';
|
|
66
|
+
chain: 'ethereum' | 'arbitrum' | 'base' | 'linea' | 'optimism' | 'polygon' | 'solana' | 'sepolia';
|
|
67
67
|
cursor?: string;
|
|
68
68
|
limit?: number | null;
|
|
69
69
|
tx_hash?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transactions.d.ts","sourceRoot":"","sources":["../../src/resources/wallets/transactions.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,YAAa,SAAQ,WAAW;IAC3C;;;;;;;;;;OAUG;IACH,GAAG,CACD,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,oBAAoB,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,sBAAsB,CAAC;CAGtC;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B,YAAY,EAAE,KAAK,CAAC,sBAAsB,CAAC,WAAW,CAAC,CAAC;CACzD;AAED,yBAAiB,sBAAsB,CAAC;IACtC,UAAiB,WAAW;QAC1B,KAAK,EAAE,MAAM,CAAC;QAEd,UAAU,EAAE,MAAM,CAAC;QAEnB,OAAO,EAAE,WAAW,CAAC,YAAY,GAAG,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC;QAEpE,oBAAoB,EAAE,MAAM,CAAC;QAE7B,MAAM,EACF,aAAa,GACb,WAAW,GACX,oBAAoB,GACpB,QAAQ,GACR,UAAU,GACV,WAAW,GACX,gBAAgB,GAChB,SAAS,CAAC;QAEd,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;QAEhC,SAAS,EAAE,MAAM,CAAC;QAElB,SAAS,CAAC,EAAE,OAAO,CAAC;KACrB;IAED,UAAiB,WAAW,CAAC;QAC3B,UAAiB,YAAY;YAC3B,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,CAAC;YAE/C,KAAK,EACD,UAAU,GACV,UAAU,GACV,MAAM,GACN,OAAO,GACP,UAAU,GACV,SAAS,GACT,QAAQ,GACR,YAAY,GACZ,SAAS,GACT,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,gBAAgB,CAAC;YAErB,cAAc,EAAE;gBAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;aAAE,CAAC;YAE1C,SAAS,EAAE,MAAM,CAAC;YAElB,kBAAkB,EAAE,MAAM,CAAC;YAE3B,SAAS,EAAE,MAAM,CAAC;YAElB,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;YAEvC,MAAM,EAAE,MAAM,CAAC;YAEf,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;YAEpC,IAAI,EAAE,eAAe,CAAC;SACvB;QAED,UAAiB,YAAY;YAC3B,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,CAAC;YAE/C,KAAK,EACD,UAAU,GACV,UAAU,GACV,MAAM,GACN,OAAO,GACP,UAAU,GACV,SAAS,GACT,QAAQ,GACR,YAAY,GACZ,SAAS,GACT,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,gBAAgB,CAAC;YAErB,cAAc,EAAE;gBAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;aAAE,CAAC;YAE1C,SAAS,EAAE,MAAM,CAAC;YAElB,kBAAkB,EAAE,MAAM,CAAC;YAE3B,SAAS,EAAE,MAAM,CAAC;YAElB,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;YAEvC,MAAM,EAAE,MAAM,CAAC;YAEf,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;YAEpC,IAAI,EAAE,mBAAmB,CAAC;SAC3B;KACF;CACF;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,KAAK,CAAC,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,CAAC,CAAC;IAEhG,KAAK,EAAE,UAAU,GAAG,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"transactions.d.ts","sourceRoot":"","sources":["../../src/resources/wallets/transactions.ts"],"names":[],"mappings":"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"}
|
|
@@ -219,6 +219,12 @@ export type WalletChainType = 'ethereum' | 'solana' | 'cosmos' | 'stellar' | 'su
|
|
|
219
219
|
* The wallet chain types that are not first class chains.
|
|
220
220
|
*/
|
|
221
221
|
export type ExtendedChainType = 'cosmos' | 'stellar' | 'sui' | 'aptos' | 'movement' | 'tron' | 'bitcoin-segwit' | 'near' | 'ton' | 'starknet' | 'spark';
|
|
222
|
+
/**
|
|
223
|
+
* Information about the custodian managing this wallet.
|
|
224
|
+
*/
|
|
225
|
+
export interface WalletCustodian {
|
|
226
|
+
name: string;
|
|
227
|
+
}
|
|
222
228
|
/**
|
|
223
229
|
* Executes the EVM `personal_sign` RPC (EIP-191) to sign a message.
|
|
224
230
|
*/
|
|
@@ -623,6 +629,7 @@ export interface WalletInitImportResponse {
|
|
|
623
629
|
}
|
|
624
630
|
export interface WalletRawSignResponse {
|
|
625
631
|
data: WalletRawSignResponse.Data;
|
|
632
|
+
method: 'raw_sign';
|
|
626
633
|
}
|
|
627
634
|
export declare namespace WalletRawSignResponse {
|
|
628
635
|
interface Data {
|
|
@@ -817,7 +824,7 @@ export interface WalletRawSignParams {
|
|
|
817
824
|
/**
|
|
818
825
|
* Body param: Sign a pre-computed hash
|
|
819
826
|
*/
|
|
820
|
-
params: WalletRawSignParams.Hash | WalletRawSignParams.
|
|
827
|
+
params: WalletRawSignParams.Hash | WalletRawSignParams.Bytes;
|
|
821
828
|
/**
|
|
822
829
|
* Header param: Request authorization signature. If multiple signatures are
|
|
823
830
|
* required, they should be comma separated.
|
|
@@ -840,19 +847,19 @@ export declare namespace WalletRawSignParams {
|
|
|
840
847
|
hash: string;
|
|
841
848
|
}
|
|
842
849
|
/**
|
|
843
|
-
* Hash and sign bytes
|
|
850
|
+
* Hash and sign bytes using the specified encoding and hash function.
|
|
844
851
|
*/
|
|
845
|
-
interface
|
|
852
|
+
interface Bytes {
|
|
846
853
|
/**
|
|
847
854
|
* The bytes to hash and sign.
|
|
848
855
|
*/
|
|
849
856
|
bytes: string;
|
|
850
857
|
/**
|
|
851
|
-
*
|
|
858
|
+
* The encoding scheme for the bytes.
|
|
852
859
|
*/
|
|
853
860
|
encoding: 'utf-8' | 'hex';
|
|
854
861
|
/**
|
|
855
|
-
*
|
|
862
|
+
* The hash function to hash the bytes.
|
|
856
863
|
*/
|
|
857
864
|
hash_function: 'keccak256' | 'sha256';
|
|
858
865
|
}
|
|
@@ -1469,7 +1476,7 @@ export declare namespace WalletCreateWalletsWithRecoveryParams {
|
|
|
1469
1476
|
}
|
|
1470
1477
|
}
|
|
1471
1478
|
export declare namespace Wallets {
|
|
1472
|
-
export { type CurveSigningChainType as CurveSigningChainType, type FirstClassChainType as FirstClassChainType, type Wallet as Wallet, type WalletChainType as WalletChainType, type ExtendedChainType as ExtendedChainType, type EthereumPersonalSignRpcInput as EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput as EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput as EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput as EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput as EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput as EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput as EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput as SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput as SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput as SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse as EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse as EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse as EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse as EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse as EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse as EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse as EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse as SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse as SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse as SolanaSignMessageRpcResponse, type WalletExportResponse as WalletExportResponse, type WalletInitImportResponse as WalletInitImportResponse, type WalletRawSignResponse as WalletRawSignResponse, type WalletRpcResponse as WalletRpcResponse, type WalletAuthenticateWithJwtResponse as WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse as WalletCreateWalletsWithRecoveryResponse, type WalletsCursor as WalletsCursor, type WalletCreateParams as WalletCreateParams, type WalletListParams as WalletListParams, type WalletExportParams as WalletExportParams, type WalletInitImportParams as WalletInitImportParams, type WalletRawSignParams as WalletRawSignParams, type WalletRpcParams as WalletRpcParams, type WalletSubmitImportParams as WalletSubmitImportParams, type WalletUpdateParams as WalletUpdateParams, type WalletAuthenticateWithJwtParams as WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams as WalletCreateWalletsWithRecoveryParams, };
|
|
1479
|
+
export { type CurveSigningChainType as CurveSigningChainType, type FirstClassChainType as FirstClassChainType, type Wallet as Wallet, type WalletChainType as WalletChainType, type ExtendedChainType as ExtendedChainType, type WalletCustodian as WalletCustodian, type EthereumPersonalSignRpcInput as EthereumPersonalSignRpcInput, type EthereumSignTransactionRpcInput as EthereumSignTransactionRpcInput, type EthereumSendTransactionRpcInput as EthereumSendTransactionRpcInput, type EthereumSignTypedDataRpcInput as EthereumSignTypedDataRpcInput, type EthereumSignUserOperationRpcInput as EthereumSignUserOperationRpcInput, type EthereumSign7702AuthorizationRpcInput as EthereumSign7702AuthorizationRpcInput, type EthereumSecp256k1SignRpcInput as EthereumSecp256k1SignRpcInput, type SolanaSignTransactionRpcInput as SolanaSignTransactionRpcInput, type SolanaSignAndSendTransactionRpcInput as SolanaSignAndSendTransactionRpcInput, type SolanaSignMessageRpcInput as SolanaSignMessageRpcInput, type EthereumSignTransactionRpcResponse as EthereumSignTransactionRpcResponse, type EthereumSendTransactionRpcResponse as EthereumSendTransactionRpcResponse, type EthereumPersonalSignRpcResponse as EthereumPersonalSignRpcResponse, type EthereumSignTypedDataRpcResponse as EthereumSignTypedDataRpcResponse, type EthereumSignUserOperationRpcResponse as EthereumSignUserOperationRpcResponse, type EthereumSign7702AuthorizationRpcResponse as EthereumSign7702AuthorizationRpcResponse, type EthereumSecp256k1SignRpcResponse as EthereumSecp256k1SignRpcResponse, type SolanaSignTransactionRpcResponse as SolanaSignTransactionRpcResponse, type SolanaSignAndSendTransactionRpcResponse as SolanaSignAndSendTransactionRpcResponse, type SolanaSignMessageRpcResponse as SolanaSignMessageRpcResponse, type WalletExportResponse as WalletExportResponse, type WalletInitImportResponse as WalletInitImportResponse, type WalletRawSignResponse as WalletRawSignResponse, type WalletRpcResponse as WalletRpcResponse, type WalletAuthenticateWithJwtResponse as WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse as WalletCreateWalletsWithRecoveryResponse, type WalletsCursor as WalletsCursor, type WalletCreateParams as WalletCreateParams, type WalletListParams as WalletListParams, type WalletExportParams as WalletExportParams, type WalletInitImportParams as WalletInitImportParams, type WalletRawSignParams as WalletRawSignParams, type WalletRpcParams as WalletRpcParams, type WalletSubmitImportParams as WalletSubmitImportParams, type WalletUpdateParams as WalletUpdateParams, type WalletAuthenticateWithJwtParams as WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams as WalletCreateWalletsWithRecoveryParams, };
|
|
1473
1480
|
export { Transactions as Transactions, type TransactionGetResponse as TransactionGetResponse, type TransactionGetParams as TransactionGetParams, };
|
|
1474
1481
|
export { Balance as Balance, type BalanceGetResponse as BalanceGetResponse, type BalanceGetParams as BalanceGetParams, };
|
|
1475
1482
|
}
|