* update abi-gen with new method interfaces * wip: get all packages to build * wip: get all packages to build * Fix two contract wrapper calls * Export necessary types part of the contract wrapper public interfaces * Revive and fix wrapper_unit_tests * Remove duplicate type * Fix lib_exchange_rich_error_decoder tests * Fix remaining test failures in contracts-* packages * Prettier fixes * remove transactionHelper * lint and update changelogs * Fix prettier * Revert changes to reference docs * Add back changelog already published and add revert changelog entry * Add missing CHANGELOG entries * Add missing comma * Update mesh-rpc-client dep * Update Mesh RPC logic in @0x/orderbook to v6.0.1-beta * Align package versions
		
			
				
	
	
		
			150 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {
 | |
|     chaiSetup,
 | |
|     constants,
 | |
|     expectInsufficientFundsAsync,
 | |
|     expectTransactionFailedWithoutReasonAsync,
 | |
|     provider,
 | |
|     txDefaults,
 | |
|     web3Wrapper,
 | |
| } from '@0x/contracts-test-utils';
 | |
| import { BlockchainLifecycle } from '@0x/dev-utils';
 | |
| import { BigNumber } from '@0x/utils';
 | |
| import { Web3Wrapper } from '@0x/web3-wrapper';
 | |
| import * as chai from 'chai';
 | |
| 
 | |
| import { WETH9Contract } from './wrappers';
 | |
| 
 | |
| import { artifacts } from './artifacts';
 | |
| 
 | |
| chaiSetup.configure();
 | |
| const expect = chai.expect;
 | |
| const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
 | |
| 
 | |
| describe('EtherToken', () => {
 | |
|     let account: string;
 | |
|     const gasPrice = new BigNumber(constants.DEFAULT_GAS_PRICE);
 | |
|     let etherToken: WETH9Contract;
 | |
| 
 | |
|     before(async () => {
 | |
|         await blockchainLifecycle.startAsync();
 | |
|     });
 | |
|     after(async () => {
 | |
|         await blockchainLifecycle.revertAsync();
 | |
|     });
 | |
|     before(async () => {
 | |
|         const accounts = await web3Wrapper.getAvailableAddressesAsync();
 | |
|         account = accounts[0];
 | |
| 
 | |
|         etherToken = await WETH9Contract.deployFrom0xArtifactAsync(
 | |
|             artifacts.WETH9,
 | |
|             provider,
 | |
|             {
 | |
|                 gasPrice,
 | |
|                 ...txDefaults,
 | |
|             },
 | |
|             artifacts,
 | |
|         );
 | |
|     });
 | |
|     beforeEach(async () => {
 | |
|         await blockchainLifecycle.startAsync();
 | |
|     });
 | |
|     afterEach(async () => {
 | |
|         await blockchainLifecycle.revertAsync();
 | |
|     });
 | |
|     describe('deposit', () => {
 | |
|         it('should revert if caller attempts to deposit more Ether than caller balance', async () => {
 | |
|             const initEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const ethToDeposit = initEthBalance.plus(1);
 | |
| 
 | |
|             return expectInsufficientFundsAsync(etherToken.deposit().sendTransactionAsync({ value: ethToDeposit }));
 | |
|         });
 | |
| 
 | |
|         it('should convert deposited Ether to wrapped Ether tokens', async () => {
 | |
|             const initEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const initEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
| 
 | |
|             const ethToDeposit = new BigNumber(Web3Wrapper.toWei(new BigNumber(1)));
 | |
| 
 | |
|             const txHash = await etherToken.deposit().sendTransactionAsync({ value: ethToDeposit });
 | |
|             const receipt = await web3Wrapper.awaitTransactionSuccessAsync(
 | |
|                 txHash,
 | |
|                 constants.AWAIT_TRANSACTION_MINED_MS,
 | |
|             );
 | |
| 
 | |
|             const ethSpentOnGas = gasPrice.times(receipt.gasUsed);
 | |
|             const finalEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const finalEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
| 
 | |
|             expect(finalEthBalance).to.be.bignumber.equal(initEthBalance.minus(ethToDeposit.plus(ethSpentOnGas)));
 | |
|             expect(finalEthTokenBalance).to.be.bignumber.equal(initEthTokenBalance.plus(ethToDeposit));
 | |
|         });
 | |
|     });
 | |
| 
 | |
|     describe('withdraw', () => {
 | |
|         it('should revert if caller attempts to withdraw greater than caller balance', async () => {
 | |
|             const initEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
|             const ethTokensToWithdraw = initEthTokenBalance.plus(1);
 | |
| 
 | |
|             return expectTransactionFailedWithoutReasonAsync(
 | |
|                 etherToken.withdraw(ethTokensToWithdraw).sendTransactionAsync(),
 | |
|             );
 | |
|         });
 | |
| 
 | |
|         it('should convert ether tokens to ether with sufficient balance', async () => {
 | |
|             const ethToDeposit = new BigNumber(Web3Wrapper.toWei(new BigNumber(1)));
 | |
|             await web3Wrapper.awaitTransactionSuccessAsync(
 | |
|                 await etherToken.deposit().sendTransactionAsync({ value: ethToDeposit }),
 | |
|                 constants.AWAIT_TRANSACTION_MINED_MS,
 | |
|             );
 | |
|             const initEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
|             const initEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const ethTokensToWithdraw = initEthTokenBalance;
 | |
|             expect(ethTokensToWithdraw).to.not.be.bignumber.equal(0);
 | |
|             const txHash = await etherToken.withdraw(ethTokensToWithdraw).sendTransactionAsync({
 | |
|                 gas: constants.MAX_ETHERTOKEN_WITHDRAW_GAS,
 | |
|             });
 | |
|             const receipt = await web3Wrapper.awaitTransactionSuccessAsync(
 | |
|                 txHash,
 | |
|                 constants.AWAIT_TRANSACTION_MINED_MS,
 | |
|             );
 | |
| 
 | |
|             const ethSpentOnGas = gasPrice.times(receipt.gasUsed);
 | |
|             const finalEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const finalEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
| 
 | |
|             expect(finalEthBalance).to.be.bignumber.equal(
 | |
|                 initEthBalance.plus(ethTokensToWithdraw.minus(ethSpentOnGas)),
 | |
|             );
 | |
|             expect(finalEthTokenBalance).to.be.bignumber.equal(initEthTokenBalance.minus(ethTokensToWithdraw));
 | |
|         });
 | |
|     });
 | |
| 
 | |
|     describe('fallback', () => {
 | |
|         it('should convert sent ether to ether tokens', async () => {
 | |
|             const initEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const initEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
| 
 | |
|             const ethToDeposit = Web3Wrapper.toBaseUnitAmount(new BigNumber(1), 18);
 | |
| 
 | |
|             const txHash = await web3Wrapper.sendTransactionAsync({
 | |
|                 from: account,
 | |
|                 to: etherToken.address,
 | |
|                 value: ethToDeposit,
 | |
|                 gasPrice,
 | |
|             });
 | |
| 
 | |
|             const receipt = await web3Wrapper.awaitTransactionSuccessAsync(
 | |
|                 txHash,
 | |
|                 constants.AWAIT_TRANSACTION_MINED_MS,
 | |
|             );
 | |
| 
 | |
|             const ethSpentOnGas = gasPrice.times(receipt.gasUsed);
 | |
|             const finalEthBalance = await web3Wrapper.getBalanceInWeiAsync(account);
 | |
|             const finalEthTokenBalance = await etherToken.balanceOf(account).callAsync();
 | |
| 
 | |
|             expect(finalEthBalance).to.be.bignumber.equal(initEthBalance.minus(ethToDeposit.plus(ethSpentOnGas)));
 | |
|             expect(finalEthTokenBalance).to.be.bignumber.equal(initEthTokenBalance.plus(ethToDeposit));
 | |
|         });
 | |
|     });
 | |
| });
 |