@chainify/client
Advanced tools
Comparing version 1.2.21 to 1.2.22
@@ -13,3 +13,6 @@ import { AddressType, BigNumber, FeeType, NFTAsset, Transaction } from '@chainify/types'; | ||
abstract isApprovedForAll(contract: AddressType, operator: AddressType): Promise<boolean>; | ||
estimateTransfer(_contractAddress: AddressType, _receiver: AddressType, _tokenIDs: string[], _amounts?: number[], _data?: string): Promise<BigNumber>; | ||
estimateApprove(_contract: AddressType, _operator: AddressType, _tokenID: number): Promise<BigNumber>; | ||
estimateApproveAll(_contract: AddressType, _operator: AddressType, _state: boolean): Promise<BigNumber>; | ||
abstract fetch(): Promise<NFTAsset[]>; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const errors_1 = require("@chainify/errors"); | ||
class Nft { | ||
@@ -13,4 +14,13 @@ constructor(walletProvider) { | ||
} | ||
estimateTransfer(_contractAddress, _receiver, _tokenIDs, _amounts, _data) { | ||
throw new errors_1.UnsupportedMethodError('Method not supported'); | ||
} | ||
estimateApprove(_contract, _operator, _tokenID) { | ||
throw new errors_1.UnsupportedMethodError('Method not supported'); | ||
} | ||
estimateApproveAll(_contract, _operator, _state) { | ||
throw new errors_1.UnsupportedMethodError('Method not supported'); | ||
} | ||
} | ||
exports.default = Nft; | ||
//# sourceMappingURL=Nft.js.map |
{ | ||
"name": "@chainify/client", | ||
"version": "1.2.21", | ||
"version": "1.2.22", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "Liquality <info@liquality.io>", |
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
42554
734