noob-ethereum
Version:
A simple Ethereum library
87 lines (86 loc) • 3.04 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
let inputs = [];
const longlist = [
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
];
inputs.push(longlist);
inputs.push(0); // correct
inputs.push([]); // correct
inputs.push(10); // correct
inputs.push(127); // correct
inputs.push(128); // correct
inputs.push('ff'); // correct
inputs.push(1000); // correct
inputs.push(100000); // correct
inputs.push('Lorem ipsum dolor sit amet, consectetur adipisicing elit'); // correct
inputs.push('Lorem ipsum dolor sit amet, consectetur adipisicing elitLorem ipsum dolor sit amet, consectetur adipisicing elitLorem ipsum dolor sit amet, consectetur adipisicing elitLorem ipsum dolor sit amet, consectetur adipisicing elitLorem ipsum dolor sit amet, consectetur adipisicing elit'); // correct
inputs.push(['cat', 'dog']); // correct
inputs.push(longlist); // correct
inputs.push('#83729609699884896815286331701780722'); // correct
inputs.push(['dog', 'god', 'cat']); // correct
inputs.push('#105315505618206987246253880190783558935785933862974822347068935681'); // correct
inputs.push([]); // correct
inputs.push(['zw', [4], 1]);
inputs.push(['asdf', 'qwer', 'zxcv', 'asdf', 'qwer', 'zxcv', 'asdf', 'qwer', 'zxcv', 'asdf', 'qwer']); // correct
inputs.push([
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
['asdf', 'qwer', 'zxcv'],
]); // correct
inputs.push([
['key1', 'val1'],
['key2', 'val2'],
['key3', 'val3'],
['key4', 'val4'],
]); // correct
// Nested Lists (including empty list items)
inputs.push([[[], []], []]); // correct
inputs.push([[], [[]], [[], []]]); // correct
inputs.push([[], 'dog', ['cat'], '']); // correct
// Decimal value input (input = 0)
inputs.push(0); // correct
// String between 2-55 bytes in length
inputs.push('hello world`'); // correct
// Hexadecimal string prefixed by 0x
inputs.push('0x80'); // correct
inputs.push('0x81'); // correct
inputs.push('0xfe'); // correct
inputs.push('0xff'); // correct
// String of 1 byte in length
inputs.push('c');
inputs.push('0');
inputs.push('7');
exports.default = inputs;
;