UNPKG

@openzeppelin/relayer-sdk

Version:
57 lines (56 loc) 1.13 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { AuthSpec } from './auth-spec'; /** * * @export * @interface OperationSpecOneOf1 */ export interface OperationSpecOneOf1 { /** * * @type {Array<any>} * @memberof OperationSpecOneOf1 */ 'args': Array<any>; /** * * @type {AuthSpec} * @memberof OperationSpecOneOf1 */ 'auth'?: AuthSpec | null; /** * * @type {string} * @memberof OperationSpecOneOf1 */ 'contract_address': string; /** * * @type {string} * @memberof OperationSpecOneOf1 */ 'function_name': string; /** * * @type {string} * @memberof OperationSpecOneOf1 */ 'type': OperationSpecOneOf1TypeEnum; } /** * @export * @enum {string} */ export declare enum OperationSpecOneOf1TypeEnum { INVOKE_CONTRACT = "invoke_contract" }