update abi-gen with new method interfaces (#2325)
* 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
This commit is contained in:
@@ -22,7 +22,7 @@ blockchainTests('LibSafeDowncast unit tests', env => {
|
||||
|
||||
describe('downcastToUint96', () => {
|
||||
async function verifyCorrectDowncastAsync(n: Numberish): Promise<void> {
|
||||
const actual = await testContract.downcastToUint96.callAsync(new BigNumber(n));
|
||||
const actual = await testContract.downcastToUint96(new BigNumber(n)).callAsync();
|
||||
expect(actual).to.bignumber.eq(n);
|
||||
}
|
||||
function toDowncastError(n: Numberish): SafeMathRevertErrors.Uint256DowncastError {
|
||||
@@ -53,7 +53,7 @@ blockchainTests('LibSafeDowncast unit tests', env => {
|
||||
|
||||
describe('downcastToUint64', () => {
|
||||
async function verifyCorrectDowncastAsync(n: Numberish): Promise<void> {
|
||||
const actual = await testContract.downcastToUint64.callAsync(new BigNumber(n));
|
||||
const actual = await testContract.downcastToUint64(new BigNumber(n)).callAsync();
|
||||
expect(actual).to.bignumber.eq(n);
|
||||
}
|
||||
function toDowncastError(n: Numberish): SafeMathRevertErrors.Uint256DowncastError {
|
||||
|
||||
Reference in New Issue
Block a user