From 6b379a8a0fe0895a5352f79d8d57a88b9ee5bc4a Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 3 Jul 2018 16:01:04 +0300 Subject: Add contractWrappers.erc721Proxy.getproxyIdAsync --- .../src/contract_wrappers/erc721_proxy_wrapper.ts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'packages/contract-wrappers/src/contract_wrappers/erc721_proxy_wrapper.ts') diff --git a/packages/contract-wrappers/src/contract_wrappers/erc721_proxy_wrapper.ts b/packages/contract-wrappers/src/contract_wrappers/erc721_proxy_wrapper.ts index fba995395..648c150df 100644 --- a/packages/contract-wrappers/src/contract_wrappers/erc721_proxy_wrapper.ts +++ b/packages/contract-wrappers/src/contract_wrappers/erc721_proxy_wrapper.ts @@ -19,6 +19,15 @@ export class ERC721ProxyWrapper extends ContractWrapper { super(web3Wrapper, networkId); this._contractAddressIfExists = contractAddressIfExists; } + /** + * Get the 4 bytes ID of this asset proxy + * @return Proxy id + */ + public async getProxyIdAsync(): Promise { + const ERC721ProxyContractInstance = await this._getERC721ProxyContractAsync(); + const proxyId = await ERC721ProxyContractInstance.getProxyId.callAsync(); + return proxyId; + } /** * Check if the Exchange contract address is authorized by the ERC721Proxy contract. * @param exchangeContractAddress The hex encoded address of the Exchange contract to call. -- cgit v1.2.3