You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Sign an order using EIP-712. * * @remarks * https://eips.ethereum.org/EIPS/eip-712 * * @param o - order to sign * @param i - chain-id for the deployed smart contract * @param c - address of a deployed verifying contract */asyncsignOrder(o: Order): Promise<string>{if(!this.chainId||!this.verifyingContract)throwCHAIN_ID_AND_VERIFYING_CONTRACT_REQUIRED;returnawaitthis.vendor.signOrder(o,this.chainId,this.verifyingContract);}
@param i and @param c are copy-paste leftovers from vendor method
The text was updated successfully, but these errors were encountered:
@param i
and@param c
are copy-paste leftovers from vendor methodThe text was updated successfully, but these errors were encountered: