near-api-js - v7.0.4
    Preparing search index...

    Interface AbiJsonParameter

    Information about a single named JSON function parameter.

    interface AbiJsonParameter {
        name: string;
        type_schema: Schema;
    }
    Index

    Properties

    Properties

    name: string

    Parameter name (e.g. p1 in fn foo(p1: u32) {}).

    type_schema: Schema

    JSON Subschema that represents this type (can be an inline primitive, a reference to the root schema and a few other corner-case things).