From de9a859ca9bc69f663e3abca8fabf0c11e2a0e30 Mon Sep 17 00:00:00 2001 From: luc10921 Date: Tue, 26 Sep 2023 15:38:26 -0300 Subject: [PATCH 1/3] CU-86a0uktwy - Move typeChecker to neon-dappkit-types --- .../neon-dappkit-types/dist/TypeChecker.d.ts | 15 + .../neon-dappkit-types/dist/TypeChecker.js | 60 ++++ packages/neon-dappkit-types/dist/index.d.ts | 1 + packages/neon-dappkit-types/dist/index.js | 1 + packages/neon-dappkit-types/docs/index.html | 3 +- packages/neon-dappkit-types/docs/modules.html | 4 +- .../docs/variables/TypeChecker.html | 256 ++++++++++++++++++ .../neon-dappkit-types/src/TypeChecker.ts | 84 ++++++ packages/neon-dappkit-types/src/index.ts | 1 + packages/neon-dappkit/dist/NeonInvoker.d.ts | 5 +- packages/neon-dappkit/dist/NeonInvoker.js | 29 +- .../neon-dappkit/dist/NeonInvoker.spec.js | 32 +-- packages/neon-dappkit/src/NeonInvoker.spec.ts | 34 +-- packages/neon-dappkit/src/NeonInvoker.ts | 4 +- packages/neon-dappkit/src/typeChecker.ts | 78 ------ 15 files changed, 463 insertions(+), 144 deletions(-) create mode 100644 packages/neon-dappkit-types/dist/TypeChecker.d.ts create mode 100644 packages/neon-dappkit-types/dist/TypeChecker.js create mode 100644 packages/neon-dappkit-types/docs/variables/TypeChecker.html create mode 100644 packages/neon-dappkit-types/src/TypeChecker.ts delete mode 100644 packages/neon-dappkit/src/typeChecker.ts diff --git a/packages/neon-dappkit-types/dist/TypeChecker.d.ts b/packages/neon-dappkit-types/dist/TypeChecker.d.ts new file mode 100644 index 0000000..cfc1b4b --- /dev/null +++ b/packages/neon-dappkit-types/dist/TypeChecker.d.ts @@ -0,0 +1,15 @@ +import { AnyArgType, BooleanArgType, IntegerArgType, ArrayResponseArgType, MapResponseArgType, ByteStringArgType, InteropInterfaceArgType, PointerArgType, BufferArgType, StructArgType, RpcResponseStackItem } from './Neo3Invoker'; +declare const TypeChecker: { + isStackTypeAny(item: any): item is AnyArgType; + isStackTypeBoolean(item: any): item is BooleanArgType; + isStackTypeInteger(item: any): item is IntegerArgType; + isStackTypeArray(item: any): item is ArrayResponseArgType; + isStackTypeMap(item: any): item is MapResponseArgType; + isStackTypeByteString(item: any): item is ByteStringArgType; + isStackTypeInteropInterface(item: any): item is InteropInterfaceArgType; + isStackTypePointer(item: any): item is PointerArgType; + isStackTypeBuffer(item: any): item is BufferArgType; + isStackTypeStruct(item: any): item is StructArgType; + isRpcResponseStackItem(item: any): item is RpcResponseStackItem; +}; +export { TypeChecker }; diff --git a/packages/neon-dappkit-types/dist/TypeChecker.js b/packages/neon-dappkit-types/dist/TypeChecker.js new file mode 100644 index 0000000..de7bc0b --- /dev/null +++ b/packages/neon-dappkit-types/dist/TypeChecker.js @@ -0,0 +1,60 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.TypeChecker = void 0; +const TypeChecker = { + isStackTypeAny(item) { + return typeof item === 'object' && item.type === 'Any'; + }, + isStackTypeBoolean(item) { + return typeof item === 'object' && item.type === 'Boolean' && typeof item.value === 'boolean'; + }, + isStackTypeInteger(item) { + return typeof item === 'object' && item.type === 'Integer' && typeof item.value === 'string'; + }, + isStackTypeArray(item) { + return (typeof item === 'object' && + item.type === 'Array' && + Array.isArray(item.value) && + item.value.every((i) => TypeChecker.isRpcResponseStackItem(i))); + }, + isStackTypeMap(item) { + return (typeof item === 'object' && + item.type === 'Map' && + Array.isArray(item.value) && + item.value.every((i) => TypeChecker.isRpcResponseStackItem(i.key) && TypeChecker.isRpcResponseStackItem(i.value))); + }, + isStackTypeByteString(item) { + return typeof item === 'object' && item.type === 'ByteString' && typeof item.value === 'string'; + }, + isStackTypeInteropInterface(item) { + return (typeof item === 'object' && + item.type === 'InteropInterface' && + typeof item.interface === 'string' && + typeof item.id === 'string'); + }, + isStackTypePointer(item) { + return typeof item === 'object' && item.type === 'Pointer' && typeof item.value === 'string'; + }, + isStackTypeBuffer(item) { + return typeof item === 'object' && item.type === 'Buffer' && typeof item.value === 'string'; + }, + isStackTypeStruct(item) { + return (typeof item === 'object' && + item.type === 'Struct' && + Array.isArray(item.value) && + item.value.every((i) => TypeChecker.isRpcResponseStackItem(i))); + }, + isRpcResponseStackItem(item) { + return (TypeChecker.isStackTypeAny(item) || + TypeChecker.isStackTypeBoolean(item) || + TypeChecker.isStackTypeInteger(item) || + TypeChecker.isStackTypeArray(item) || + TypeChecker.isStackTypeMap(item) || + TypeChecker.isStackTypeByteString(item) || + TypeChecker.isStackTypeInteropInterface(item) || + TypeChecker.isStackTypePointer(item) || + TypeChecker.isStackTypeBuffer(item) || + TypeChecker.isStackTypeStruct(item)); + }, +}; +exports.TypeChecker = TypeChecker; diff --git a/packages/neon-dappkit-types/dist/index.d.ts b/packages/neon-dappkit-types/dist/index.d.ts index 8f90c7c..fcbd930 100644 --- a/packages/neon-dappkit-types/dist/index.d.ts +++ b/packages/neon-dappkit-types/dist/index.d.ts @@ -2,3 +2,4 @@ export * from './Neo3EventListener'; export * from './Neo3Invoker'; export * from './Neo3Parser'; export * from './Neo3Signer'; +export * from './TypeChecker'; diff --git a/packages/neon-dappkit-types/dist/index.js b/packages/neon-dappkit-types/dist/index.js index 41720f6..4ba1924 100644 --- a/packages/neon-dappkit-types/dist/index.js +++ b/packages/neon-dappkit-types/dist/index.js @@ -18,3 +18,4 @@ __exportStar(require("./Neo3EventListener"), exports); __exportStar(require("./Neo3Invoker"), exports); __exportStar(require("./Neo3Parser"), exports); __exportStar(require("./Neo3Signer"), exports); +__exportStar(require("./TypeChecker"), exports); diff --git a/packages/neon-dappkit-types/docs/index.html b/packages/neon-dappkit-types/docs/index.html index 5600693..123a7eb 100644 --- a/packages/neon-dappkit-types/docs/index.html +++ b/packages/neon-dappkit-types/docs/index.html @@ -143,7 +143,8 @@

WitnessCondition
  • ABI_TYPES
  • HINT_TYPES
  • -
  • INTERNAL_TYPES
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/modules.html b/packages/neon-dappkit-types/docs/modules.html index 473d0b9..f48a80f 100644 --- a/packages/neon-dappkit-types/docs/modules.html +++ b/packages/neon-dappkit-types/docs/modules.html @@ -89,6 +89,7 @@

    Variables

    ABI_TYPES HINT_TYPES INTERNAL_TYPES +TypeChecker
    +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/variables/TypeChecker.html b/packages/neon-dappkit-types/docs/variables/TypeChecker.html new file mode 100644 index 0000000..7e8bf6e --- /dev/null +++ b/packages/neon-dappkit-types/docs/variables/TypeChecker.html @@ -0,0 +1,256 @@ +TypeChecker | @cityofzion/neon-dappkit-types
    +
    + +
    +
    +
    +
    + +

    Variable TypeCheckerConst

    +
    TypeChecker: {
        isRpcResponseStackItem(item: any): item is RpcResponseStackItem;
        isStackTypeAny(item: any): item is AnyArgType;
        isStackTypeArray(item: any): item is ArrayResponseArgType;
        isStackTypeBoolean(item: any): item is BooleanArgType;
        isStackTypeBuffer(item: any): item is BufferArgType;
        isStackTypeByteString(item: any): item is ByteStringArgType;
        isStackTypeInteger(item: any): item is IntegerArgType;
        isStackTypeInteropInterface(item: any): item is InteropInterfaceArgType;
        isStackTypeMap(item: any): item is MapResponseArgType;
        isStackTypePointer(item: any): item is PointerArgType;
        isStackTypeStruct(item: any): item is StructArgType;
    } = ...
    +
    +

    Type declaration

    +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/packages/neon-dappkit-types/src/TypeChecker.ts b/packages/neon-dappkit-types/src/TypeChecker.ts new file mode 100644 index 0000000..f5f2117 --- /dev/null +++ b/packages/neon-dappkit-types/src/TypeChecker.ts @@ -0,0 +1,84 @@ +import { + AnyArgType, + BooleanArgType, + IntegerArgType, + ArrayResponseArgType, + MapResponseArgType, + ByteStringArgType, + InteropInterfaceArgType, + PointerArgType, + BufferArgType, + StructArgType, + RpcResponseStackItem, +} from './Neo3Invoker' + +const TypeChecker = { + isStackTypeAny(item: any): item is AnyArgType { + return typeof item === 'object' && item.type === 'Any' + }, + isStackTypeBoolean(item: any): item is BooleanArgType { + return typeof item === 'object' && item.type === 'Boolean' && typeof item.value === 'boolean' + }, + isStackTypeInteger(item: any): item is IntegerArgType { + return typeof item === 'object' && item.type === 'Integer' && typeof item.value === 'string' + }, + isStackTypeArray(item: any): item is ArrayResponseArgType { + return ( + typeof item === 'object' && + item.type === 'Array' && + Array.isArray(item.value) && + item.value.every((i: any) => TypeChecker.isRpcResponseStackItem(i)) + ) + }, + isStackTypeMap(item: any): item is MapResponseArgType { + return ( + typeof item === 'object' && + item.type === 'Map' && + Array.isArray(item.value) && + item.value.every( + (i: any) => TypeChecker.isRpcResponseStackItem(i.key) && TypeChecker.isRpcResponseStackItem(i.value), + ) + ) + }, + isStackTypeByteString(item: any): item is ByteStringArgType { + return typeof item === 'object' && item.type === 'ByteString' && typeof item.value === 'string' + }, + isStackTypeInteropInterface(item: any): item is InteropInterfaceArgType { + return ( + typeof item === 'object' && + item.type === 'InteropInterface' && + typeof item.interface === 'string' && + typeof item.id === 'string' + ) + }, + isStackTypePointer(item: any): item is PointerArgType { + return typeof item === 'object' && item.type === 'Pointer' && typeof item.value === 'string' + }, + isStackTypeBuffer(item: any): item is BufferArgType { + return typeof item === 'object' && item.type === 'Buffer' && typeof item.value === 'string' + }, + isStackTypeStruct(item: any): item is StructArgType { + return ( + typeof item === 'object' && + item.type === 'Struct' && + Array.isArray(item.value) && + item.value.every((i: any) => TypeChecker.isRpcResponseStackItem(i)) + ) + }, + isRpcResponseStackItem(item: any): item is RpcResponseStackItem { + return ( + TypeChecker.isStackTypeAny(item) || + TypeChecker.isStackTypeBoolean(item) || + TypeChecker.isStackTypeInteger(item) || + TypeChecker.isStackTypeArray(item) || + TypeChecker.isStackTypeMap(item) || + TypeChecker.isStackTypeByteString(item) || + TypeChecker.isStackTypeInteropInterface(item) || + TypeChecker.isStackTypePointer(item) || + TypeChecker.isStackTypeBuffer(item) || + TypeChecker.isStackTypeStruct(item) + ) + }, +} + +export { TypeChecker } diff --git a/packages/neon-dappkit-types/src/index.ts b/packages/neon-dappkit-types/src/index.ts index 1ef618d..f85a4e2 100644 --- a/packages/neon-dappkit-types/src/index.ts +++ b/packages/neon-dappkit-types/src/index.ts @@ -2,3 +2,4 @@ export * from './Neo3EventListener' export * from './Neo3Invoker' export * from './Neo3Parser' export * from './Neo3Signer' +export * from './TypeChecker' diff --git a/packages/neon-dappkit/dist/NeonInvoker.d.ts b/packages/neon-dappkit/dist/NeonInvoker.d.ts index 1b59e7b..1b7fe1b 100644 --- a/packages/neon-dappkit/dist/NeonInvoker.d.ts +++ b/packages/neon-dappkit/dist/NeonInvoker.d.ts @@ -1,7 +1,6 @@ -import { ContractInvocationMulti, Signer, Neo3Invoker, Arg, InvokeResult, RpcResponseStackItem } from '@cityofzion/neon-dappkit-types'; +import { ContractInvocationMulti, Signer, Neo3Invoker, Arg, InvokeResult, RpcResponseStackItem, TypeChecker } from '@cityofzion/neon-dappkit-types'; import { api } from '@cityofzion/neon-js'; import type * as NeonTypes from '@cityofzion/neon-core'; -import * as typeChecker from './typeChecker'; export type RpcConfig = { rpcAddress: string; networkMagic: number; @@ -46,4 +45,4 @@ export declare class NeonInvoker implements Neo3Invoker { static buildMultipleSigner(optionAccounts: (NeonTypes.wallet.Account | undefined)[], signers?: Signer[]): NeonTypes.tx.Signer[]; private normalizeAccountArray; } -export { typeChecker }; +export { TypeChecker }; diff --git a/packages/neon-dappkit/dist/NeonInvoker.js b/packages/neon-dappkit/dist/NeonInvoker.js index 13d5a25..ccca2a0 100644 --- a/packages/neon-dappkit/dist/NeonInvoker.js +++ b/packages/neon-dappkit/dist/NeonInvoker.js @@ -1,27 +1,4 @@ "use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - var desc = Object.getOwnPropertyDescriptor(m, k); - if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { - desc = { enumerable: true, get: function() { return m[k]; } }; - } - Object.defineProperty(o, k2, desc); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -32,10 +9,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.typeChecker = exports.NeonInvoker = void 0; +exports.TypeChecker = exports.NeonInvoker = void 0; +const neon_dappkit_types_1 = require("@cityofzion/neon-dappkit-types"); +Object.defineProperty(exports, "TypeChecker", { enumerable: true, get: function () { return neon_dappkit_types_1.TypeChecker; } }); const neon_js_1 = require("@cityofzion/neon-js"); -const typeChecker = __importStar(require("./typeChecker")); -exports.typeChecker = typeChecker; class NeonInvoker { constructor(options) { this.options = options; diff --git a/packages/neon-dappkit/dist/NeonInvoker.spec.js b/packages/neon-dappkit/dist/NeonInvoker.spec.js index 0375621..e3f3d34 100644 --- a/packages/neon-dappkit/dist/NeonInvoker.spec.js +++ b/packages/neon-dappkit/dist/NeonInvoker.spec.js @@ -98,7 +98,7 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeByteString(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeByteString(resp.stack[0])) { assert_1.default.equal(resp.stack[0].value, 'R0FT', 'correct symbol'); } else { @@ -124,13 +124,13 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeInteger(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeInteger(resp.stack[0])) { assert_1.default.equal(resp.stack[0].value, '-100'); } else { assert_1.default.fail('stack return is not Integer'); } - if (index_1.typeChecker.isStackTypeInteger(resp.stack[1])) { + if (index_1.TypeChecker.isStackTypeInteger(resp.stack[1])) { assert_1.default.equal(resp.stack[1].value, '1234'); } else { @@ -166,25 +166,25 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[0])) { assert_1.default.equal(resp.stack[0].value, true); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[1])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[1])) { assert_1.default.equal(resp.stack[1].value, false); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[2])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[2])) { assert_1.default.equal(resp.stack[2].value, true); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[3])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[3])) { assert_1.default.equal(resp.stack[3].value, false); } else { @@ -220,25 +220,25 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[0])) { assert_1.default.equal(resp.stack[0].value, true); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[1])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[1])) { assert_1.default.equal(resp.stack[1].value, false); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[2])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[2])) { assert_1.default.equal(resp.stack[2].value, true); } else { assert_1.default.fail('stack return is not Boolean'); } - if (index_1.typeChecker.isStackTypeBoolean(resp.stack[3])) { + if (index_1.TypeChecker.isStackTypeBoolean(resp.stack[3])) { assert_1.default.equal(resp.stack[3].value, false); } else { @@ -259,7 +259,7 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeArray(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeArray(resp.stack[0])) { assert_1.default.deepEqual(resp.stack[0].value, [ { type: 'Integer', @@ -302,13 +302,13 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeByteString(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeByteString(resp.stack[0])) { assert_1.default.deepEqual(resp.stack[0].value, 'dGVzdGluZyBzdHJpbmcgcmV0dXJu'); } else { assert_1.default.fail('stack return is not ByteString'); } - if (index_1.typeChecker.isStackTypeByteString(resp.stack[1])) { + if (index_1.TypeChecker.isStackTypeByteString(resp.stack[1])) { assert_1.default.deepEqual(resp.stack[1].value, 'dGVzdGluZyBzdHJpbmcgcmV0dXJu'); } else { @@ -329,7 +329,7 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeArray(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeArray(resp.stack[0])) { assert_1.default.deepEqual(resp.stack[0].value, [ { type: 'Integer', @@ -367,7 +367,7 @@ describe('NeonInvoker', function () { ], }); assert_1.default.equal(resp.state, 'HALT', 'success'); - if (index_1.typeChecker.isStackTypeMap(resp.stack[0])) { + if (index_1.TypeChecker.isStackTypeMap(resp.stack[0])) { assert_1.default.deepEqual(resp.stack[0].value, [ { key: { diff --git a/packages/neon-dappkit/src/NeonInvoker.spec.ts b/packages/neon-dappkit/src/NeonInvoker.spec.ts index 166abdc..3c5d8d8 100644 --- a/packages/neon-dappkit/src/NeonInvoker.spec.ts +++ b/packages/neon-dappkit/src/NeonInvoker.spec.ts @@ -1,5 +1,5 @@ import { ContractInvocationMulti } from '@cityofzion/neon-dappkit-types' -import { NeonInvoker, typeChecker } from './index' +import { NeonInvoker, TypeChecker } from './index' import { wallet, tx } from '@cityofzion/neon-js' import assert from 'assert' @@ -108,7 +108,7 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeByteString(resp.stack[0])) { + if (TypeChecker.isStackTypeByteString(resp.stack[0])) { assert.equal(resp.stack[0].value, 'R0FT', 'correct symbol') } else { assert.fail('stack return is not ByteString') @@ -136,13 +136,13 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeInteger(resp.stack[0])) { + if (TypeChecker.isStackTypeInteger(resp.stack[0])) { assert.equal(resp.stack[0].value, '-100') } else { assert.fail('stack return is not Integer') } - if (typeChecker.isStackTypeInteger(resp.stack[1])) { + if (TypeChecker.isStackTypeInteger(resp.stack[1])) { assert.equal(resp.stack[1].value, '1234') } else { assert.fail('stack return is not Integer') @@ -180,22 +180,22 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeBoolean(resp.stack[0])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[0])) { assert.equal(resp.stack[0].value, true) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[1])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[1])) { assert.equal(resp.stack[1].value, false) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[2])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[2])) { assert.equal(resp.stack[2].value, true) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[3])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[3])) { assert.equal(resp.stack[3].value, false) } else { assert.fail('stack return is not Boolean') @@ -233,22 +233,22 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeBoolean(resp.stack[0])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[0])) { assert.equal(resp.stack[0].value, true) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[1])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[1])) { assert.equal(resp.stack[1].value, false) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[2])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[2])) { assert.equal(resp.stack[2].value, true) } else { assert.fail('stack return is not Boolean') } - if (typeChecker.isStackTypeBoolean(resp.stack[3])) { + if (TypeChecker.isStackTypeBoolean(resp.stack[3])) { assert.equal(resp.stack[3].value, false) } else { assert.fail('stack return is not Boolean') @@ -271,7 +271,7 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeArray(resp.stack[0])) { + if (TypeChecker.isStackTypeArray(resp.stack[0])) { assert.deepEqual(resp.stack[0].value, [ { type: 'Integer', @@ -316,13 +316,13 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeByteString(resp.stack[0])) { + if (TypeChecker.isStackTypeByteString(resp.stack[0])) { assert.deepEqual(resp.stack[0].value, 'dGVzdGluZyBzdHJpbmcgcmV0dXJu') } else { assert.fail('stack return is not ByteString') } - if (typeChecker.isStackTypeByteString(resp.stack[1])) { + if (TypeChecker.isStackTypeByteString(resp.stack[1])) { assert.deepEqual(resp.stack[1].value, 'dGVzdGluZyBzdHJpbmcgcmV0dXJu') } else { assert.fail('stack return is not ByteString') @@ -345,7 +345,7 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeArray(resp.stack[0])) { + if (TypeChecker.isStackTypeArray(resp.stack[0])) { assert.deepEqual(resp.stack[0].value, [ { type: 'Integer', @@ -385,7 +385,7 @@ describe('NeonInvoker', function () { }) assert.equal(resp.state, 'HALT', 'success') - if (typeChecker.isStackTypeMap(resp.stack[0])) { + if (TypeChecker.isStackTypeMap(resp.stack[0])) { assert.deepEqual(resp.stack[0].value, [ { key: { diff --git a/packages/neon-dappkit/src/NeonInvoker.ts b/packages/neon-dappkit/src/NeonInvoker.ts index cda47b4..a61e8e0 100644 --- a/packages/neon-dappkit/src/NeonInvoker.ts +++ b/packages/neon-dappkit/src/NeonInvoker.ts @@ -5,10 +5,10 @@ import { Arg, InvokeResult, RpcResponseStackItem, + TypeChecker, } from '@cityofzion/neon-dappkit-types' import { tx, u, rpc, sc, api, wallet } from '@cityofzion/neon-js' import type * as NeonTypes from '@cityofzion/neon-core' -import * as typeChecker from './typeChecker' export type RpcConfig = { rpcAddress: string @@ -267,4 +267,4 @@ export class NeonInvoker implements Neo3Invoker { } } -export { typeChecker } +export { TypeChecker } diff --git a/packages/neon-dappkit/src/typeChecker.ts b/packages/neon-dappkit/src/typeChecker.ts deleted file mode 100644 index 6c6f391..0000000 --- a/packages/neon-dappkit/src/typeChecker.ts +++ /dev/null @@ -1,78 +0,0 @@ -import { - AnyArgType, - BooleanArgType, - IntegerArgType, - ArrayResponseArgType, - MapResponseArgType, - ByteStringArgType, - InteropInterfaceArgType, - PointerArgType, - BufferArgType, - StructArgType, - RpcResponseStackItem, -} from '@cityofzion/neon-dappkit-types' - -export function isStackTypeAny(item: any): item is AnyArgType { - return typeof item === 'object' && item.type === 'Any' -} -export function isStackTypeBoolean(item: any): item is BooleanArgType { - return typeof item === 'object' && item.type === 'Boolean' && typeof item.value === 'boolean' -} -export function isStackTypeInteger(item: any): item is IntegerArgType { - return typeof item === 'object' && item.type === 'Integer' && typeof item.value === 'string' -} -export function isStackTypeArray(item: any): item is ArrayResponseArgType { - return ( - typeof item === 'object' && - item.type === 'Array' && - Array.isArray(item.value) && - item.value.every((i: any) => isRpcResponseStackItem(i)) - ) -} -export function isStackTypeMap(item: any): item is MapResponseArgType { - return ( - typeof item === 'object' && - item.type === 'Map' && - Array.isArray(item.value) && - item.value.every((i: any) => isRpcResponseStackItem(i.key) && isRpcResponseStackItem(i.value)) - ) -} -export function isStackTypeByteString(item: any): item is ByteStringArgType { - return typeof item === 'object' && item.type === 'ByteString' && typeof item.value === 'string' -} -export function isStackTypeInteropInterface(item: any): item is InteropInterfaceArgType { - return ( - typeof item === 'object' && - item.type === 'InteropInterface' && - typeof item.interface === 'string' && - typeof item.id === 'string' - ) -} -export function isStackTypePointer(item: any): item is PointerArgType { - return typeof item === 'object' && item.type === 'Pointer' && typeof item.value === 'string' -} -export function isStackTypeBuffer(item: any): item is BufferArgType { - return typeof item === 'object' && item.type === 'Buffer' && typeof item.value === 'string' -} -export function isStackTypeStruct(item: any): item is StructArgType { - return ( - typeof item === 'object' && - item.type === 'Struct' && - Array.isArray(item.value) && - item.value.every((i: any) => isRpcResponseStackItem(i)) - ) -} -export function isRpcResponseStackItem(item: any): item is RpcResponseStackItem { - return ( - isStackTypeAny(item) || - isStackTypeBoolean(item) || - isStackTypeInteger(item) || - isStackTypeArray(item) || - isStackTypeMap(item) || - isStackTypeByteString(item) || - isStackTypeInteropInterface(item) || - isStackTypePointer(item) || - isStackTypeBuffer(item) || - isStackTypeStruct(item) - ) -} From 82b93e357ea47d6fee8b52d61d97b36f8580d74b Mon Sep 17 00:00:00 2001 From: luc10921 Date: Tue, 26 Sep 2023 15:42:48 -0300 Subject: [PATCH 2/3] CU-86a0uktwy - Move typeChecker to neon-dappkit-types --- .../CU-86a0uktwy_2023-09-26-18-42.json | 10 ++++++++++ .../neon-dappkit/CU-86a0uktwy_2023-09-26-18-42.json | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 common/changes/@cityofzion/neon-dappkit-types/CU-86a0uktwy_2023-09-26-18-42.json create mode 100644 common/changes/@cityofzion/neon-dappkit/CU-86a0uktwy_2023-09-26-18-42.json diff --git a/common/changes/@cityofzion/neon-dappkit-types/CU-86a0uktwy_2023-09-26-18-42.json b/common/changes/@cityofzion/neon-dappkit-types/CU-86a0uktwy_2023-09-26-18-42.json new file mode 100644 index 0000000..be5827a --- /dev/null +++ b/common/changes/@cityofzion/neon-dappkit-types/CU-86a0uktwy_2023-09-26-18-42.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@cityofzion/neon-dappkit-types", + "comment": "Add TypeChecker", + "type": "minor" + } + ], + "packageName": "@cityofzion/neon-dappkit-types" +} \ No newline at end of file diff --git a/common/changes/@cityofzion/neon-dappkit/CU-86a0uktwy_2023-09-26-18-42.json b/common/changes/@cityofzion/neon-dappkit/CU-86a0uktwy_2023-09-26-18-42.json new file mode 100644 index 0000000..5372dc7 --- /dev/null +++ b/common/changes/@cityofzion/neon-dappkit/CU-86a0uktwy_2023-09-26-18-42.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@cityofzion/neon-dappkit", + "comment": "Remove typeChecker.ts file; import new TypeChecker from neon-dappkit-types", + "type": "minor" + } + ], + "packageName": "@cityofzion/neon-dappkit" +} \ No newline at end of file From 70a88055b63ad366f4f567b4a04f108cb0f72f68 Mon Sep 17 00:00:00 2001 From: melanke Date: Wed, 27 Sep 2023 12:06:07 -0300 Subject: [PATCH 3/3] build and lint --- .../neon-dappkit-types/docs/assets/search.js | 2 +- .../docs/enums/SignMessageVersion.html | 8 ++-- .../docs/interfaces/AndWitnessCondition.html | 6 +-- .../interfaces/BooleanWitnessCondition.html | 6 +-- .../CalledByContractWitnessCondition.html | 6 +-- .../CalledByEntryWitnessCondition.html | 4 +- .../CalledByGroupWitnessCondition.html | 6 +-- .../interfaces/DecryptFromArrayResult.html | 6 +-- .../docs/interfaces/EncryptedPayload.html | 10 ++--- .../interfaces/GroupWitnessCondition.html | 6 +-- .../docs/interfaces/InvokeResult.html | 16 +++---- .../docs/interfaces/Neo3ApplicationLog.html | 6 +-- .../docs/interfaces/Neo3Event.html | 6 +-- .../docs/interfaces/Neo3EventListener.html | 10 ++--- .../docs/interfaces/Neo3EventWithState.html | 8 ++-- .../docs/interfaces/Neo3Invoker.html | 8 ++-- .../docs/interfaces/Neo3Parser.html | 42 +++++++++---------- .../docs/interfaces/Neo3Signer.html | 14 +++---- .../docs/interfaces/Neo3StackItem.html | 6 +-- .../docs/interfaces/NotWitnessCondition.html | 6 +-- .../docs/interfaces/OrWitnessCondition.html | 6 +-- .../ScriptHashWitnessCondition.html | 6 +-- .../docs/interfaces/WitnessRule.html | 6 +-- .../docs/types/AnyArgType.html | 5 ++- .../docs/types/AnyConfigArgType.html | 5 ++- .../neon-dappkit-types/docs/types/Arg.html | 5 ++- .../docs/types/ArrayArgType.html | 5 ++- .../docs/types/ArrayConfigArgType.html | 5 ++- .../docs/types/ArrayResponseArgType.html | 5 ++- .../docs/types/BooleanArgType.html | 5 ++- .../docs/types/BooleanConfigArgType.html | 5 ++- .../docs/types/BufferArgType.html | 5 ++- .../docs/types/ByteArrayArgType.html | 5 ++- .../docs/types/ByteArrayConfigArgType.html | 5 ++- .../docs/types/ByteStringArgType.html | 5 ++- .../docs/types/ContractInvocation.html | 5 ++- .../docs/types/ContractInvocationMulti.html | 5 ++- .../docs/types/Hash160ArgType.html | 5 ++- .../docs/types/Hash160ConfigArgType.html | 5 ++- .../docs/types/Hash256ArgType.html | 5 ++- .../docs/types/Hash256ConfigArgType.html | 5 ++- .../docs/types/IntegerArgType.html | 5 ++- .../docs/types/IntegerConfigArgType.html | 5 ++- .../docs/types/InteropInterfaceArgType.html | 5 ++- .../types/InteropInterfaceConfigArgType.html | 5 ++- .../docs/types/MapArgType.html | 5 ++- .../docs/types/MapConfigArgType.html | 5 ++- .../docs/types/MapResponseArgType.html | 5 ++- .../docs/types/Neo3EventListenerCallback.html | 5 ++- .../docs/types/ParseConfig.html | 5 ++- .../docs/types/PointerArgType.html | 5 ++- .../docs/types/PublicKeyArgType.html | 5 ++- .../docs/types/PublicKeyConfigArgType.html | 5 ++- .../docs/types/RpcResponseStackItem.html | 5 ++- .../docs/types/SignMessagePayload.html | 5 ++- .../docs/types/SignedMessage.html | 5 ++- .../neon-dappkit-types/docs/types/Signer.html | 5 ++- .../docs/types/StringArgType.html | 5 ++- .../docs/types/StringConfigArgType.html | 5 ++- .../docs/types/StructArgType.html | 5 ++- .../docs/types/WitnessCondition.html | 5 ++- .../docs/variables/ABI_TYPES.html | 5 ++- .../docs/variables/HINT_TYPES.html | 5 ++- .../docs/variables/INTERNAL_TYPES.html | 5 ++- .../docs/variables/TypeChecker.html | 24 +++++------ packages/neon-dappkit/dist/NeonParser.spec.js | 3 +- 66 files changed, 237 insertions(+), 195 deletions(-) diff --git a/packages/neon-dappkit-types/docs/assets/search.js b/packages/neon-dappkit-types/docs/assets/search.js index 56ab1c3..fdc4023 100644 --- a/packages/neon-dappkit-types/docs/assets/search.js +++ b/packages/neon-dappkit-types/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"256\":\"Interface\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":256,\"name\":\"Neo3Event\",\"url\":\"interfaces/Neo3Event.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Neo3Event.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Event\"},{\"kind\":1024,\"name\":\"eventname\",\"url\":\"interfaces/Neo3Event.html#eventname\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Event\"},{\"kind\":256,\"name\":\"Neo3EventWithState\",\"url\":\"interfaces/Neo3EventWithState.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/Neo3EventWithState.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3EventWithState\"},{\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Neo3EventWithState.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Neo3EventWithState\"},{\"kind\":1024,\"name\":\"eventname\",\"url\":\"interfaces/Neo3EventWithState.html#eventname\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Neo3EventWithState\"},{\"kind\":4194304,\"name\":\"Neo3EventListenerCallback\",\"url\":\"types/Neo3EventListenerCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Neo3EventListenerCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Neo3EventListenerCallback\"},{\"kind\":256,\"name\":\"Neo3StackItem\",\"url\":\"interfaces/Neo3StackItem.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Neo3StackItem.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3StackItem\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/Neo3StackItem.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3StackItem\"},{\"kind\":256,\"name\":\"Neo3ApplicationLog\",\"url\":\"interfaces/Neo3ApplicationLog.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"txid\",\"url\":\"interfaces/Neo3ApplicationLog.html#txid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3ApplicationLog\"},{\"kind\":1024,\"name\":\"executions\",\"url\":\"interfaces/Neo3ApplicationLog.html#executions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3ApplicationLog\"},{\"kind\":256,\"name\":\"Neo3EventListener\",\"url\":\"interfaces/Neo3EventListener.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":2048,\"name\":\"addEventListener\",\"url\":\"interfaces/Neo3EventListener.html#addEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"removeEventListener\",\"url\":\"interfaces/Neo3EventListener.html#removeEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"waitForApplicationLog\",\"url\":\"interfaces/Neo3EventListener.html#waitForApplicationLog\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"confirmTransaction\",\"url\":\"interfaces/Neo3EventListener.html#confirmTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":256,\"name\":\"BooleanWitnessCondition\",\"url\":\"interfaces/BooleanWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/BooleanWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BooleanWitnessCondition\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"interfaces/BooleanWitnessCondition.html#expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BooleanWitnessCondition\"},{\"kind\":256,\"name\":\"NotWitnessCondition\",\"url\":\"interfaces/NotWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/NotWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NotWitnessCondition\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"interfaces/NotWitnessCondition.html#expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NotWitnessCondition\"},{\"kind\":256,\"name\":\"AndWitnessCondition\",\"url\":\"interfaces/AndWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/AndWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AndWitnessCondition\"},{\"kind\":1024,\"name\":\"expressions\",\"url\":\"interfaces/AndWitnessCondition.html#expressions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AndWitnessCondition\"},{\"kind\":256,\"name\":\"OrWitnessCondition\",\"url\":\"interfaces/OrWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/OrWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OrWitnessCondition\"},{\"kind\":1024,\"name\":\"expressions\",\"url\":\"interfaces/OrWitnessCondition.html#expressions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OrWitnessCondition\"},{\"kind\":256,\"name\":\"ScriptHashWitnessCondition\",\"url\":\"interfaces/ScriptHashWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ScriptHashWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ScriptHashWitnessCondition\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/ScriptHashWitnessCondition.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ScriptHashWitnessCondition\"},{\"kind\":256,\"name\":\"GroupWitnessCondition\",\"url\":\"interfaces/GroupWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/GroupWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GroupWitnessCondition\"},{\"kind\":1024,\"name\":\"group\",\"url\":\"interfaces/GroupWitnessCondition.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GroupWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByEntryWitnessCondition\",\"url\":\"interfaces/CalledByEntryWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByEntryWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByEntryWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByContractWitnessCondition\",\"url\":\"interfaces/CalledByContractWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByContractWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByContractWitnessCondition\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/CalledByContractWitnessCondition.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByContractWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByGroupWitnessCondition\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByGroupWitnessCondition\"},{\"kind\":1024,\"name\":\"group\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByGroupWitnessCondition\"},{\"kind\":4194304,\"name\":\"WitnessCondition\",\"url\":\"types/WitnessCondition.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"WitnessRule\",\"url\":\"interfaces/WitnessRule.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"action\",\"url\":\"interfaces/WitnessRule.html#action\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WitnessRule\"},{\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/WitnessRule.html#condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WitnessRule\"},{\"kind\":4194304,\"name\":\"Signer\",\"url\":\"types/Signer.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Signer.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Signer\"},{\"kind\":1024,\"name\":\"scopes\",\"url\":\"types/Signer.html#__type.scopes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"account\",\"url\":\"types/Signer.html#__type.account\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"allowedContracts\",\"url\":\"types/Signer.html#__type.allowedContracts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"allowedGroups\",\"url\":\"types/Signer.html#__type.allowedGroups\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/Signer.html#__type.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":4194304,\"name\":\"AnyArgType\",\"url\":\"types/AnyArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"AnyArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/AnyArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/AnyArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyArgType.__type\"},{\"kind\":4194304,\"name\":\"StringArgType\",\"url\":\"types/StringArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StringArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StringArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/StringArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringArgType.__type\"},{\"kind\":4194304,\"name\":\"BooleanArgType\",\"url\":\"types/BooleanArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BooleanArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BooleanArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BooleanArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/BooleanArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanArgType.__type\"},{\"kind\":4194304,\"name\":\"PublicKeyArgType\",\"url\":\"types/PublicKeyArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PublicKeyArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PublicKeyArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PublicKeyArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/PublicKeyArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash160ArgType\",\"url\":\"types/Hash160ArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash160ArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash160ArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash160ArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/Hash160ArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash256ArgType\",\"url\":\"types/Hash256ArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash256ArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash256ArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash256ArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/Hash256ArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ArgType.__type\"},{\"kind\":4194304,\"name\":\"IntegerArgType\",\"url\":\"types/IntegerArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/IntegerArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IntegerArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/IntegerArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/IntegerArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerArgType.__type\"},{\"kind\":4194304,\"name\":\"ArrayArgType\",\"url\":\"types/ArrayArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ArrayArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayArgType.__type\"},{\"kind\":4194304,\"name\":\"MapArgType\",\"url\":\"types/MapArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/MapArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteArrayArgType\",\"url\":\"types/ByteArrayArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteArrayArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteArrayArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteArrayArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ByteArrayArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayArgType.__type\"},{\"kind\":4194304,\"name\":\"Arg\",\"url\":\"types/Arg.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"ContractInvocation\",\"url\":\"types/ContractInvocation.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ContractInvocation.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ContractInvocation\"},{\"kind\":1024,\"name\":\"scriptHash\",\"url\":\"types/ContractInvocation.html#__type.scriptHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"operation\",\"url\":\"types/ContractInvocation.html#__type.operation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"types/ContractInvocation.html#__type.args\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"abortOnFail\",\"url\":\"types/ContractInvocation.html#__type.abortOnFail\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":4194304,\"name\":\"ContractInvocationMulti\",\"url\":\"types/ContractInvocationMulti.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ContractInvocationMulti.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ContractInvocationMulti\"},{\"kind\":1024,\"name\":\"signers\",\"url\":\"types/ContractInvocationMulti.html#__type.signers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"invocations\",\"url\":\"types/ContractInvocationMulti.html#__type.invocations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"extraSystemFee\",\"url\":\"types/ContractInvocationMulti.html#__type.extraSystemFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"systemFeeOverride\",\"url\":\"types/ContractInvocationMulti.html#__type.systemFeeOverride\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"extraNetworkFee\",\"url\":\"types/ContractInvocationMulti.html#__type.extraNetworkFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"networkFeeOverride\",\"url\":\"types/ContractInvocationMulti.html#__type.networkFeeOverride\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":4194304,\"name\":\"ArrayResponseArgType\",\"url\":\"types/ArrayResponseArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayResponseArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayResponseArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayResponseArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayResponseArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ArrayResponseArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayResponseArgType.__type\"},{\"kind\":4194304,\"name\":\"MapResponseArgType\",\"url\":\"types/MapResponseArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapResponseArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapResponseArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapResponseArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapResponseArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/MapResponseArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapResponseArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteStringArgType\",\"url\":\"types/ByteStringArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteStringArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteStringArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteStringArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteStringArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ByteStringArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteStringArgType.__type\"},{\"kind\":4194304,\"name\":\"InteropInterfaceArgType\",\"url\":\"types/InteropInterfaceArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/InteropInterfaceArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"InteropInterfaceArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/InteropInterfaceArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":1024,\"name\":\"interface\",\"url\":\"types/InteropInterfaceArgType.html#__type.interface\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/InteropInterfaceArgType.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":4194304,\"name\":\"PointerArgType\",\"url\":\"types/PointerArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PointerArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PointerArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PointerArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PointerArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/PointerArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PointerArgType.__type\"},{\"kind\":4194304,\"name\":\"BufferArgType\",\"url\":\"types/BufferArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BufferArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BufferArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BufferArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BufferArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/BufferArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BufferArgType.__type\"},{\"kind\":4194304,\"name\":\"StructArgType\",\"url\":\"types/StructArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StructArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StructArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StructArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StructArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/StructArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StructArgType.__type\"},{\"kind\":4194304,\"name\":\"RpcResponseStackItem\",\"url\":\"types/RpcResponseStackItem.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"InvokeResult\",\"url\":\"interfaces/InvokeResult.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"script\",\"url\":\"interfaces/InvokeResult.html#script\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/InvokeResult.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"gasconsumed\",\"url\":\"interfaces/InvokeResult.html#gasconsumed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"exception\",\"url\":\"interfaces/InvokeResult.html#exception\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"stack\",\"url\":\"interfaces/InvokeResult.html#stack\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"tx\",\"url\":\"interfaces/InvokeResult.html#tx\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/InvokeResult.html#session\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":256,\"name\":\"Neo3Invoker\",\"url\":\"interfaces/Neo3Invoker.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"invokeFunction\",\"url\":\"interfaces/Neo3Invoker.html#invokeFunction\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#invokeFunction.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.invokeFunction\"},{\"kind\":1024,\"name\":\"testInvoke\",\"url\":\"interfaces/Neo3Invoker.html#testInvoke\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#testInvoke.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.testInvoke\"},{\"kind\":1024,\"name\":\"traverseIterator\",\"url\":\"interfaces/Neo3Invoker.html#traverseIterator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#traverseIterator.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.traverseIterator\"},{\"kind\":256,\"name\":\"Neo3Parser\",\"url\":\"interfaces/Neo3Parser.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"abToStr\",\"url\":\"interfaces/Neo3Parser.html#abToStr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#abToStr.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.abToStr\"},{\"kind\":1024,\"name\":\"strToAb\",\"url\":\"interfaces/Neo3Parser.html#strToAb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToAb.__type-32\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToAb\"},{\"kind\":1024,\"name\":\"hexToAb\",\"url\":\"interfaces/Neo3Parser.html#hexToAb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToAb.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToAb\"},{\"kind\":1024,\"name\":\"abToHex\",\"url\":\"interfaces/Neo3Parser.html#abToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#abToHex.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.abToHex\"},{\"kind\":1024,\"name\":\"strToHex\",\"url\":\"interfaces/Neo3Parser.html#strToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToHex.__type-36\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToHex\"},{\"kind\":1024,\"name\":\"hexToStr\",\"url\":\"interfaces/Neo3Parser.html#hexToStr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToStr.__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToStr\"},{\"kind\":1024,\"name\":\"intToHex\",\"url\":\"interfaces/Neo3Parser.html#intToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#intToHex.__type-22\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.intToHex\"},{\"kind\":1024,\"name\":\"numToHex\",\"url\":\"interfaces/Neo3Parser.html#numToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#numToHex.__type-24\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.numToHex\"},{\"kind\":1024,\"name\":\"numToVarInt\",\"url\":\"interfaces/Neo3Parser.html#numToVarInt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#numToVarInt.__type-26\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.numToVarInt\"},{\"kind\":1024,\"name\":\"hexToBase64\",\"url\":\"interfaces/Neo3Parser.html#hexToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToBase64.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToBase64\"},{\"kind\":1024,\"name\":\"base64ToHex\",\"url\":\"interfaces/Neo3Parser.html#base64ToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#base64ToHex.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.base64ToHex\"},{\"kind\":1024,\"name\":\"utf8ToBase64\",\"url\":\"interfaces/Neo3Parser.html#utf8ToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#utf8ToBase64.__type-38\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.utf8ToBase64\"},{\"kind\":1024,\"name\":\"asciiToBase64\",\"url\":\"interfaces/Neo3Parser.html#asciiToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#asciiToBase64.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.asciiToBase64\"},{\"kind\":1024,\"name\":\"base64ToUtf8\",\"url\":\"interfaces/Neo3Parser.html#base64ToUtf8\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#base64ToUtf8.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.base64ToUtf8\"},{\"kind\":1024,\"name\":\"accountInputToScripthash\",\"url\":\"interfaces/Neo3Parser.html#accountInputToScripthash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#accountInputToScripthash.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.accountInputToScripthash\"},{\"kind\":1024,\"name\":\"strToBase64\",\"url\":\"interfaces/Neo3Parser.html#strToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToBase64.__type-34\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToBase64\"},{\"kind\":1024,\"name\":\"accountInputToAddress\",\"url\":\"interfaces/Neo3Parser.html#accountInputToAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#accountInputToAddress.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.accountInputToAddress\"},{\"kind\":1024,\"name\":\"reverseHex\",\"url\":\"interfaces/Neo3Parser.html#reverseHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#reverseHex.__type-30\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.reverseHex\"},{\"kind\":1024,\"name\":\"parseRpcResponse\",\"url\":\"interfaces/Neo3Parser.html#parseRpcResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#parseRpcResponse.__type-28\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.parseRpcResponse\"},{\"kind\":1024,\"name\":\"formatRpcArgument\",\"url\":\"interfaces/Neo3Parser.html#formatRpcArgument\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#formatRpcArgument.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.formatRpcArgument\"},{\"kind\":4194304,\"name\":\"AnyConfigArgType\",\"url\":\"types/AnyConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"AnyConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/AnyConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyConfigArgType.__type\"},{\"kind\":1024,\"name\":\"union\",\"url\":\"types/AnyConfigArgType.html#__type.union\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"StringConfigArgType\",\"url\":\"types/StringConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StringConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StringConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/StringConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"BooleanConfigArgType\",\"url\":\"types/BooleanConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BooleanConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BooleanConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BooleanConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteArrayConfigArgType\",\"url\":\"types/ByteArrayConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteArrayConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteArrayConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteArrayConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"PublicKeyConfigArgType\",\"url\":\"types/PublicKeyConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PublicKeyConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PublicKeyConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PublicKeyConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/PublicKeyConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash160ConfigArgType\",\"url\":\"types/Hash160ConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash160ConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash160ConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash160ConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/Hash160ConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash256ConfigArgType\",\"url\":\"types/Hash256ConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash256ConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash256ConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash256ConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/Hash256ConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"IntegerConfigArgType\",\"url\":\"types/IntegerConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/IntegerConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IntegerConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/IntegerConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ArrayConfigArgType\",\"url\":\"types/ArrayConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayConfigArgType.__type\"},{\"kind\":1024,\"name\":\"generic\",\"url\":\"types/ArrayConfigArgType.html#__type.generic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"MapConfigArgType\",\"url\":\"types/MapConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":1024,\"name\":\"genericKey\",\"url\":\"types/MapConfigArgType.html#__type.genericKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":1024,\"name\":\"genericItem\",\"url\":\"types/MapConfigArgType.html#__type.genericItem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"InteropInterfaceConfigArgType\",\"url\":\"types/InteropInterfaceConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"InteropInterfaceConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ParseConfig\",\"url\":\"types/ParseConfig.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":32,\"name\":\"INTERNAL_TYPES\",\"url\":\"variables/INTERNAL_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/INTERNAL_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"INTERNAL_TYPES\"},{\"kind\":1024,\"name\":\"ARRAY\",\"url\":\"variables/INTERNAL_TYPES.html#__type.ARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BYTESTRING\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BYTESTRING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BUFFER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BUFFER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"INTEGER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.INTEGER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"INTEROPINTERFACE\",\"url\":\"variables/INTERNAL_TYPES.html#__type.INTEROPINTERFACE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BOOLEAN\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BOOLEAN\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"MAP\",\"url\":\"variables/INTERNAL_TYPES.html#__type.MAP\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"NULL\",\"url\":\"variables/INTERNAL_TYPES.html#__type.NULL\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"POINTER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.POINTER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"STRUCT\",\"url\":\"variables/INTERNAL_TYPES.html#__type.STRUCT\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":32,\"name\":\"ABI_TYPES\",\"url\":\"variables/ABI_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"ABI_TYPES\"},{\"kind\":1024,\"name\":\"ANY\",\"url\":\"variables/ABI_TYPES.html#__type.ANY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.ANY.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.ANY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.ANY.__type-1.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ANY.__type\"},{\"kind\":1024,\"name\":\"SIGNATURE\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.SIGNATURE\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11.name-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.SIGNATURE.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11.internal-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.SIGNATURE.__type\"},{\"kind\":1024,\"name\":\"BOOLEAN\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.BOOLEAN\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BOOLEAN.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3.internal-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BOOLEAN.__type\"},{\"kind\":1024,\"name\":\"INTEGER\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.INTEGER\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEGER.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7.internal-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEGER.__type\"},{\"kind\":1024,\"name\":\"HASH160\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.HASH160\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH160.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5.internal-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH160.__type\"},{\"kind\":1024,\"name\":\"HASH256\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.HASH256\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH256.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6.internal-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH256.__type\"},{\"kind\":1024,\"name\":\"BYTEARRAY\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4.internal-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY.__type\"},{\"kind\":1024,\"name\":\"PUBLICKEY\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10.name-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10.internal-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"STRING\",\"url\":\"variables/ABI_TYPES.html#__type.STRING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.STRING\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12.name-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.STRING.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12.internal-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.STRING.__type\"},{\"kind\":1024,\"name\":\"ARRAY\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.ARRAY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ARRAY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2.internal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ARRAY.__type\"},{\"kind\":1024,\"name\":\"MAP\",\"url\":\"variables/ABI_TYPES.html#__type.MAP\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.MAP\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9.name-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.MAP.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9.internal-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.MAP.__type\"},{\"kind\":1024,\"name\":\"INTEROPINTERFACE\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8.internal-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE.__type\"},{\"kind\":1024,\"name\":\"VOID\",\"url\":\"variables/ABI_TYPES.html#__type.VOID\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.VOID\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13.name-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.VOID.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13.internal-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.VOID.__type\"},{\"kind\":32,\"name\":\"HINT_TYPES\",\"url\":\"variables/HINT_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"HINT_TYPES\"},{\"kind\":1024,\"name\":\"ADDRESS\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ADDRESS\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2.internal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi.__type\"},{\"kind\":1024,\"name\":\"PUBLICKEY\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8.internal-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi.__type\"},{\"kind\":1024,\"name\":\"SCRIPTHASH\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.name-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10.name-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10.internal-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"SCRIPTHASHLITTLEENDING\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.name-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12.name-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12.internal-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi.__type\"},{\"kind\":1024,\"name\":\"BLOCKHASH\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4.internal-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"TRANSACTIONID\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.name-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16.name-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16.internal-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi.__type\"},{\"kind\":1024,\"name\":\"STORAGECONTEXT\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.name-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14.name-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14.internal-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi.__type\"},{\"kind\":1024,\"name\":\"ITERATOR\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ITERATOR\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6.internal-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi.__type\"},{\"kind\":8,\"name\":\"SignMessageVersion\",\"url\":\"enums/SignMessageVersion.html\",\"classes\":\"tsd-kind-enum\"},{\"kind\":16,\"name\":\"CLASSIC\",\"url\":\"enums/SignMessageVersion.html#CLASSIC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":16,\"name\":\"DEFAULT\",\"url\":\"enums/SignMessageVersion.html#DEFAULT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":16,\"name\":\"WITHOUT_SALT\",\"url\":\"enums/SignMessageVersion.html#WITHOUT_SALT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":4194304,\"name\":\"SignMessagePayload\",\"url\":\"types/SignMessagePayload.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SignMessagePayload.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SignMessagePayload\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/SignMessagePayload.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignMessagePayload.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/SignMessagePayload.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignMessagePayload.__type\"},{\"kind\":4194304,\"name\":\"SignedMessage\",\"url\":\"types/SignedMessage.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SignedMessage.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SignedMessage\"},{\"kind\":1024,\"name\":\"publicKey\",\"url\":\"types/SignedMessage.html#__type.publicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/SignedMessage.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"salt\",\"url\":\"types/SignedMessage.html#__type.salt\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"messageHex\",\"url\":\"types/SignedMessage.html#__type.messageHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":256,\"name\":\"EncryptedPayload\",\"url\":\"interfaces/EncryptedPayload.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"randomVector\",\"url\":\"interfaces/EncryptedPayload.html#randomVector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"cipherText\",\"url\":\"interfaces/EncryptedPayload.html#cipherText\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"dataTag\",\"url\":\"interfaces/EncryptedPayload.html#dataTag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"ephemPublicKey\",\"url\":\"interfaces/EncryptedPayload.html#ephemPublicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":256,\"name\":\"DecryptFromArrayResult\",\"url\":\"interfaces/DecryptFromArrayResult.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/DecryptFromArrayResult.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DecryptFromArrayResult\"},{\"kind\":1024,\"name\":\"keyIndex\",\"url\":\"interfaces/DecryptFromArrayResult.html#keyIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DecryptFromArrayResult\"},{\"kind\":256,\"name\":\"Neo3Signer\",\"url\":\"interfaces/Neo3Signer.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":2048,\"name\":\"signMessage\",\"url\":\"interfaces/Neo3Signer.html#signMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"verifyMessage\",\"url\":\"interfaces/Neo3Signer.html#verifyMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"getAccountAddress\",\"url\":\"interfaces/Neo3Signer.html#getAccountAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"encrypt\",\"url\":\"interfaces/Neo3Signer.html#encrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"decrypt\",\"url\":\"interfaces/Neo3Signer.html#decrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"decryptFromArray\",\"url\":\"interfaces/Neo3Signer.html#decryptFromArray\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,55.709]],[\"comment/0\",[]],[\"name/1\",[1,50.601]],[\"comment/1\",[]],[\"name/2\",[2,50.601]],[\"comment/2\",[]],[\"name/3\",[3,55.709]],[\"comment/3\",[]],[\"name/4\",[4,50.601]],[\"comment/4\",[]],[\"name/5\",[1,50.601]],[\"comment/5\",[]],[\"name/6\",[2,50.601]],[\"comment/6\",[]],[\"name/7\",[5,55.709]],[\"comment/7\",[]],[\"name/8\",[6,14.821]],[\"comment/8\",[]],[\"name/9\",[7,55.709]],[\"comment/9\",[]],[\"name/10\",[8,23.257]],[\"comment/10\",[]],[\"name/11\",[9,31.142]],[\"comment/11\",[]],[\"name/12\",[10,55.709]],[\"comment/12\",[]],[\"name/13\",[11,55.709]],[\"comment/13\",[]],[\"name/14\",[12,55.709]],[\"comment/14\",[]],[\"name/15\",[13,55.709]],[\"comment/15\",[]],[\"name/16\",[14,55.709]],[\"comment/16\",[]],[\"name/17\",[15,55.709]],[\"comment/17\",[]],[\"name/18\",[16,55.709]],[\"comment/18\",[]],[\"name/19\",[17,55.709]],[\"comment/19\",[]],[\"name/20\",[18,55.709]],[\"comment/20\",[]],[\"name/21\",[8,23.257]],[\"comment/21\",[]],[\"name/22\",[19,50.601]],[\"comment/22\",[]],[\"name/23\",[20,55.709]],[\"comment/23\",[]],[\"name/24\",[8,23.257]],[\"comment/24\",[]],[\"name/25\",[19,50.601]],[\"comment/25\",[]],[\"name/26\",[21,55.709]],[\"comment/26\",[]],[\"name/27\",[8,23.257]],[\"comment/27\",[]],[\"name/28\",[22,50.601]],[\"comment/28\",[]],[\"name/29\",[23,55.709]],[\"comment/29\",[]],[\"name/30\",[8,23.257]],[\"comment/30\",[]],[\"name/31\",[22,50.601]],[\"comment/31\",[]],[\"name/32\",[24,55.709]],[\"comment/32\",[]],[\"name/33\",[8,23.257]],[\"comment/33\",[]],[\"name/34\",[25,50.601]],[\"comment/34\",[]],[\"name/35\",[26,55.709]],[\"comment/35\",[]],[\"name/36\",[8,23.257]],[\"comment/36\",[]],[\"name/37\",[27,50.601]],[\"comment/37\",[]],[\"name/38\",[28,55.709]],[\"comment/38\",[]],[\"name/39\",[8,23.257]],[\"comment/39\",[]],[\"name/40\",[29,55.709]],[\"comment/40\",[]],[\"name/41\",[8,23.257]],[\"comment/41\",[]],[\"name/42\",[25,50.601]],[\"comment/42\",[]],[\"name/43\",[30,55.709]],[\"comment/43\",[]],[\"name/44\",[8,23.257]],[\"comment/44\",[]],[\"name/45\",[27,50.601]],[\"comment/45\",[]],[\"name/46\",[31,55.709]],[\"comment/46\",[]],[\"name/47\",[32,55.709]],[\"comment/47\",[]],[\"name/48\",[33,55.709]],[\"comment/48\",[]],[\"name/49\",[34,55.709]],[\"comment/49\",[]],[\"name/50\",[35,55.709]],[\"comment/50\",[]],[\"name/51\",[6,14.821]],[\"comment/51\",[]],[\"name/52\",[36,55.709]],[\"comment/52\",[]],[\"name/53\",[37,55.709]],[\"comment/53\",[]],[\"name/54\",[38,55.709]],[\"comment/54\",[]],[\"name/55\",[39,55.709]],[\"comment/55\",[]],[\"name/56\",[40,55.709]],[\"comment/56\",[]],[\"name/57\",[41,55.709]],[\"comment/57\",[]],[\"name/58\",[6,14.821]],[\"comment/58\",[]],[\"name/59\",[8,23.257]],[\"comment/59\",[]],[\"name/60\",[9,31.142]],[\"comment/60\",[]],[\"name/61\",[42,55.709]],[\"comment/61\",[]],[\"name/62\",[6,14.821]],[\"comment/62\",[]],[\"name/63\",[8,23.257]],[\"comment/63\",[]],[\"name/64\",[9,31.142]],[\"comment/64\",[]],[\"name/65\",[43,55.709]],[\"comment/65\",[]],[\"name/66\",[6,14.821]],[\"comment/66\",[]],[\"name/67\",[8,23.257]],[\"comment/67\",[]],[\"name/68\",[9,31.142]],[\"comment/68\",[]],[\"name/69\",[44,55.709]],[\"comment/69\",[]],[\"name/70\",[6,14.821]],[\"comment/70\",[]],[\"name/71\",[8,23.257]],[\"comment/71\",[]],[\"name/72\",[9,31.142]],[\"comment/72\",[]],[\"name/73\",[45,55.709]],[\"comment/73\",[]],[\"name/74\",[6,14.821]],[\"comment/74\",[]],[\"name/75\",[8,23.257]],[\"comment/75\",[]],[\"name/76\",[9,31.142]],[\"comment/76\",[]],[\"name/77\",[46,55.709]],[\"comment/77\",[]],[\"name/78\",[6,14.821]],[\"comment/78\",[]],[\"name/79\",[8,23.257]],[\"comment/79\",[]],[\"name/80\",[9,31.142]],[\"comment/80\",[]],[\"name/81\",[47,55.709]],[\"comment/81\",[]],[\"name/82\",[6,14.821]],[\"comment/82\",[]],[\"name/83\",[8,23.257]],[\"comment/83\",[]],[\"name/84\",[9,31.142]],[\"comment/84\",[]],[\"name/85\",[48,55.709]],[\"comment/85\",[]],[\"name/86\",[6,14.821]],[\"comment/86\",[]],[\"name/87\",[8,23.257]],[\"comment/87\",[]],[\"name/88\",[9,31.142]],[\"comment/88\",[]],[\"name/89\",[49,55.709]],[\"comment/89\",[]],[\"name/90\",[6,14.821]],[\"comment/90\",[]],[\"name/91\",[8,23.257]],[\"comment/91\",[]],[\"name/92\",[9,31.142]],[\"comment/92\",[]],[\"name/93\",[50,55.709]],[\"comment/93\",[]],[\"name/94\",[6,14.821]],[\"comment/94\",[]],[\"name/95\",[8,23.257]],[\"comment/95\",[]],[\"name/96\",[9,31.142]],[\"comment/96\",[]],[\"name/97\",[51,55.709]],[\"comment/97\",[]],[\"name/98\",[52,55.709]],[\"comment/98\",[]],[\"name/99\",[6,14.821]],[\"comment/99\",[]],[\"name/100\",[53,50.601]],[\"comment/100\",[]],[\"name/101\",[54,55.709]],[\"comment/101\",[]],[\"name/102\",[55,55.709]],[\"comment/102\",[]],[\"name/103\",[56,55.709]],[\"comment/103\",[]],[\"name/104\",[57,55.709]],[\"comment/104\",[]],[\"name/105\",[6,14.821]],[\"comment/105\",[]],[\"name/106\",[58,55.709]],[\"comment/106\",[]],[\"name/107\",[59,55.709]],[\"comment/107\",[]],[\"name/108\",[60,55.709]],[\"comment/108\",[]],[\"name/109\",[61,55.709]],[\"comment/109\",[]],[\"name/110\",[62,55.709]],[\"comment/110\",[]],[\"name/111\",[63,55.709]],[\"comment/111\",[]],[\"name/112\",[64,55.709]],[\"comment/112\",[]],[\"name/113\",[6,14.821]],[\"comment/113\",[]],[\"name/114\",[8,23.257]],[\"comment/114\",[]],[\"name/115\",[9,31.142]],[\"comment/115\",[]],[\"name/116\",[65,55.709]],[\"comment/116\",[]],[\"name/117\",[6,14.821]],[\"comment/117\",[]],[\"name/118\",[8,23.257]],[\"comment/118\",[]],[\"name/119\",[9,31.142]],[\"comment/119\",[]],[\"name/120\",[66,55.709]],[\"comment/120\",[]],[\"name/121\",[6,14.821]],[\"comment/121\",[]],[\"name/122\",[8,23.257]],[\"comment/122\",[]],[\"name/123\",[9,31.142]],[\"comment/123\",[]],[\"name/124\",[67,55.709]],[\"comment/124\",[]],[\"name/125\",[6,14.821]],[\"comment/125\",[]],[\"name/126\",[8,23.257]],[\"comment/126\",[]],[\"name/127\",[68,55.709]],[\"comment/127\",[]],[\"name/128\",[69,55.709]],[\"comment/128\",[]],[\"name/129\",[70,55.709]],[\"comment/129\",[]],[\"name/130\",[6,14.821]],[\"comment/130\",[]],[\"name/131\",[8,23.257]],[\"comment/131\",[]],[\"name/132\",[9,31.142]],[\"comment/132\",[]],[\"name/133\",[71,55.709]],[\"comment/133\",[]],[\"name/134\",[6,14.821]],[\"comment/134\",[]],[\"name/135\",[8,23.257]],[\"comment/135\",[]],[\"name/136\",[9,31.142]],[\"comment/136\",[]],[\"name/137\",[72,55.709]],[\"comment/137\",[]],[\"name/138\",[6,14.821]],[\"comment/138\",[]],[\"name/139\",[8,23.257]],[\"comment/139\",[]],[\"name/140\",[9,31.142]],[\"comment/140\",[]],[\"name/141\",[73,55.709]],[\"comment/141\",[]],[\"name/142\",[74,55.709]],[\"comment/142\",[]],[\"name/143\",[75,55.709]],[\"comment/143\",[]],[\"name/144\",[4,50.601]],[\"comment/144\",[]],[\"name/145\",[76,55.709]],[\"comment/145\",[]],[\"name/146\",[77,55.709]],[\"comment/146\",[]],[\"name/147\",[78,55.709]],[\"comment/147\",[]],[\"name/148\",[79,55.709]],[\"comment/148\",[]],[\"name/149\",[80,55.709]],[\"comment/149\",[]],[\"name/150\",[81,55.709]],[\"comment/150\",[]],[\"name/151\",[82,55.709]],[\"comment/151\",[]],[\"name/152\",[6,14.821]],[\"comment/152\",[]],[\"name/153\",[83,55.709]],[\"comment/153\",[]],[\"name/154\",[6,14.821]],[\"comment/154\",[]],[\"name/155\",[84,55.709]],[\"comment/155\",[]],[\"name/156\",[6,14.821]],[\"comment/156\",[]],[\"name/157\",[85,55.709]],[\"comment/157\",[]],[\"name/158\",[86,55.709]],[\"comment/158\",[]],[\"name/159\",[6,14.821]],[\"comment/159\",[]],[\"name/160\",[87,55.709]],[\"comment/160\",[]],[\"name/161\",[6,14.821]],[\"comment/161\",[]],[\"name/162\",[88,55.709]],[\"comment/162\",[]],[\"name/163\",[6,14.821]],[\"comment/163\",[]],[\"name/164\",[89,55.709]],[\"comment/164\",[]],[\"name/165\",[6,14.821]],[\"comment/165\",[]],[\"name/166\",[90,55.709]],[\"comment/166\",[]],[\"name/167\",[6,14.821]],[\"comment/167\",[]],[\"name/168\",[91,55.709]],[\"comment/168\",[]],[\"name/169\",[6,14.821]],[\"comment/169\",[]],[\"name/170\",[92,55.709]],[\"comment/170\",[]],[\"name/171\",[6,14.821]],[\"comment/171\",[]],[\"name/172\",[93,55.709]],[\"comment/172\",[]],[\"name/173\",[6,14.821]],[\"comment/173\",[]],[\"name/174\",[94,55.709]],[\"comment/174\",[]],[\"name/175\",[6,14.821]],[\"comment/175\",[]],[\"name/176\",[95,55.709]],[\"comment/176\",[]],[\"name/177\",[6,14.821]],[\"comment/177\",[]],[\"name/178\",[96,55.709]],[\"comment/178\",[]],[\"name/179\",[6,14.821]],[\"comment/179\",[]],[\"name/180\",[97,55.709]],[\"comment/180\",[]],[\"name/181\",[6,14.821]],[\"comment/181\",[]],[\"name/182\",[98,55.709]],[\"comment/182\",[]],[\"name/183\",[6,14.821]],[\"comment/183\",[]],[\"name/184\",[99,55.709]],[\"comment/184\",[]],[\"name/185\",[6,14.821]],[\"comment/185\",[]],[\"name/186\",[100,55.709]],[\"comment/186\",[]],[\"name/187\",[6,14.821]],[\"comment/187\",[]],[\"name/188\",[101,55.709]],[\"comment/188\",[]],[\"name/189\",[6,14.821]],[\"comment/189\",[]],[\"name/190\",[102,55.709]],[\"comment/190\",[]],[\"name/191\",[6,14.821]],[\"comment/191\",[]],[\"name/192\",[103,55.709]],[\"comment/192\",[]],[\"name/193\",[6,14.821]],[\"comment/193\",[]],[\"name/194\",[104,55.709]],[\"comment/194\",[]],[\"name/195\",[6,14.821]],[\"comment/195\",[]],[\"name/196\",[105,55.709]],[\"comment/196\",[]],[\"name/197\",[6,14.821]],[\"comment/197\",[]],[\"name/198\",[106,55.709]],[\"comment/198\",[]],[\"name/199\",[6,14.821]],[\"comment/199\",[]],[\"name/200\",[8,23.257]],[\"comment/200\",[]],[\"name/201\",[107,55.709]],[\"comment/201\",[]],[\"name/202\",[108,55.709]],[\"comment/202\",[]],[\"name/203\",[6,14.821]],[\"comment/203\",[]],[\"name/204\",[8,23.257]],[\"comment/204\",[]],[\"name/205\",[109,42.716]],[\"comment/205\",[]],[\"name/206\",[110,55.709]],[\"comment/206\",[]],[\"name/207\",[6,14.821]],[\"comment/207\",[]],[\"name/208\",[8,23.257]],[\"comment/208\",[]],[\"name/209\",[111,55.709]],[\"comment/209\",[]],[\"name/210\",[6,14.821]],[\"comment/210\",[]],[\"name/211\",[8,23.257]],[\"comment/211\",[]],[\"name/212\",[112,55.709]],[\"comment/212\",[]],[\"name/213\",[6,14.821]],[\"comment/213\",[]],[\"name/214\",[8,23.257]],[\"comment/214\",[]],[\"name/215\",[109,42.716]],[\"comment/215\",[]],[\"name/216\",[113,55.709]],[\"comment/216\",[]],[\"name/217\",[6,14.821]],[\"comment/217\",[]],[\"name/218\",[8,23.257]],[\"comment/218\",[]],[\"name/219\",[109,42.716]],[\"comment/219\",[]],[\"name/220\",[114,55.709]],[\"comment/220\",[]],[\"name/221\",[6,14.821]],[\"comment/221\",[]],[\"name/222\",[8,23.257]],[\"comment/222\",[]],[\"name/223\",[109,42.716]],[\"comment/223\",[]],[\"name/224\",[115,55.709]],[\"comment/224\",[]],[\"name/225\",[6,14.821]],[\"comment/225\",[]],[\"name/226\",[8,23.257]],[\"comment/226\",[]],[\"name/227\",[116,55.709]],[\"comment/227\",[]],[\"name/228\",[6,14.821]],[\"comment/228\",[]],[\"name/229\",[8,23.257]],[\"comment/229\",[]],[\"name/230\",[117,55.709]],[\"comment/230\",[]],[\"name/231\",[118,55.709]],[\"comment/231\",[]],[\"name/232\",[6,14.821]],[\"comment/232\",[]],[\"name/233\",[8,23.257]],[\"comment/233\",[]],[\"name/234\",[119,55.709]],[\"comment/234\",[]],[\"name/235\",[120,55.709]],[\"comment/235\",[]],[\"name/236\",[121,55.709]],[\"comment/236\",[]],[\"name/237\",[6,14.821]],[\"comment/237\",[]],[\"name/238\",[8,23.257]],[\"comment/238\",[]],[\"name/239\",[109,42.716]],[\"comment/239\",[]],[\"name/240\",[122,55.709]],[\"comment/240\",[]],[\"name/241\",[123,55.709]],[\"comment/241\",[]],[\"name/242\",[6,14.821]],[\"comment/242\",[]],[\"name/243\",[124,50.601]],[\"comment/243\",[]],[\"name/244\",[125,55.709]],[\"comment/244\",[]],[\"name/245\",[126,55.709]],[\"comment/245\",[]],[\"name/246\",[127,50.601]],[\"comment/246\",[]],[\"name/247\",[128,50.601]],[\"comment/247\",[]],[\"name/248\",[129,50.601]],[\"comment/248\",[]],[\"name/249\",[130,50.601]],[\"comment/249\",[]],[\"name/250\",[131,55.709]],[\"comment/250\",[]],[\"name/251\",[132,55.709]],[\"comment/251\",[]],[\"name/252\",[133,55.709]],[\"comment/252\",[]],[\"name/253\",[134,55.709]],[\"comment/253\",[]],[\"name/254\",[6,14.821]],[\"comment/254\",[]],[\"name/255\",[135,55.709]],[\"comment/255\",[]],[\"name/256\",[6,14.821]],[\"comment/256\",[]],[\"name/257\",[136,25.92]],[\"comment/257\",[]],[\"name/258\",[137,55.709]],[\"comment/258\",[]],[\"name/259\",[6,14.821]],[\"comment/259\",[]],[\"name/260\",[136,25.92]],[\"comment/260\",[]],[\"name/261\",[138,29.559]],[\"comment/261\",[]],[\"name/262\",[129,50.601]],[\"comment/262\",[]],[\"name/263\",[6,14.821]],[\"comment/263\",[]],[\"name/264\",[136,25.92]],[\"comment/264\",[]],[\"name/265\",[138,29.559]],[\"comment/265\",[]],[\"name/266\",[127,50.601]],[\"comment/266\",[]],[\"name/267\",[6,14.821]],[\"comment/267\",[]],[\"name/268\",[136,25.92]],[\"comment/268\",[]],[\"name/269\",[138,29.559]],[\"comment/269\",[]],[\"name/270\",[139,55.709]],[\"comment/270\",[]],[\"name/271\",[6,14.821]],[\"comment/271\",[]],[\"name/272\",[136,25.92]],[\"comment/272\",[]],[\"name/273\",[138,29.559]],[\"comment/273\",[]],[\"name/274\",[140,55.709]],[\"comment/274\",[]],[\"name/275\",[6,14.821]],[\"comment/275\",[]],[\"name/276\",[136,25.92]],[\"comment/276\",[]],[\"name/277\",[138,29.559]],[\"comment/277\",[]],[\"name/278\",[141,55.709]],[\"comment/278\",[]],[\"name/279\",[6,14.821]],[\"comment/279\",[]],[\"name/280\",[136,25.92]],[\"comment/280\",[]],[\"name/281\",[138,29.559]],[\"comment/281\",[]],[\"name/282\",[142,47.236]],[\"comment/282\",[]],[\"name/283\",[6,14.821]],[\"comment/283\",[]],[\"name/284\",[136,25.92]],[\"comment/284\",[]],[\"name/285\",[138,29.559]],[\"comment/285\",[]],[\"name/286\",[143,55.709]],[\"comment/286\",[]],[\"name/287\",[6,14.821]],[\"comment/287\",[]],[\"name/288\",[136,25.92]],[\"comment/288\",[]],[\"name/289\",[138,29.559]],[\"comment/289\",[]],[\"name/290\",[124,50.601]],[\"comment/290\",[]],[\"name/291\",[6,14.821]],[\"comment/291\",[]],[\"name/292\",[136,25.92]],[\"comment/292\",[]],[\"name/293\",[138,29.559]],[\"comment/293\",[]],[\"name/294\",[130,50.601]],[\"comment/294\",[]],[\"name/295\",[6,14.821]],[\"comment/295\",[]],[\"name/296\",[136,25.92]],[\"comment/296\",[]],[\"name/297\",[138,29.559]],[\"comment/297\",[]],[\"name/298\",[128,50.601]],[\"comment/298\",[]],[\"name/299\",[6,14.821]],[\"comment/299\",[]],[\"name/300\",[136,25.92]],[\"comment/300\",[]],[\"name/301\",[138,29.559]],[\"comment/301\",[]],[\"name/302\",[144,55.709]],[\"comment/302\",[]],[\"name/303\",[6,14.821]],[\"comment/303\",[]],[\"name/304\",[136,25.92]],[\"comment/304\",[]],[\"name/305\",[138,29.559]],[\"comment/305\",[]],[\"name/306\",[145,55.709]],[\"comment/306\",[]],[\"name/307\",[6,14.821]],[\"comment/307\",[]],[\"name/308\",[146,55.709]],[\"comment/308\",[]],[\"name/309\",[6,14.821]],[\"comment/309\",[]],[\"name/310\",[136,25.92]],[\"comment/310\",[]],[\"name/311\",[147,38.363]],[\"comment/311\",[]],[\"name/312\",[6,14.821]],[\"comment/312\",[]],[\"name/313\",[136,25.92]],[\"comment/313\",[]],[\"name/314\",[138,29.559]],[\"comment/314\",[]],[\"name/315\",[142,47.236]],[\"comment/315\",[]],[\"name/316\",[6,14.821]],[\"comment/316\",[]],[\"name/317\",[136,25.92]],[\"comment/317\",[]],[\"name/318\",[147,38.363]],[\"comment/318\",[]],[\"name/319\",[6,14.821]],[\"comment/319\",[]],[\"name/320\",[136,25.92]],[\"comment/320\",[]],[\"name/321\",[138,29.559]],[\"comment/321\",[]],[\"name/322\",[53,50.601]],[\"comment/322\",[]],[\"name/323\",[6,14.821]],[\"comment/323\",[]],[\"name/324\",[136,25.92]],[\"comment/324\",[]],[\"name/325\",[147,38.363]],[\"comment/325\",[]],[\"name/326\",[6,14.821]],[\"comment/326\",[]],[\"name/327\",[136,25.92]],[\"comment/327\",[]],[\"name/328\",[138,29.559]],[\"comment/328\",[]],[\"name/329\",[148,55.709]],[\"comment/329\",[]],[\"name/330\",[6,14.821]],[\"comment/330\",[]],[\"name/331\",[136,25.92]],[\"comment/331\",[]],[\"name/332\",[147,38.363]],[\"comment/332\",[]],[\"name/333\",[6,14.821]],[\"comment/333\",[]],[\"name/334\",[136,25.92]],[\"comment/334\",[]],[\"name/335\",[138,29.559]],[\"comment/335\",[]],[\"name/336\",[149,55.709]],[\"comment/336\",[]],[\"name/337\",[6,14.821]],[\"comment/337\",[]],[\"name/338\",[136,25.92]],[\"comment/338\",[]],[\"name/339\",[147,38.363]],[\"comment/339\",[]],[\"name/340\",[6,14.821]],[\"comment/340\",[]],[\"name/341\",[136,25.92]],[\"comment/341\",[]],[\"name/342\",[138,29.559]],[\"comment/342\",[]],[\"name/343\",[150,55.709]],[\"comment/343\",[]],[\"name/344\",[6,14.821]],[\"comment/344\",[]],[\"name/345\",[136,25.92]],[\"comment/345\",[]],[\"name/346\",[147,38.363]],[\"comment/346\",[]],[\"name/347\",[6,14.821]],[\"comment/347\",[]],[\"name/348\",[136,25.92]],[\"comment/348\",[]],[\"name/349\",[138,29.559]],[\"comment/349\",[]],[\"name/350\",[151,55.709]],[\"comment/350\",[]],[\"name/351\",[6,14.821]],[\"comment/351\",[]],[\"name/352\",[136,25.92]],[\"comment/352\",[]],[\"name/353\",[147,38.363]],[\"comment/353\",[]],[\"name/354\",[6,14.821]],[\"comment/354\",[]],[\"name/355\",[136,25.92]],[\"comment/355\",[]],[\"name/356\",[138,29.559]],[\"comment/356\",[]],[\"name/357\",[152,55.709]],[\"comment/357\",[]],[\"name/358\",[6,14.821]],[\"comment/358\",[]],[\"name/359\",[136,25.92]],[\"comment/359\",[]],[\"name/360\",[147,38.363]],[\"comment/360\",[]],[\"name/361\",[6,14.821]],[\"comment/361\",[]],[\"name/362\",[136,25.92]],[\"comment/362\",[]],[\"name/363\",[138,29.559]],[\"comment/363\",[]],[\"name/364\",[153,55.709]],[\"comment/364\",[]],[\"name/365\",[154,55.709]],[\"comment/365\",[]],[\"name/366\",[155,55.709]],[\"comment/366\",[]],[\"name/367\",[156,55.709]],[\"comment/367\",[]],[\"name/368\",[157,55.709]],[\"comment/368\",[]],[\"name/369\",[6,14.821]],[\"comment/369\",[]],[\"name/370\",[158,50.601]],[\"comment/370\",[]],[\"name/371\",[159,55.709]],[\"comment/371\",[]],[\"name/372\",[160,55.709]],[\"comment/372\",[]],[\"name/373\",[6,14.821]],[\"comment/373\",[]],[\"name/374\",[142,47.236]],[\"comment/374\",[]],[\"name/375\",[161,55.709]],[\"comment/375\",[]],[\"name/376\",[162,55.709]],[\"comment/376\",[]],[\"name/377\",[163,55.709]],[\"comment/377\",[]],[\"name/378\",[164,55.709]],[\"comment/378\",[]],[\"name/379\",[165,55.709]],[\"comment/379\",[]],[\"name/380\",[166,55.709]],[\"comment/380\",[]],[\"name/381\",[167,55.709]],[\"comment/381\",[]],[\"name/382\",[168,55.709]],[\"comment/382\",[]],[\"name/383\",[169,55.709]],[\"comment/383\",[]],[\"name/384\",[158,50.601]],[\"comment/384\",[]],[\"name/385\",[170,55.709]],[\"comment/385\",[]],[\"name/386\",[171,55.709]],[\"comment/386\",[]],[\"name/387\",[172,55.709]],[\"comment/387\",[]],[\"name/388\",[173,55.709]],[\"comment/388\",[]],[\"name/389\",[174,55.709]],[\"comment/389\",[]],[\"name/390\",[175,55.709]],[\"comment/390\",[]],[\"name/391\",[176,55.709]],[\"comment/391\",[]],[\"name/392\",[177,55.709]],[\"comment/392\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"8\":{},\"51\":{},\"58\":{},\"62\":{},\"66\":{},\"70\":{},\"74\":{},\"78\":{},\"82\":{},\"86\":{},\"90\":{},\"94\":{},\"99\":{},\"105\":{},\"113\":{},\"117\":{},\"121\":{},\"125\":{},\"130\":{},\"134\":{},\"138\":{},\"152\":{},\"154\":{},\"156\":{},\"159\":{},\"161\":{},\"163\":{},\"165\":{},\"167\":{},\"169\":{},\"171\":{},\"173\":{},\"175\":{},\"177\":{},\"179\":{},\"181\":{},\"183\":{},\"185\":{},\"187\":{},\"189\":{},\"191\":{},\"193\":{},\"195\":{},\"197\":{},\"199\":{},\"203\":{},\"207\":{},\"210\":{},\"213\":{},\"217\":{},\"221\":{},\"225\":{},\"228\":{},\"232\":{},\"237\":{},\"242\":{},\"254\":{},\"256\":{},\"259\":{},\"263\":{},\"267\":{},\"271\":{},\"275\":{},\"279\":{},\"283\":{},\"287\":{},\"291\":{},\"295\":{},\"299\":{},\"303\":{},\"307\":{},\"309\":{},\"312\":{},\"316\":{},\"319\":{},\"323\":{},\"326\":{},\"330\":{},\"333\":{},\"337\":{},\"340\":{},\"344\":{},\"347\":{},\"351\":{},\"354\":{},\"358\":{},\"361\":{},\"369\":{},\"373\":{}},\"comment\":{}}],[\"abi\",{\"_index\":147,\"name\":{\"311\":{},\"318\":{},\"325\":{},\"332\":{},\"339\":{},\"346\":{},\"353\":{},\"360\":{}},\"comment\":{}}],[\"abi_types\",{\"_index\":134,\"name\":{\"253\":{}},\"comment\":{}}],[\"abortonfail\",{\"_index\":56,\"name\":{\"103\":{}},\"comment\":{}}],[\"abtohex\",{\"_index\":89,\"name\":{\"164\":{}},\"comment\":{}}],[\"abtostr\",{\"_index\":86,\"name\":{\"158\":{}},\"comment\":{}}],[\"account\",{\"_index\":37,\"name\":{\"53\":{}},\"comment\":{}}],[\"accountinputtoaddress\",{\"_index\":102,\"name\":{\"190\":{}},\"comment\":{}}],[\"accountinputtoscripthash\",{\"_index\":100,\"name\":{\"186\":{}},\"comment\":{}}],[\"action\",{\"_index\":33,\"name\":{\"48\":{}},\"comment\":{}}],[\"addeventlistener\",{\"_index\":14,\"name\":{\"16\":{}},\"comment\":{}}],[\"address\",{\"_index\":146,\"name\":{\"308\":{}},\"comment\":{}}],[\"allowedcontracts\",{\"_index\":38,\"name\":{\"54\":{}},\"comment\":{}}],[\"allowedgroups\",{\"_index\":39,\"name\":{\"55\":{}},\"comment\":{}}],[\"andwitnesscondition\",{\"_index\":21,\"name\":{\"26\":{}},\"comment\":{}}],[\"any\",{\"_index\":135,\"name\":{\"255\":{}},\"comment\":{}}],[\"anyargtype\",{\"_index\":41,\"name\":{\"57\":{}},\"comment\":{}}],[\"anyconfigargtype\",{\"_index\":106,\"name\":{\"198\":{}},\"comment\":{}}],[\"arg\",{\"_index\":51,\"name\":{\"97\":{}},\"comment\":{}}],[\"args\",{\"_index\":55,\"name\":{\"102\":{}},\"comment\":{}}],[\"array\",{\"_index\":124,\"name\":{\"243\":{},\"290\":{}},\"comment\":{}}],[\"arrayargtype\",{\"_index\":48,\"name\":{\"85\":{}},\"comment\":{}}],[\"arrayconfigargtype\",{\"_index\":116,\"name\":{\"227\":{}},\"comment\":{}}],[\"arrayresponseargtype\",{\"_index\":64,\"name\":{\"112\":{}},\"comment\":{}}],[\"asciitobase64\",{\"_index\":98,\"name\":{\"182\":{}},\"comment\":{}}],[\"base64tohex\",{\"_index\":96,\"name\":{\"178\":{}},\"comment\":{}}],[\"base64toutf8\",{\"_index\":99,\"name\":{\"184\":{}},\"comment\":{}}],[\"blockhash\",{\"_index\":149,\"name\":{\"336\":{}},\"comment\":{}}],[\"boolean\",{\"_index\":129,\"name\":{\"248\":{},\"262\":{}},\"comment\":{}}],[\"booleanargtype\",{\"_index\":43,\"name\":{\"65\":{}},\"comment\":{}}],[\"booleanconfigargtype\",{\"_index\":110,\"name\":{\"206\":{}},\"comment\":{}}],[\"booleanwitnesscondition\",{\"_index\":18,\"name\":{\"20\":{}},\"comment\":{}}],[\"buffer\",{\"_index\":126,\"name\":{\"245\":{}},\"comment\":{}}],[\"bufferargtype\",{\"_index\":71,\"name\":{\"133\":{}},\"comment\":{}}],[\"bytearray\",{\"_index\":141,\"name\":{\"278\":{}},\"comment\":{}}],[\"bytearrayargtype\",{\"_index\":50,\"name\":{\"93\":{}},\"comment\":{}}],[\"bytearrayconfigargtype\",{\"_index\":111,\"name\":{\"209\":{}},\"comment\":{}}],[\"bytestring\",{\"_index\":125,\"name\":{\"244\":{}},\"comment\":{}}],[\"bytestringargtype\",{\"_index\":66,\"name\":{\"120\":{}},\"comment\":{}}],[\"calledbycontractwitnesscondition\",{\"_index\":29,\"name\":{\"40\":{}},\"comment\":{}}],[\"calledbyentrywitnesscondition\",{\"_index\":28,\"name\":{\"38\":{}},\"comment\":{}}],[\"calledbygroupwitnesscondition\",{\"_index\":30,\"name\":{\"43\":{}},\"comment\":{}}],[\"ciphertext\",{\"_index\":166,\"name\":{\"380\":{}},\"comment\":{}}],[\"classic\",{\"_index\":154,\"name\":{\"365\":{}},\"comment\":{}}],[\"condition\",{\"_index\":34,\"name\":{\"49\":{}},\"comment\":{}}],[\"confirmtransaction\",{\"_index\":17,\"name\":{\"19\":{}},\"comment\":{}}],[\"contract\",{\"_index\":1,\"name\":{\"1\":{},\"5\":{}},\"comment\":{}}],[\"contractinvocation\",{\"_index\":52,\"name\":{\"98\":{}},\"comment\":{}}],[\"contractinvocationmulti\",{\"_index\":57,\"name\":{\"104\":{}},\"comment\":{}}],[\"data\",{\"_index\":161,\"name\":{\"375\":{}},\"comment\":{}}],[\"datatag\",{\"_index\":167,\"name\":{\"381\":{}},\"comment\":{}}],[\"decrypt\",{\"_index\":176,\"name\":{\"391\":{}},\"comment\":{}}],[\"decryptfromarray\",{\"_index\":177,\"name\":{\"392\":{}},\"comment\":{}}],[\"decryptfromarrayresult\",{\"_index\":169,\"name\":{\"383\":{}},\"comment\":{}}],[\"default\",{\"_index\":155,\"name\":{\"366\":{}},\"comment\":{}}],[\"encrypt\",{\"_index\":175,\"name\":{\"390\":{}},\"comment\":{}}],[\"encryptedpayload\",{\"_index\":164,\"name\":{\"378\":{}},\"comment\":{}}],[\"ephempublickey\",{\"_index\":168,\"name\":{\"382\":{}},\"comment\":{}}],[\"eventname\",{\"_index\":2,\"name\":{\"2\":{},\"6\":{}},\"comment\":{}}],[\"exception\",{\"_index\":77,\"name\":{\"146\":{}},\"comment\":{}}],[\"executions\",{\"_index\":12,\"name\":{\"14\":{}},\"comment\":{}}],[\"expression\",{\"_index\":19,\"name\":{\"22\":{},\"25\":{}},\"comment\":{}}],[\"expressions\",{\"_index\":22,\"name\":{\"28\":{},\"31\":{}},\"comment\":{}}],[\"extranetworkfee\",{\"_index\":62,\"name\":{\"110\":{}},\"comment\":{}}],[\"extrasystemfee\",{\"_index\":60,\"name\":{\"108\":{}},\"comment\":{}}],[\"formatrpcargument\",{\"_index\":105,\"name\":{\"196\":{}},\"comment\":{}}],[\"gasconsumed\",{\"_index\":76,\"name\":{\"145\":{}},\"comment\":{}}],[\"generic\",{\"_index\":117,\"name\":{\"230\":{}},\"comment\":{}}],[\"genericitem\",{\"_index\":120,\"name\":{\"235\":{}},\"comment\":{}}],[\"generickey\",{\"_index\":119,\"name\":{\"234\":{}},\"comment\":{}}],[\"getaccountaddress\",{\"_index\":174,\"name\":{\"389\":{}},\"comment\":{}}],[\"group\",{\"_index\":27,\"name\":{\"37\":{},\"45\":{}},\"comment\":{}}],[\"groupwitnesscondition\",{\"_index\":26,\"name\":{\"35\":{}},\"comment\":{}}],[\"hash\",{\"_index\":25,\"name\":{\"34\":{},\"42\":{}},\"comment\":{}}],[\"hash160\",{\"_index\":139,\"name\":{\"270\":{}},\"comment\":{}}],[\"hash160argtype\",{\"_index\":45,\"name\":{\"73\":{}},\"comment\":{}}],[\"hash160configargtype\",{\"_index\":113,\"name\":{\"216\":{}},\"comment\":{}}],[\"hash256\",{\"_index\":140,\"name\":{\"274\":{}},\"comment\":{}}],[\"hash256argtype\",{\"_index\":46,\"name\":{\"77\":{}},\"comment\":{}}],[\"hash256configargtype\",{\"_index\":114,\"name\":{\"220\":{}},\"comment\":{}}],[\"hextoab\",{\"_index\":88,\"name\":{\"162\":{}},\"comment\":{}}],[\"hextobase64\",{\"_index\":95,\"name\":{\"176\":{}},\"comment\":{}}],[\"hextostr\",{\"_index\":91,\"name\":{\"168\":{}},\"comment\":{}}],[\"hint\",{\"_index\":109,\"name\":{\"205\":{},\"215\":{},\"219\":{},\"223\":{},\"239\":{}},\"comment\":{}}],[\"hint_types\",{\"_index\":145,\"name\":{\"306\":{}},\"comment\":{}}],[\"id\",{\"_index\":69,\"name\":{\"128\":{}},\"comment\":{}}],[\"integer\",{\"_index\":127,\"name\":{\"246\":{},\"266\":{}},\"comment\":{}}],[\"integerargtype\",{\"_index\":47,\"name\":{\"81\":{}},\"comment\":{}}],[\"integerconfigargtype\",{\"_index\":115,\"name\":{\"224\":{}},\"comment\":{}}],[\"interface\",{\"_index\":68,\"name\":{\"127\":{}},\"comment\":{}}],[\"internal\",{\"_index\":138,\"name\":{\"261\":{},\"265\":{},\"269\":{},\"273\":{},\"277\":{},\"281\":{},\"285\":{},\"289\":{},\"293\":{},\"297\":{},\"301\":{},\"305\":{},\"314\":{},\"321\":{},\"328\":{},\"335\":{},\"342\":{},\"349\":{},\"356\":{},\"363\":{}},\"comment\":{}}],[\"internal_types\",{\"_index\":123,\"name\":{\"241\":{}},\"comment\":{}}],[\"interopinterface\",{\"_index\":128,\"name\":{\"247\":{},\"298\":{}},\"comment\":{}}],[\"interopinterfaceargtype\",{\"_index\":67,\"name\":{\"124\":{}},\"comment\":{}}],[\"interopinterfaceconfigargtype\",{\"_index\":121,\"name\":{\"236\":{}},\"comment\":{}}],[\"inttohex\",{\"_index\":92,\"name\":{\"170\":{}},\"comment\":{}}],[\"invocations\",{\"_index\":59,\"name\":{\"107\":{}},\"comment\":{}}],[\"invokefunction\",{\"_index\":82,\"name\":{\"151\":{}},\"comment\":{}}],[\"invokeresult\",{\"_index\":74,\"name\":{\"142\":{}},\"comment\":{}}],[\"iterator\",{\"_index\":152,\"name\":{\"357\":{}},\"comment\":{}}],[\"keyindex\",{\"_index\":170,\"name\":{\"385\":{}},\"comment\":{}}],[\"map\",{\"_index\":130,\"name\":{\"249\":{},\"294\":{}},\"comment\":{}}],[\"mapargtype\",{\"_index\":49,\"name\":{\"89\":{}},\"comment\":{}}],[\"mapconfigargtype\",{\"_index\":118,\"name\":{\"231\":{}},\"comment\":{}}],[\"mapresponseargtype\",{\"_index\":65,\"name\":{\"116\":{}},\"comment\":{}}],[\"message\",{\"_index\":158,\"name\":{\"370\":{},\"384\":{}},\"comment\":{}}],[\"messagehex\",{\"_index\":163,\"name\":{\"377\":{}},\"comment\":{}}],[\"name\",{\"_index\":136,\"name\":{\"257\":{},\"260\":{},\"264\":{},\"268\":{},\"272\":{},\"276\":{},\"280\":{},\"284\":{},\"288\":{},\"292\":{},\"296\":{},\"300\":{},\"304\":{},\"310\":{},\"313\":{},\"317\":{},\"320\":{},\"324\":{},\"327\":{},\"331\":{},\"334\":{},\"338\":{},\"341\":{},\"345\":{},\"348\":{},\"352\":{},\"355\":{},\"359\":{},\"362\":{}},\"comment\":{}}],[\"neo3applicationlog\",{\"_index\":10,\"name\":{\"12\":{}},\"comment\":{}}],[\"neo3event\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"neo3eventlistener\",{\"_index\":13,\"name\":{\"15\":{}},\"comment\":{}}],[\"neo3eventlistenercallback\",{\"_index\":5,\"name\":{\"7\":{}},\"comment\":{}}],[\"neo3eventwithstate\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"neo3invoker\",{\"_index\":81,\"name\":{\"150\":{}},\"comment\":{}}],[\"neo3parser\",{\"_index\":85,\"name\":{\"157\":{}},\"comment\":{}}],[\"neo3signer\",{\"_index\":171,\"name\":{\"386\":{}},\"comment\":{}}],[\"neo3stackitem\",{\"_index\":7,\"name\":{\"9\":{}},\"comment\":{}}],[\"networkfeeoverride\",{\"_index\":63,\"name\":{\"111\":{}},\"comment\":{}}],[\"notwitnesscondition\",{\"_index\":20,\"name\":{\"23\":{}},\"comment\":{}}],[\"null\",{\"_index\":131,\"name\":{\"250\":{}},\"comment\":{}}],[\"numtohex\",{\"_index\":93,\"name\":{\"172\":{}},\"comment\":{}}],[\"numtovarint\",{\"_index\":94,\"name\":{\"174\":{}},\"comment\":{}}],[\"operation\",{\"_index\":54,\"name\":{\"101\":{}},\"comment\":{}}],[\"orwitnesscondition\",{\"_index\":23,\"name\":{\"29\":{}},\"comment\":{}}],[\"parseconfig\",{\"_index\":122,\"name\":{\"240\":{}},\"comment\":{}}],[\"parserpcresponse\",{\"_index\":104,\"name\":{\"194\":{}},\"comment\":{}}],[\"pointer\",{\"_index\":132,\"name\":{\"251\":{}},\"comment\":{}}],[\"pointerargtype\",{\"_index\":70,\"name\":{\"129\":{}},\"comment\":{}}],[\"publickey\",{\"_index\":142,\"name\":{\"282\":{},\"315\":{},\"374\":{}},\"comment\":{}}],[\"publickeyargtype\",{\"_index\":44,\"name\":{\"69\":{}},\"comment\":{}}],[\"publickeyconfigargtype\",{\"_index\":112,\"name\":{\"212\":{}},\"comment\":{}}],[\"randomvector\",{\"_index\":165,\"name\":{\"379\":{}},\"comment\":{}}],[\"removeeventlistener\",{\"_index\":15,\"name\":{\"17\":{}},\"comment\":{}}],[\"reversehex\",{\"_index\":103,\"name\":{\"192\":{}},\"comment\":{}}],[\"rpcresponsestackitem\",{\"_index\":73,\"name\":{\"141\":{}},\"comment\":{}}],[\"rules\",{\"_index\":40,\"name\":{\"56\":{}},\"comment\":{}}],[\"salt\",{\"_index\":162,\"name\":{\"376\":{}},\"comment\":{}}],[\"scopes\",{\"_index\":36,\"name\":{\"52\":{}},\"comment\":{}}],[\"script\",{\"_index\":75,\"name\":{\"143\":{}},\"comment\":{}}],[\"scripthash\",{\"_index\":53,\"name\":{\"100\":{},\"322\":{}},\"comment\":{}}],[\"scripthashlittleending\",{\"_index\":148,\"name\":{\"329\":{}},\"comment\":{}}],[\"scripthashwitnesscondition\",{\"_index\":24,\"name\":{\"32\":{}},\"comment\":{}}],[\"session\",{\"_index\":80,\"name\":{\"149\":{}},\"comment\":{}}],[\"signature\",{\"_index\":137,\"name\":{\"258\":{}},\"comment\":{}}],[\"signedmessage\",{\"_index\":160,\"name\":{\"372\":{}},\"comment\":{}}],[\"signer\",{\"_index\":35,\"name\":{\"50\":{}},\"comment\":{}}],[\"signers\",{\"_index\":58,\"name\":{\"106\":{}},\"comment\":{}}],[\"signmessage\",{\"_index\":172,\"name\":{\"387\":{}},\"comment\":{}}],[\"signmessagepayload\",{\"_index\":157,\"name\":{\"368\":{}},\"comment\":{}}],[\"signmessageversion\",{\"_index\":153,\"name\":{\"364\":{}},\"comment\":{}}],[\"stack\",{\"_index\":78,\"name\":{\"147\":{}},\"comment\":{}}],[\"state\",{\"_index\":4,\"name\":{\"4\":{},\"144\":{}},\"comment\":{}}],[\"storagecontext\",{\"_index\":151,\"name\":{\"350\":{}},\"comment\":{}}],[\"string\",{\"_index\":143,\"name\":{\"286\":{}},\"comment\":{}}],[\"stringargtype\",{\"_index\":42,\"name\":{\"61\":{}},\"comment\":{}}],[\"stringconfigargtype\",{\"_index\":108,\"name\":{\"202\":{}},\"comment\":{}}],[\"strtoab\",{\"_index\":87,\"name\":{\"160\":{}},\"comment\":{}}],[\"strtobase64\",{\"_index\":101,\"name\":{\"188\":{}},\"comment\":{}}],[\"strtohex\",{\"_index\":90,\"name\":{\"166\":{}},\"comment\":{}}],[\"struct\",{\"_index\":133,\"name\":{\"252\":{}},\"comment\":{}}],[\"structargtype\",{\"_index\":72,\"name\":{\"137\":{}},\"comment\":{}}],[\"systemfeeoverride\",{\"_index\":61,\"name\":{\"109\":{}},\"comment\":{}}],[\"testinvoke\",{\"_index\":83,\"name\":{\"153\":{}},\"comment\":{}}],[\"transactionid\",{\"_index\":150,\"name\":{\"343\":{}},\"comment\":{}}],[\"traverseiterator\",{\"_index\":84,\"name\":{\"155\":{}},\"comment\":{}}],[\"tx\",{\"_index\":79,\"name\":{\"148\":{}},\"comment\":{}}],[\"txid\",{\"_index\":11,\"name\":{\"13\":{}},\"comment\":{}}],[\"type\",{\"_index\":8,\"name\":{\"10\":{},\"21\":{},\"24\":{},\"27\":{},\"30\":{},\"33\":{},\"36\":{},\"39\":{},\"41\":{},\"44\":{},\"59\":{},\"63\":{},\"67\":{},\"71\":{},\"75\":{},\"79\":{},\"83\":{},\"87\":{},\"91\":{},\"95\":{},\"114\":{},\"118\":{},\"122\":{},\"126\":{},\"131\":{},\"135\":{},\"139\":{},\"200\":{},\"204\":{},\"208\":{},\"211\":{},\"214\":{},\"218\":{},\"222\":{},\"226\":{},\"229\":{},\"233\":{},\"238\":{}},\"comment\":{}}],[\"union\",{\"_index\":107,\"name\":{\"201\":{}},\"comment\":{}}],[\"utf8tobase64\",{\"_index\":97,\"name\":{\"180\":{}},\"comment\":{}}],[\"value\",{\"_index\":9,\"name\":{\"11\":{},\"60\":{},\"64\":{},\"68\":{},\"72\":{},\"76\":{},\"80\":{},\"84\":{},\"88\":{},\"92\":{},\"96\":{},\"115\":{},\"119\":{},\"123\":{},\"132\":{},\"136\":{},\"140\":{}},\"comment\":{}}],[\"verifymessage\",{\"_index\":173,\"name\":{\"388\":{}},\"comment\":{}}],[\"version\",{\"_index\":159,\"name\":{\"371\":{}},\"comment\":{}}],[\"void\",{\"_index\":144,\"name\":{\"302\":{}},\"comment\":{}}],[\"waitforapplicationlog\",{\"_index\":16,\"name\":{\"18\":{}},\"comment\":{}}],[\"without_salt\",{\"_index\":156,\"name\":{\"367\":{}},\"comment\":{}}],[\"witnesscondition\",{\"_index\":31,\"name\":{\"46\":{}},\"comment\":{}}],[\"witnessrule\",{\"_index\":32,\"name\":{\"47\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"256\":\"Interface\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":256,\"name\":\"Neo3Event\",\"url\":\"interfaces/Neo3Event.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Neo3Event.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Event\"},{\"kind\":1024,\"name\":\"eventname\",\"url\":\"interfaces/Neo3Event.html#eventname\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Event\"},{\"kind\":256,\"name\":\"Neo3EventWithState\",\"url\":\"interfaces/Neo3EventWithState.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/Neo3EventWithState.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3EventWithState\"},{\"kind\":1024,\"name\":\"contract\",\"url\":\"interfaces/Neo3EventWithState.html#contract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Neo3EventWithState\"},{\"kind\":1024,\"name\":\"eventname\",\"url\":\"interfaces/Neo3EventWithState.html#eventname\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Neo3EventWithState\"},{\"kind\":4194304,\"name\":\"Neo3EventListenerCallback\",\"url\":\"types/Neo3EventListenerCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Neo3EventListenerCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Neo3EventListenerCallback\"},{\"kind\":256,\"name\":\"Neo3StackItem\",\"url\":\"interfaces/Neo3StackItem.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Neo3StackItem.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3StackItem\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/Neo3StackItem.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3StackItem\"},{\"kind\":256,\"name\":\"Neo3ApplicationLog\",\"url\":\"interfaces/Neo3ApplicationLog.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"txid\",\"url\":\"interfaces/Neo3ApplicationLog.html#txid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3ApplicationLog\"},{\"kind\":1024,\"name\":\"executions\",\"url\":\"interfaces/Neo3ApplicationLog.html#executions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3ApplicationLog\"},{\"kind\":256,\"name\":\"Neo3EventListener\",\"url\":\"interfaces/Neo3EventListener.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":2048,\"name\":\"addEventListener\",\"url\":\"interfaces/Neo3EventListener.html#addEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"removeEventListener\",\"url\":\"interfaces/Neo3EventListener.html#removeEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"waitForApplicationLog\",\"url\":\"interfaces/Neo3EventListener.html#waitForApplicationLog\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":2048,\"name\":\"confirmTransaction\",\"url\":\"interfaces/Neo3EventListener.html#confirmTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3EventListener\"},{\"kind\":256,\"name\":\"BooleanWitnessCondition\",\"url\":\"interfaces/BooleanWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/BooleanWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BooleanWitnessCondition\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"interfaces/BooleanWitnessCondition.html#expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BooleanWitnessCondition\"},{\"kind\":256,\"name\":\"NotWitnessCondition\",\"url\":\"interfaces/NotWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/NotWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NotWitnessCondition\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"interfaces/NotWitnessCondition.html#expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"NotWitnessCondition\"},{\"kind\":256,\"name\":\"AndWitnessCondition\",\"url\":\"interfaces/AndWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/AndWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AndWitnessCondition\"},{\"kind\":1024,\"name\":\"expressions\",\"url\":\"interfaces/AndWitnessCondition.html#expressions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AndWitnessCondition\"},{\"kind\":256,\"name\":\"OrWitnessCondition\",\"url\":\"interfaces/OrWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/OrWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OrWitnessCondition\"},{\"kind\":1024,\"name\":\"expressions\",\"url\":\"interfaces/OrWitnessCondition.html#expressions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OrWitnessCondition\"},{\"kind\":256,\"name\":\"ScriptHashWitnessCondition\",\"url\":\"interfaces/ScriptHashWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ScriptHashWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ScriptHashWitnessCondition\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/ScriptHashWitnessCondition.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ScriptHashWitnessCondition\"},{\"kind\":256,\"name\":\"GroupWitnessCondition\",\"url\":\"interfaces/GroupWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/GroupWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GroupWitnessCondition\"},{\"kind\":1024,\"name\":\"group\",\"url\":\"interfaces/GroupWitnessCondition.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GroupWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByEntryWitnessCondition\",\"url\":\"interfaces/CalledByEntryWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByEntryWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByEntryWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByContractWitnessCondition\",\"url\":\"interfaces/CalledByContractWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByContractWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByContractWitnessCondition\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/CalledByContractWitnessCondition.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByContractWitnessCondition\"},{\"kind\":256,\"name\":\"CalledByGroupWitnessCondition\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByGroupWitnessCondition\"},{\"kind\":1024,\"name\":\"group\",\"url\":\"interfaces/CalledByGroupWitnessCondition.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalledByGroupWitnessCondition\"},{\"kind\":4194304,\"name\":\"WitnessCondition\",\"url\":\"types/WitnessCondition.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"WitnessRule\",\"url\":\"interfaces/WitnessRule.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"action\",\"url\":\"interfaces/WitnessRule.html#action\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WitnessRule\"},{\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/WitnessRule.html#condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"WitnessRule\"},{\"kind\":4194304,\"name\":\"Signer\",\"url\":\"types/Signer.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Signer.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Signer\"},{\"kind\":1024,\"name\":\"scopes\",\"url\":\"types/Signer.html#__type.scopes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"account\",\"url\":\"types/Signer.html#__type.account\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"allowedContracts\",\"url\":\"types/Signer.html#__type.allowedContracts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"allowedGroups\",\"url\":\"types/Signer.html#__type.allowedGroups\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/Signer.html#__type.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Signer.__type\"},{\"kind\":4194304,\"name\":\"AnyArgType\",\"url\":\"types/AnyArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"AnyArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/AnyArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/AnyArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyArgType.__type\"},{\"kind\":4194304,\"name\":\"StringArgType\",\"url\":\"types/StringArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StringArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StringArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/StringArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringArgType.__type\"},{\"kind\":4194304,\"name\":\"BooleanArgType\",\"url\":\"types/BooleanArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BooleanArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BooleanArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BooleanArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/BooleanArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanArgType.__type\"},{\"kind\":4194304,\"name\":\"PublicKeyArgType\",\"url\":\"types/PublicKeyArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PublicKeyArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PublicKeyArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PublicKeyArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/PublicKeyArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash160ArgType\",\"url\":\"types/Hash160ArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash160ArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash160ArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash160ArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/Hash160ArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash256ArgType\",\"url\":\"types/Hash256ArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash256ArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash256ArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash256ArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/Hash256ArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ArgType.__type\"},{\"kind\":4194304,\"name\":\"IntegerArgType\",\"url\":\"types/IntegerArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/IntegerArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IntegerArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/IntegerArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/IntegerArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerArgType.__type\"},{\"kind\":4194304,\"name\":\"ArrayArgType\",\"url\":\"types/ArrayArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ArrayArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayArgType.__type\"},{\"kind\":4194304,\"name\":\"MapArgType\",\"url\":\"types/MapArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/MapArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteArrayArgType\",\"url\":\"types/ByteArrayArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteArrayArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteArrayArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteArrayArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ByteArrayArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayArgType.__type\"},{\"kind\":4194304,\"name\":\"Arg\",\"url\":\"types/Arg.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"ContractInvocation\",\"url\":\"types/ContractInvocation.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ContractInvocation.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ContractInvocation\"},{\"kind\":1024,\"name\":\"scriptHash\",\"url\":\"types/ContractInvocation.html#__type.scriptHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"operation\",\"url\":\"types/ContractInvocation.html#__type.operation\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"args\",\"url\":\"types/ContractInvocation.html#__type.args\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":1024,\"name\":\"abortOnFail\",\"url\":\"types/ContractInvocation.html#__type.abortOnFail\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocation.__type\"},{\"kind\":4194304,\"name\":\"ContractInvocationMulti\",\"url\":\"types/ContractInvocationMulti.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ContractInvocationMulti.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ContractInvocationMulti\"},{\"kind\":1024,\"name\":\"signers\",\"url\":\"types/ContractInvocationMulti.html#__type.signers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"invocations\",\"url\":\"types/ContractInvocationMulti.html#__type.invocations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"extraSystemFee\",\"url\":\"types/ContractInvocationMulti.html#__type.extraSystemFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"systemFeeOverride\",\"url\":\"types/ContractInvocationMulti.html#__type.systemFeeOverride\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"extraNetworkFee\",\"url\":\"types/ContractInvocationMulti.html#__type.extraNetworkFee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":1024,\"name\":\"networkFeeOverride\",\"url\":\"types/ContractInvocationMulti.html#__type.networkFeeOverride\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ContractInvocationMulti.__type\"},{\"kind\":4194304,\"name\":\"ArrayResponseArgType\",\"url\":\"types/ArrayResponseArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayResponseArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayResponseArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayResponseArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayResponseArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ArrayResponseArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayResponseArgType.__type\"},{\"kind\":4194304,\"name\":\"MapResponseArgType\",\"url\":\"types/MapResponseArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapResponseArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapResponseArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapResponseArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapResponseArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/MapResponseArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapResponseArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteStringArgType\",\"url\":\"types/ByteStringArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteStringArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteStringArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteStringArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteStringArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/ByteStringArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteStringArgType.__type\"},{\"kind\":4194304,\"name\":\"InteropInterfaceArgType\",\"url\":\"types/InteropInterfaceArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/InteropInterfaceArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"InteropInterfaceArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/InteropInterfaceArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":1024,\"name\":\"interface\",\"url\":\"types/InteropInterfaceArgType.html#__type.interface\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/InteropInterfaceArgType.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceArgType.__type\"},{\"kind\":4194304,\"name\":\"PointerArgType\",\"url\":\"types/PointerArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PointerArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PointerArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PointerArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PointerArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/PointerArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PointerArgType.__type\"},{\"kind\":4194304,\"name\":\"BufferArgType\",\"url\":\"types/BufferArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BufferArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BufferArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BufferArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BufferArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/BufferArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BufferArgType.__type\"},{\"kind\":4194304,\"name\":\"StructArgType\",\"url\":\"types/StructArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StructArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StructArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StructArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StructArgType.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"types/StructArgType.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StructArgType.__type\"},{\"kind\":4194304,\"name\":\"RpcResponseStackItem\",\"url\":\"types/RpcResponseStackItem.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"InvokeResult\",\"url\":\"interfaces/InvokeResult.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"script\",\"url\":\"interfaces/InvokeResult.html#script\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/InvokeResult.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"gasconsumed\",\"url\":\"interfaces/InvokeResult.html#gasconsumed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"exception\",\"url\":\"interfaces/InvokeResult.html#exception\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"stack\",\"url\":\"interfaces/InvokeResult.html#stack\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"tx\",\"url\":\"interfaces/InvokeResult.html#tx\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"interfaces/InvokeResult.html#session\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InvokeResult\"},{\"kind\":256,\"name\":\"Neo3Invoker\",\"url\":\"interfaces/Neo3Invoker.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"invokeFunction\",\"url\":\"interfaces/Neo3Invoker.html#invokeFunction\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#invokeFunction.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.invokeFunction\"},{\"kind\":1024,\"name\":\"testInvoke\",\"url\":\"interfaces/Neo3Invoker.html#testInvoke\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#testInvoke.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.testInvoke\"},{\"kind\":1024,\"name\":\"traverseIterator\",\"url\":\"interfaces/Neo3Invoker.html#traverseIterator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Invoker\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Invoker.html#traverseIterator.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Invoker.traverseIterator\"},{\"kind\":256,\"name\":\"Neo3Parser\",\"url\":\"interfaces/Neo3Parser.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"abToStr\",\"url\":\"interfaces/Neo3Parser.html#abToStr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#abToStr.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.abToStr\"},{\"kind\":1024,\"name\":\"strToAb\",\"url\":\"interfaces/Neo3Parser.html#strToAb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToAb.__type-32\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToAb\"},{\"kind\":1024,\"name\":\"hexToAb\",\"url\":\"interfaces/Neo3Parser.html#hexToAb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToAb.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToAb\"},{\"kind\":1024,\"name\":\"abToHex\",\"url\":\"interfaces/Neo3Parser.html#abToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#abToHex.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.abToHex\"},{\"kind\":1024,\"name\":\"strToHex\",\"url\":\"interfaces/Neo3Parser.html#strToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToHex.__type-36\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToHex\"},{\"kind\":1024,\"name\":\"hexToStr\",\"url\":\"interfaces/Neo3Parser.html#hexToStr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToStr.__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToStr\"},{\"kind\":1024,\"name\":\"intToHex\",\"url\":\"interfaces/Neo3Parser.html#intToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#intToHex.__type-22\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.intToHex\"},{\"kind\":1024,\"name\":\"numToHex\",\"url\":\"interfaces/Neo3Parser.html#numToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#numToHex.__type-24\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.numToHex\"},{\"kind\":1024,\"name\":\"numToVarInt\",\"url\":\"interfaces/Neo3Parser.html#numToVarInt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#numToVarInt.__type-26\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.numToVarInt\"},{\"kind\":1024,\"name\":\"hexToBase64\",\"url\":\"interfaces/Neo3Parser.html#hexToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#hexToBase64.__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.hexToBase64\"},{\"kind\":1024,\"name\":\"base64ToHex\",\"url\":\"interfaces/Neo3Parser.html#base64ToHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#base64ToHex.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.base64ToHex\"},{\"kind\":1024,\"name\":\"utf8ToBase64\",\"url\":\"interfaces/Neo3Parser.html#utf8ToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#utf8ToBase64.__type-38\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.utf8ToBase64\"},{\"kind\":1024,\"name\":\"asciiToBase64\",\"url\":\"interfaces/Neo3Parser.html#asciiToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#asciiToBase64.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.asciiToBase64\"},{\"kind\":1024,\"name\":\"base64ToUtf8\",\"url\":\"interfaces/Neo3Parser.html#base64ToUtf8\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#base64ToUtf8.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.base64ToUtf8\"},{\"kind\":1024,\"name\":\"accountInputToScripthash\",\"url\":\"interfaces/Neo3Parser.html#accountInputToScripthash\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#accountInputToScripthash.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.accountInputToScripthash\"},{\"kind\":1024,\"name\":\"strToBase64\",\"url\":\"interfaces/Neo3Parser.html#strToBase64\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#strToBase64.__type-34\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.strToBase64\"},{\"kind\":1024,\"name\":\"accountInputToAddress\",\"url\":\"interfaces/Neo3Parser.html#accountInputToAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#accountInputToAddress.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.accountInputToAddress\"},{\"kind\":1024,\"name\":\"reverseHex\",\"url\":\"interfaces/Neo3Parser.html#reverseHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#reverseHex.__type-30\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.reverseHex\"},{\"kind\":1024,\"name\":\"parseRpcResponse\",\"url\":\"interfaces/Neo3Parser.html#parseRpcResponse\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#parseRpcResponse.__type-28\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.parseRpcResponse\"},{\"kind\":1024,\"name\":\"formatRpcArgument\",\"url\":\"interfaces/Neo3Parser.html#formatRpcArgument\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Neo3Parser\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/Neo3Parser.html#formatRpcArgument.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"Neo3Parser.formatRpcArgument\"},{\"kind\":4194304,\"name\":\"AnyConfigArgType\",\"url\":\"types/AnyConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"AnyConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/AnyConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyConfigArgType.__type\"},{\"kind\":1024,\"name\":\"union\",\"url\":\"types/AnyConfigArgType.html#__type.union\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AnyConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"StringConfigArgType\",\"url\":\"types/StringConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StringConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/StringConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/StringConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StringConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"BooleanConfigArgType\",\"url\":\"types/BooleanConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BooleanConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BooleanConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/BooleanConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BooleanConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ByteArrayConfigArgType\",\"url\":\"types/ByteArrayConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ByteArrayConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ByteArrayConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ByteArrayConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ByteArrayConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"PublicKeyConfigArgType\",\"url\":\"types/PublicKeyConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/PublicKeyConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PublicKeyConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/PublicKeyConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/PublicKeyConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PublicKeyConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash160ConfigArgType\",\"url\":\"types/Hash160ConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash160ConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash160ConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash160ConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/Hash160ConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash160ConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"Hash256ConfigArgType\",\"url\":\"types/Hash256ConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/Hash256ConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hash256ConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/Hash256ConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/Hash256ConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hash256ConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"IntegerConfigArgType\",\"url\":\"types/IntegerConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/IntegerConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IntegerConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/IntegerConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IntegerConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ArrayConfigArgType\",\"url\":\"types/ArrayConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ArrayConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ArrayConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/ArrayConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayConfigArgType.__type\"},{\"kind\":1024,\"name\":\"generic\",\"url\":\"types/ArrayConfigArgType.html#__type.generic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ArrayConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"MapConfigArgType\",\"url\":\"types/MapConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/MapConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":1024,\"name\":\"genericKey\",\"url\":\"types/MapConfigArgType.html#__type.genericKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":1024,\"name\":\"genericItem\",\"url\":\"types/MapConfigArgType.html#__type.genericItem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"MapConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"InteropInterfaceConfigArgType\",\"url\":\"types/InteropInterfaceConfigArgType.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"InteropInterfaceConfigArgType\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceConfigArgType.__type\"},{\"kind\":1024,\"name\":\"hint\",\"url\":\"types/InteropInterfaceConfigArgType.html#__type.hint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"InteropInterfaceConfigArgType.__type\"},{\"kind\":4194304,\"name\":\"ParseConfig\",\"url\":\"types/ParseConfig.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":32,\"name\":\"INTERNAL_TYPES\",\"url\":\"variables/INTERNAL_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/INTERNAL_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"INTERNAL_TYPES\"},{\"kind\":1024,\"name\":\"ARRAY\",\"url\":\"variables/INTERNAL_TYPES.html#__type.ARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BYTESTRING\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BYTESTRING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BUFFER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BUFFER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"INTEGER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.INTEGER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"INTEROPINTERFACE\",\"url\":\"variables/INTERNAL_TYPES.html#__type.INTEROPINTERFACE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"BOOLEAN\",\"url\":\"variables/INTERNAL_TYPES.html#__type.BOOLEAN\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"MAP\",\"url\":\"variables/INTERNAL_TYPES.html#__type.MAP\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"NULL\",\"url\":\"variables/INTERNAL_TYPES.html#__type.NULL\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"POINTER\",\"url\":\"variables/INTERNAL_TYPES.html#__type.POINTER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":1024,\"name\":\"STRUCT\",\"url\":\"variables/INTERNAL_TYPES.html#__type.STRUCT\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"INTERNAL_TYPES.__type\"},{\"kind\":32,\"name\":\"ABI_TYPES\",\"url\":\"variables/ABI_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"ABI_TYPES\"},{\"kind\":1024,\"name\":\"ANY\",\"url\":\"variables/ABI_TYPES.html#__type.ANY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.ANY.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.ANY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.ANY.__type-1.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ANY.__type\"},{\"kind\":1024,\"name\":\"SIGNATURE\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.SIGNATURE\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11.name-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.SIGNATURE.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.SIGNATURE.__type-11.internal-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.SIGNATURE.__type\"},{\"kind\":1024,\"name\":\"BOOLEAN\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.BOOLEAN\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BOOLEAN.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.BOOLEAN.__type-3.internal-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BOOLEAN.__type\"},{\"kind\":1024,\"name\":\"INTEGER\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.INTEGER\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEGER.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.INTEGER.__type-7.internal-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEGER.__type\"},{\"kind\":1024,\"name\":\"HASH160\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.HASH160\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH160.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.HASH160.__type-5.internal-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH160.__type\"},{\"kind\":1024,\"name\":\"HASH256\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.HASH256\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH256.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.HASH256.__type-6.internal-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.HASH256.__type\"},{\"kind\":1024,\"name\":\"BYTEARRAY\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.BYTEARRAY.__type-4.internal-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.BYTEARRAY.__type\"},{\"kind\":1024,\"name\":\"PUBLICKEY\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10.name-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.PUBLICKEY.__type-10.internal-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"STRING\",\"url\":\"variables/ABI_TYPES.html#__type.STRING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.STRING\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12.name-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.STRING.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.STRING.__type-12.internal-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.STRING.__type\"},{\"kind\":1024,\"name\":\"ARRAY\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.ARRAY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ARRAY.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.ARRAY.__type-2.internal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.ARRAY.__type\"},{\"kind\":1024,\"name\":\"MAP\",\"url\":\"variables/ABI_TYPES.html#__type.MAP\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.MAP\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9.name-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.MAP.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.MAP.__type-9.internal-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.MAP.__type\"},{\"kind\":1024,\"name\":\"INTEROPINTERFACE\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.INTEROPINTERFACE.__type-8.internal-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.INTEROPINTERFACE.__type\"},{\"kind\":1024,\"name\":\"VOID\",\"url\":\"variables/ABI_TYPES.html#__type.VOID\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ABI_TYPES.__type.VOID\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13.name-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.VOID.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/ABI_TYPES.html#__type.VOID.__type-13.internal-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ABI_TYPES.__type.VOID.__type\"},{\"kind\":32,\"name\":\"HINT_TYPES\",\"url\":\"variables/HINT_TYPES.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"HINT_TYPES\"},{\"kind\":1024,\"name\":\"ADDRESS\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ADDRESS\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.ADDRESS.__type-1.abi.__type-2.internal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ADDRESS.__type.abi.__type\"},{\"kind\":1024,\"name\":\"PUBLICKEY\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.name-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8.name-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.PUBLICKEY.__type-7.abi-3.__type-8.internal-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.PUBLICKEY.__type.abi.__type\"},{\"kind\":1024,\"name\":\"SCRIPTHASH\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.name-9\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10.name-8\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASH.__type-9.abi-4.__type-10.internal-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"SCRIPTHASHLITTLEENDING\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.name-11\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12.name-10\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.SCRIPTHASHLITTLEENDING.__type-11.abi-5.__type-12.internal-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.SCRIPTHASHLITTLEENDING.__type.abi.__type\"},{\"kind\":1024,\"name\":\"BLOCKHASH\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.name-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.BLOCKHASH.__type-3.abi-1.__type-4.internal-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.BLOCKHASH.__type.abi.__type\"},{\"kind\":1024,\"name\":\"TRANSACTIONID\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.name-15\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16.name-14\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.TRANSACTIONID.__type-15.abi-7.__type-16.internal-7\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.TRANSACTIONID.__type.abi.__type\"},{\"kind\":1024,\"name\":\"STORAGECONTEXT\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.name-13\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14.name-12\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.STORAGECONTEXT.__type-13.abi-6.__type-14.internal-6\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.STORAGECONTEXT.__type.abi.__type\"},{\"kind\":1024,\"name\":\"ITERATOR\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ITERATOR\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.name-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type\"},{\"kind\":1024,\"name\":\"abi\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6.name-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi.__type\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"variables/HINT_TYPES.html#__type.ITERATOR.__type-5.abi-2.__type-6.internal-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HINT_TYPES.__type.ITERATOR.__type.abi.__type\"},{\"kind\":8,\"name\":\"SignMessageVersion\",\"url\":\"enums/SignMessageVersion.html\",\"classes\":\"tsd-kind-enum\"},{\"kind\":16,\"name\":\"CLASSIC\",\"url\":\"enums/SignMessageVersion.html#CLASSIC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":16,\"name\":\"DEFAULT\",\"url\":\"enums/SignMessageVersion.html#DEFAULT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":16,\"name\":\"WITHOUT_SALT\",\"url\":\"enums/SignMessageVersion.html#WITHOUT_SALT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SignMessageVersion\"},{\"kind\":4194304,\"name\":\"SignMessagePayload\",\"url\":\"types/SignMessagePayload.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SignMessagePayload.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SignMessagePayload\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/SignMessagePayload.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignMessagePayload.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/SignMessagePayload.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignMessagePayload.__type\"},{\"kind\":4194304,\"name\":\"SignedMessage\",\"url\":\"types/SignedMessage.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SignedMessage.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SignedMessage\"},{\"kind\":1024,\"name\":\"publicKey\",\"url\":\"types/SignedMessage.html#__type.publicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"types/SignedMessage.html#__type.data\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"salt\",\"url\":\"types/SignedMessage.html#__type.salt\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":1024,\"name\":\"messageHex\",\"url\":\"types/SignedMessage.html#__type.messageHex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignedMessage.__type\"},{\"kind\":256,\"name\":\"EncryptedPayload\",\"url\":\"interfaces/EncryptedPayload.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"randomVector\",\"url\":\"interfaces/EncryptedPayload.html#randomVector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"cipherText\",\"url\":\"interfaces/EncryptedPayload.html#cipherText\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"dataTag\",\"url\":\"interfaces/EncryptedPayload.html#dataTag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":1024,\"name\":\"ephemPublicKey\",\"url\":\"interfaces/EncryptedPayload.html#ephemPublicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"EncryptedPayload\"},{\"kind\":256,\"name\":\"DecryptFromArrayResult\",\"url\":\"interfaces/DecryptFromArrayResult.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"interfaces/DecryptFromArrayResult.html#message\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DecryptFromArrayResult\"},{\"kind\":1024,\"name\":\"keyIndex\",\"url\":\"interfaces/DecryptFromArrayResult.html#keyIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"DecryptFromArrayResult\"},{\"kind\":256,\"name\":\"Neo3Signer\",\"url\":\"interfaces/Neo3Signer.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":2048,\"name\":\"signMessage\",\"url\":\"interfaces/Neo3Signer.html#signMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"verifyMessage\",\"url\":\"interfaces/Neo3Signer.html#verifyMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"getAccountAddress\",\"url\":\"interfaces/Neo3Signer.html#getAccountAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"encrypt\",\"url\":\"interfaces/Neo3Signer.html#encrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"decrypt\",\"url\":\"interfaces/Neo3Signer.html#decrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":2048,\"name\":\"decryptFromArray\",\"url\":\"interfaces/Neo3Signer.html#decryptFromArray\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"Neo3Signer\"},{\"kind\":32,\"name\":\"TypeChecker\",\"url\":\"variables/TypeChecker.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/TypeChecker.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"TypeChecker\"},{\"kind\":2048,\"name\":\"isStackTypeAny\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeAny\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeBoolean\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeBoolean\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeInteger\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeInteger\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeArray\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeArray\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeMap\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeMap\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeByteString\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeByteString\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeInteropInterface\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeInteropInterface\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypePointer\",\"url\":\"variables/TypeChecker.html#__type.isStackTypePointer\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeBuffer\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeBuffer\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isStackTypeStruct\",\"url\":\"variables/TypeChecker.html#__type.isStackTypeStruct\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"},{\"kind\":2048,\"name\":\"isRpcResponseStackItem\",\"url\":\"variables/TypeChecker.html#__type.isRpcResponseStackItem\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"TypeChecker.__type\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,56.033]],[\"comment/0\",[]],[\"name/1\",[1,50.925]],[\"comment/1\",[]],[\"name/2\",[2,50.925]],[\"comment/2\",[]],[\"name/3\",[3,56.033]],[\"comment/3\",[]],[\"name/4\",[4,50.925]],[\"comment/4\",[]],[\"name/5\",[1,50.925]],[\"comment/5\",[]],[\"name/6\",[2,50.925]],[\"comment/6\",[]],[\"name/7\",[5,56.033]],[\"comment/7\",[]],[\"name/8\",[6,15.035]],[\"comment/8\",[]],[\"name/9\",[7,56.033]],[\"comment/9\",[]],[\"name/10\",[8,23.582]],[\"comment/10\",[]],[\"name/11\",[9,31.466]],[\"comment/11\",[]],[\"name/12\",[10,56.033]],[\"comment/12\",[]],[\"name/13\",[11,56.033]],[\"comment/13\",[]],[\"name/14\",[12,56.033]],[\"comment/14\",[]],[\"name/15\",[13,56.033]],[\"comment/15\",[]],[\"name/16\",[14,56.033]],[\"comment/16\",[]],[\"name/17\",[15,56.033]],[\"comment/17\",[]],[\"name/18\",[16,56.033]],[\"comment/18\",[]],[\"name/19\",[17,56.033]],[\"comment/19\",[]],[\"name/20\",[18,56.033]],[\"comment/20\",[]],[\"name/21\",[8,23.582]],[\"comment/21\",[]],[\"name/22\",[19,50.925]],[\"comment/22\",[]],[\"name/23\",[20,56.033]],[\"comment/23\",[]],[\"name/24\",[8,23.582]],[\"comment/24\",[]],[\"name/25\",[19,50.925]],[\"comment/25\",[]],[\"name/26\",[21,56.033]],[\"comment/26\",[]],[\"name/27\",[8,23.582]],[\"comment/27\",[]],[\"name/28\",[22,50.925]],[\"comment/28\",[]],[\"name/29\",[23,56.033]],[\"comment/29\",[]],[\"name/30\",[8,23.582]],[\"comment/30\",[]],[\"name/31\",[22,50.925]],[\"comment/31\",[]],[\"name/32\",[24,56.033]],[\"comment/32\",[]],[\"name/33\",[8,23.582]],[\"comment/33\",[]],[\"name/34\",[25,50.925]],[\"comment/34\",[]],[\"name/35\",[26,56.033]],[\"comment/35\",[]],[\"name/36\",[8,23.582]],[\"comment/36\",[]],[\"name/37\",[27,50.925]],[\"comment/37\",[]],[\"name/38\",[28,56.033]],[\"comment/38\",[]],[\"name/39\",[8,23.582]],[\"comment/39\",[]],[\"name/40\",[29,56.033]],[\"comment/40\",[]],[\"name/41\",[8,23.582]],[\"comment/41\",[]],[\"name/42\",[25,50.925]],[\"comment/42\",[]],[\"name/43\",[30,56.033]],[\"comment/43\",[]],[\"name/44\",[8,23.582]],[\"comment/44\",[]],[\"name/45\",[27,50.925]],[\"comment/45\",[]],[\"name/46\",[31,56.033]],[\"comment/46\",[]],[\"name/47\",[32,56.033]],[\"comment/47\",[]],[\"name/48\",[33,56.033]],[\"comment/48\",[]],[\"name/49\",[34,56.033]],[\"comment/49\",[]],[\"name/50\",[35,56.033]],[\"comment/50\",[]],[\"name/51\",[6,15.035]],[\"comment/51\",[]],[\"name/52\",[36,56.033]],[\"comment/52\",[]],[\"name/53\",[37,56.033]],[\"comment/53\",[]],[\"name/54\",[38,56.033]],[\"comment/54\",[]],[\"name/55\",[39,56.033]],[\"comment/55\",[]],[\"name/56\",[40,56.033]],[\"comment/56\",[]],[\"name/57\",[41,56.033]],[\"comment/57\",[]],[\"name/58\",[6,15.035]],[\"comment/58\",[]],[\"name/59\",[8,23.582]],[\"comment/59\",[]],[\"name/60\",[9,31.466]],[\"comment/60\",[]],[\"name/61\",[42,56.033]],[\"comment/61\",[]],[\"name/62\",[6,15.035]],[\"comment/62\",[]],[\"name/63\",[8,23.582]],[\"comment/63\",[]],[\"name/64\",[9,31.466]],[\"comment/64\",[]],[\"name/65\",[43,56.033]],[\"comment/65\",[]],[\"name/66\",[6,15.035]],[\"comment/66\",[]],[\"name/67\",[8,23.582]],[\"comment/67\",[]],[\"name/68\",[9,31.466]],[\"comment/68\",[]],[\"name/69\",[44,56.033]],[\"comment/69\",[]],[\"name/70\",[6,15.035]],[\"comment/70\",[]],[\"name/71\",[8,23.582]],[\"comment/71\",[]],[\"name/72\",[9,31.466]],[\"comment/72\",[]],[\"name/73\",[45,56.033]],[\"comment/73\",[]],[\"name/74\",[6,15.035]],[\"comment/74\",[]],[\"name/75\",[8,23.582]],[\"comment/75\",[]],[\"name/76\",[9,31.466]],[\"comment/76\",[]],[\"name/77\",[46,56.033]],[\"comment/77\",[]],[\"name/78\",[6,15.035]],[\"comment/78\",[]],[\"name/79\",[8,23.582]],[\"comment/79\",[]],[\"name/80\",[9,31.466]],[\"comment/80\",[]],[\"name/81\",[47,56.033]],[\"comment/81\",[]],[\"name/82\",[6,15.035]],[\"comment/82\",[]],[\"name/83\",[8,23.582]],[\"comment/83\",[]],[\"name/84\",[9,31.466]],[\"comment/84\",[]],[\"name/85\",[48,56.033]],[\"comment/85\",[]],[\"name/86\",[6,15.035]],[\"comment/86\",[]],[\"name/87\",[8,23.582]],[\"comment/87\",[]],[\"name/88\",[9,31.466]],[\"comment/88\",[]],[\"name/89\",[49,56.033]],[\"comment/89\",[]],[\"name/90\",[6,15.035]],[\"comment/90\",[]],[\"name/91\",[8,23.582]],[\"comment/91\",[]],[\"name/92\",[9,31.466]],[\"comment/92\",[]],[\"name/93\",[50,56.033]],[\"comment/93\",[]],[\"name/94\",[6,15.035]],[\"comment/94\",[]],[\"name/95\",[8,23.582]],[\"comment/95\",[]],[\"name/96\",[9,31.466]],[\"comment/96\",[]],[\"name/97\",[51,56.033]],[\"comment/97\",[]],[\"name/98\",[52,56.033]],[\"comment/98\",[]],[\"name/99\",[6,15.035]],[\"comment/99\",[]],[\"name/100\",[53,50.925]],[\"comment/100\",[]],[\"name/101\",[54,56.033]],[\"comment/101\",[]],[\"name/102\",[55,56.033]],[\"comment/102\",[]],[\"name/103\",[56,56.033]],[\"comment/103\",[]],[\"name/104\",[57,56.033]],[\"comment/104\",[]],[\"name/105\",[6,15.035]],[\"comment/105\",[]],[\"name/106\",[58,56.033]],[\"comment/106\",[]],[\"name/107\",[59,56.033]],[\"comment/107\",[]],[\"name/108\",[60,56.033]],[\"comment/108\",[]],[\"name/109\",[61,56.033]],[\"comment/109\",[]],[\"name/110\",[62,56.033]],[\"comment/110\",[]],[\"name/111\",[63,56.033]],[\"comment/111\",[]],[\"name/112\",[64,56.033]],[\"comment/112\",[]],[\"name/113\",[6,15.035]],[\"comment/113\",[]],[\"name/114\",[8,23.582]],[\"comment/114\",[]],[\"name/115\",[9,31.466]],[\"comment/115\",[]],[\"name/116\",[65,56.033]],[\"comment/116\",[]],[\"name/117\",[6,15.035]],[\"comment/117\",[]],[\"name/118\",[8,23.582]],[\"comment/118\",[]],[\"name/119\",[9,31.466]],[\"comment/119\",[]],[\"name/120\",[66,56.033]],[\"comment/120\",[]],[\"name/121\",[6,15.035]],[\"comment/121\",[]],[\"name/122\",[8,23.582]],[\"comment/122\",[]],[\"name/123\",[9,31.466]],[\"comment/123\",[]],[\"name/124\",[67,56.033]],[\"comment/124\",[]],[\"name/125\",[6,15.035]],[\"comment/125\",[]],[\"name/126\",[8,23.582]],[\"comment/126\",[]],[\"name/127\",[68,56.033]],[\"comment/127\",[]],[\"name/128\",[69,56.033]],[\"comment/128\",[]],[\"name/129\",[70,56.033]],[\"comment/129\",[]],[\"name/130\",[6,15.035]],[\"comment/130\",[]],[\"name/131\",[8,23.582]],[\"comment/131\",[]],[\"name/132\",[9,31.466]],[\"comment/132\",[]],[\"name/133\",[71,56.033]],[\"comment/133\",[]],[\"name/134\",[6,15.035]],[\"comment/134\",[]],[\"name/135\",[8,23.582]],[\"comment/135\",[]],[\"name/136\",[9,31.466]],[\"comment/136\",[]],[\"name/137\",[72,56.033]],[\"comment/137\",[]],[\"name/138\",[6,15.035]],[\"comment/138\",[]],[\"name/139\",[8,23.582]],[\"comment/139\",[]],[\"name/140\",[9,31.466]],[\"comment/140\",[]],[\"name/141\",[73,56.033]],[\"comment/141\",[]],[\"name/142\",[74,56.033]],[\"comment/142\",[]],[\"name/143\",[75,56.033]],[\"comment/143\",[]],[\"name/144\",[4,50.925]],[\"comment/144\",[]],[\"name/145\",[76,56.033]],[\"comment/145\",[]],[\"name/146\",[77,56.033]],[\"comment/146\",[]],[\"name/147\",[78,56.033]],[\"comment/147\",[]],[\"name/148\",[79,56.033]],[\"comment/148\",[]],[\"name/149\",[80,56.033]],[\"comment/149\",[]],[\"name/150\",[81,56.033]],[\"comment/150\",[]],[\"name/151\",[82,56.033]],[\"comment/151\",[]],[\"name/152\",[6,15.035]],[\"comment/152\",[]],[\"name/153\",[83,56.033]],[\"comment/153\",[]],[\"name/154\",[6,15.035]],[\"comment/154\",[]],[\"name/155\",[84,56.033]],[\"comment/155\",[]],[\"name/156\",[6,15.035]],[\"comment/156\",[]],[\"name/157\",[85,56.033]],[\"comment/157\",[]],[\"name/158\",[86,56.033]],[\"comment/158\",[]],[\"name/159\",[6,15.035]],[\"comment/159\",[]],[\"name/160\",[87,56.033]],[\"comment/160\",[]],[\"name/161\",[6,15.035]],[\"comment/161\",[]],[\"name/162\",[88,56.033]],[\"comment/162\",[]],[\"name/163\",[6,15.035]],[\"comment/163\",[]],[\"name/164\",[89,56.033]],[\"comment/164\",[]],[\"name/165\",[6,15.035]],[\"comment/165\",[]],[\"name/166\",[90,56.033]],[\"comment/166\",[]],[\"name/167\",[6,15.035]],[\"comment/167\",[]],[\"name/168\",[91,56.033]],[\"comment/168\",[]],[\"name/169\",[6,15.035]],[\"comment/169\",[]],[\"name/170\",[92,56.033]],[\"comment/170\",[]],[\"name/171\",[6,15.035]],[\"comment/171\",[]],[\"name/172\",[93,56.033]],[\"comment/172\",[]],[\"name/173\",[6,15.035]],[\"comment/173\",[]],[\"name/174\",[94,56.033]],[\"comment/174\",[]],[\"name/175\",[6,15.035]],[\"comment/175\",[]],[\"name/176\",[95,56.033]],[\"comment/176\",[]],[\"name/177\",[6,15.035]],[\"comment/177\",[]],[\"name/178\",[96,56.033]],[\"comment/178\",[]],[\"name/179\",[6,15.035]],[\"comment/179\",[]],[\"name/180\",[97,56.033]],[\"comment/180\",[]],[\"name/181\",[6,15.035]],[\"comment/181\",[]],[\"name/182\",[98,56.033]],[\"comment/182\",[]],[\"name/183\",[6,15.035]],[\"comment/183\",[]],[\"name/184\",[99,56.033]],[\"comment/184\",[]],[\"name/185\",[6,15.035]],[\"comment/185\",[]],[\"name/186\",[100,56.033]],[\"comment/186\",[]],[\"name/187\",[6,15.035]],[\"comment/187\",[]],[\"name/188\",[101,56.033]],[\"comment/188\",[]],[\"name/189\",[6,15.035]],[\"comment/189\",[]],[\"name/190\",[102,56.033]],[\"comment/190\",[]],[\"name/191\",[6,15.035]],[\"comment/191\",[]],[\"name/192\",[103,56.033]],[\"comment/192\",[]],[\"name/193\",[6,15.035]],[\"comment/193\",[]],[\"name/194\",[104,56.033]],[\"comment/194\",[]],[\"name/195\",[6,15.035]],[\"comment/195\",[]],[\"name/196\",[105,56.033]],[\"comment/196\",[]],[\"name/197\",[6,15.035]],[\"comment/197\",[]],[\"name/198\",[106,56.033]],[\"comment/198\",[]],[\"name/199\",[6,15.035]],[\"comment/199\",[]],[\"name/200\",[8,23.582]],[\"comment/200\",[]],[\"name/201\",[107,56.033]],[\"comment/201\",[]],[\"name/202\",[108,56.033]],[\"comment/202\",[]],[\"name/203\",[6,15.035]],[\"comment/203\",[]],[\"name/204\",[8,23.582]],[\"comment/204\",[]],[\"name/205\",[109,43.041]],[\"comment/205\",[]],[\"name/206\",[110,56.033]],[\"comment/206\",[]],[\"name/207\",[6,15.035]],[\"comment/207\",[]],[\"name/208\",[8,23.582]],[\"comment/208\",[]],[\"name/209\",[111,56.033]],[\"comment/209\",[]],[\"name/210\",[6,15.035]],[\"comment/210\",[]],[\"name/211\",[8,23.582]],[\"comment/211\",[]],[\"name/212\",[112,56.033]],[\"comment/212\",[]],[\"name/213\",[6,15.035]],[\"comment/213\",[]],[\"name/214\",[8,23.582]],[\"comment/214\",[]],[\"name/215\",[109,43.041]],[\"comment/215\",[]],[\"name/216\",[113,56.033]],[\"comment/216\",[]],[\"name/217\",[6,15.035]],[\"comment/217\",[]],[\"name/218\",[8,23.582]],[\"comment/218\",[]],[\"name/219\",[109,43.041]],[\"comment/219\",[]],[\"name/220\",[114,56.033]],[\"comment/220\",[]],[\"name/221\",[6,15.035]],[\"comment/221\",[]],[\"name/222\",[8,23.582]],[\"comment/222\",[]],[\"name/223\",[109,43.041]],[\"comment/223\",[]],[\"name/224\",[115,56.033]],[\"comment/224\",[]],[\"name/225\",[6,15.035]],[\"comment/225\",[]],[\"name/226\",[8,23.582]],[\"comment/226\",[]],[\"name/227\",[116,56.033]],[\"comment/227\",[]],[\"name/228\",[6,15.035]],[\"comment/228\",[]],[\"name/229\",[8,23.582]],[\"comment/229\",[]],[\"name/230\",[117,56.033]],[\"comment/230\",[]],[\"name/231\",[118,56.033]],[\"comment/231\",[]],[\"name/232\",[6,15.035]],[\"comment/232\",[]],[\"name/233\",[8,23.582]],[\"comment/233\",[]],[\"name/234\",[119,56.033]],[\"comment/234\",[]],[\"name/235\",[120,56.033]],[\"comment/235\",[]],[\"name/236\",[121,56.033]],[\"comment/236\",[]],[\"name/237\",[6,15.035]],[\"comment/237\",[]],[\"name/238\",[8,23.582]],[\"comment/238\",[]],[\"name/239\",[109,43.041]],[\"comment/239\",[]],[\"name/240\",[122,56.033]],[\"comment/240\",[]],[\"name/241\",[123,56.033]],[\"comment/241\",[]],[\"name/242\",[6,15.035]],[\"comment/242\",[]],[\"name/243\",[124,50.925]],[\"comment/243\",[]],[\"name/244\",[125,56.033]],[\"comment/244\",[]],[\"name/245\",[126,56.033]],[\"comment/245\",[]],[\"name/246\",[127,50.925]],[\"comment/246\",[]],[\"name/247\",[128,50.925]],[\"comment/247\",[]],[\"name/248\",[129,50.925]],[\"comment/248\",[]],[\"name/249\",[130,50.925]],[\"comment/249\",[]],[\"name/250\",[131,56.033]],[\"comment/250\",[]],[\"name/251\",[132,56.033]],[\"comment/251\",[]],[\"name/252\",[133,56.033]],[\"comment/252\",[]],[\"name/253\",[134,56.033]],[\"comment/253\",[]],[\"name/254\",[6,15.035]],[\"comment/254\",[]],[\"name/255\",[135,56.033]],[\"comment/255\",[]],[\"name/256\",[6,15.035]],[\"comment/256\",[]],[\"name/257\",[136,26.244]],[\"comment/257\",[]],[\"name/258\",[137,56.033]],[\"comment/258\",[]],[\"name/259\",[6,15.035]],[\"comment/259\",[]],[\"name/260\",[136,26.244]],[\"comment/260\",[]],[\"name/261\",[138,29.884]],[\"comment/261\",[]],[\"name/262\",[129,50.925]],[\"comment/262\",[]],[\"name/263\",[6,15.035]],[\"comment/263\",[]],[\"name/264\",[136,26.244]],[\"comment/264\",[]],[\"name/265\",[138,29.884]],[\"comment/265\",[]],[\"name/266\",[127,50.925]],[\"comment/266\",[]],[\"name/267\",[6,15.035]],[\"comment/267\",[]],[\"name/268\",[136,26.244]],[\"comment/268\",[]],[\"name/269\",[138,29.884]],[\"comment/269\",[]],[\"name/270\",[139,56.033]],[\"comment/270\",[]],[\"name/271\",[6,15.035]],[\"comment/271\",[]],[\"name/272\",[136,26.244]],[\"comment/272\",[]],[\"name/273\",[138,29.884]],[\"comment/273\",[]],[\"name/274\",[140,56.033]],[\"comment/274\",[]],[\"name/275\",[6,15.035]],[\"comment/275\",[]],[\"name/276\",[136,26.244]],[\"comment/276\",[]],[\"name/277\",[138,29.884]],[\"comment/277\",[]],[\"name/278\",[141,56.033]],[\"comment/278\",[]],[\"name/279\",[6,15.035]],[\"comment/279\",[]],[\"name/280\",[136,26.244]],[\"comment/280\",[]],[\"name/281\",[138,29.884]],[\"comment/281\",[]],[\"name/282\",[142,47.561]],[\"comment/282\",[]],[\"name/283\",[6,15.035]],[\"comment/283\",[]],[\"name/284\",[136,26.244]],[\"comment/284\",[]],[\"name/285\",[138,29.884]],[\"comment/285\",[]],[\"name/286\",[143,56.033]],[\"comment/286\",[]],[\"name/287\",[6,15.035]],[\"comment/287\",[]],[\"name/288\",[136,26.244]],[\"comment/288\",[]],[\"name/289\",[138,29.884]],[\"comment/289\",[]],[\"name/290\",[124,50.925]],[\"comment/290\",[]],[\"name/291\",[6,15.035]],[\"comment/291\",[]],[\"name/292\",[136,26.244]],[\"comment/292\",[]],[\"name/293\",[138,29.884]],[\"comment/293\",[]],[\"name/294\",[130,50.925]],[\"comment/294\",[]],[\"name/295\",[6,15.035]],[\"comment/295\",[]],[\"name/296\",[136,26.244]],[\"comment/296\",[]],[\"name/297\",[138,29.884]],[\"comment/297\",[]],[\"name/298\",[128,50.925]],[\"comment/298\",[]],[\"name/299\",[6,15.035]],[\"comment/299\",[]],[\"name/300\",[136,26.244]],[\"comment/300\",[]],[\"name/301\",[138,29.884]],[\"comment/301\",[]],[\"name/302\",[144,56.033]],[\"comment/302\",[]],[\"name/303\",[6,15.035]],[\"comment/303\",[]],[\"name/304\",[136,26.244]],[\"comment/304\",[]],[\"name/305\",[138,29.884]],[\"comment/305\",[]],[\"name/306\",[145,56.033]],[\"comment/306\",[]],[\"name/307\",[6,15.035]],[\"comment/307\",[]],[\"name/308\",[146,56.033]],[\"comment/308\",[]],[\"name/309\",[6,15.035]],[\"comment/309\",[]],[\"name/310\",[136,26.244]],[\"comment/310\",[]],[\"name/311\",[147,38.687]],[\"comment/311\",[]],[\"name/312\",[6,15.035]],[\"comment/312\",[]],[\"name/313\",[136,26.244]],[\"comment/313\",[]],[\"name/314\",[138,29.884]],[\"comment/314\",[]],[\"name/315\",[142,47.561]],[\"comment/315\",[]],[\"name/316\",[6,15.035]],[\"comment/316\",[]],[\"name/317\",[136,26.244]],[\"comment/317\",[]],[\"name/318\",[147,38.687]],[\"comment/318\",[]],[\"name/319\",[6,15.035]],[\"comment/319\",[]],[\"name/320\",[136,26.244]],[\"comment/320\",[]],[\"name/321\",[138,29.884]],[\"comment/321\",[]],[\"name/322\",[53,50.925]],[\"comment/322\",[]],[\"name/323\",[6,15.035]],[\"comment/323\",[]],[\"name/324\",[136,26.244]],[\"comment/324\",[]],[\"name/325\",[147,38.687]],[\"comment/325\",[]],[\"name/326\",[6,15.035]],[\"comment/326\",[]],[\"name/327\",[136,26.244]],[\"comment/327\",[]],[\"name/328\",[138,29.884]],[\"comment/328\",[]],[\"name/329\",[148,56.033]],[\"comment/329\",[]],[\"name/330\",[6,15.035]],[\"comment/330\",[]],[\"name/331\",[136,26.244]],[\"comment/331\",[]],[\"name/332\",[147,38.687]],[\"comment/332\",[]],[\"name/333\",[6,15.035]],[\"comment/333\",[]],[\"name/334\",[136,26.244]],[\"comment/334\",[]],[\"name/335\",[138,29.884]],[\"comment/335\",[]],[\"name/336\",[149,56.033]],[\"comment/336\",[]],[\"name/337\",[6,15.035]],[\"comment/337\",[]],[\"name/338\",[136,26.244]],[\"comment/338\",[]],[\"name/339\",[147,38.687]],[\"comment/339\",[]],[\"name/340\",[6,15.035]],[\"comment/340\",[]],[\"name/341\",[136,26.244]],[\"comment/341\",[]],[\"name/342\",[138,29.884]],[\"comment/342\",[]],[\"name/343\",[150,56.033]],[\"comment/343\",[]],[\"name/344\",[6,15.035]],[\"comment/344\",[]],[\"name/345\",[136,26.244]],[\"comment/345\",[]],[\"name/346\",[147,38.687]],[\"comment/346\",[]],[\"name/347\",[6,15.035]],[\"comment/347\",[]],[\"name/348\",[136,26.244]],[\"comment/348\",[]],[\"name/349\",[138,29.884]],[\"comment/349\",[]],[\"name/350\",[151,56.033]],[\"comment/350\",[]],[\"name/351\",[6,15.035]],[\"comment/351\",[]],[\"name/352\",[136,26.244]],[\"comment/352\",[]],[\"name/353\",[147,38.687]],[\"comment/353\",[]],[\"name/354\",[6,15.035]],[\"comment/354\",[]],[\"name/355\",[136,26.244]],[\"comment/355\",[]],[\"name/356\",[138,29.884]],[\"comment/356\",[]],[\"name/357\",[152,56.033]],[\"comment/357\",[]],[\"name/358\",[6,15.035]],[\"comment/358\",[]],[\"name/359\",[136,26.244]],[\"comment/359\",[]],[\"name/360\",[147,38.687]],[\"comment/360\",[]],[\"name/361\",[6,15.035]],[\"comment/361\",[]],[\"name/362\",[136,26.244]],[\"comment/362\",[]],[\"name/363\",[138,29.884]],[\"comment/363\",[]],[\"name/364\",[153,56.033]],[\"comment/364\",[]],[\"name/365\",[154,56.033]],[\"comment/365\",[]],[\"name/366\",[155,56.033]],[\"comment/366\",[]],[\"name/367\",[156,56.033]],[\"comment/367\",[]],[\"name/368\",[157,56.033]],[\"comment/368\",[]],[\"name/369\",[6,15.035]],[\"comment/369\",[]],[\"name/370\",[158,50.925]],[\"comment/370\",[]],[\"name/371\",[159,56.033]],[\"comment/371\",[]],[\"name/372\",[160,56.033]],[\"comment/372\",[]],[\"name/373\",[6,15.035]],[\"comment/373\",[]],[\"name/374\",[142,47.561]],[\"comment/374\",[]],[\"name/375\",[161,56.033]],[\"comment/375\",[]],[\"name/376\",[162,56.033]],[\"comment/376\",[]],[\"name/377\",[163,56.033]],[\"comment/377\",[]],[\"name/378\",[164,56.033]],[\"comment/378\",[]],[\"name/379\",[165,56.033]],[\"comment/379\",[]],[\"name/380\",[166,56.033]],[\"comment/380\",[]],[\"name/381\",[167,56.033]],[\"comment/381\",[]],[\"name/382\",[168,56.033]],[\"comment/382\",[]],[\"name/383\",[169,56.033]],[\"comment/383\",[]],[\"name/384\",[158,50.925]],[\"comment/384\",[]],[\"name/385\",[170,56.033]],[\"comment/385\",[]],[\"name/386\",[171,56.033]],[\"comment/386\",[]],[\"name/387\",[172,56.033]],[\"comment/387\",[]],[\"name/388\",[173,56.033]],[\"comment/388\",[]],[\"name/389\",[174,56.033]],[\"comment/389\",[]],[\"name/390\",[175,56.033]],[\"comment/390\",[]],[\"name/391\",[176,56.033]],[\"comment/391\",[]],[\"name/392\",[177,56.033]],[\"comment/392\",[]],[\"name/393\",[178,56.033]],[\"comment/393\",[]],[\"name/394\",[6,15.035]],[\"comment/394\",[]],[\"name/395\",[179,56.033]],[\"comment/395\",[]],[\"name/396\",[180,56.033]],[\"comment/396\",[]],[\"name/397\",[181,56.033]],[\"comment/397\",[]],[\"name/398\",[182,56.033]],[\"comment/398\",[]],[\"name/399\",[183,56.033]],[\"comment/399\",[]],[\"name/400\",[184,56.033]],[\"comment/400\",[]],[\"name/401\",[185,56.033]],[\"comment/401\",[]],[\"name/402\",[186,56.033]],[\"comment/402\",[]],[\"name/403\",[187,56.033]],[\"comment/403\",[]],[\"name/404\",[188,56.033]],[\"comment/404\",[]],[\"name/405\",[189,56.033]],[\"comment/405\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"8\":{},\"51\":{},\"58\":{},\"62\":{},\"66\":{},\"70\":{},\"74\":{},\"78\":{},\"82\":{},\"86\":{},\"90\":{},\"94\":{},\"99\":{},\"105\":{},\"113\":{},\"117\":{},\"121\":{},\"125\":{},\"130\":{},\"134\":{},\"138\":{},\"152\":{},\"154\":{},\"156\":{},\"159\":{},\"161\":{},\"163\":{},\"165\":{},\"167\":{},\"169\":{},\"171\":{},\"173\":{},\"175\":{},\"177\":{},\"179\":{},\"181\":{},\"183\":{},\"185\":{},\"187\":{},\"189\":{},\"191\":{},\"193\":{},\"195\":{},\"197\":{},\"199\":{},\"203\":{},\"207\":{},\"210\":{},\"213\":{},\"217\":{},\"221\":{},\"225\":{},\"228\":{},\"232\":{},\"237\":{},\"242\":{},\"254\":{},\"256\":{},\"259\":{},\"263\":{},\"267\":{},\"271\":{},\"275\":{},\"279\":{},\"283\":{},\"287\":{},\"291\":{},\"295\":{},\"299\":{},\"303\":{},\"307\":{},\"309\":{},\"312\":{},\"316\":{},\"319\":{},\"323\":{},\"326\":{},\"330\":{},\"333\":{},\"337\":{},\"340\":{},\"344\":{},\"347\":{},\"351\":{},\"354\":{},\"358\":{},\"361\":{},\"369\":{},\"373\":{},\"394\":{}},\"comment\":{}}],[\"abi\",{\"_index\":147,\"name\":{\"311\":{},\"318\":{},\"325\":{},\"332\":{},\"339\":{},\"346\":{},\"353\":{},\"360\":{}},\"comment\":{}}],[\"abi_types\",{\"_index\":134,\"name\":{\"253\":{}},\"comment\":{}}],[\"abortonfail\",{\"_index\":56,\"name\":{\"103\":{}},\"comment\":{}}],[\"abtohex\",{\"_index\":89,\"name\":{\"164\":{}},\"comment\":{}}],[\"abtostr\",{\"_index\":86,\"name\":{\"158\":{}},\"comment\":{}}],[\"account\",{\"_index\":37,\"name\":{\"53\":{}},\"comment\":{}}],[\"accountinputtoaddress\",{\"_index\":102,\"name\":{\"190\":{}},\"comment\":{}}],[\"accountinputtoscripthash\",{\"_index\":100,\"name\":{\"186\":{}},\"comment\":{}}],[\"action\",{\"_index\":33,\"name\":{\"48\":{}},\"comment\":{}}],[\"addeventlistener\",{\"_index\":14,\"name\":{\"16\":{}},\"comment\":{}}],[\"address\",{\"_index\":146,\"name\":{\"308\":{}},\"comment\":{}}],[\"allowedcontracts\",{\"_index\":38,\"name\":{\"54\":{}},\"comment\":{}}],[\"allowedgroups\",{\"_index\":39,\"name\":{\"55\":{}},\"comment\":{}}],[\"andwitnesscondition\",{\"_index\":21,\"name\":{\"26\":{}},\"comment\":{}}],[\"any\",{\"_index\":135,\"name\":{\"255\":{}},\"comment\":{}}],[\"anyargtype\",{\"_index\":41,\"name\":{\"57\":{}},\"comment\":{}}],[\"anyconfigargtype\",{\"_index\":106,\"name\":{\"198\":{}},\"comment\":{}}],[\"arg\",{\"_index\":51,\"name\":{\"97\":{}},\"comment\":{}}],[\"args\",{\"_index\":55,\"name\":{\"102\":{}},\"comment\":{}}],[\"array\",{\"_index\":124,\"name\":{\"243\":{},\"290\":{}},\"comment\":{}}],[\"arrayargtype\",{\"_index\":48,\"name\":{\"85\":{}},\"comment\":{}}],[\"arrayconfigargtype\",{\"_index\":116,\"name\":{\"227\":{}},\"comment\":{}}],[\"arrayresponseargtype\",{\"_index\":64,\"name\":{\"112\":{}},\"comment\":{}}],[\"asciitobase64\",{\"_index\":98,\"name\":{\"182\":{}},\"comment\":{}}],[\"base64tohex\",{\"_index\":96,\"name\":{\"178\":{}},\"comment\":{}}],[\"base64toutf8\",{\"_index\":99,\"name\":{\"184\":{}},\"comment\":{}}],[\"blockhash\",{\"_index\":149,\"name\":{\"336\":{}},\"comment\":{}}],[\"boolean\",{\"_index\":129,\"name\":{\"248\":{},\"262\":{}},\"comment\":{}}],[\"booleanargtype\",{\"_index\":43,\"name\":{\"65\":{}},\"comment\":{}}],[\"booleanconfigargtype\",{\"_index\":110,\"name\":{\"206\":{}},\"comment\":{}}],[\"booleanwitnesscondition\",{\"_index\":18,\"name\":{\"20\":{}},\"comment\":{}}],[\"buffer\",{\"_index\":126,\"name\":{\"245\":{}},\"comment\":{}}],[\"bufferargtype\",{\"_index\":71,\"name\":{\"133\":{}},\"comment\":{}}],[\"bytearray\",{\"_index\":141,\"name\":{\"278\":{}},\"comment\":{}}],[\"bytearrayargtype\",{\"_index\":50,\"name\":{\"93\":{}},\"comment\":{}}],[\"bytearrayconfigargtype\",{\"_index\":111,\"name\":{\"209\":{}},\"comment\":{}}],[\"bytestring\",{\"_index\":125,\"name\":{\"244\":{}},\"comment\":{}}],[\"bytestringargtype\",{\"_index\":66,\"name\":{\"120\":{}},\"comment\":{}}],[\"calledbycontractwitnesscondition\",{\"_index\":29,\"name\":{\"40\":{}},\"comment\":{}}],[\"calledbyentrywitnesscondition\",{\"_index\":28,\"name\":{\"38\":{}},\"comment\":{}}],[\"calledbygroupwitnesscondition\",{\"_index\":30,\"name\":{\"43\":{}},\"comment\":{}}],[\"ciphertext\",{\"_index\":166,\"name\":{\"380\":{}},\"comment\":{}}],[\"classic\",{\"_index\":154,\"name\":{\"365\":{}},\"comment\":{}}],[\"condition\",{\"_index\":34,\"name\":{\"49\":{}},\"comment\":{}}],[\"confirmtransaction\",{\"_index\":17,\"name\":{\"19\":{}},\"comment\":{}}],[\"contract\",{\"_index\":1,\"name\":{\"1\":{},\"5\":{}},\"comment\":{}}],[\"contractinvocation\",{\"_index\":52,\"name\":{\"98\":{}},\"comment\":{}}],[\"contractinvocationmulti\",{\"_index\":57,\"name\":{\"104\":{}},\"comment\":{}}],[\"data\",{\"_index\":161,\"name\":{\"375\":{}},\"comment\":{}}],[\"datatag\",{\"_index\":167,\"name\":{\"381\":{}},\"comment\":{}}],[\"decrypt\",{\"_index\":176,\"name\":{\"391\":{}},\"comment\":{}}],[\"decryptfromarray\",{\"_index\":177,\"name\":{\"392\":{}},\"comment\":{}}],[\"decryptfromarrayresult\",{\"_index\":169,\"name\":{\"383\":{}},\"comment\":{}}],[\"default\",{\"_index\":155,\"name\":{\"366\":{}},\"comment\":{}}],[\"encrypt\",{\"_index\":175,\"name\":{\"390\":{}},\"comment\":{}}],[\"encryptedpayload\",{\"_index\":164,\"name\":{\"378\":{}},\"comment\":{}}],[\"ephempublickey\",{\"_index\":168,\"name\":{\"382\":{}},\"comment\":{}}],[\"eventname\",{\"_index\":2,\"name\":{\"2\":{},\"6\":{}},\"comment\":{}}],[\"exception\",{\"_index\":77,\"name\":{\"146\":{}},\"comment\":{}}],[\"executions\",{\"_index\":12,\"name\":{\"14\":{}},\"comment\":{}}],[\"expression\",{\"_index\":19,\"name\":{\"22\":{},\"25\":{}},\"comment\":{}}],[\"expressions\",{\"_index\":22,\"name\":{\"28\":{},\"31\":{}},\"comment\":{}}],[\"extranetworkfee\",{\"_index\":62,\"name\":{\"110\":{}},\"comment\":{}}],[\"extrasystemfee\",{\"_index\":60,\"name\":{\"108\":{}},\"comment\":{}}],[\"formatrpcargument\",{\"_index\":105,\"name\":{\"196\":{}},\"comment\":{}}],[\"gasconsumed\",{\"_index\":76,\"name\":{\"145\":{}},\"comment\":{}}],[\"generic\",{\"_index\":117,\"name\":{\"230\":{}},\"comment\":{}}],[\"genericitem\",{\"_index\":120,\"name\":{\"235\":{}},\"comment\":{}}],[\"generickey\",{\"_index\":119,\"name\":{\"234\":{}},\"comment\":{}}],[\"getaccountaddress\",{\"_index\":174,\"name\":{\"389\":{}},\"comment\":{}}],[\"group\",{\"_index\":27,\"name\":{\"37\":{},\"45\":{}},\"comment\":{}}],[\"groupwitnesscondition\",{\"_index\":26,\"name\":{\"35\":{}},\"comment\":{}}],[\"hash\",{\"_index\":25,\"name\":{\"34\":{},\"42\":{}},\"comment\":{}}],[\"hash160\",{\"_index\":139,\"name\":{\"270\":{}},\"comment\":{}}],[\"hash160argtype\",{\"_index\":45,\"name\":{\"73\":{}},\"comment\":{}}],[\"hash160configargtype\",{\"_index\":113,\"name\":{\"216\":{}},\"comment\":{}}],[\"hash256\",{\"_index\":140,\"name\":{\"274\":{}},\"comment\":{}}],[\"hash256argtype\",{\"_index\":46,\"name\":{\"77\":{}},\"comment\":{}}],[\"hash256configargtype\",{\"_index\":114,\"name\":{\"220\":{}},\"comment\":{}}],[\"hextoab\",{\"_index\":88,\"name\":{\"162\":{}},\"comment\":{}}],[\"hextobase64\",{\"_index\":95,\"name\":{\"176\":{}},\"comment\":{}}],[\"hextostr\",{\"_index\":91,\"name\":{\"168\":{}},\"comment\":{}}],[\"hint\",{\"_index\":109,\"name\":{\"205\":{},\"215\":{},\"219\":{},\"223\":{},\"239\":{}},\"comment\":{}}],[\"hint_types\",{\"_index\":145,\"name\":{\"306\":{}},\"comment\":{}}],[\"id\",{\"_index\":69,\"name\":{\"128\":{}},\"comment\":{}}],[\"integer\",{\"_index\":127,\"name\":{\"246\":{},\"266\":{}},\"comment\":{}}],[\"integerargtype\",{\"_index\":47,\"name\":{\"81\":{}},\"comment\":{}}],[\"integerconfigargtype\",{\"_index\":115,\"name\":{\"224\":{}},\"comment\":{}}],[\"interface\",{\"_index\":68,\"name\":{\"127\":{}},\"comment\":{}}],[\"internal\",{\"_index\":138,\"name\":{\"261\":{},\"265\":{},\"269\":{},\"273\":{},\"277\":{},\"281\":{},\"285\":{},\"289\":{},\"293\":{},\"297\":{},\"301\":{},\"305\":{},\"314\":{},\"321\":{},\"328\":{},\"335\":{},\"342\":{},\"349\":{},\"356\":{},\"363\":{}},\"comment\":{}}],[\"internal_types\",{\"_index\":123,\"name\":{\"241\":{}},\"comment\":{}}],[\"interopinterface\",{\"_index\":128,\"name\":{\"247\":{},\"298\":{}},\"comment\":{}}],[\"interopinterfaceargtype\",{\"_index\":67,\"name\":{\"124\":{}},\"comment\":{}}],[\"interopinterfaceconfigargtype\",{\"_index\":121,\"name\":{\"236\":{}},\"comment\":{}}],[\"inttohex\",{\"_index\":92,\"name\":{\"170\":{}},\"comment\":{}}],[\"invocations\",{\"_index\":59,\"name\":{\"107\":{}},\"comment\":{}}],[\"invokefunction\",{\"_index\":82,\"name\":{\"151\":{}},\"comment\":{}}],[\"invokeresult\",{\"_index\":74,\"name\":{\"142\":{}},\"comment\":{}}],[\"isrpcresponsestackitem\",{\"_index\":189,\"name\":{\"405\":{}},\"comment\":{}}],[\"isstacktypeany\",{\"_index\":179,\"name\":{\"395\":{}},\"comment\":{}}],[\"isstacktypearray\",{\"_index\":182,\"name\":{\"398\":{}},\"comment\":{}}],[\"isstacktypeboolean\",{\"_index\":180,\"name\":{\"396\":{}},\"comment\":{}}],[\"isstacktypebuffer\",{\"_index\":187,\"name\":{\"403\":{}},\"comment\":{}}],[\"isstacktypebytestring\",{\"_index\":184,\"name\":{\"400\":{}},\"comment\":{}}],[\"isstacktypeinteger\",{\"_index\":181,\"name\":{\"397\":{}},\"comment\":{}}],[\"isstacktypeinteropinterface\",{\"_index\":185,\"name\":{\"401\":{}},\"comment\":{}}],[\"isstacktypemap\",{\"_index\":183,\"name\":{\"399\":{}},\"comment\":{}}],[\"isstacktypepointer\",{\"_index\":186,\"name\":{\"402\":{}},\"comment\":{}}],[\"isstacktypestruct\",{\"_index\":188,\"name\":{\"404\":{}},\"comment\":{}}],[\"iterator\",{\"_index\":152,\"name\":{\"357\":{}},\"comment\":{}}],[\"keyindex\",{\"_index\":170,\"name\":{\"385\":{}},\"comment\":{}}],[\"map\",{\"_index\":130,\"name\":{\"249\":{},\"294\":{}},\"comment\":{}}],[\"mapargtype\",{\"_index\":49,\"name\":{\"89\":{}},\"comment\":{}}],[\"mapconfigargtype\",{\"_index\":118,\"name\":{\"231\":{}},\"comment\":{}}],[\"mapresponseargtype\",{\"_index\":65,\"name\":{\"116\":{}},\"comment\":{}}],[\"message\",{\"_index\":158,\"name\":{\"370\":{},\"384\":{}},\"comment\":{}}],[\"messagehex\",{\"_index\":163,\"name\":{\"377\":{}},\"comment\":{}}],[\"name\",{\"_index\":136,\"name\":{\"257\":{},\"260\":{},\"264\":{},\"268\":{},\"272\":{},\"276\":{},\"280\":{},\"284\":{},\"288\":{},\"292\":{},\"296\":{},\"300\":{},\"304\":{},\"310\":{},\"313\":{},\"317\":{},\"320\":{},\"324\":{},\"327\":{},\"331\":{},\"334\":{},\"338\":{},\"341\":{},\"345\":{},\"348\":{},\"352\":{},\"355\":{},\"359\":{},\"362\":{}},\"comment\":{}}],[\"neo3applicationlog\",{\"_index\":10,\"name\":{\"12\":{}},\"comment\":{}}],[\"neo3event\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"neo3eventlistener\",{\"_index\":13,\"name\":{\"15\":{}},\"comment\":{}}],[\"neo3eventlistenercallback\",{\"_index\":5,\"name\":{\"7\":{}},\"comment\":{}}],[\"neo3eventwithstate\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"neo3invoker\",{\"_index\":81,\"name\":{\"150\":{}},\"comment\":{}}],[\"neo3parser\",{\"_index\":85,\"name\":{\"157\":{}},\"comment\":{}}],[\"neo3signer\",{\"_index\":171,\"name\":{\"386\":{}},\"comment\":{}}],[\"neo3stackitem\",{\"_index\":7,\"name\":{\"9\":{}},\"comment\":{}}],[\"networkfeeoverride\",{\"_index\":63,\"name\":{\"111\":{}},\"comment\":{}}],[\"notwitnesscondition\",{\"_index\":20,\"name\":{\"23\":{}},\"comment\":{}}],[\"null\",{\"_index\":131,\"name\":{\"250\":{}},\"comment\":{}}],[\"numtohex\",{\"_index\":93,\"name\":{\"172\":{}},\"comment\":{}}],[\"numtovarint\",{\"_index\":94,\"name\":{\"174\":{}},\"comment\":{}}],[\"operation\",{\"_index\":54,\"name\":{\"101\":{}},\"comment\":{}}],[\"orwitnesscondition\",{\"_index\":23,\"name\":{\"29\":{}},\"comment\":{}}],[\"parseconfig\",{\"_index\":122,\"name\":{\"240\":{}},\"comment\":{}}],[\"parserpcresponse\",{\"_index\":104,\"name\":{\"194\":{}},\"comment\":{}}],[\"pointer\",{\"_index\":132,\"name\":{\"251\":{}},\"comment\":{}}],[\"pointerargtype\",{\"_index\":70,\"name\":{\"129\":{}},\"comment\":{}}],[\"publickey\",{\"_index\":142,\"name\":{\"282\":{},\"315\":{},\"374\":{}},\"comment\":{}}],[\"publickeyargtype\",{\"_index\":44,\"name\":{\"69\":{}},\"comment\":{}}],[\"publickeyconfigargtype\",{\"_index\":112,\"name\":{\"212\":{}},\"comment\":{}}],[\"randomvector\",{\"_index\":165,\"name\":{\"379\":{}},\"comment\":{}}],[\"removeeventlistener\",{\"_index\":15,\"name\":{\"17\":{}},\"comment\":{}}],[\"reversehex\",{\"_index\":103,\"name\":{\"192\":{}},\"comment\":{}}],[\"rpcresponsestackitem\",{\"_index\":73,\"name\":{\"141\":{}},\"comment\":{}}],[\"rules\",{\"_index\":40,\"name\":{\"56\":{}},\"comment\":{}}],[\"salt\",{\"_index\":162,\"name\":{\"376\":{}},\"comment\":{}}],[\"scopes\",{\"_index\":36,\"name\":{\"52\":{}},\"comment\":{}}],[\"script\",{\"_index\":75,\"name\":{\"143\":{}},\"comment\":{}}],[\"scripthash\",{\"_index\":53,\"name\":{\"100\":{},\"322\":{}},\"comment\":{}}],[\"scripthashlittleending\",{\"_index\":148,\"name\":{\"329\":{}},\"comment\":{}}],[\"scripthashwitnesscondition\",{\"_index\":24,\"name\":{\"32\":{}},\"comment\":{}}],[\"session\",{\"_index\":80,\"name\":{\"149\":{}},\"comment\":{}}],[\"signature\",{\"_index\":137,\"name\":{\"258\":{}},\"comment\":{}}],[\"signedmessage\",{\"_index\":160,\"name\":{\"372\":{}},\"comment\":{}}],[\"signer\",{\"_index\":35,\"name\":{\"50\":{}},\"comment\":{}}],[\"signers\",{\"_index\":58,\"name\":{\"106\":{}},\"comment\":{}}],[\"signmessage\",{\"_index\":172,\"name\":{\"387\":{}},\"comment\":{}}],[\"signmessagepayload\",{\"_index\":157,\"name\":{\"368\":{}},\"comment\":{}}],[\"signmessageversion\",{\"_index\":153,\"name\":{\"364\":{}},\"comment\":{}}],[\"stack\",{\"_index\":78,\"name\":{\"147\":{}},\"comment\":{}}],[\"state\",{\"_index\":4,\"name\":{\"4\":{},\"144\":{}},\"comment\":{}}],[\"storagecontext\",{\"_index\":151,\"name\":{\"350\":{}},\"comment\":{}}],[\"string\",{\"_index\":143,\"name\":{\"286\":{}},\"comment\":{}}],[\"stringargtype\",{\"_index\":42,\"name\":{\"61\":{}},\"comment\":{}}],[\"stringconfigargtype\",{\"_index\":108,\"name\":{\"202\":{}},\"comment\":{}}],[\"strtoab\",{\"_index\":87,\"name\":{\"160\":{}},\"comment\":{}}],[\"strtobase64\",{\"_index\":101,\"name\":{\"188\":{}},\"comment\":{}}],[\"strtohex\",{\"_index\":90,\"name\":{\"166\":{}},\"comment\":{}}],[\"struct\",{\"_index\":133,\"name\":{\"252\":{}},\"comment\":{}}],[\"structargtype\",{\"_index\":72,\"name\":{\"137\":{}},\"comment\":{}}],[\"systemfeeoverride\",{\"_index\":61,\"name\":{\"109\":{}},\"comment\":{}}],[\"testinvoke\",{\"_index\":83,\"name\":{\"153\":{}},\"comment\":{}}],[\"transactionid\",{\"_index\":150,\"name\":{\"343\":{}},\"comment\":{}}],[\"traverseiterator\",{\"_index\":84,\"name\":{\"155\":{}},\"comment\":{}}],[\"tx\",{\"_index\":79,\"name\":{\"148\":{}},\"comment\":{}}],[\"txid\",{\"_index\":11,\"name\":{\"13\":{}},\"comment\":{}}],[\"type\",{\"_index\":8,\"name\":{\"10\":{},\"21\":{},\"24\":{},\"27\":{},\"30\":{},\"33\":{},\"36\":{},\"39\":{},\"41\":{},\"44\":{},\"59\":{},\"63\":{},\"67\":{},\"71\":{},\"75\":{},\"79\":{},\"83\":{},\"87\":{},\"91\":{},\"95\":{},\"114\":{},\"118\":{},\"122\":{},\"126\":{},\"131\":{},\"135\":{},\"139\":{},\"200\":{},\"204\":{},\"208\":{},\"211\":{},\"214\":{},\"218\":{},\"222\":{},\"226\":{},\"229\":{},\"233\":{},\"238\":{}},\"comment\":{}}],[\"typechecker\",{\"_index\":178,\"name\":{\"393\":{}},\"comment\":{}}],[\"union\",{\"_index\":107,\"name\":{\"201\":{}},\"comment\":{}}],[\"utf8tobase64\",{\"_index\":97,\"name\":{\"180\":{}},\"comment\":{}}],[\"value\",{\"_index\":9,\"name\":{\"11\":{},\"60\":{},\"64\":{},\"68\":{},\"72\":{},\"76\":{},\"80\":{},\"84\":{},\"88\":{},\"92\":{},\"96\":{},\"115\":{},\"119\":{},\"123\":{},\"132\":{},\"136\":{},\"140\":{}},\"comment\":{}}],[\"verifymessage\",{\"_index\":173,\"name\":{\"388\":{}},\"comment\":{}}],[\"version\",{\"_index\":159,\"name\":{\"371\":{}},\"comment\":{}}],[\"void\",{\"_index\":144,\"name\":{\"302\":{}},\"comment\":{}}],[\"waitforapplicationlog\",{\"_index\":16,\"name\":{\"18\":{}},\"comment\":{}}],[\"without_salt\",{\"_index\":156,\"name\":{\"367\":{}},\"comment\":{}}],[\"witnesscondition\",{\"_index\":31,\"name\":{\"46\":{}},\"comment\":{}}],[\"witnessrule\",{\"_index\":32,\"name\":{\"47\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/enums/SignMessageVersion.html b/packages/neon-dappkit-types/docs/enums/SignMessageVersion.html index 5378790..386d523 100644 --- a/packages/neon-dappkit-types/docs/enums/SignMessageVersion.html +++ b/packages/neon-dappkit-types/docs/enums/SignMessageVersion.html @@ -19,7 +19,7 @@

    Enumeration SignMessageVersion

    A version enum that indicates how a message should be signed

    +
  • Defined in Neo3Signer.ts:4
  • @@ -37,17 +37,17 @@

    Enumeration Members

    CLASSIC: 1
    +
  • Defined in Neo3Signer.ts:5
  • DEFAULT: 2
    +
  • Defined in Neo3Signer.ts:6
  • WITHOUT_SALT: 3
    +
  • Defined in Neo3Signer.ts:7
  • +
  • Defined in Neo3Invoker.ts:205
  • script: string

    The script that is sent for execution on the blockchain as a base64 string.

    +
  • Defined in Neo3Invoker.ts:199
  • session?: string

    This properties comes when the invoke result is a iterator. You need to call the traverseIterator method to get the real result

    +
  • Defined in Neo3Invoker.ts:215
  • stack: T[]
    +
  • Defined in Neo3Invoker.ts:208
  • state: "HALT" | "FAULT"

    State of VM on exit. HALT means a successful exit while FAULT means exit with error.

    +
  • Defined in Neo3Invoker.ts:201
  • tx?: string
    @@ -95,7 +95,7 @@
    +
  • Defined in Neo3Invoker.ts:213
  • Returns void

    +
  • Defined in Neo3EventListener.ts:76
  • Returns void

    +
  • Defined in Neo3EventListener.ts:61
    • @@ -118,7 +118,7 @@
      txId: string

    Returns Promise<Neo3ApplicationLog>

    +
  • Defined in Neo3EventListener.ts:67
  • +
  • Defined in Neo3EventListener.ts:13
  • +
  • Defined in Neo3Invoker.ts:263
  • @@ -86,7 +86,7 @@

    Parameters

    cim: ContractInvocationMulti

    Returns Promise<InvokeResult<RpcResponseStackItem>>

    +
  • Defined in Neo3Invoker.ts:305
  • traverseIterator: ((sessionId: string, iteratorId: string, count: number) => Promise<RpcResponseStackItem[]>)
    @@ -119,7 +119,7 @@
    count: number

    Returns Promise<RpcResponseStackItem[]>

    +
  • Defined in Neo3Invoker.ts:315
  • +
  • Defined in Neo3Parser.ts:45
  • abToStr: ((buf: ArrayBuffer | ArrayLike<number>) => string)
    @@ -96,7 +96,7 @@

    Parameters

    buf: ArrayBuffer | ArrayLike<number>

    Returns string

    +
  • Defined in Neo3Parser.ts:14
  • accountInputToAddress: ((input: string) => string)
    @@ -122,7 +122,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:203
  • accountInputToScripthash: ((input: string) => string)
    @@ -148,7 +148,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:178
  • asciiToBase64: ((input: string) => string)
    @@ -171,7 +171,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:153
  • base64ToHex: ((input: string) => string)
    @@ -194,7 +194,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:133
  • base64ToUtf8: ((input: string) => string)
    @@ -217,7 +217,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:163
  • formatRpcArgument: ((arg: any, parseConfig?: ParseConfig) => Arg)
    @@ -264,7 +264,7 @@
    Optional parseConfig: Returns Arg
    +
  • Defined in Neo3Parser.ts:345
  • hexToAb: ((str: string) => Uint8Array)
    @@ -287,7 +287,7 @@

    Parameters

    str: string

    Returns Uint8Array

    +
  • Defined in Neo3Parser.ts:34
  • hexToBase64: ((input: string) => string)
    @@ -310,7 +310,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:123
  • hexToStr: ((hexstring: string) => string)
    @@ -333,7 +333,7 @@

    Parameters

    hexstring: string

    Returns string

    +
  • Defined in Neo3Parser.ts:65
  • intToHex: ((num: number) => string)
    @@ -356,7 +356,7 @@

    Parameters

    num: number

    Returns string

    +
  • Defined in Neo3Parser.ts:75
  • numToHex: ((num: number, size?: number, littleEndian?: boolean) => string)
    @@ -389,7 +389,7 @@
    Optional littleEndian:

    Returns string

    +
  • Defined in Neo3Parser.ts:92
  • numToVarInt: ((num: number) => string)
    @@ -412,7 +412,7 @@

    Parameters

    num: number

    Returns string

    +
  • Defined in Neo3Parser.ts:113
  • parseRpcResponse: ((field: RpcResponseStackItem, parseConfig?: ParseConfig) => any)
    @@ -452,7 +452,7 @@
    field: Optional parseConfig: ParseConfig

    Returns any

    +
  • Defined in Neo3Parser.ts:304
  • reverseHex: ((input: string) => string)
    @@ -475,7 +475,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:213
  • strToAb: ((str: string) => Uint8Array)
    @@ -498,7 +498,7 @@

    Parameters

    str: string

    Returns Uint8Array

    +
  • Defined in Neo3Parser.ts:24
  • strToBase64: ((input: string) => string)
    @@ -523,7 +523,7 @@
    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:188
  • strToHex: ((str: string) => string)
    @@ -546,7 +546,7 @@

    Parameters

    str: string

    Returns string

    +
  • Defined in Neo3Parser.ts:55
  • utf8ToBase64: ((input: string) => string)
    @@ -569,7 +569,7 @@

    Parameters

    input: string

    Returns string

    +
  • Defined in Neo3Parser.ts:143
  • Returns Promise<DecryptFromArrayResult>

    +
  • Defined in Neo3Signer.ts:99
  • +
  • Defined in Neo3Signer.ts:84
  • +
  • Defined in Neo3Signer.ts:76
  • +
  • Defined in Neo3Signer.ts:64
    • @@ -150,7 +150,7 @@
      params:

    Returns Promise<boolean>

    +
  • Defined in Neo3Signer.ts:71
  • +
  • Defined in Neo3Invoker.ts:99
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/AnyConfigArgType.html b/packages/neon-dappkit-types/docs/types/AnyConfigArgType.html index 5aff838..ef90f4e 100644 --- a/packages/neon-dappkit-types/docs/types/AnyConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/AnyConfigArgType.html @@ -24,7 +24,7 @@
    type:
    Optional union?: ParseConfig[]
    +
  • Defined in Neo3Parser.ts:348
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Arg.html b/packages/neon-dappkit-types/docs/types/Arg.html index 146ea21..d52a7b1 100644 --- a/packages/neon-dappkit-types/docs/types/Arg.html +++ b/packages/neon-dappkit-types/docs/types/Arg.html @@ -17,7 +17,7 @@

    Type alias Arg

    +
  • Defined in Neo3Invoker.ts:110
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ArrayArgType.html b/packages/neon-dappkit-types/docs/types/ArrayArgType.html index f1dd380..b730630 100644 --- a/packages/neon-dappkit-types/docs/types/ArrayArgType.html +++ b/packages/neon-dappkit-types/docs/types/ArrayArgType.html @@ -24,7 +24,7 @@
    type:
    value: Arg[]
    +
  • Defined in Neo3Invoker.ts:106
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ArrayConfigArgType.html b/packages/neon-dappkit-types/docs/types/ArrayConfigArgType.html index 0ad7f66..9d38687 100644 --- a/packages/neon-dappkit-types/docs/types/ArrayConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/ArrayConfigArgType.html @@ -24,7 +24,7 @@
    Optional generic
    type: "Array"
    +
  • Defined in Neo3Parser.ts:356
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ArrayResponseArgType.html b/packages/neon-dappkit-types/docs/types/ArrayResponseArgType.html index e66a727..00090b4 100644 --- a/packages/neon-dappkit-types/docs/types/ArrayResponseArgType.html +++ b/packages/neon-dappkit-types/docs/types/ArrayResponseArgType.html @@ -24,7 +24,7 @@
    type:
    value: RpcResponseStackItem[]
    +
  • Defined in Neo3Invoker.ts:174
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/BooleanArgType.html b/packages/neon-dappkit-types/docs/types/BooleanArgType.html index 1d1d2c3..24054e1 100644 --- a/packages/neon-dappkit-types/docs/types/BooleanArgType.html +++ b/packages/neon-dappkit-types/docs/types/BooleanArgType.html @@ -24,7 +24,7 @@
    type:
    value: boolean
    +
  • Defined in Neo3Invoker.ts:101
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/BooleanConfigArgType.html b/packages/neon-dappkit-types/docs/types/BooleanConfigArgType.html index 0fbbda1..155f23c 100644 --- a/packages/neon-dappkit-types/docs/types/BooleanConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/BooleanConfigArgType.html @@ -22,7 +22,7 @@

    Type declaration

  • type: "Boolean"
  • +
  • Defined in Neo3Parser.ts:350
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/BufferArgType.html b/packages/neon-dappkit-types/docs/types/BufferArgType.html index d910e85..11f5547 100644 --- a/packages/neon-dappkit-types/docs/types/BufferArgType.html +++ b/packages/neon-dappkit-types/docs/types/BufferArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:179
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ByteArrayArgType.html b/packages/neon-dappkit-types/docs/types/ByteArrayArgType.html index 3b75ed9..8e470ae 100644 --- a/packages/neon-dappkit-types/docs/types/ByteArrayArgType.html +++ b/packages/neon-dappkit-types/docs/types/ByteArrayArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:108
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ByteArrayConfigArgType.html b/packages/neon-dappkit-types/docs/types/ByteArrayConfigArgType.html index 1930644..8a6f90e 100644 --- a/packages/neon-dappkit-types/docs/types/ByteArrayConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/ByteArrayConfigArgType.html @@ -22,7 +22,7 @@

    Type declaration

  • type: "ByteArray"
  • +
  • Defined in Neo3Parser.ts:351
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ByteStringArgType.html b/packages/neon-dappkit-types/docs/types/ByteStringArgType.html index eeb690d..7e5a7a7 100644 --- a/packages/neon-dappkit-types/docs/types/ByteStringArgType.html +++ b/packages/neon-dappkit-types/docs/types/ByteStringArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:176
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ContractInvocation.html b/packages/neon-dappkit-types/docs/types/ContractInvocation.html index a5a056e..33bf298 100644 --- a/packages/neon-dappkit-types/docs/types/ContractInvocation.html +++ b/packages/neon-dappkit-types/docs/types/ContractInvocation.html @@ -38,7 +38,7 @@
    scriptHash:

    The SmartContract ScriptHash

    +
  • Defined in Neo3Invoker.ts:125
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ContractInvocationMulti.html b/packages/neon-dappkit-types/docs/types/ContractInvocationMulti.html index c2bbf74..b754f8d 100644 --- a/packages/neon-dappkit-types/docs/types/ContractInvocationMulti.html +++ b/packages/neon-dappkit-types/docs/types/ContractInvocationMulti.html @@ -46,7 +46,7 @@
    Optional systemFeeO

    for the cases you need to calculate the system fee by yourself

    +
  • Defined in Neo3Invoker.ts:147
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Hash160ArgType.html b/packages/neon-dappkit-types/docs/types/Hash160ArgType.html index ba22205..fdd921d 100644 --- a/packages/neon-dappkit-types/docs/types/Hash160ArgType.html +++ b/packages/neon-dappkit-types/docs/types/Hash160ArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:103
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Hash160ConfigArgType.html b/packages/neon-dappkit-types/docs/types/Hash160ConfigArgType.html index 6e4ac6f..175ca44 100644 --- a/packages/neon-dappkit-types/docs/types/Hash160ConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/Hash160ConfigArgType.html @@ -24,7 +24,7 @@
    Optional hint
    type: "Hash160"
    +
  • Defined in Neo3Parser.ts:353
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Hash256ArgType.html b/packages/neon-dappkit-types/docs/types/Hash256ArgType.html index 2e01dc2..8666700 100644 --- a/packages/neon-dappkit-types/docs/types/Hash256ArgType.html +++ b/packages/neon-dappkit-types/docs/types/Hash256ArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:104
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Hash256ConfigArgType.html b/packages/neon-dappkit-types/docs/types/Hash256ConfigArgType.html index 1c1054d..e0e6f7e 100644 --- a/packages/neon-dappkit-types/docs/types/Hash256ConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/Hash256ConfigArgType.html @@ -24,7 +24,7 @@
    Optional hint
    type: "Hash256"
    +
  • Defined in Neo3Parser.ts:354
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/IntegerArgType.html b/packages/neon-dappkit-types/docs/types/IntegerArgType.html index 20df421..45a645b 100644 --- a/packages/neon-dappkit-types/docs/types/IntegerArgType.html +++ b/packages/neon-dappkit-types/docs/types/IntegerArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:105
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/IntegerConfigArgType.html b/packages/neon-dappkit-types/docs/types/IntegerConfigArgType.html index 4f5c108..6072f40 100644 --- a/packages/neon-dappkit-types/docs/types/IntegerConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/IntegerConfigArgType.html @@ -22,7 +22,7 @@

    Type declaration

  • type: "Integer"
  • +
  • Defined in Neo3Parser.ts:355
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/InteropInterfaceArgType.html b/packages/neon-dappkit-types/docs/types/InteropInterfaceArgType.html index 088a33b..ed81e2a 100644 --- a/packages/neon-dappkit-types/docs/types/InteropInterfaceArgType.html +++ b/packages/neon-dappkit-types/docs/types/InteropInterfaceArgType.html @@ -26,7 +26,7 @@
    interface:
    type: "InteropInterface"
    +
  • Defined in Neo3Invoker.ts:177
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/InteropInterfaceConfigArgType.html b/packages/neon-dappkit-types/docs/types/InteropInterfaceConfigArgType.html index bef34a5..edf34a4 100644 --- a/packages/neon-dappkit-types/docs/types/InteropInterfaceConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/InteropInterfaceConfigArgType.html @@ -24,7 +24,7 @@
    Optional hint
    type: "InteropInterface"
    +
  • Defined in Neo3Parser.ts:358
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/MapArgType.html b/packages/neon-dappkit-types/docs/types/MapArgType.html index 7a69eea..dedd24f 100644 --- a/packages/neon-dappkit-types/docs/types/MapArgType.html +++ b/packages/neon-dappkit-types/docs/types/MapArgType.html @@ -24,7 +24,7 @@
    type:
    value: {
        key: Arg;
        value: Arg;
    }[]
    +
  • Defined in Neo3Invoker.ts:107
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/MapConfigArgType.html b/packages/neon-dappkit-types/docs/types/MapConfigArgType.html index 2b3cb39..52c6d60 100644 --- a/packages/neon-dappkit-types/docs/types/MapConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/MapConfigArgType.html @@ -26,7 +26,7 @@
    Optional genericKey
    type: "Map"
    +
  • Defined in Neo3Parser.ts:357
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/MapResponseArgType.html b/packages/neon-dappkit-types/docs/types/MapResponseArgType.html index a5593f7..759b78d 100644 --- a/packages/neon-dappkit-types/docs/types/MapResponseArgType.html +++ b/packages/neon-dappkit-types/docs/types/MapResponseArgType.html @@ -24,7 +24,7 @@
    type:
    value: {
        key: RpcResponseStackItem;
        value: RpcResponseStackItem;
    }[]
    +
  • Defined in Neo3Invoker.ts:175
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Neo3EventListenerCallback.html b/packages/neon-dappkit-types/docs/types/Neo3EventListenerCallback.html index c8517e5..9491d13 100644 --- a/packages/neon-dappkit-types/docs/types/Neo3EventListenerCallback.html +++ b/packages/neon-dappkit-types/docs/types/Neo3EventListenerCallback.html @@ -32,7 +32,7 @@

    Parameters

    event: Neo3EventWithState

    Returns void

    +
  • Defined in Neo3EventListener.ts:19
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/ParseConfig.html b/packages/neon-dappkit-types/docs/types/ParseConfig.html index d49ad99..f6ab152 100644 --- a/packages/neon-dappkit-types/docs/types/ParseConfig.html +++ b/packages/neon-dappkit-types/docs/types/ParseConfig.html @@ -17,7 +17,7 @@

    Type alias ParseConfig

    +
  • Defined in Neo3Parser.ts:360
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/PointerArgType.html b/packages/neon-dappkit-types/docs/types/PointerArgType.html index 92da119..67fa646 100644 --- a/packages/neon-dappkit-types/docs/types/PointerArgType.html +++ b/packages/neon-dappkit-types/docs/types/PointerArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:178
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/PublicKeyArgType.html b/packages/neon-dappkit-types/docs/types/PublicKeyArgType.html index 5c811bf..688e382 100644 --- a/packages/neon-dappkit-types/docs/types/PublicKeyArgType.html +++ b/packages/neon-dappkit-types/docs/types/PublicKeyArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:102
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/PublicKeyConfigArgType.html b/packages/neon-dappkit-types/docs/types/PublicKeyConfigArgType.html index 7d94939..9938f12 100644 --- a/packages/neon-dappkit-types/docs/types/PublicKeyConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/PublicKeyConfigArgType.html @@ -24,7 +24,7 @@
    Optional hint
    type: "PublicKey"
    +
  • Defined in Neo3Parser.ts:352
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/RpcResponseStackItem.html b/packages/neon-dappkit-types/docs/types/RpcResponseStackItem.html index 29f7fc7..66e3ff6 100644 --- a/packages/neon-dappkit-types/docs/types/RpcResponseStackItem.html +++ b/packages/neon-dappkit-types/docs/types/RpcResponseStackItem.html @@ -17,7 +17,7 @@

    Type alias RpcResponseStackItem

    +
  • Defined in Neo3Invoker.ts:182
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/SignMessagePayload.html b/packages/neon-dappkit-types/docs/types/SignMessagePayload.html index 9e9d8c1..81f7689 100644 --- a/packages/neon-dappkit-types/docs/types/SignMessagePayload.html +++ b/packages/neon-dappkit-types/docs/types/SignMessagePayload.html @@ -26,7 +26,7 @@
    message:
    Optional version?: SignMessageVersion
    +
  • Defined in Neo3Signer.ts:13
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/SignedMessage.html b/packages/neon-dappkit-types/docs/types/SignedMessage.html index b9222e4..378dc03 100644 --- a/packages/neon-dappkit-types/docs/types/SignedMessage.html +++ b/packages/neon-dappkit-types/docs/types/SignedMessage.html @@ -38,7 +38,7 @@
    Optional salt

    salt used to encrypt

    +
  • Defined in Neo3Signer.ts:21
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/Signer.html b/packages/neon-dappkit-types/docs/types/Signer.html index f6c9b4d..8f4db8c 100644 --- a/packages/neon-dappkit-types/docs/types/Signer.html +++ b/packages/neon-dappkit-types/docs/types/Signer.html @@ -44,7 +44,7 @@
    scopes:

    The level of permission the invocation needs

    +
  • Defined in Neo3Invoker.ts:78
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/StringArgType.html b/packages/neon-dappkit-types/docs/types/StringArgType.html index ff6abc6..b5cb10e 100644 --- a/packages/neon-dappkit-types/docs/types/StringArgType.html +++ b/packages/neon-dappkit-types/docs/types/StringArgType.html @@ -24,7 +24,7 @@
    type:
    value: string
    +
  • Defined in Neo3Invoker.ts:100
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/StringConfigArgType.html b/packages/neon-dappkit-types/docs/types/StringConfigArgType.html index 83965af..856fc31 100644 --- a/packages/neon-dappkit-types/docs/types/StringConfigArgType.html +++ b/packages/neon-dappkit-types/docs/types/StringConfigArgType.html @@ -24,7 +24,7 @@
    Optional hint
    type: "String"
    +
  • Defined in Neo3Parser.ts:349
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/StructArgType.html b/packages/neon-dappkit-types/docs/types/StructArgType.html index 2ecddbf..c4246d4 100644 --- a/packages/neon-dappkit-types/docs/types/StructArgType.html +++ b/packages/neon-dappkit-types/docs/types/StructArgType.html @@ -24,7 +24,7 @@
    type:
    value: RpcResponseStackItem[]
    +
  • Defined in Neo3Invoker.ts:180
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/types/WitnessCondition.html b/packages/neon-dappkit-types/docs/types/WitnessCondition.html index 97d469e..2313b4c 100644 --- a/packages/neon-dappkit-types/docs/types/WitnessCondition.html +++ b/packages/neon-dappkit-types/docs/types/WitnessCondition.html @@ -17,7 +17,7 @@

    Type alias WitnessCondition

    +
  • Defined in Neo3Invoker.ts:49
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/variables/ABI_TYPES.html b/packages/neon-dappkit-types/docs/variables/ABI_TYPES.html index 1bb77fb..d05c2be 100644 --- a/packages/neon-dappkit-types/docs/variables/ABI_TYPES.html +++ b/packages/neon-dappkit-types/docs/variables/ABI_TYPES.html @@ -109,7 +109,7 @@
    internal:
    name: string
    +
  • Defined in Neo3Parser.ts:386
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/variables/HINT_TYPES.html b/packages/neon-dappkit-types/docs/variables/HINT_TYPES.html index 72e6b58..42e0ee5 100644 --- a/packages/neon-dappkit-types/docs/variables/HINT_TYPES.html +++ b/packages/neon-dappkit-types/docs/variables/HINT_TYPES.html @@ -116,7 +116,7 @@
    name:
    name: string
    +
  • Defined in Neo3Parser.ts:402
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/variables/INTERNAL_TYPES.html b/packages/neon-dappkit-types/docs/variables/INTERNAL_TYPES.html index 4a449e3..b3193ac 100644 --- a/packages/neon-dappkit-types/docs/variables/INTERNAL_TYPES.html +++ b/packages/neon-dappkit-types/docs/variables/INTERNAL_TYPES.html @@ -40,7 +40,7 @@
    POINTER:
    STRUCT: string
    +
  • Defined in Neo3Parser.ts:373
  • +
  • INTERNAL_TYPES
  • +
  • TypeChecker
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/packages/neon-dappkit-types/docs/variables/TypeChecker.html b/packages/neon-dappkit-types/docs/variables/TypeChecker.html index 7e8bf6e..bbc50df 100644 --- a/packages/neon-dappkit-types/docs/variables/TypeChecker.html +++ b/packages/neon-dappkit-types/docs/variables/TypeChecker.html @@ -31,7 +31,7 @@

    Parameters

    item: any

    Returns item is RpcResponseStackItem

    +
  • Defined in TypeChecker.ts:68
  • isStackTypeAny:function
      @@ -44,7 +44,7 @@

      Parameters

      item: any

    Returns item is AnyArgType

  • +
  • Defined in TypeChecker.ts:16
  • isStackTypeArray:function
      @@ -57,7 +57,7 @@

      Parameters

      item: any

    Returns item is ArrayResponseArgType

  • +
  • Defined in TypeChecker.ts:25
  • isStackTypeBoolean:function
      @@ -70,7 +70,7 @@

      Parameters

      item: any

    Returns item is BooleanArgType

  • +
  • Defined in TypeChecker.ts:19
  • isStackTypeBuffer:function
      @@ -83,7 +83,7 @@

      Parameters

      item: any

    Returns item is BufferArgType

  • +
  • Defined in TypeChecker.ts:57
  • isStackTypeByteString:function
      @@ -96,7 +96,7 @@

      Parameters

      item: any

    Returns item is ByteStringArgType

  • +
  • Defined in TypeChecker.ts:43
  • isStackTypeInteger:function
      @@ -109,7 +109,7 @@

      Parameters

      item: any

    Returns item is IntegerArgType

  • +
  • Defined in TypeChecker.ts:22
  • isStackTypeInteropInterface:function
      @@ -122,7 +122,7 @@

      Parameters

      item: any

    Returns item is InteropInterfaceArgType

  • +
  • Defined in TypeChecker.ts:46
  • isStackTypeMap:function
      @@ -135,7 +135,7 @@

      Parameters

      item: any

    Returns item is MapResponseArgType

  • +
  • Defined in TypeChecker.ts:33
  • isStackTypePointer:function
      @@ -148,7 +148,7 @@

      Parameters

      item: any

    Returns item is PointerArgType

  • +
  • Defined in TypeChecker.ts:54
  • isStackTypeStruct:function
      @@ -161,9 +161,9 @@

      Parameters

      item: any

    Returns item is StructArgType

  • +
  • Defined in TypeChecker.ts:15