@blockaid/client
Advanced tools
Comparing version 0.29.0 to 0.29.1
@@ -6,2 +6,3 @@ import { type Agent } from "./_shims/index.js"; | ||
import * as API from "./resources/index.js"; | ||
import { Scan, ScanStatusParams, ScanStatusResponse } from "./resources/scan.js"; | ||
import { Site, SiteReportParams, SiteReportResponse, SiteScanHitResponse, SiteScanMissResponse, SiteScanParams, SiteScanResponse } from "./resources/site.js"; | ||
@@ -115,2 +116,3 @@ import { Token, TokenReportParams, TokenReportResponse, TokenScanParams, TokenScanResponse } from "./resources/token.js"; | ||
site: API.Site; | ||
scan: API.Scan; | ||
token: API.Token; | ||
@@ -150,2 +152,3 @@ tokenBulk: API.TokenBulk; | ||
export { Site as Site, type SiteScanHitResponse as SiteScanHitResponse, type SiteScanMissResponse as SiteScanMissResponse, type SiteReportResponse as SiteReportResponse, type SiteScanResponse as SiteScanResponse, type SiteReportParams as SiteReportParams, type SiteScanParams as SiteScanParams, }; | ||
export { Scan as Scan, type ScanStatusResponse as ScanStatusResponse, type ScanStatusParams as ScanStatusParams, }; | ||
export { Token as Token, type TokenReportResponse as TokenReportResponse, type TokenScanResponse as TokenScanResponse, type TokenReportParams as TokenReportParams, type TokenScanParams as TokenScanParams, }; | ||
@@ -152,0 +155,0 @@ export { TokenBulk as TokenBulk, type TokenBulkScanResponse as TokenBulkScanResponse, type TokenBulkScanParams as TokenBulkScanParams, }; |
@@ -33,2 +33,3 @@ "use strict"; | ||
const API = __importStar(require("./resources/index.js")); | ||
const scan_1 = require("./resources/scan.js"); | ||
const site_1 = require("./resources/site.js"); | ||
@@ -88,2 +89,3 @@ const token_1 = require("./resources/token.js"); | ||
this.site = new API.Site(this); | ||
this.scan = new API.Scan(this); | ||
this.token = new API.Token(this); | ||
@@ -168,2 +170,3 @@ this.tokenBulk = new API.TokenBulk(this); | ||
Blockaid.Site = site_1.Site; | ||
Blockaid.Scan = scan_1.Scan; | ||
Blockaid.Token = token_1.Token; | ||
@@ -170,0 +173,0 @@ Blockaid.TokenBulk = token_bulk_1.TokenBulk; |
{ | ||
"name": "@blockaid/client", | ||
"version": "0.29.0", | ||
"version": "0.29.1", | ||
"description": "The official TypeScript library for the Blockaid API", | ||
@@ -5,0 +5,0 @@ "author": "Blockaid <feedback@blockaid.io>", |
export { Bitcoin, type BitcoinTransactionScanRequest, type BitcoinTransactionScanResponse, } from "./bitcoin/bitcoin.js"; | ||
export { Evm, type Erc1155Diff, type Erc1155Exposure, type Erc1155TokenDetails, type Erc20Diff, type Erc20Exposure, type Erc20TokenDetails, type Erc721Diff, type Erc721Exposure, type Erc721TokenDetails, type Metadata, type NativeAssetDetails, type NativeDiff, type NonercTokenDetails, type TokenScanSupportedChain, type TransactionScanFeature, type TransactionScanResponse, type TransactionScanSupportedChain, type TransactionSimulation, type TransactionSimulationError, type TransactionValidation, type TransactionValidationError, type UsdDiff, } from "./evm/evm.js"; | ||
export { Scan, type ScanStatusResponse, type ScanStatusParams } from "./scan.js"; | ||
export { Site, type SiteScanHitResponse, type SiteScanMissResponse, type SiteReportResponse, type SiteScanResponse, type SiteReportParams, type SiteScanParams, } from "./site.js"; | ||
@@ -4,0 +5,0 @@ export { Solana, type AccountSummarySchema, type AddressScanRequestSchema, type AddressScanResponseSchema, type APIErrorDetails, type AssetTransferDetailsSchema, type CnftDetailsSchema, type CnftDiffSchema, type CnftMintAccountDetailsSchema, type CombinedValidationResult, type DelegatedAssetDetailsSchema, type FungibleMintAccountDetailsSchema, type InstructionErrorDetails, type NativeDetailsSchema, type NativeDiffSchema, type NativeSolOwnershipDiffSchema, type NonFungibleMintAccountDetailsSchema, type PdaAccountSchema, type ProgramAccountDetailsSchema, type ResponseSchema, type SplFungibleTokenDetailsSchema, type SplFungibleTokenDiffSchema, type SplNonFungibleTokenDetailsSchema, type SplNonFungibleTokenDiffSchema, type SplTokenOwnershipDiffSchema, type StakedAssetDetailsSchema, type StakedSolWithdrawAuthorityDiffSchema, type SuccessfulSimulationResultSchema, type SystemAccountDetailsSchema, type TokenAccountDetailsSchema, type TotalUsdDiffSchema, type TransactionErrorDetails, type TxScanRequestSchema, type ValidationFeature, } from "./solana/solana.js"; |
"use strict"; | ||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TokenBulk = exports.Token = exports.Stellar = exports.Starknet = exports.Solana = exports.Site = exports.Evm = exports.Bitcoin = void 0; | ||
exports.TokenBulk = exports.Token = exports.Stellar = exports.Starknet = exports.Solana = exports.Site = exports.Scan = exports.Evm = exports.Bitcoin = void 0; | ||
var bitcoin_1 = require("./bitcoin/bitcoin.js"); | ||
@@ -9,2 +9,4 @@ Object.defineProperty(exports, "Bitcoin", { enumerable: true, get: function () { return bitcoin_1.Bitcoin; } }); | ||
Object.defineProperty(exports, "Evm", { enumerable: true, get: function () { return evm_1.Evm; } }); | ||
var scan_1 = require("./scan.js"); | ||
Object.defineProperty(exports, "Scan", { enumerable: true, get: function () { return scan_1.Scan; } }); | ||
var site_1 = require("./site.js"); | ||
@@ -11,0 +13,0 @@ Object.defineProperty(exports, "Site", { enumerable: true, get: function () { return site_1.Site; } }); |
@@ -8,2 +8,3 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
import * as API from './resources/index'; | ||
import { Scan, ScanStatusParams, ScanStatusResponse } from './resources/scan'; | ||
import { | ||
@@ -259,2 +260,3 @@ Site, | ||
site: API.Site = new API.Site(this); | ||
scan: API.Scan = new API.Scan(this); | ||
token: API.Token = new API.Token(this); | ||
@@ -349,2 +351,3 @@ tokenBulk: API.TokenBulk = new API.TokenBulk(this); | ||
Blockaid.Site = Site; | ||
Blockaid.Scan = Scan; | ||
Blockaid.Token = Token; | ||
@@ -458,2 +461,8 @@ Blockaid.TokenBulk = TokenBulk; | ||
export { | ||
Scan as Scan, | ||
type ScanStatusResponse as ScanStatusResponse, | ||
type ScanStatusParams as ScanStatusParams, | ||
}; | ||
export { | ||
Token as Token, | ||
@@ -460,0 +469,0 @@ type TokenReportResponse as TokenReportResponse, |
@@ -33,2 +33,3 @@ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
} from './evm/evm'; | ||
export { Scan, type ScanStatusResponse, type ScanStatusParams } from './scan'; | ||
export { | ||
@@ -35,0 +36,0 @@ Site, |
@@ -1,1 +0,1 @@ | ||
export const VERSION = '0.29.0'; // x-release-please-version | ||
export const VERSION = '0.29.1'; // x-release-please-version |
@@ -1,2 +0,2 @@ | ||
export declare const VERSION = "0.29.0"; | ||
export declare const VERSION = "0.29.1"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.VERSION = void 0; | ||
exports.VERSION = '0.29.0'; // x-release-please-version | ||
exports.VERSION = '0.29.1'; // x-release-please-version | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
982982
347
18468