@coinbase/cdp-sdk 1.44.1 → 1.46.0
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 +28 -2
- package/README.md +164 -43
- package/_cjs/accounts/evm/eip6492.js +49 -0
- package/_cjs/accounts/evm/eip6492.js.map +1 -0
- package/_cjs/accounts/evm/toEvmDelegatedAccount.js +27 -0
- package/_cjs/accounts/evm/toEvmDelegatedAccount.js.map +1 -0
- package/_cjs/accounts/evm/toEvmServerAccount.js +127 -55
- package/_cjs/accounts/evm/toEvmServerAccount.js.map +1 -1
- package/_cjs/accounts/evm/toEvmSmartAccount.js +115 -45
- package/_cjs/accounts/evm/toEvmSmartAccount.js.map +1 -1
- package/_cjs/accounts/evm/toNetworkScopedEvmSmartAccount.js +31 -0
- package/_cjs/accounts/evm/toNetworkScopedEvmSmartAccount.js.map +1 -1
- package/_cjs/accounts/solana/toSolanaAccount.js +49 -19
- package/_cjs/accounts/solana/toSolanaAccount.js.map +1 -1
- package/_cjs/actions/evm/waitForEvmEip7702DelegationStatus.js +37 -0
- package/_cjs/actions/evm/waitForEvmEip7702DelegationStatus.js.map +1 -0
- package/_cjs/actions/solana/transfer.js.map +1 -1
- package/_cjs/actions/solana/utils.js +9 -9
- package/_cjs/actions/solana/utils.js.map +1 -1
- package/_cjs/analytics.js +10 -228
- package/_cjs/analytics.js.map +1 -1
- package/_cjs/auth/utils/http.js +1 -0
- package/_cjs/auth/utils/http.js.map +1 -1
- package/_cjs/client/cdp.js +4 -7
- package/_cjs/client/cdp.js.map +1 -1
- package/_cjs/client/end-user/endUser.js +385 -4
- package/_cjs/client/end-user/endUser.js.map +1 -1
- package/_cjs/client/end-user/toEndUserAccount.js +201 -23
- package/_cjs/client/end-user/toEndUserAccount.js.map +1 -1
- package/_cjs/client/evm/evm.js +482 -227
- package/_cjs/client/evm/evm.js.map +1 -1
- package/_cjs/client/policies/policies.js +41 -11
- package/_cjs/client/policies/policies.js.map +1 -1
- package/_cjs/client/solana/solana.js +215 -118
- package/_cjs/client/solana/solana.js.map +1 -1
- package/_cjs/index.js +3 -1
- package/_cjs/index.js.map +1 -1
- package/_cjs/openapi-client/cdpApiClient.js +32 -0
- package/_cjs/openapi-client/cdpApiClient.js.map +1 -1
- package/_cjs/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js +178 -9
- package/_cjs/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js.map +1 -1
- package/_cjs/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.js +261 -0
- package/_cjs/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.js.map +1 -0
- package/_cjs/openapi-client/generated/end-user-accounts/end-user-accounts.js.map +1 -1
- package/_cjs/openapi-client/generated/evm-accounts/evm-accounts.js +30 -1
- package/_cjs/openapi-client/generated/evm-accounts/evm-accounts.js.map +1 -1
- package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js +2 -2
- package/_cjs/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js.map +1 -1
- package/_cjs/openapi-client/generated/evm-swaps/evm-swaps.js.map +1 -1
- package/_cjs/openapi-client/generated/evm-token-balances/evm-token-balances.js.map +1 -1
- package/_cjs/openapi-client/generated/faucets/faucets.js +6 -5
- package/_cjs/openapi-client/generated/faucets/faucets.js.map +1 -1
- package/_cjs/openapi-client/generated/onchain-data/onchain-data.js.map +1 -1
- package/_cjs/openapi-client/generated/onramp/onramp.js +15 -1
- package/_cjs/openapi-client/generated/onramp/onramp.js.map +1 -1
- package/_cjs/openapi-client/generated/policy-engine/policy-engine.js.map +1 -1
- package/_cjs/openapi-client/generated/solana-accounts/solana-accounts.js.map +1 -1
- package/_cjs/openapi-client/generated/solana-token-balances/solana-token-balances.js.map +1 -1
- package/_cjs/openapi-client/generated/sql-api/sql-api.js +75 -0
- package/_cjs/openapi-client/generated/sql-api/sql-api.js.map +1 -0
- package/_cjs/openapi-client/generated/webhooks/webhooks.js.map +1 -1
- package/_cjs/openapi-client/generated/x402-facilitator/x402-facilitator.js.map +1 -1
- package/_cjs/openapi-client/index.js +4 -1
- package/_cjs/openapi-client/index.js.map +1 -1
- package/_cjs/policies/evmSchema.js +127 -1
- package/_cjs/policies/evmSchema.js.map +1 -1
- package/_cjs/policies/solanaSchema.js +102 -1
- package/_cjs/policies/solanaSchema.js.map +1 -1
- package/_cjs/policies/types.js +7 -0
- package/_cjs/policies/types.js.map +1 -1
- package/_cjs/utils/export.js +6 -5
- package/_cjs/utils/export.js.map +1 -1
- package/_cjs/version.js +1 -1
- package/_esm/accounts/evm/eip6492.js +46 -0
- package/_esm/accounts/evm/eip6492.js.map +1 -0
- package/_esm/accounts/evm/toEvmDelegatedAccount.js +24 -0
- package/_esm/accounts/evm/toEvmDelegatedAccount.js.map +1 -0
- package/_esm/accounts/evm/toEvmServerAccount.js +127 -55
- package/_esm/accounts/evm/toEvmServerAccount.js.map +1 -1
- package/_esm/accounts/evm/toEvmSmartAccount.js +115 -45
- package/_esm/accounts/evm/toEvmSmartAccount.js.map +1 -1
- package/_esm/accounts/evm/toNetworkScopedEvmSmartAccount.js +31 -0
- package/_esm/accounts/evm/toNetworkScopedEvmSmartAccount.js.map +1 -1
- package/_esm/accounts/solana/toSolanaAccount.js +49 -19
- package/_esm/accounts/solana/toSolanaAccount.js.map +1 -1
- package/_esm/actions/evm/waitForEvmEip7702DelegationStatus.js +34 -0
- package/_esm/actions/evm/waitForEvmEip7702DelegationStatus.js.map +1 -0
- package/_esm/actions/solana/transfer.js.map +1 -1
- package/_esm/actions/solana/utils.js +9 -9
- package/_esm/actions/solana/utils.js.map +1 -1
- package/_esm/analytics.js +9 -227
- package/_esm/analytics.js.map +1 -1
- package/_esm/auth/utils/http.js +1 -0
- package/_esm/auth/utils/http.js.map +1 -1
- package/_esm/client/cdp.js +4 -7
- package/_esm/client/cdp.js.map +1 -1
- package/_esm/client/end-user/endUser.js +385 -4
- package/_esm/client/end-user/endUser.js.map +1 -1
- package/_esm/client/end-user/toEndUserAccount.js +201 -23
- package/_esm/client/end-user/toEndUserAccount.js.map +1 -1
- package/_esm/client/evm/evm.js +482 -227
- package/_esm/client/evm/evm.js.map +1 -1
- package/_esm/client/policies/policies.js +41 -11
- package/_esm/client/policies/policies.js.map +1 -1
- package/_esm/client/solana/solana.js +215 -118
- package/_esm/client/solana/solana.js.map +1 -1
- package/_esm/index.js +1 -0
- package/_esm/index.js.map +1 -1
- package/_esm/openapi-client/cdpApiClient.js +32 -0
- package/_esm/openapi-client/cdpApiClient.js.map +1 -1
- package/_esm/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js +175 -7
- package/_esm/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.js.map +1 -1
- package/_esm/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.js +243 -0
- package/_esm/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.js.map +1 -0
- package/_esm/openapi-client/generated/end-user-accounts/end-user-accounts.js.map +1 -1
- package/_esm/openapi-client/generated/evm-accounts/evm-accounts.js +27 -0
- package/_esm/openapi-client/generated/evm-accounts/evm-accounts.js.map +1 -1
- package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js +2 -2
- package/_esm/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.js.map +1 -1
- package/_esm/openapi-client/generated/evm-swaps/evm-swaps.js.map +1 -1
- package/_esm/openapi-client/generated/evm-token-balances/evm-token-balances.js.map +1 -1
- package/_esm/openapi-client/generated/faucets/faucets.js +6 -5
- package/_esm/openapi-client/generated/faucets/faucets.js.map +1 -1
- package/_esm/openapi-client/generated/onchain-data/onchain-data.js.map +1 -1
- package/_esm/openapi-client/generated/onramp/onramp.js +13 -0
- package/_esm/openapi-client/generated/onramp/onramp.js.map +1 -1
- package/_esm/openapi-client/generated/policy-engine/policy-engine.js.map +1 -1
- package/_esm/openapi-client/generated/solana-accounts/solana-accounts.js.map +1 -1
- package/_esm/openapi-client/generated/solana-token-balances/solana-token-balances.js.map +1 -1
- package/_esm/openapi-client/generated/sql-api/sql-api.js +70 -0
- package/_esm/openapi-client/generated/sql-api/sql-api.js.map +1 -0
- package/_esm/openapi-client/generated/webhooks/webhooks.js.map +1 -1
- package/_esm/openapi-client/generated/x402-facilitator/x402-facilitator.js.map +1 -1
- package/_esm/openapi-client/index.js +4 -1
- package/_esm/openapi-client/index.js.map +1 -1
- package/_esm/policies/evmSchema.js +126 -0
- package/_esm/policies/evmSchema.js.map +1 -1
- package/_esm/policies/solanaSchema.js +101 -0
- package/_esm/policies/solanaSchema.js.map +1 -1
- package/_esm/policies/types.js +9 -2
- package/_esm/policies/types.js.map +1 -1
- package/_esm/utils/export.js +6 -5
- package/_esm/utils/export.js.map +1 -1
- package/_esm/version.js +1 -1
- package/_types/accounts/evm/eip6492.d.ts +17 -0
- package/_types/accounts/evm/eip6492.d.ts.map +1 -0
- package/_types/accounts/evm/toEvmDelegatedAccount.d.ts +13 -0
- package/_types/accounts/evm/toEvmDelegatedAccount.d.ts.map +1 -0
- package/_types/accounts/evm/toEvmServerAccount.d.ts.map +1 -1
- package/_types/accounts/evm/toEvmSmartAccount.d.ts.map +1 -1
- package/_types/accounts/evm/toNetworkScopedEvmSmartAccount.d.ts +4 -4
- package/_types/accounts/evm/toNetworkScopedEvmSmartAccount.d.ts.map +1 -1
- package/_types/accounts/evm/types.d.ts +3 -2
- package/_types/accounts/evm/types.d.ts.map +1 -1
- package/_types/accounts/solana/toSolanaAccount.d.ts.map +1 -1
- package/_types/actions/evm/waitForEvmEip7702DelegationStatus.d.ts +32 -0
- package/_types/actions/evm/waitForEvmEip7702DelegationStatus.d.ts.map +1 -0
- package/_types/actions/solana/transfer.d.ts +3 -4
- package/_types/actions/solana/transfer.d.ts.map +1 -1
- package/_types/actions/solana/types.d.ts +79 -29
- package/_types/actions/solana/types.d.ts.map +1 -1
- package/_types/actions/solana/utils.d.ts +10 -9
- package/_types/actions/solana/utils.d.ts.map +1 -1
- package/_types/analytics.d.ts +5 -38
- package/_types/analytics.d.ts.map +1 -1
- package/_types/auth/utils/http.d.ts.map +1 -1
- package/_types/client/cdp.d.ts +4 -0
- package/_types/client/cdp.d.ts.map +1 -1
- package/_types/client/end-user/endUser.d.ts +272 -1
- package/_types/client/end-user/endUser.d.ts.map +1 -1
- package/_types/client/end-user/endUser.types.d.ts +491 -1
- package/_types/client/end-user/endUser.types.d.ts.map +1 -1
- package/_types/client/end-user/toEndUserAccount.d.ts +4 -1
- package/_types/client/end-user/toEndUserAccount.d.ts.map +1 -1
- package/_types/client/evm/evm.d.ts +54 -1
- package/_types/client/evm/evm.d.ts.map +1 -1
- package/_types/client/evm/evm.types.d.ts +29 -2
- package/_types/client/evm/evm.types.d.ts.map +1 -1
- package/_types/client/policies/policies.d.ts.map +1 -1
- package/_types/client/solana/solana.d.ts +38 -12
- package/_types/client/solana/solana.d.ts.map +1 -1
- package/_types/index.d.ts +3 -1
- package/_types/index.d.ts.map +1 -1
- package/_types/openapi-client/cdpApiClient.d.ts.map +1 -1
- package/_types/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.d.ts +884 -90
- package/_types/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.d.ts.map +1 -1
- package/_types/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.d.ts +163 -0
- package/_types/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.d.ts.map +1 -0
- package/_types/openapi-client/generated/end-user-accounts/end-user-accounts.d.ts +9 -9
- package/_types/openapi-client/generated/end-user-accounts/end-user-accounts.d.ts.map +1 -1
- package/_types/openapi-client/generated/evm-accounts/evm-accounts.d.ts +35 -15
- package/_types/openapi-client/generated/evm-accounts/evm-accounts.d.ts.map +1 -1
- package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.d.ts +14 -14
- package/_types/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.d.ts.map +1 -1
- package/_types/openapi-client/generated/evm-swaps/evm-swaps.d.ts +3 -3
- package/_types/openapi-client/generated/evm-swaps/evm-swaps.d.ts.map +1 -1
- package/_types/openapi-client/generated/evm-token-balances/evm-token-balances.d.ts +2 -2
- package/_types/openapi-client/generated/evm-token-balances/evm-token-balances.d.ts.map +1 -1
- package/_types/openapi-client/generated/faucets/faucets.d.ts +9 -8
- package/_types/openapi-client/generated/faucets/faucets.d.ts.map +1 -1
- package/_types/openapi-client/generated/onchain-data/onchain-data.d.ts +3 -3
- package/_types/openapi-client/generated/onchain-data/onchain-data.d.ts.map +1 -1
- package/_types/openapi-client/generated/onramp/onramp.d.ts +12 -5
- package/_types/openapi-client/generated/onramp/onramp.d.ts.map +1 -1
- package/_types/openapi-client/generated/policy-engine/policy-engine.d.ts +6 -6
- package/_types/openapi-client/generated/policy-engine/policy-engine.d.ts.map +1 -1
- package/_types/openapi-client/generated/solana-accounts/solana-accounts.d.ts +12 -12
- package/_types/openapi-client/generated/solana-accounts/solana-accounts.d.ts.map +1 -1
- package/_types/openapi-client/generated/solana-token-balances/solana-token-balances.d.ts +2 -2
- package/_types/openapi-client/generated/solana-token-balances/solana-token-balances.d.ts.map +1 -1
- package/_types/openapi-client/generated/sql-api/sql-api.d.ts +73 -0
- package/_types/openapi-client/generated/sql-api/sql-api.d.ts.map +1 -0
- package/_types/openapi-client/generated/webhooks/webhooks.d.ts +6 -6
- package/_types/openapi-client/generated/webhooks/webhooks.d.ts.map +1 -1
- package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.d.ts +4 -4
- package/_types/openapi-client/generated/x402-facilitator/x402-facilitator.d.ts.map +1 -1
- package/_types/openapi-client/index.d.ts +23 -3
- package/_types/openapi-client/index.d.ts.map +1 -1
- package/_types/policies/evmSchema.d.ts +3128 -1064
- package/_types/policies/evmSchema.d.ts.map +1 -1
- package/_types/policies/solanaSchema.d.ts +1411 -47
- package/_types/policies/solanaSchema.d.ts.map +1 -1
- package/_types/policies/types.d.ts +8427 -2942
- package/_types/policies/types.d.ts.map +1 -1
- package/_types/types/contract.d.ts.map +1 -1
- package/_types/utils/export.d.ts +1 -1
- package/_types/utils/export.d.ts.map +1 -1
- package/_types/version.d.ts +1 -1
- package/accounts/evm/eip6492.ts +60 -0
- package/accounts/evm/toEvmDelegatedAccount.ts +26 -0
- package/accounts/evm/toEvmServerAccount.ts +115 -67
- package/accounts/evm/toEvmSmartAccount.ts +114 -57
- package/accounts/evm/toNetworkScopedEvmSmartAccount.ts +44 -5
- package/accounts/evm/types.ts +8 -3
- package/accounts/solana/toSolanaAccount.ts +44 -24
- package/actions/evm/waitForEvmEip7702DelegationStatus.ts +57 -0
- package/actions/solana/transfer.ts +3 -3
- package/actions/solana/types.ts +79 -29
- package/actions/solana/utils.ts +13 -11
- package/analytics.ts +8 -294
- package/auth/utils/http.ts +1 -0
- package/client/cdp.ts +6 -8
- package/client/end-user/endUser.ts +513 -4
- package/client/end-user/endUser.types.ts +598 -0
- package/client/end-user/toEndUserAccount.ts +330 -26
- package/client/evm/evm.ts +517 -282
- package/client/evm/evm.types.ts +45 -2
- package/client/policies/policies.ts +41 -16
- package/client/solana/solana.ts +233 -153
- package/index.ts +36 -1
- package/openapi-client/cdpApiClient.ts +34 -0
- package/openapi-client/generated/coinbaseDeveloperPlatformAPIs.schemas.ts +1155 -172
- package/openapi-client/generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.ts +455 -0
- package/openapi-client/generated/end-user-accounts/end-user-accounts.ts +12 -9
- package/openapi-client/generated/evm-accounts/evm-accounts.ts +66 -14
- package/openapi-client/generated/evm-smart-accounts/evm-smart-accounts.ts +16 -16
- package/openapi-client/generated/evm-swaps/evm-swaps.ts +3 -3
- package/openapi-client/generated/evm-token-balances/evm-token-balances.ts +2 -2
- package/openapi-client/generated/faucets/faucets.ts +9 -8
- package/openapi-client/generated/onchain-data/onchain-data.ts +3 -3
- package/openapi-client/generated/onramp/onramp.ts +28 -4
- package/openapi-client/generated/policy-engine/policy-engine.ts +12 -6
- package/openapi-client/generated/solana-accounts/solana-accounts.ts +12 -12
- package/openapi-client/generated/solana-token-balances/solana-token-balances.ts +2 -2
- package/openapi-client/generated/sql-api/sql-api.ts +92 -0
- package/openapi-client/generated/webhooks/webhooks.ts +6 -6
- package/openapi-client/generated/x402-facilitator/x402-facilitator.ts +6 -4
- package/openapi-client/index.ts +4 -1
- package/package.json +7 -8
- package/policies/evmSchema.ts +164 -0
- package/policies/solanaSchema.ts +130 -0
- package/policies/types.ts +14 -0
- package/types/contract.ts +2 -4
- package/utils/export.ts +6 -5
- package/version.ts +1 -1
- package/_cjs/openapi-client/generated/sql-api-alpha/sql-api-alpha.js +0 -55
- package/_cjs/openapi-client/generated/sql-api-alpha/sql-api-alpha.js.map +0 -1
- package/_esm/openapi-client/generated/sql-api-alpha/sql-api-alpha.js +0 -50
- package/_esm/openapi-client/generated/sql-api-alpha/sql-api-alpha.js.map +0 -1
- package/_types/openapi-client/generated/sql-api-alpha/sql-api-alpha.d.ts +0 -53
- package/_types/openapi-client/generated/sql-api-alpha/sql-api-alpha.d.ts.map +0 -1
- package/openapi-client/generated/sql-api-alpha/sql-api-alpha.ts +0 -72
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"solana-accounts.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/solana-accounts/solana-accounts.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,uBAAuB,EACvB,sBAAsB,EACtB,uBAAuB,EACvB,4BAA4B,EAC5B,6BAA6B,EAC7B,uBAAuB,EACvB,qBAAqB,EACrB,wBAAwB,EACxB,wBAAwB,EACxB,yBAAyB,EACzB,oBAAoB,EACpB,qBAAqB,EACrB,wBAAwB,EACxB,yBAAyB,EACzB,aAAa,EACb,uBAAuB,EACxB,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,GAC7B,SAAS,wBAAwB,EACjC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"solana-accounts.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/solana-accounts/solana-accounts.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v7.
|
|
2
|
+
* Generated by orval v7.21.0 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Coinbase Developer Platform APIs
|
|
5
5
|
* The Coinbase Developer Platform APIs - leading the world's transition onchain.
|
|
@@ -14,7 +14,7 @@ type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
|
14
14
|
**Note:** This endpoint is still under development and does not yet provide strong availability or freshness guarantees. Freshness and availability of new token balances will improve over the coming weeks.
|
|
15
15
|
* @summary List Solana token balances
|
|
16
16
|
*/
|
|
17
|
-
export declare const listSolanaTokenBalances: (network: ListSolanaTokenBalancesNetwork, address: string, params?: ListSolanaTokenBalancesParams, options?: SecondParameter<typeof cdpApiClient
|
|
17
|
+
export declare const listSolanaTokenBalances: (network: ListSolanaTokenBalancesNetwork, address: string, params?: ListSolanaTokenBalancesParams, options?: SecondParameter<typeof cdpApiClient<ListSolanaTokenBalances200>>) => Promise<ListSolanaTokenBalances200>;
|
|
18
18
|
export type ListSolanaTokenBalancesResult = NonNullable<Awaited<ReturnType<typeof listSolanaTokenBalances>>>;
|
|
19
19
|
export {};
|
|
20
20
|
//# sourceMappingURL=solana-token-balances.d.ts.map
|
package/_types/openapi-client/generated/solana-token-balances/solana-token-balances.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"solana-token-balances.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/solana-token-balances/solana-token-balances.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,0BAA0B,EAC1B,8BAA8B,EAC9B,6BAA6B,EAC9B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,GAClC,SAAS,8BAA8B,EACvC,SAAS,MAAM,EACf,SAAS,6BAA6B,EACtC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"solana-token-balances.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/solana-token-balances/solana-token-balances.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,0BAA0B,EAC1B,8BAA8B,EAC9B,6BAA6B,EAC9B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,GAClC,SAAS,8BAA8B,EACvC,SAAS,MAAM,EACf,SAAS,6BAA6B,EACtC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,0BAA0B,CAAC,CAAC,wCAM3E,CAAC;AACF,MAAM,MAAM,6BAA6B,GAAG,WAAW,CACrD,OAAO,CAAC,UAAU,CAAC,OAAO,uBAAuB,CAAC,CAAC,CACpD,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by orval v7.21.0 🍺
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
* Coinbase Developer Platform APIs
|
|
5
|
+
* The Coinbase Developer Platform APIs - leading the world's transition onchain.
|
|
6
|
+
* OpenAPI spec version: 2.0.0
|
|
7
|
+
*/
|
|
8
|
+
import type { OnchainDataQuery, OnchainDataResult } from "../coinbaseDeveloperPlatformAPIs.schemas.js";
|
|
9
|
+
import { cdpApiClient } from "../../cdpApiClient.js";
|
|
10
|
+
type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
11
|
+
/**
|
|
12
|
+
* Run a read-only SQL query against indexed blockchain data including transactions, events, and decoded logs.
|
|
13
|
+
|
|
14
|
+
This endpoint provides direct SQL access to comprehensive blockchain data across supported networks.
|
|
15
|
+
|
|
16
|
+
Queries are executed against optimized data structures for high-performance analytics.
|
|
17
|
+
|
|
18
|
+
### Allowed Queries
|
|
19
|
+
|
|
20
|
+
- Standard SQL syntax (CoinbaSeQL dialect, based on ClickHouse dialect)
|
|
21
|
+
- Read-only queries (SELECT statements)
|
|
22
|
+
- No DDL or DML operations
|
|
23
|
+
- Query that follow limits (defined below)
|
|
24
|
+
|
|
25
|
+
### Supported Tables
|
|
26
|
+
|
|
27
|
+
- `<network>.events` - Base mainnet decoded event logs with parameters, event signature, topics, and more.
|
|
28
|
+
- `<network>.transactions` - Base mainnet transaction data including hash, block number, gas usage.
|
|
29
|
+
- `<network>.blocks` - Base mainnet block information.
|
|
30
|
+
- `<network>.encoded_logs` - Encoded log data of event logs that aren't able to be decoded by our event decoder (ex: log0 opcode).
|
|
31
|
+
- `<network>.decoded_user_operations` - Decoded user operations data including hash, block number, gas usage, builder codes, entrypoint version, and more.
|
|
32
|
+
- `<network>.transaction_attributions` - Information about the attributions of a transaction to a builder and associated builder codes.
|
|
33
|
+
|
|
34
|
+
### Supported Networks
|
|
35
|
+
|
|
36
|
+
- Base Mainnet: `base`
|
|
37
|
+
- Base Sepolia: `base_sepolia`
|
|
38
|
+
|
|
39
|
+
So for example, valid tables are: `base.events`, `base_sepolia.events`, `base.transactions`, etc.
|
|
40
|
+
|
|
41
|
+
### Query Limits
|
|
42
|
+
|
|
43
|
+
- Maximum result set: 50,000 rows
|
|
44
|
+
- Maximum query length: 10,000 characters
|
|
45
|
+
- Maximum on-disk data to read: 100GB
|
|
46
|
+
- Maximum memory usage: 15GB
|
|
47
|
+
- Query timeout: 30 seconds
|
|
48
|
+
- Maximum JOINs: 12
|
|
49
|
+
|
|
50
|
+
### Query Caching
|
|
51
|
+
|
|
52
|
+
By default, each query result is returned from cache so long as the result is from an identical query and less than 750ms old. This freshness tolerance can be modified upwards, to a maximum of 900000ms (i.e. 900s, 15m).
|
|
53
|
+
This can be helpful for users who wish to reduce expensive calls to the SQL API by reusing cached results.
|
|
54
|
+
|
|
55
|
+
* @summary Run SQL Query
|
|
56
|
+
*/
|
|
57
|
+
export declare const runSQLQuery: (onchainDataQuery: OnchainDataQuery, options?: SecondParameter<typeof cdpApiClient<OnchainDataResult>>) => Promise<OnchainDataResult>;
|
|
58
|
+
/**
|
|
59
|
+
* Retrieve the SQL grammar for the SQL API.
|
|
60
|
+
|
|
61
|
+
The SQL queries that are supported by the SQL API are defined in ANTLR4 grammar which is evaluated by server before executing the query. This ensures the safety and soundness of the SQL query before execution.
|
|
62
|
+
|
|
63
|
+
This endpoint returns the ANTLR4 grammar that is used to evaluate the SQL queries so that developers can understand the SQL API and build SQL queries with high confidence and correctness.
|
|
64
|
+
|
|
65
|
+
LLMs interact well with ANTLR4 grammar. You can feed the grammar directly into the LLMs to help generate SQL queries.
|
|
66
|
+
|
|
67
|
+
* @summary Get SQL grammar
|
|
68
|
+
*/
|
|
69
|
+
export declare const getSQLGrammar: (options?: SecondParameter<typeof cdpApiClient<string>>) => Promise<string>;
|
|
70
|
+
export type RunSQLQueryResult = NonNullable<Awaited<ReturnType<typeof runSQLQuery>>>;
|
|
71
|
+
export type GetSQLGrammarResult = NonNullable<Awaited<ReturnType<typeof getSQLGrammar>>>;
|
|
72
|
+
export {};
|
|
73
|
+
//# sourceMappingURL=sql-api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sql-api.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/sql-api/sql-api.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,eAAO,MAAM,WAAW,GACtB,kBAAkB,gBAAgB,EAClC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,iBAAiB,CAAC,CAAC,+BAWlE,CAAC;AACF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,aAAa,GAAI,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC,oBAEnF,CAAC;AACF,MAAM,MAAM,iBAAiB,GAAG,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,CAAC;AACrF,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v7.
|
|
2
|
+
* Generated by orval v7.21.0 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Coinbase Developer Platform APIs
|
|
5
5
|
* The Coinbase Developer Platform APIs - leading the world's transition onchain.
|
|
@@ -20,7 +20,7 @@ in descending order by creation time.
|
|
|
20
20
|
|
|
21
21
|
* @summary List webhook subscriptions
|
|
22
22
|
*/
|
|
23
|
-
export declare const listWebhookSubscriptions: (params?: ListWebhookSubscriptionsParams, options?: SecondParameter<typeof cdpApiClient
|
|
23
|
+
export declare const listWebhookSubscriptions: (params?: ListWebhookSubscriptionsParams, options?: SecondParameter<typeof cdpApiClient<WebhookSubscriptionListResponse>>) => Promise<WebhookSubscriptionListResponse>;
|
|
24
24
|
/**
|
|
25
25
|
* Subscribe to real-time events across CDP products using flexible filtering.
|
|
26
26
|
|
|
@@ -75,7 +75,7 @@ For `onchain.activity.detected` events, use `labels` for precise filtering with
|
|
|
75
75
|
|
|
76
76
|
* @summary Create webhook subscription
|
|
77
77
|
*/
|
|
78
|
-
export declare const createWebhookSubscription: (webhookSubscriptionRequest: WebhookSubscriptionRequest, options?: SecondParameter<typeof cdpApiClient
|
|
78
|
+
export declare const createWebhookSubscription: (webhookSubscriptionRequest: WebhookSubscriptionRequest, options?: SecondParameter<typeof cdpApiClient<WebhookSubscriptionResponse>>) => Promise<WebhookSubscriptionResponse>;
|
|
79
79
|
/**
|
|
80
80
|
* Retrieve detailed information about a specific webhook subscription including
|
|
81
81
|
configuration, status, creation timestamp, and webhook signature secret.
|
|
@@ -88,7 +88,7 @@ configuration, status, creation timestamp, and webhook signature secret.
|
|
|
88
88
|
|
|
89
89
|
* @summary Get webhook subscription details
|
|
90
90
|
*/
|
|
91
|
-
export declare const getWebhookSubscription: (subscriptionId: string, options?: SecondParameter<typeof cdpApiClient
|
|
91
|
+
export declare const getWebhookSubscription: (subscriptionId: string, options?: SecondParameter<typeof cdpApiClient<WebhookSubscriptionResponse>>) => Promise<WebhookSubscriptionResponse>;
|
|
92
92
|
/**
|
|
93
93
|
* Update an existing webhook subscription's configuration including
|
|
94
94
|
event types, target URL, filtering criteria, and enabled status.
|
|
@@ -102,7 +102,7 @@ All required fields must be provided, even if they are not being changed.
|
|
|
102
102
|
|
|
103
103
|
* @summary Update webhook subscription
|
|
104
104
|
*/
|
|
105
|
-
export declare const updateWebhookSubscription: (subscriptionId: string, webhookSubscriptionUpdateRequest: WebhookSubscriptionUpdateRequest, options?: SecondParameter<typeof cdpApiClient
|
|
105
|
+
export declare const updateWebhookSubscription: (subscriptionId: string, webhookSubscriptionUpdateRequest: WebhookSubscriptionUpdateRequest, options?: SecondParameter<typeof cdpApiClient<WebhookSubscriptionResponse>>) => Promise<WebhookSubscriptionResponse>;
|
|
106
106
|
/**
|
|
107
107
|
* Permanently delete a webhook subscription and stop all event deliveries.
|
|
108
108
|
This action cannot be undone.
|
|
@@ -114,7 +114,7 @@ This action cannot be undone.
|
|
|
114
114
|
|
|
115
115
|
* @summary Delete webhook subscription
|
|
116
116
|
*/
|
|
117
|
-
export declare const deleteWebhookSubscription: (subscriptionId: string, options?: SecondParameter<typeof cdpApiClient
|
|
117
|
+
export declare const deleteWebhookSubscription: (subscriptionId: string, options?: SecondParameter<typeof cdpApiClient<void>>) => Promise<void>;
|
|
118
118
|
export type ListWebhookSubscriptionsResult = NonNullable<Awaited<ReturnType<typeof listWebhookSubscriptions>>>;
|
|
119
119
|
export type CreateWebhookSubscriptionResult = NonNullable<Awaited<ReturnType<typeof createWebhookSubscription>>>;
|
|
120
120
|
export type GetWebhookSubscriptionResult = NonNullable<Awaited<ReturnType<typeof getWebhookSubscription>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webhooks.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/webhooks/webhooks.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,8BAA8B,EAC9B,+BAA+B,EAC/B,0BAA0B,EAC1B,2BAA2B,EAC3B,gCAAgC,EACjC,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,wBAAwB,GACnC,SAAS,8BAA8B,EACvC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"webhooks.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/webhooks/webhooks.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,8BAA8B,EAC9B,+BAA+B,EAC/B,0BAA0B,EAC1B,2BAA2B,EAC3B,gCAAgC,EACjC,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,wBAAwB,GACnC,SAAS,8BAA8B,EACvC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,+BAA+B,CAAC,CAAC,6CAMhF,CAAC;AACF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDG;AACH,eAAO,MAAM,yBAAyB,GACpC,4BAA4B,0BAA0B,EACtD,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,2BAA2B,CAAC,CAAC,yCAW5E,CAAC;AACF;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,sBAAsB,GACjC,gBAAgB,MAAM,EACtB,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,2BAA2B,CAAC,CAAC,yCAM5E,CAAC;AACF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,yBAAyB,GACpC,gBAAgB,MAAM,EACtB,kCAAkC,gCAAgC,EAClE,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,2BAA2B,CAAC,CAAC,yCAW5E,CAAC;AACF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,yBAAyB,GACpC,gBAAgB,MAAM,EACtB,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC,kBAMrD,CAAC;AACF,MAAM,MAAM,8BAA8B,GAAG,WAAW,CACtD,OAAO,CAAC,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC,CACrD,CAAC;AACF,MAAM,MAAM,+BAA+B,GAAG,WAAW,CACvD,OAAO,CAAC,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CACtD,CAAC;AACF,MAAM,MAAM,4BAA4B,GAAG,WAAW,CACpD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC,CACnD,CAAC;AACF,MAAM,MAAM,+BAA+B,GAAG,WAAW,CACvD,OAAO,CAAC,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CACtD,CAAC;AACF,MAAM,MAAM,+BAA+B,GAAG,WAAW,CACvD,OAAO,CAAC,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CACtD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Generated by orval v7.
|
|
2
|
+
* Generated by orval v7.21.0 🍺
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Coinbase Developer Platform APIs
|
|
5
5
|
* The Coinbase Developer Platform APIs - leading the world's transition onchain.
|
|
@@ -12,17 +12,17 @@ type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
|
12
12
|
* Verify an x402 protocol payment with a specific scheme and network.
|
|
13
13
|
* @summary Verify a payment
|
|
14
14
|
*/
|
|
15
|
-
export declare const verifyX402Payment: (verifyX402PaymentBody: VerifyX402PaymentBody, options?: SecondParameter<typeof cdpApiClient
|
|
15
|
+
export declare const verifyX402Payment: (verifyX402PaymentBody: VerifyX402PaymentBody, options?: SecondParameter<typeof cdpApiClient<X402VerifyResponseResponse>>) => Promise<X402VerifyResponseResponse>;
|
|
16
16
|
/**
|
|
17
17
|
* Settle an x402 protocol payment with a specific scheme and network.
|
|
18
18
|
* @summary Settle a payment
|
|
19
19
|
*/
|
|
20
|
-
export declare const settleX402Payment: (settleX402PaymentBody: SettleX402PaymentBody, options?: SecondParameter<typeof cdpApiClient
|
|
20
|
+
export declare const settleX402Payment: (settleX402PaymentBody: SettleX402PaymentBody, options?: SecondParameter<typeof cdpApiClient<X402SettleResponseResponse>>) => Promise<X402SettleResponseResponse>;
|
|
21
21
|
/**
|
|
22
22
|
* Get the supported x402 protocol payment schemes and networks that the facilitator is able to verify and settle payments for.
|
|
23
23
|
* @summary Get supported payment schemes and networks
|
|
24
24
|
*/
|
|
25
|
-
export declare const supportedX402PaymentKinds: (options?: SecondParameter<typeof cdpApiClient
|
|
25
|
+
export declare const supportedX402PaymentKinds: (options?: SecondParameter<typeof cdpApiClient<X402SupportedPaymentKindsResponseResponse>>) => Promise<X402SupportedPaymentKindsResponseResponse>;
|
|
26
26
|
export type VerifyX402PaymentResult = NonNullable<Awaited<ReturnType<typeof verifyX402Payment>>>;
|
|
27
27
|
export type SettleX402PaymentResult = NonNullable<Awaited<ReturnType<typeof settleX402Payment>>>;
|
|
28
28
|
export type SupportedX402PaymentKindsResult = NonNullable<Awaited<ReturnType<typeof supportedX402PaymentKinds>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"x402-facilitator.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/x402-facilitator/x402-facilitator.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,qBAAqB,EACrB,qBAAqB,EACrB,0BAA0B,EAC1B,yCAAyC,EACzC,0BAA0B,EAC3B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAC5B,uBAAuB,qBAAqB,EAC5C,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"x402-facilitator.d.ts","sourceRoot":"","sources":["../../../../openapi-client/generated/x402-facilitator/x402-facilitator.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EACV,qBAAqB,EACrB,qBAAqB,EACrB,0BAA0B,EAC1B,yCAAyC,EACzC,0BAA0B,EAC3B,MAAM,6CAA6C,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAE/E;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAC5B,uBAAuB,qBAAqB,EAC5C,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,0BAA0B,CAAC,CAAC,wCAW3E,CAAC;AACF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,GAC5B,uBAAuB,qBAAqB,EAC5C,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,0BAA0B,CAAC,CAAC,wCAW3E,CAAC;AACF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,GACpC,UAAU,eAAe,CAAC,OAAO,YAAY,CAAC,yCAAyC,CAAC,CAAC,uDAM1F,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC,CAAC,CAAC;AACjG,MAAM,MAAM,uBAAuB,GAAG,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC,CAAC,CAAC;AACjG,MAAM,MAAM,+BAA+B,GAAG,WAAW,CACvD,OAAO,CAAC,UAAU,CAAC,OAAO,yBAAyB,CAAC,CAAC,CACtD,CAAC"}
|
|
@@ -10,10 +10,25 @@ export * from "./generated/policy-engine/policy-engine.js";
|
|
|
10
10
|
export * from "./generated/onramp/onramp.js";
|
|
11
11
|
export * from "./generated/onchain-data/onchain-data.js";
|
|
12
12
|
export * from "./generated/end-user-accounts/end-user-accounts.js";
|
|
13
|
+
export * from "./generated/embedded-wallets-core-functionality/embedded-wallets-core-functionality.js";
|
|
13
14
|
export * from "./generated/x402-facilitator/x402-facilitator.js";
|
|
14
|
-
export * from "./generated/sql-api-alpha/sql-api-alpha.js";
|
|
15
15
|
export declare const CdpOpenApiClient: {
|
|
16
16
|
configure: (options: import("./cdpApiClient.js").CdpOptions) => void;
|
|
17
|
+
signEvmHashWithEndUserAccount: (projectId: string, userId: string, signEvmHashWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHashWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHashWithEndUserAccount200>;
|
|
18
|
+
signEvmTransactionWithEndUserAccount: (projectId: string, userId: string, signEvmTransactionWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTransactionWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTransactionWithEndUserAccount200>;
|
|
19
|
+
sendEvmTransactionWithEndUserAccount: (projectId: string, userId: string, sendEvmTransactionWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendEvmTransactionWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendEvmTransactionWithEndUserAccount200>;
|
|
20
|
+
sendEvmAssetWithEndUserAccount: (projectId: string, userId: string, address: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").BlockchainAddress, asset: "usdc", sendEvmAssetWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendEvmAssetWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendEvmAssetWithEndUserAccount200>;
|
|
21
|
+
signEvmMessageWithEndUserAccount: (projectId: string, userId: string, signEvmMessageWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessageWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessageWithEndUserAccount200>;
|
|
22
|
+
signEvmTypedDataWithEndUserAccount: (projectId: string, userId: string, signEvmTypedDataWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTypedDataWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTypedDataWithEndUserAccount200>;
|
|
23
|
+
revokeDelegationForEndUser: (projectId: string, userId: string, revokeDelegationForEndUserBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").RevokeDelegationForEndUserBody, options?: string | undefined) => Promise<void>;
|
|
24
|
+
createEvmEip7702DelegationWithEndUserAccount: (projectId: string, userId: string, createEvmEip7702DelegationWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702DelegationWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702DelegationWithEndUserAccount201>;
|
|
25
|
+
sendUserOperationWithEndUserAccount: (projectId: string, userId: string, address: string, sendUserOperationWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendUserOperationWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
26
|
+
revokeSpendPermissionWithEndUserAccount: (projectId: string, userId: string, address: string, revokeSpendPermissionRequest: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").RevokeSpendPermissionRequest, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
27
|
+
signSolanaHashWithEndUserAccount: (projectId: string, userId: string, signSolanaHashWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaHashWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaHashWithEndUserAccount200>;
|
|
28
|
+
signSolanaMessageWithEndUserAccount: (projectId: string, userId: string, signSolanaMessageWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaMessageWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaMessageWithEndUserAccount200>;
|
|
29
|
+
signSolanaTransactionWithEndUserAccount: (projectId: string, userId: string, signSolanaTransactionWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaTransactionWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignSolanaTransactionWithEndUserAccount200>;
|
|
30
|
+
sendSolanaTransactionWithEndUserAccount: (projectId: string, userId: string, sendSolanaTransactionWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendSolanaTransactionWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendSolanaTransactionWithEndUserAccount200>;
|
|
31
|
+
sendSolanaAssetWithEndUserAccount: (projectId: string, userId: string, address: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").BlockchainAddress, asset: "usdc", sendSolanaAssetWithEndUserAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendSolanaAssetWithEndUserAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendSolanaAssetWithEndUserAccount200>;
|
|
17
32
|
createEndUser: (createEndUserBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEndUserBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EndUser>;
|
|
18
33
|
listEndUsers: (params?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEndUsersParams, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEndUsers200>;
|
|
19
34
|
validateEndUserAccessToken: (validateEndUserAccessTokenBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ValidateEndUserAccessTokenBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EndUser>;
|
|
@@ -62,7 +77,7 @@ export declare const CdpOpenApiClient: {
|
|
|
62
77
|
sendUserOperation: (address: string, userOpHash: string, sendUserOperationBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendUserOperationBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
63
78
|
createSpendPermission: (address: string, createSpendPermissionRequest: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateSpendPermissionRequest, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
64
79
|
listSpendPermissions: (address: string, params?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListSpendPermissionsParams, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListSpendPermissions200>;
|
|
65
|
-
revokeSpendPermission: (address: string,
|
|
80
|
+
revokeSpendPermission: (address: string, evmSpendPermissionsRevokeSpendPermissionRequest: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmSpendPermissionsRevokeSpendPermissionRequest, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
66
81
|
listEvmAccounts: (params?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEvmAccountsParams, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEvmAccounts200>;
|
|
67
82
|
createEvmAccount: (createEvmAccountBody?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
68
83
|
getEvmAccount: (address: string, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
@@ -73,6 +88,8 @@ export declare const CdpOpenApiClient: {
|
|
|
73
88
|
signEvmHash: (address: string, signEvmHashBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHashBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHash200>;
|
|
74
89
|
signEvmMessage: (address: string, signEvmMessageBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessageBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessage200>;
|
|
75
90
|
signEvmTypedData: (address: string, eIP712Message: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EIP712Message, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTypedData200>;
|
|
91
|
+
createEvmEip7702Delegation: (address: string, createEvmEip7702DelegationBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702DelegationBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702Delegation201>;
|
|
92
|
+
getEvmEip7702DelegationOperationById: (delegationOperationId: string, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmEip7702DelegationOperation>;
|
|
76
93
|
importEvmAccount: (importEvmAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ImportEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
77
94
|
exportEvmAccount: (address: string, exportEvmAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccount200>;
|
|
78
95
|
exportEvmAccountByName: (name: string, exportEvmAccountByNameBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountByNameBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountByName200>;
|
|
@@ -93,7 +110,7 @@ export declare const OpenApiEvmMethods: {
|
|
|
93
110
|
sendUserOperation: (address: string, userOpHash: string, sendUserOperationBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SendUserOperationBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
94
111
|
createSpendPermission: (address: string, createSpendPermissionRequest: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateSpendPermissionRequest, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
95
112
|
listSpendPermissions: (address: string, params?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListSpendPermissionsParams, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListSpendPermissions200>;
|
|
96
|
-
revokeSpendPermission: (address: string,
|
|
113
|
+
revokeSpendPermission: (address: string, evmSpendPermissionsRevokeSpendPermissionRequest: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmSpendPermissionsRevokeSpendPermissionRequest, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmUserOperation>;
|
|
97
114
|
listEvmAccounts: (params?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEvmAccountsParams, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ListEvmAccounts200>;
|
|
98
115
|
createEvmAccount: (createEvmAccountBody?: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
99
116
|
getEvmAccount: (address: string, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
@@ -104,6 +121,8 @@ export declare const OpenApiEvmMethods: {
|
|
|
104
121
|
signEvmHash: (address: string, signEvmHashBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHashBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmHash200>;
|
|
105
122
|
signEvmMessage: (address: string, signEvmMessageBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessageBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmMessage200>;
|
|
106
123
|
signEvmTypedData: (address: string, eIP712Message: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EIP712Message, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").SignEvmTypedData200>;
|
|
124
|
+
createEvmEip7702Delegation: (address: string, createEvmEip7702DelegationBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702DelegationBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").CreateEvmEip7702Delegation201>;
|
|
125
|
+
getEvmEip7702DelegationOperationById: (delegationOperationId: string, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmEip7702DelegationOperation>;
|
|
107
126
|
importEvmAccount: (importEvmAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ImportEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").EvmAccount>;
|
|
108
127
|
exportEvmAccount: (address: string, exportEvmAccountBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccount200>;
|
|
109
128
|
exportEvmAccountByName: (name: string, exportEvmAccountByNameBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountByNameBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").ExportEvmAccountByName200>;
|
|
@@ -130,4 +149,5 @@ export declare const OpenApiPoliciesMethods: {
|
|
|
130
149
|
updatePolicy: (policyId: string, updatePolicyBody: import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").UpdatePolicyBody, options?: string | undefined) => Promise<import("./generated/coinbaseDeveloperPlatformAPIs.schemas.js").Policy>;
|
|
131
150
|
};
|
|
132
151
|
export type CdpOpenApiClientType = typeof CdpOpenApiClient;
|
|
152
|
+
export * from "./generated/sql-api/sql-api.js";
|
|
133
153
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../openapi-client/index.ts"],"names":[],"mappings":"AAAA,cAAc,sDAAsD,CAAC;AACrE,cAAc,0CAA0C,CAAC;AACzD,cAAc,sDAAsD,CAAC;AACrE,cAAc,oCAAoC,CAAC;AACnD,cAAc,sDAAsD,CAAC;AACrE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4DAA4D,CAAC;AAC3E,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,0CAA0C,CAAC;AACzD,cAAc,oDAAoD,CAAC;AACnE,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../openapi-client/index.ts"],"names":[],"mappings":"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"}
|