UNPKG

@iyonger/aptos-web3-bip44.js

Version:
31 lines (30 loc) 634 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export const $MoveValue = { type: 'any-of', description: `An enum of the possible Move value types`, contains: [{ type: 'number', format: 'uint8', }, { type: 'U64', }, { type: 'U128', }, { type: 'boolean', }, { type: 'Address', }, { type: 'array', contains: { type: 'MoveValue', }, }, { type: 'HexEncodedBytes', }, { type: 'MoveStructValue', }, { type: 'string', }], } as const;