Removed DummyERC1155Token

This commit is contained in:
Greg Hysen
2019-02-27 13:36:44 -08:00
parent c4a467fa96
commit b3106cd932
8 changed files with 24 additions and 60 deletions

View File

@@ -17,7 +17,7 @@ import {
artifacts,
DummyERC1155ReceiverBatchTokenReceivedEventArgs,
DummyERC1155ReceiverContract,
DummyERC1155TokenContract,
ERC1155MintableContract,
} from '../src';
import { Erc1155Wrapper } from './utils/erc1155_wrapper';
@@ -39,7 +39,7 @@ describe('ERC1155Token', () => {
let owner: string;
let spender: string;
let receiver: string;
let token: DummyERC1155TokenContract;
let token: ERC1155MintableContract;
let erc1155Receiver: DummyERC1155ReceiverContract;
let nonFungibleToken: BigNumber;
let erc1155Wrapper: Erc1155Wrapper;
@@ -55,12 +55,10 @@ describe('ERC1155Token', () => {
// deploy erc1155 contract & receiver
const accounts = await web3Wrapper.getAvailableAddressesAsync();
[owner, spender] = accounts;
token = await DummyERC1155TokenContract.deployFrom0xArtifactAsync(
artifacts.DummyERC1155Token,
token = await ERC1155MintableContract.deployFrom0xArtifactAsync(
artifacts.ERC1155Mintable,
provider,
txDefaults,
constants.DUMMY_TOKEN_NAME,
constants.DUMMY_TOKEN_SYMBOL,
);
erc1155Receiver = await DummyERC1155ReceiverContract.deployFrom0xArtifactAsync(
artifacts.DummyERC1155Receiver,

View File

@@ -8,19 +8,19 @@ import { BigNumber } from '@0x/utils';
import {
artifacts,
DummyERC1155TokenContract,
ERC1155MintableContract,
ERC1155TransferSingleEventArgs,
} from '../../src';
const expect = chai.expect;
export class Erc1155Wrapper {
private readonly _erc1155Contract: DummyERC1155TokenContract;
private readonly _erc1155Contract: ERC1155MintableContract;
private readonly _web3Wrapper: Web3Wrapper;
private readonly _contractOwner: string;
private readonly _logDecoder: LogDecoder;
constructor(contractInstance: DummyERC1155TokenContract, provider: Web3ProviderEngine, contractOwner: string) {
constructor(contractInstance: ERC1155MintableContract, provider: Web3ProviderEngine, contractOwner: string) {
this._erc1155Contract = contractInstance;
this._web3Wrapper = new Web3Wrapper(provider);
this._contractOwner = contractOwner;