当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript js.ZeroEx.getOrderHashHex方法代码示例

本文整理汇总了TypeScript中0x.js.ZeroEx.getOrderHashHex方法的典型用法代码示例。如果您正苦于以下问题:TypeScript js.ZeroEx.getOrderHashHex方法的具体用法?TypeScript js.ZeroEx.getOrderHashHex怎么用?TypeScript js.ZeroEx.getOrderHashHex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在0x.js.ZeroEx的用法示例。


在下文中一共展示了js.ZeroEx.getOrderHashHex方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

        it('should create an unfillable order', async () => {
            signedOrder = await orderFactory.newSignedOrderAsync({
                makerTokenAmount: new BigNumber(1001),
                takerTokenAmount: new BigNumber(3),
            });

            const filledTakerTokenAmountBefore = await zeroEx.exchange.getFilledTakerAmountAsync(
                ZeroEx.getOrderHashHex(signedOrder),
            );
            expect(filledTakerTokenAmountBefore).to.be.bignumber.equal(0);

            const fillTakerTokenAmount1 = new BigNumber(2);
            await exWrapper.fillOrderAsync(signedOrder, taker, {
                fillTakerTokenAmount: fillTakerTokenAmount1,
            });

            const filledTakerTokenAmountAfter1 = await zeroEx.exchange.getFilledTakerAmountAsync(
                ZeroEx.getOrderHashHex(signedOrder),
            );
            expect(filledTakerTokenAmountAfter1).to.be.bignumber.equal(fillTakerTokenAmount1);

            const fillTakerTokenAmount2 = new BigNumber(1);
            await exWrapper.fillOrderAsync(signedOrder, taker, {
                fillTakerTokenAmount: fillTakerTokenAmount2,
            });

            const filledTakerTokenAmountAfter2 = await zeroEx.exchange.getFilledTakerAmountAsync(
                ZeroEx.getOrderHashHex(signedOrder),
            );
            expect(filledTakerTokenAmountAfter2).to.be.bignumber.equal(filledTakerTokenAmountAfter1);
        });
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:31,代码来源:core.ts

示例2: it

 it('should return true with a valid signature', async () => {
     const success = await exchangeWrapper.isValidSignatureAsync(signedOrder);
     const orderHashHex = ZeroEx.getOrderHashHex(signedOrder);
     const isValidSignature = ZeroEx.isValidSignature(orderHashHex, signedOrder.ecSignature, signedOrder.maker);
     expect(isValidSignature).to.be.true();
     expect(success).to.be.true();
 });
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:7,代码来源:helpers.ts

示例3: isValidSignatureAsync

 public async isValidSignatureAsync(signedOrder: SignedOrder): Promise<boolean> {
     const isValidSignature = await this._exchange.isValidSignature.callAsync(
         signedOrder.maker,
         ZeroEx.getOrderHashHex(signedOrder),
         signedOrder.ecSignature.v,
         signedOrder.ecSignature.r,
         signedOrder.ecSignature.s,
     );
     return isValidSignature;
 }
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:10,代码来源:exchange_wrapper.ts

示例4: newSignedOrderAsync

 public async newSignedOrderAsync(customOrderParams: Partial<Order> = {}): Promise<SignedOrder> {
     const randomExpiration = new BigNumber(Math.floor((Date.now() + Math.random() * 100000000000) / 1000));
     const order = ({
         expirationUnixTimestampSec: randomExpiration,
         salt: ZeroEx.generatePseudoRandomSalt(),
         taker: ZeroEx.NULL_ADDRESS,
         ...this._defaultOrderParams,
         ...customOrderParams,
     } as any) as Order;
     const orderHashHex = ZeroEx.getOrderHashHex(order);
     const shouldAddPersonalMessagePrefix = false;
     const ecSignature = await this._zeroEx.signOrderHashAsync(
         orderHashHex,
         order.maker,
         shouldAddPersonalMessagePrefix,
     );
     const signedOrder = {
         ...order,
         ecSignature,
     };
     return signedOrder;
 }
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:22,代码来源:order_factory.ts

示例5: createOrderEnvironmentValuesAsync

async function createOrderEnvironmentValuesAsync(url: string) {
    const httpClient = new HttpClient(url);
    const orders = await httpClient.getOrdersAsync();
    const orderIfExists = _.head(orders);
    if (!_.isUndefined(orderIfExists)) {
        return [
            createEnvironmentValue('order', JSON.stringify(orderIfExists)),
            createEnvironmentValue('orderMaker', orderIfExists.maker),
            createEnvironmentValue('orderTaker', orderIfExists.taker),
            createEnvironmentValue('orderFeeRecipient', orderIfExists.feeRecipient),
            createEnvironmentValue('orderHash', ZeroEx.getOrderHashHex(orderIfExists)),
        ];
    } else {
        logUtils.log(`${chalk.red(`No orders from /orders found`)}`);
        return [
            createEnvironmentValue('order', ''),
            createEnvironmentValue('orderMaker', ''),
            createEnvironmentValue('orderTaker', ''),
            createEnvironmentValue('orderFeeRecipient', ''),
            createEnvironmentValue('orderHash', ''),
        ];
    }
}
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:23,代码来源:postman_environment_factory.ts


注:本文中的0x.js.ZeroEx.getOrderHashHex方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。