waves_lib 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +22 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/LICENSE.txt +19 -0
- data/README.md +39 -0
- data/Rakefile +12 -0
- data/js/node_modules/@protobufjs/aspromise/LICENSE +26 -0
- data/js/node_modules/@protobufjs/aspromise/README.md +13 -0
- data/js/node_modules/@protobufjs/aspromise/index.d.ts +13 -0
- data/js/node_modules/@protobufjs/aspromise/index.js +52 -0
- data/js/node_modules/@protobufjs/aspromise/package.json +21 -0
- data/js/node_modules/@protobufjs/aspromise/tests/index.js +130 -0
- data/js/node_modules/@protobufjs/base64/LICENSE +26 -0
- data/js/node_modules/@protobufjs/base64/README.md +19 -0
- data/js/node_modules/@protobufjs/base64/index.d.ts +32 -0
- data/js/node_modules/@protobufjs/base64/index.js +139 -0
- data/js/node_modules/@protobufjs/base64/package.json +21 -0
- data/js/node_modules/@protobufjs/base64/tests/index.js +46 -0
- data/js/node_modules/@protobufjs/codegen/LICENSE +26 -0
- data/js/node_modules/@protobufjs/codegen/README.md +49 -0
- data/js/node_modules/@protobufjs/codegen/index.d.ts +31 -0
- data/js/node_modules/@protobufjs/codegen/index.js +99 -0
- data/js/node_modules/@protobufjs/codegen/package.json +13 -0
- data/js/node_modules/@protobufjs/codegen/tests/index.js +13 -0
- data/js/node_modules/@protobufjs/eventemitter/LICENSE +26 -0
- data/js/node_modules/@protobufjs/eventemitter/README.md +22 -0
- data/js/node_modules/@protobufjs/eventemitter/index.d.ts +43 -0
- data/js/node_modules/@protobufjs/eventemitter/index.js +76 -0
- data/js/node_modules/@protobufjs/eventemitter/package.json +21 -0
- data/js/node_modules/@protobufjs/eventemitter/tests/index.js +47 -0
- data/js/node_modules/@protobufjs/fetch/LICENSE +26 -0
- data/js/node_modules/@protobufjs/fetch/README.md +13 -0
- data/js/node_modules/@protobufjs/fetch/index.d.ts +56 -0
- data/js/node_modules/@protobufjs/fetch/index.js +115 -0
- data/js/node_modules/@protobufjs/fetch/package.json +25 -0
- data/js/node_modules/@protobufjs/fetch/tests/index.js +16 -0
- data/js/node_modules/@protobufjs/float/LICENSE +26 -0
- data/js/node_modules/@protobufjs/float/README.md +102 -0
- data/js/node_modules/@protobufjs/float/bench/index.js +87 -0
- data/js/node_modules/@protobufjs/float/bench/suite.js +46 -0
- data/js/node_modules/@protobufjs/float/index.d.ts +83 -0
- data/js/node_modules/@protobufjs/float/index.js +335 -0
- data/js/node_modules/@protobufjs/float/package.json +26 -0
- data/js/node_modules/@protobufjs/float/tests/index.js +100 -0
- data/js/node_modules/@protobufjs/inquire/LICENSE +26 -0
- data/js/node_modules/@protobufjs/inquire/README.md +13 -0
- data/js/node_modules/@protobufjs/inquire/index.d.ts +9 -0
- data/js/node_modules/@protobufjs/inquire/index.js +17 -0
- data/js/node_modules/@protobufjs/inquire/package.json +21 -0
- data/js/node_modules/@protobufjs/inquire/tests/data/array.js +1 -0
- data/js/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +1 -0
- data/js/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +1 -0
- data/js/node_modules/@protobufjs/inquire/tests/data/object.js +1 -0
- data/js/node_modules/@protobufjs/inquire/tests/index.js +20 -0
- data/js/node_modules/@protobufjs/path/LICENSE +26 -0
- data/js/node_modules/@protobufjs/path/README.md +19 -0
- data/js/node_modules/@protobufjs/path/index.d.ts +22 -0
- data/js/node_modules/@protobufjs/path/index.js +65 -0
- data/js/node_modules/@protobufjs/path/package.json +21 -0
- data/js/node_modules/@protobufjs/path/tests/index.js +60 -0
- data/js/node_modules/@protobufjs/pool/LICENSE +26 -0
- data/js/node_modules/@protobufjs/pool/README.md +13 -0
- data/js/node_modules/@protobufjs/pool/index.d.ts +32 -0
- data/js/node_modules/@protobufjs/pool/index.js +48 -0
- data/js/node_modules/@protobufjs/pool/package.json +21 -0
- data/js/node_modules/@protobufjs/pool/tests/index.js +33 -0
- data/js/node_modules/@protobufjs/utf8/LICENSE +26 -0
- data/js/node_modules/@protobufjs/utf8/README.md +20 -0
- data/js/node_modules/@protobufjs/utf8/index.d.ts +24 -0
- data/js/node_modules/@protobufjs/utf8/index.js +105 -0
- data/js/node_modules/@protobufjs/utf8/package.json +21 -0
- data/js/node_modules/@protobufjs/utf8/tests/data/utf8.txt +216 -0
- data/js/node_modules/@protobufjs/utf8/tests/index.js +57 -0
- data/js/node_modules/@types/base64-js/LICENSE +21 -0
- data/js/node_modules/@types/base64-js/README.md +16 -0
- data/js/node_modules/@types/base64-js/index.d.ts +23 -0
- data/js/node_modules/@types/base64-js/package.json +29 -0
- data/js/node_modules/@types/long/LICENSE +21 -0
- data/js/node_modules/@types/long/README.md +16 -0
- data/js/node_modules/@types/long/index.d.ts +389 -0
- data/js/node_modules/@types/long/package.json +25 -0
- data/js/node_modules/@types/node/LICENSE +21 -0
- data/js/node_modules/@types/node/README.md +16 -0
- data/js/node_modules/@types/node/assert/strict.d.ts +8 -0
- data/js/node_modules/@types/node/assert.d.ts +972 -0
- data/js/node_modules/@types/node/async_hooks.d.ts +530 -0
- data/js/node_modules/@types/node/buffer.d.ts +2354 -0
- data/js/node_modules/@types/node/child_process.d.ts +1395 -0
- data/js/node_modules/@types/node/cluster.d.ts +414 -0
- data/js/node_modules/@types/node/console.d.ts +412 -0
- data/js/node_modules/@types/node/constants.d.ts +18 -0
- data/js/node_modules/@types/node/crypto.d.ts +3978 -0
- data/js/node_modules/@types/node/dgram.d.ts +545 -0
- data/js/node_modules/@types/node/diagnostics_channel.d.ts +191 -0
- data/js/node_modules/@types/node/dns/promises.d.ts +414 -0
- data/js/node_modules/@types/node/dns.d.ts +668 -0
- data/js/node_modules/@types/node/dom-events.d.ts +126 -0
- data/js/node_modules/@types/node/domain.d.ts +170 -0
- data/js/node_modules/@types/node/events.d.ts +724 -0
- data/js/node_modules/@types/node/fs/promises.d.ts +1190 -0
- data/js/node_modules/@types/node/fs.d.ts +4044 -0
- data/js/node_modules/@types/node/globals.d.ts +303 -0
- data/js/node_modules/@types/node/globals.global.d.ts +1 -0
- data/js/node_modules/@types/node/http.d.ts +1724 -0
- data/js/node_modules/@types/node/http2.d.ts +2129 -0
- data/js/node_modules/@types/node/https.d.ts +441 -0
- data/js/node_modules/@types/node/index.d.ts +134 -0
- data/js/node_modules/@types/node/inspector.d.ts +2748 -0
- data/js/node_modules/@types/node/module.d.ts +129 -0
- data/js/node_modules/@types/node/net.d.ts +888 -0
- data/js/node_modules/@types/node/os.d.ts +477 -0
- data/js/node_modules/@types/node/package.json +237 -0
- data/js/node_modules/@types/node/path.d.ts +191 -0
- data/js/node_modules/@types/node/perf_hooks.d.ts +638 -0
- data/js/node_modules/@types/node/process.d.ts +1494 -0
- data/js/node_modules/@types/node/punycode.d.ts +117 -0
- data/js/node_modules/@types/node/querystring.d.ts +131 -0
- data/js/node_modules/@types/node/readline/promises.d.ts +145 -0
- data/js/node_modules/@types/node/readline.d.ts +526 -0
- data/js/node_modules/@types/node/repl.d.ts +424 -0
- data/js/node_modules/@types/node/stream/consumers.d.ts +12 -0
- data/js/node_modules/@types/node/stream/promises.d.ts +42 -0
- data/js/node_modules/@types/node/stream/web.d.ts +330 -0
- data/js/node_modules/@types/node/stream.d.ts +1421 -0
- data/js/node_modules/@types/node/string_decoder.d.ts +67 -0
- data/js/node_modules/@types/node/test.d.ts +1383 -0
- data/js/node_modules/@types/node/timers/promises.d.ts +93 -0
- data/js/node_modules/@types/node/timers.d.ts +215 -0
- data/js/node_modules/@types/node/tls.d.ts +1130 -0
- data/js/node_modules/@types/node/trace_events.d.ts +182 -0
- data/js/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- data/js/node_modules/@types/node/ts4.8/assert.d.ts +972 -0
- data/js/node_modules/@types/node/ts4.8/async_hooks.d.ts +530 -0
- data/js/node_modules/@types/node/ts4.8/buffer.d.ts +2354 -0
- data/js/node_modules/@types/node/ts4.8/child_process.d.ts +1395 -0
- data/js/node_modules/@types/node/ts4.8/cluster.d.ts +414 -0
- data/js/node_modules/@types/node/ts4.8/console.d.ts +412 -0
- data/js/node_modules/@types/node/ts4.8/constants.d.ts +18 -0
- data/js/node_modules/@types/node/ts4.8/crypto.d.ts +3977 -0
- data/js/node_modules/@types/node/ts4.8/dgram.d.ts +545 -0
- data/js/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +191 -0
- data/js/node_modules/@types/node/ts4.8/dns/promises.d.ts +414 -0
- data/js/node_modules/@types/node/ts4.8/dns.d.ts +668 -0
- data/js/node_modules/@types/node/ts4.8/dom-events.d.ts +126 -0
- data/js/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- data/js/node_modules/@types/node/ts4.8/events.d.ts +724 -0
- data/js/node_modules/@types/node/ts4.8/fs/promises.d.ts +1189 -0
- data/js/node_modules/@types/node/ts4.8/fs.d.ts +4044 -0
- data/js/node_modules/@types/node/ts4.8/globals.d.ts +303 -0
- data/js/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- data/js/node_modules/@types/node/ts4.8/http.d.ts +1724 -0
- data/js/node_modules/@types/node/ts4.8/http2.d.ts +2129 -0
- data/js/node_modules/@types/node/ts4.8/https.d.ts +441 -0
- data/js/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- data/js/node_modules/@types/node/ts4.8/inspector.d.ts +2748 -0
- data/js/node_modules/@types/node/ts4.8/module.d.ts +129 -0
- data/js/node_modules/@types/node/ts4.8/net.d.ts +888 -0
- data/js/node_modules/@types/node/ts4.8/os.d.ts +477 -0
- data/js/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- data/js/node_modules/@types/node/ts4.8/perf_hooks.d.ts +638 -0
- data/js/node_modules/@types/node/ts4.8/process.d.ts +1494 -0
- data/js/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- data/js/node_modules/@types/node/ts4.8/querystring.d.ts +131 -0
- data/js/node_modules/@types/node/ts4.8/readline/promises.d.ts +145 -0
- data/js/node_modules/@types/node/ts4.8/readline.d.ts +526 -0
- data/js/node_modules/@types/node/ts4.8/repl.d.ts +424 -0
- data/js/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- data/js/node_modules/@types/node/ts4.8/stream/promises.d.ts +42 -0
- data/js/node_modules/@types/node/ts4.8/stream/web.d.ts +330 -0
- data/js/node_modules/@types/node/ts4.8/stream.d.ts +1392 -0
- data/js/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- data/js/node_modules/@types/node/ts4.8/test.d.ts +1365 -0
- data/js/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- data/js/node_modules/@types/node/ts4.8/timers.d.ts +215 -0
- data/js/node_modules/@types/node/ts4.8/tls.d.ts +1130 -0
- data/js/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- data/js/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- data/js/node_modules/@types/node/ts4.8/url.d.ts +901 -0
- data/js/node_modules/@types/node/ts4.8/util.d.ts +2116 -0
- data/js/node_modules/@types/node/ts4.8/v8.d.ts +635 -0
- data/js/node_modules/@types/node/ts4.8/vm.d.ts +894 -0
- data/js/node_modules/@types/node/ts4.8/wasi.d.ts +152 -0
- data/js/node_modules/@types/node/ts4.8/worker_threads.d.ts +693 -0
- data/js/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- data/js/node_modules/@types/node/tty.d.ts +208 -0
- data/js/node_modules/@types/node/url.d.ts +901 -0
- data/js/node_modules/@types/node/util.d.ts +2116 -0
- data/js/node_modules/@types/node/v8.d.ts +635 -0
- data/js/node_modules/@types/node/vm.d.ts +894 -0
- data/js/node_modules/@types/node/wasi.d.ts +152 -0
- data/js/node_modules/@types/node/worker_threads.d.ts +693 -0
- data/js/node_modules/@types/node/zlib.d.ts +517 -0
- data/js/node_modules/@types/node-fetch/LICENSE +21 -0
- data/js/node_modules/@types/node-fetch/README.md +16 -0
- data/js/node_modules/@types/node-fetch/externals.d.ts +24 -0
- data/js/node_modules/@types/node-fetch/index.d.ts +224 -0
- data/js/node_modules/@types/node-fetch/package.json +83 -0
- data/js/node_modules/@waves/bignumber/dist/BigNumber.d.ts +74 -0
- data/js/node_modules/@waves/bignumber/dist/BigNumber.js +252 -0
- data/js/node_modules/@waves/bignumber/dist/BigNumber.js.map +1 -0
- data/js/node_modules/@waves/bignumber/dist/Config.d.ts +22 -0
- data/js/node_modules/@waves/bignumber/dist/Config.js +43 -0
- data/js/node_modules/@waves/bignumber/dist/Config.js.map +1 -0
- data/js/node_modules/@waves/bignumber/dist/bignumber.umd.js +3194 -0
- data/js/node_modules/@waves/bignumber/dist/bignumber.umd.min.js +1 -0
- data/js/node_modules/@waves/bignumber/dist/index.d.ts +3 -0
- data/js/node_modules/@waves/bignumber/dist/index.js +9 -0
- data/js/node_modules/@waves/bignumber/dist/index.js.map +1 -0
- data/js/node_modules/@waves/bignumber/package.json +64 -0
- data/js/node_modules/@waves/bignumber/readme.md +285 -0
- data/js/node_modules/@waves/marshall/LICENSE +9 -0
- data/js/node_modules/@waves/marshall/README.md +39 -0
- data/js/node_modules/@waves/marshall/dist/index.d.ts +26 -0
- data/js/node_modules/@waves/marshall/dist/index.js +45 -0
- data/js/node_modules/@waves/marshall/dist/index.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/jsonMethods.d.ts +36 -0
- data/js/node_modules/@waves/marshall/dist/jsonMethods.js +194 -0
- data/js/node_modules/@waves/marshall/dist/jsonMethods.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.d.ts +1 -0
- data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.js +35 -0
- data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/libs/base58.d.ts +5 -0
- data/js/node_modules/@waves/marshall/dist/libs/base58.js +66 -0
- data/js/node_modules/@waves/marshall/dist/libs/base58.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/libs/utils.d.ts +2 -0
- data/js/node_modules/@waves/marshall/dist/libs/utils.js +6 -0
- data/js/node_modules/@waves/marshall/dist/libs/utils.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/min/waves-marshall.min.js +1 -0
- data/js/node_modules/@waves/marshall/dist/parse.d.ts +21 -0
- data/js/node_modules/@waves/marshall/dist/parse.js +142 -0
- data/js/node_modules/@waves/marshall/dist/parse.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/parsePrimitives.d.ts +57 -0
- data/js/node_modules/@waves/marshall/dist/parsePrimitives.js +96 -0
- data/js/node_modules/@waves/marshall/dist/parsePrimitives.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/schemaTypes.d.ts +62 -0
- data/js/node_modules/@waves/marshall/dist/schemaTypes.js +41 -0
- data/js/node_modules/@waves/marshall/dist/schemaTypes.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/schemas.d.ts +128 -0
- data/js/node_modules/@waves/marshall/dist/schemas.js +542 -0
- data/js/node_modules/@waves/marshall/dist/schemas.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/serialize.d.ts +11 -0
- data/js/node_modules/@waves/marshall/dist/serialize.js +102 -0
- data/js/node_modules/@waves/marshall/dist/serialize.js.map +1 -0
- data/js/node_modules/@waves/marshall/dist/serializePrimitives.d.ts +21 -0
- data/js/node_modules/@waves/marshall/dist/serializePrimitives.js +63 -0
- data/js/node_modules/@waves/marshall/dist/serializePrimitives.js.map +1 -0
- data/js/node_modules/@waves/marshall/package.json +45 -0
- data/js/node_modules/@waves/marshall/src/index.ts +51 -0
- data/js/node_modules/@waves/marshall/src/jsonMethods.ts +231 -0
- data/js/node_modules/@waves/marshall/src/libs/Utf8ArrayToStr.ts +35 -0
- data/js/node_modules/@waves/marshall/src/libs/base58.ts +88 -0
- data/js/node_modules/@waves/marshall/src/libs/utils.ts +6 -0
- data/js/node_modules/@waves/marshall/src/parse.ts +157 -0
- data/js/node_modules/@waves/marshall/src/parsePrimitives.ts +118 -0
- data/js/node_modules/@waves/marshall/src/schemaTypes.ts +91 -0
- data/js/node_modules/@waves/marshall/src/schemas.ts +630 -0
- data/js/node_modules/@waves/marshall/src/serialize.ts +110 -0
- data/js/node_modules/@waves/marshall/src/serializePrimitives.ts +80 -0
- data/js/node_modules/@waves/node-api-js/README.md +2 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.d.ts +21 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.js +20 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.d.ts +81 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.js +174 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.d.ts +6 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.js +22 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.d.ts +79 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.js +172 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.d.ts +131 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.js +210 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.d.ts +39 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.js +37 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.d.ts +189 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.js +245 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.js +15 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.d.ts +22 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.js +42 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.d.ts +11 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.js +20 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.d.ts +46 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.js +60 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.d.ts +21 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.js +21 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.d.ts +73 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.js +193 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.d.ts +110 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.js +211 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.d.ts +5 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.js +7 -0
- data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/constants.d.ts +40 -0
- data/js/node_modules/@waves/node-api-js/cjs/constants.js +43 -0
- data/js/node_modules/@waves/node-api-js/cjs/constants.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/create.d.ts +1240 -0
- data/js/node_modules/@waves/node-api-js/cjs/create.js +119 -0
- data/js/node_modules/@waves/node-api-js/cjs/create.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/index.d.ts +9 -0
- data/js/node_modules/@waves/node-api-js/cjs/index.js +18 -0
- data/js/node_modules/@waves/node-api-js/cjs/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/interface.d.ts +44 -0
- data/js/node_modules/@waves/node-api-js/cjs/interface.js +10 -0
- data/js/node_modules/@waves/node-api-js/cjs/interface.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.d.ts +7 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.js +30 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.js +47 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.d.ts +2 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.js +48 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.js +14 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.d.ts +6 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.js +13 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.d.ts +24 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.js +168 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.js +10 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.js +10 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.js +12 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.js +54 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.js +11 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.js +65 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/parse.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/parse.js +8 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/parse.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/query.d.ts +4 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/query.js +41 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/query.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/request.d.ts +64 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/request.js +42 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/request.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.js +7 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.js +21 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.d.ts +14 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.js +60 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.js +11 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.d.ts +0 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.js +2 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.d.ts +10 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.js +42 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/utils.d.ts +32 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/utils.js +118 -0
- data/js/node_modules/@waves/node-api-js/cjs/tools/utils.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/dist/0.node-api.js +467 -0
- data/js/node_modules/@waves/node-api-js/dist/node-api.js +30544 -0
- data/js/node_modules/@waves/node-api-js/dist/node-api.min.js +26 -0
- data/js/node_modules/@waves/node-api-js/dist/node-api.min.js.LICENSE.txt +17 -0
- data/js/node_modules/@waves/node-api-js/dist/node_fs-node_path.node-api.js +23 -0
- data/js/node_modules/@waves/node-api-js/dist/vendors-node_modules_node-fetch_src_utils_multipart-parser_js.node-api.js +599 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.d.ts +21 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.js +13 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.d.ts +81 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.js +111 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.d.ts +6 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.js +14 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.d.ts +79 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.js +103 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.d.ts +131 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.js +179 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.d.ts +39 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.js +27 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.d.ts +189 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.js +201 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.js +8 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.d.ts +22 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.js +22 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/node/index.d.ts +11 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/node/index.js +10 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/node/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.d.ts +46 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.js +46 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.d.ts +21 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.js +13 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.d.ts +73 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.js +137 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.d.ts +110 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.js +193 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.d.ts +5 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.js +7 -0
- data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/constants.d.ts +40 -0
- data/js/node_modules/@waves/node-api-js/es/constants.js +40 -0
- data/js/node_modules/@waves/node-api-js/es/constants.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/create.d.ts +1240 -0
- data/js/node_modules/@waves/node-api-js/es/create.js +93 -0
- data/js/node_modules/@waves/node-api-js/es/create.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/index.d.ts +9 -0
- data/js/node_modules/@waves/node-api-js/es/index.js +9 -0
- data/js/node_modules/@waves/node-api-js/es/index.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/interface.d.ts +44 -0
- data/js/node_modules/@waves/node-api-js/es/interface.js +3 -0
- data/js/node_modules/@waves/node-api-js/es/interface.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.d.ts +7 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.js +27 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.js +31 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.d.ts +2 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.js +24 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.js +8 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.d.ts +6 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.js +7 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.d.ts +24 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.js +134 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.js +7 -0
- data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.js +7 -0
- data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.js +9 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.js +51 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.js +5 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.d.ts +3 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.js +36 -0
- data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/parse.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/parse.js +5 -0
- data/js/node_modules/@waves/node-api-js/es/tools/parse.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/query.d.ts +4 -0
- data/js/node_modules/@waves/node-api-js/es/tools/query.js +12 -0
- data/js/node_modules/@waves/node-api-js/es/tools/query.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/request.d.ts +64 -0
- data/js/node_modules/@waves/node-api-js/es/tools/request.js +22 -0
- data/js/node_modules/@waves/node-api-js/es/tools/request.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/resolve.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/resolve.js +4 -0
- data/js/node_modules/@waves/node-api-js/es/tools/resolve.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/stringify.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/stringify.js +18 -0
- data/js/node_modules/@waves/node-api-js/es/tools/stringify.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.d.ts +14 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.js +43 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.d.ts +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.js +8 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.d.ts +0 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.js +2 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.d.ts +10 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.js +39 -0
- data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/es/tools/utils.d.ts +32 -0
- data/js/node_modules/@waves/node-api-js/es/tools/utils.js +73 -0
- data/js/node_modules/@waves/node-api-js/es/tools/utils.js.map +1 -0
- data/js/node_modules/@waves/node-api-js/package.json +66 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/clover.xml +225 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/coverage-final.json +2 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/base.css +212 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/index.html +93 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/parse-json-bignumber.ts.html +1598 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/prettify.css +1 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/prettify.js +1 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/sorter.js +158 -0
- data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov.info +415 -0
- data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.d.ts +11 -0
- data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.js +412 -0
- data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.min.js +1 -0
- data/js/node_modules/@waves/parse-json-bignumber/package.json +40 -0
- data/js/node_modules/@waves/parse-json-bignumber/src/parse-json-bignumber.ts +511 -0
- data/js/node_modules/@waves/parse-json-bignumber/test/index.ts +130 -0
- data/js/node_modules/@waves/parse-json-bignumber/test/tsconfig.json +14 -0
- data/js/node_modules/@waves/parse-json-bignumber/tsconfig.json +15 -0
- data/js/node_modules/@waves/protobuf-serialization/README.MD +116 -0
- data/js/node_modules/@waves/protobuf-serialization/dist/index.d.ts +2005 -0
- data/js/node_modules/@waves/protobuf-serialization/dist/index.js +6636 -0
- data/js/node_modules/@waves/protobuf-serialization/package.json +30 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/amount.proto +10 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/block.proto +40 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/events/events.proto +213 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/events/grpc/blockchain_updates.proto +42 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/invoke_script_result.proto +98 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/lang/dapp_meta.proto +21 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/accounts_api.proto +68 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/assets_api.proto +41 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/blockchain_api.proto +54 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/blocks_api.proto +41 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/transactions_api.proto +73 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/order.proto +43 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/recipient.proto +13 -0
- data/js/node_modules/@waves/protobuf-serialization/proto/waves/transaction.proto +156 -0
- data/js/node_modules/@waves/ts-lib-crypto/README.md +492 -0
- data/js/node_modules/@waves/ts-lib-crypto/bytes.d.ts +10 -0
- data/js/node_modules/@waves/ts-lib-crypto/bytes.js +21 -0
- data/js/node_modules/@waves/ts-lib-crypto/bytes.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.js +27 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/param.d.ts +3 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/param.js +24 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/param.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.d.ts +11 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.js +65 -0
- data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.js +58 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.d.ts +3 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.js +39 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.d.ts +13 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.js +117 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.d.ts +6 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.js +89 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.js +39 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.d.ts +98 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.js +9 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.js +51 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/random.d.ts +4 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/random.js +51 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/random.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.js +159 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.d.ts +9 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.js +62 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.d.ts +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.js +189 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.d.ts +2 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.js +16 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/util.d.ts +3 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/util.js +9 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/util.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.d.ts +7 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.js +49 -0
- data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.d.ts +5 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.js +16 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.d.ts +6 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.js +18 -0
- data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/index.d.ts +10 -0
- data/js/node_modules/@waves/ts-lib-crypto/index.js +21 -0
- data/js/node_modules/@waves/ts-lib-crypto/index.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.d.ts +2 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.js +61 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/axlsign.js +1374 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/base58.d.ts +5 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/base58.js +66 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/base58.js.map +1 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/blake2b.js +308 -0
- data/js/node_modules/@waves/ts-lib-crypto/libs/sha3.js +441 -0
- data/js/node_modules/@waves/ts-lib-crypto/min/waves-lib-crypto.js +33 -0
- data/js/node_modules/@waves/ts-lib-crypto/package.json +31 -0
- data/js/node_modules/@waves/ts-types/dist/src/common.d.ts +59 -0
- data/js/node_modules/@waves/ts-types/dist/src/common.js +53 -0
- data/js/node_modules/@waves/ts-types/dist/src/exchange.d.ts +47 -0
- data/js/node_modules/@waves/ts-types/dist/src/exchange.js +2 -0
- data/js/node_modules/@waves/ts-types/dist/src/index.d.ts +52 -0
- data/js/node_modules/@waves/ts-types/dist/src/index.js +63 -0
- data/js/node_modules/@waves/ts-types/dist/src/invoke.d.ts +22 -0
- data/js/node_modules/@waves/ts-types/dist/src/invoke.js +2 -0
- data/js/node_modules/@waves/ts-types/dist/src/network.d.ts +6 -0
- data/js/node_modules/@waves/ts-types/dist/src/network.js +10 -0
- data/js/node_modules/@waves/ts-types/dist/src/parts.d.ts +159 -0
- data/js/node_modules/@waves/ts-types/dist/src/parts.js +2 -0
- data/js/node_modules/@waves/ts-types/dist/transactions/index.d.ts +363 -0
- data/js/node_modules/@waves/ts-types/dist/transactions/index.js +3 -0
- data/js/node_modules/@waves/ts-types/index.ts +1 -0
- data/js/node_modules/@waves/ts-types/package.json +41 -0
- data/js/node_modules/@waves/ts-types/src/index.ts +57 -0
- data/js/node_modules/@waves/ts-types/src/parts.ts +247 -0
- data/js/node_modules/@waves/ts-types/transactions/index.ts +789 -0
- data/js/node_modules/@waves/ts-types/tsconfig.json +16 -0
- data/js/node_modules/@waves/waves-transactions/README.md +432 -0
- data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.d.ts +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.js +22 -0
- data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/general.d.ts +68 -0
- data/js/node_modules/@waves/waves-transactions/dist/general.js +135 -0
- data/js/node_modules/@waves/waves-transactions/dist/general.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/generic.d.ts +28 -0
- data/js/node_modules/@waves/waves-transactions/dist/generic.js +88 -0
- data/js/node_modules/@waves/waves-transactions/dist/generic.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/index.d.ts +37 -0
- data/js/node_modules/@waves/waves-transactions/dist/index.js +98 -0
- data/js/node_modules/@waves/waves-transactions/dist/index.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/make-tx.d.ts +50 -0
- data/js/node_modules/@waves/waves-transactions/dist/make-tx.js +106 -0
- data/js/node_modules/@waves/waves-transactions/dist/make-tx.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/min/waves-transactions.min.js +26 -0
- data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.d.ts +116 -0
- data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.js +277 -0
- data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.d.ts +62 -0
- data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.js +514 -0
- data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/auth.d.ts +7 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/auth.js +31 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/auth.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.d.ts +7 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.js +29 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.d.ts +40 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.js +37 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/order.d.ts +50 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/order.js +62 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/order.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.d.ts +7 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.js +31 -0
- data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.d.ts +21 -0
- data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.js +85 -0
- data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.js +35 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.js +35 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.js +34 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/data.d.ts +5 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/data.js +112 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/data.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.d.ts +7 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.js +39 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.d.ts +0 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.js +52 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.js +43 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.js +42 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.js +35 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.js +39 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.js +36 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.js +37 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.js +38 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.js +35 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.js +38 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.d.ts +8 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.js +35 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions.d.ts +277 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions.js +3 -0
- data/js/node_modules/@waves/waves-transactions/dist/transactions.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/types.d.ts +11 -0
- data/js/node_modules/@waves/waves-transactions/dist/types.js +6 -0
- data/js/node_modules/@waves/waves-transactions/dist/types.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/alias.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/alias.js +17 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/alias.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/auth.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/auth.js +10 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/auth.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/burn.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/burn.js +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/burn.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.js +17 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.js +12 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.js +16 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/data.d.ts +2 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/data.js +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/data.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.js +22 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/index.d.ts +24 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/index.js +60 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/index.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.d.ts +0 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.js +33 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.js +20 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/issue.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/issue.js +22 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/issue.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/lease.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/lease.js +17 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/lease.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.js +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/order.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/order.js +34 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/order.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.js +19 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.js +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.js +17 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.js +17 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.js +20 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.js +18 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/validators.d.ts +52 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/validators.js +160 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/validators.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.d.ts +1 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.js +10 -0
- data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.js.map +1 -0
- data/js/node_modules/@waves/waves-transactions/package.json +83 -0
- data/js/node_modules/@waves/waves-transactions/src/defaultVersions.ts +18 -0
- data/js/node_modules/@waves/waves-transactions/src/general.ts +165 -0
- data/js/node_modules/@waves/waves-transactions/src/generic.ts +88 -0
- data/js/node_modules/@waves/waves-transactions/src/index.ts +87 -0
- data/js/node_modules/@waves/waves-transactions/src/make-tx.ts +179 -0
- data/js/node_modules/@waves/waves-transactions/src/nodeInteraction.ts +297 -0
- data/js/node_modules/@waves/waves-transactions/src/proto-serialize.ts +571 -0
- data/js/node_modules/@waves/waves-transactions/src/requests/auth.ts +42 -0
- data/js/node_modules/@waves/waves-transactions/src/requests/cancel-order.ts +37 -0
- data/js/node_modules/@waves/waves-transactions/src/requests/custom-data.ts +73 -0
- data/js/node_modules/@waves/waves-transactions/src/requests/order.ts +121 -0
- data/js/node_modules/@waves/waves-transactions/src/requests/wavesAuth.ts +40 -0
- data/js/node_modules/@waves/waves-transactions/src/seedUtils/index.ts +124 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/alias.ts +46 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/burn.ts +45 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/cancel-lease.ts +44 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/data.ts +122 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/exchange.ts +47 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/invoke-expression.ts +50 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/invoke-script.ts +54 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/issue.ts +52 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/lease.ts +45 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/mass-transfer.ts +55 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/reissue.ts +46 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/set-asset-script.ts +57 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/set-script.ts +54 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/sponsorship.ts +45 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/transfer.ts +55 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions/update-asset-info.ts +44 -0
- data/js/node_modules/@waves/waves-transactions/src/transactions.ts +352 -0
- data/js/node_modules/@waves/waves-transactions/src/types.ts +12 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/alias.ts +28 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/auth.ts +14 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/burn.ts +29 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/cancel-lease.ts +27 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/cancel-order.ts +17 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/custom-data.ts +40 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/data.ts +33 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/exchange.ts +36 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/index.ts +50 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/invoke-expression.ts +31 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/invoke-script.ts +64 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/issue.ts +41 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/lease.ts +29 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/mass-transfer.ts +47 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/order.ts +68 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/reissue.ts +31 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/set-asset-script.ts +28 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/set-script.ts +28 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/sponsorship.ts +28 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/transfer.ts +32 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/update-asset-info.ts +32 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/validators.ts +306 -0
- data/js/node_modules/@waves/waves-transactions/src/validators/wavesAuth.ts +15 -0
- data/js/node_modules/asynckit/LICENSE +21 -0
- data/js/node_modules/asynckit/README.md +233 -0
- data/js/node_modules/asynckit/bench.js +76 -0
- data/js/node_modules/asynckit/index.js +6 -0
- data/js/node_modules/asynckit/lib/abort.js +29 -0
- data/js/node_modules/asynckit/lib/async.js +34 -0
- data/js/node_modules/asynckit/lib/defer.js +26 -0
- data/js/node_modules/asynckit/lib/iterate.js +75 -0
- data/js/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- data/js/node_modules/asynckit/lib/readable_parallel.js +25 -0
- data/js/node_modules/asynckit/lib/readable_serial.js +25 -0
- data/js/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- data/js/node_modules/asynckit/lib/state.js +37 -0
- data/js/node_modules/asynckit/lib/streamify.js +141 -0
- data/js/node_modules/asynckit/lib/terminator.js +29 -0
- data/js/node_modules/asynckit/package.json +63 -0
- data/js/node_modules/asynckit/parallel.js +43 -0
- data/js/node_modules/asynckit/serial.js +17 -0
- data/js/node_modules/asynckit/serialOrdered.js +75 -0
- data/js/node_modules/asynckit/stream.js +21 -0
- data/js/node_modules/axios/CHANGELOG.md +413 -0
- data/js/node_modules/axios/LICENSE +19 -0
- data/js/node_modules/axios/README.md +709 -0
- data/js/node_modules/axios/UPGRADE_GUIDE.md +162 -0
- data/js/node_modules/axios/dist/axios.js +1715 -0
- data/js/node_modules/axios/dist/axios.map +1 -0
- data/js/node_modules/axios/dist/axios.min.js +3 -0
- data/js/node_modules/axios/dist/axios.min.map +1 -0
- data/js/node_modules/axios/index.d.ts +157 -0
- data/js/node_modules/axios/index.js +1 -0
- data/js/node_modules/axios/lib/adapters/README.md +37 -0
- data/js/node_modules/axios/lib/adapters/http.js +279 -0
- data/js/node_modules/axios/lib/adapters/xhr.js +180 -0
- data/js/node_modules/axios/lib/axios.js +53 -0
- data/js/node_modules/axios/lib/cancel/Cancel.js +19 -0
- data/js/node_modules/axios/lib/cancel/CancelToken.js +57 -0
- data/js/node_modules/axios/lib/cancel/isCancel.js +5 -0
- data/js/node_modules/axios/lib/core/Axios.js +94 -0
- data/js/node_modules/axios/lib/core/InterceptorManager.js +52 -0
- data/js/node_modules/axios/lib/core/README.md +7 -0
- data/js/node_modules/axios/lib/core/buildFullPath.js +20 -0
- data/js/node_modules/axios/lib/core/createError.js +18 -0
- data/js/node_modules/axios/lib/core/dispatchRequest.js +79 -0
- data/js/node_modules/axios/lib/core/enhanceError.js +42 -0
- data/js/node_modules/axios/lib/core/mergeConfig.js +73 -0
- data/js/node_modules/axios/lib/core/settle.js +25 -0
- data/js/node_modules/axios/lib/core/transformData.js +20 -0
- data/js/node_modules/axios/lib/defaults.js +97 -0
- data/js/node_modules/axios/lib/helpers/README.md +7 -0
- data/js/node_modules/axios/lib/helpers/bind.js +11 -0
- data/js/node_modules/axios/lib/helpers/buildURL.js +71 -0
- data/js/node_modules/axios/lib/helpers/combineURLs.js +14 -0
- data/js/node_modules/axios/lib/helpers/cookies.js +53 -0
- data/js/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
- data/js/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
- data/js/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
- data/js/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
- data/js/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
- data/js/node_modules/axios/lib/helpers/spread.js +27 -0
- data/js/node_modules/axios/lib/utils.js +344 -0
- data/js/node_modules/axios/package.json +84 -0
- data/js/node_modules/base64-js/LICENSE +21 -0
- data/js/node_modules/base64-js/README.md +34 -0
- data/js/node_modules/base64-js/base64js.min.js +1 -0
- data/js/node_modules/base64-js/index.d.ts +3 -0
- data/js/node_modules/base64-js/index.js +150 -0
- data/js/node_modules/base64-js/package.json +47 -0
- data/js/node_modules/bignumber.js/CHANGELOG.md +290 -0
- data/js/node_modules/bignumber.js/LICENCE.md +26 -0
- data/js/node_modules/bignumber.js/README.md +286 -0
- data/js/node_modules/bignumber.js/bignumber.d.ts +1831 -0
- data/js/node_modules/bignumber.js/bignumber.js +2926 -0
- data/js/node_modules/bignumber.js/bignumber.mjs +2889 -0
- data/js/node_modules/bignumber.js/doc/API.html +2249 -0
- data/js/node_modules/bignumber.js/package.json +50 -0
- data/js/node_modules/combined-stream/License +19 -0
- data/js/node_modules/combined-stream/Readme.md +138 -0
- data/js/node_modules/combined-stream/lib/combined_stream.js +208 -0
- data/js/node_modules/combined-stream/package.json +25 -0
- data/js/node_modules/combined-stream/yarn.lock +17 -0
- data/js/node_modules/debug/CHANGELOG.md +395 -0
- data/js/node_modules/debug/LICENSE +19 -0
- data/js/node_modules/debug/Makefile +58 -0
- data/js/node_modules/debug/README.md +368 -0
- data/js/node_modules/debug/karma.conf.js +70 -0
- data/js/node_modules/debug/node.js +1 -0
- data/js/node_modules/debug/package.json +43 -0
- data/js/node_modules/debug/src/browser.js +195 -0
- data/js/node_modules/debug/src/debug.js +225 -0
- data/js/node_modules/debug/src/index.js +10 -0
- data/js/node_modules/debug/src/node.js +186 -0
- data/js/node_modules/delayed-stream/License +19 -0
- data/js/node_modules/delayed-stream/Makefile +7 -0
- data/js/node_modules/delayed-stream/Readme.md +141 -0
- data/js/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- data/js/node_modules/delayed-stream/package.json +27 -0
- data/js/node_modules/follow-redirects/LICENSE +18 -0
- data/js/node_modules/follow-redirects/README.md +155 -0
- data/js/node_modules/follow-redirects/http.js +1 -0
- data/js/node_modules/follow-redirects/https.js +1 -0
- data/js/node_modules/follow-redirects/index.js +322 -0
- data/js/node_modules/follow-redirects/package.json +60 -0
- data/js/node_modules/form-data/License +19 -0
- data/js/node_modules/form-data/README.md.bak +356 -0
- data/js/node_modules/form-data/Readme.md +356 -0
- data/js/node_modules/form-data/index.d.ts +62 -0
- data/js/node_modules/form-data/lib/browser.js +2 -0
- data/js/node_modules/form-data/lib/form_data.js +498 -0
- data/js/node_modules/form-data/lib/populate.js +10 -0
- data/js/node_modules/form-data/package.json +68 -0
- data/js/node_modules/js-sha3/CHANGELOG.md +106 -0
- data/js/node_modules/js-sha3/LICENSE.txt +20 -0
- data/js/node_modules/js-sha3/README.md +241 -0
- data/js/node_modules/js-sha3/build/sha3.min.js +9 -0
- data/js/node_modules/js-sha3/index.d.ts +317 -0
- data/js/node_modules/js-sha3/package.json +45 -0
- data/js/node_modules/js-sha3/src/sha3.js +656 -0
- data/js/node_modules/long/LICENSE +202 -0
- data/js/node_modules/long/README.md +246 -0
- data/js/node_modules/long/dist/long.js +2 -0
- data/js/node_modules/long/dist/long.js.map +1 -0
- data/js/node_modules/long/index.js +1 -0
- data/js/node_modules/long/package.json +34 -0
- data/js/node_modules/long/src/long.js +1323 -0
- data/js/node_modules/mime-db/HISTORY.md +507 -0
- data/js/node_modules/mime-db/LICENSE +23 -0
- data/js/node_modules/mime-db/README.md +100 -0
- data/js/node_modules/mime-db/db.json +8519 -0
- data/js/node_modules/mime-db/index.js +12 -0
- data/js/node_modules/mime-db/package.json +60 -0
- data/js/node_modules/mime-types/HISTORY.md +397 -0
- data/js/node_modules/mime-types/LICENSE +23 -0
- data/js/node_modules/mime-types/README.md +113 -0
- data/js/node_modules/mime-types/index.js +188 -0
- data/js/node_modules/mime-types/package.json +44 -0
- data/js/node_modules/ms/index.js +152 -0
- data/js/node_modules/ms/license.md +21 -0
- data/js/node_modules/ms/package.json +37 -0
- data/js/node_modules/ms/readme.md +51 -0
- data/js/node_modules/node-fetch/LICENSE.md +22 -0
- data/js/node_modules/node-fetch/README.md +633 -0
- data/js/node_modules/node-fetch/browser.js +25 -0
- data/js/node_modules/node-fetch/lib/index.es.js +1781 -0
- data/js/node_modules/node-fetch/lib/index.js +1790 -0
- data/js/node_modules/node-fetch/lib/index.mjs +1779 -0
- data/js/node_modules/node-fetch/package.json +89 -0
- data/js/node_modules/node-forge/CHANGELOG.md +211 -0
- data/js/node_modules/node-forge/LICENSE +331 -0
- data/js/node_modules/node-forge/README.md +2097 -0
- data/js/node_modules/node-forge/dist/forge.all.min.js +2 -0
- data/js/node_modules/node-forge/dist/forge.all.min.js.map +1 -0
- data/js/node_modules/node-forge/dist/forge.min.js +2 -0
- data/js/node_modules/node-forge/dist/forge.min.js.map +1 -0
- data/js/node_modules/node-forge/dist/prime.worker.min.js +2 -0
- data/js/node_modules/node-forge/dist/prime.worker.min.js.map +1 -0
- data/js/node_modules/node-forge/flash/README.md +48 -0
- data/js/node_modules/node-forge/flash/package.json +28 -0
- data/js/node_modules/node-forge/flash/swf/SocketPool.swf +0 -0
- data/js/node_modules/node-forge/lib/aes.js +1091 -0
- data/js/node_modules/node-forge/lib/aesCipherSuites.js +282 -0
- data/js/node_modules/node-forge/lib/asn1.js +1408 -0
- data/js/node_modules/node-forge/lib/baseN.js +186 -0
- data/js/node_modules/node-forge/lib/cipher.js +230 -0
- data/js/node_modules/node-forge/lib/cipherModes.js +987 -0
- data/js/node_modules/node-forge/lib/debug.js +78 -0
- data/js/node_modules/node-forge/lib/des.js +496 -0
- data/js/node_modules/node-forge/lib/ed25519.js +996 -0
- data/js/node_modules/node-forge/lib/forge.js +13 -0
- data/js/node_modules/node-forge/lib/form.js +149 -0
- data/js/node_modules/node-forge/lib/hmac.js +146 -0
- data/js/node_modules/node-forge/lib/http.js +1364 -0
- data/js/node_modules/node-forge/lib/index.all.js +16 -0
- data/js/node_modules/node-forge/lib/index.js +35 -0
- data/js/node_modules/node-forge/lib/jsbn.js +1264 -0
- data/js/node_modules/node-forge/lib/kem.js +168 -0
- data/js/node_modules/node-forge/lib/log.js +317 -0
- data/js/node_modules/node-forge/lib/md.all.js +13 -0
- data/js/node_modules/node-forge/lib/md.js +11 -0
- data/js/node_modules/node-forge/lib/md5.js +289 -0
- data/js/node_modules/node-forge/lib/mgf.js +12 -0
- data/js/node_modules/node-forge/lib/mgf1.js +57 -0
- data/js/node_modules/node-forge/lib/oids.js +163 -0
- data/js/node_modules/node-forge/lib/pbe.js +1023 -0
- data/js/node_modules/node-forge/lib/pbkdf2.js +211 -0
- data/js/node_modules/node-forge/lib/pem.js +230 -0
- data/js/node_modules/node-forge/lib/pkcs1.js +276 -0
- data/js/node_modules/node-forge/lib/pkcs12.js +1074 -0
- data/js/node_modules/node-forge/lib/pkcs7.js +1257 -0
- data/js/node_modules/node-forge/lib/pkcs7asn1.js +409 -0
- data/js/node_modules/node-forge/lib/pki.js +102 -0
- data/js/node_modules/node-forge/lib/prime.js +297 -0
- data/js/node_modules/node-forge/lib/prime.worker.js +168 -0
- data/js/node_modules/node-forge/lib/prng.js +419 -0
- data/js/node_modules/node-forge/lib/pss.js +241 -0
- data/js/node_modules/node-forge/lib/random.js +191 -0
- data/js/node_modules/node-forge/lib/rc2.js +410 -0
- data/js/node_modules/node-forge/lib/rsa.js +1858 -0
- data/js/node_modules/node-forge/lib/sha1.js +319 -0
- data/js/node_modules/node-forge/lib/sha256.js +327 -0
- data/js/node_modules/node-forge/lib/sha512.js +561 -0
- data/js/node_modules/node-forge/lib/socket.js +287 -0
- data/js/node_modules/node-forge/lib/ssh.js +236 -0
- data/js/node_modules/node-forge/lib/task.js +725 -0
- data/js/node_modules/node-forge/lib/tls.js +4282 -0
- data/js/node_modules/node-forge/lib/tlssocket.js +249 -0
- data/js/node_modules/node-forge/lib/util.js +2993 -0
- data/js/node_modules/node-forge/lib/x509.js +3333 -0
- data/js/node_modules/node-forge/lib/xhr.js +736 -0
- data/js/node_modules/node-forge/package.json +120 -0
- data/js/node_modules/protobufjs/CHANGELOG.md +1027 -0
- data/js/node_modules/protobufjs/LICENSE +39 -0
- data/js/node_modules/protobufjs/README.md +905 -0
- data/js/node_modules/protobufjs/bin/pbjs +6 -0
- data/js/node_modules/protobufjs/bin/pbts +6 -0
- data/js/node_modules/protobufjs/cli/LICENSE +33 -0
- data/js/node_modules/protobufjs/cli/README.md +174 -0
- data/js/node_modules/protobufjs/cli/bin/pbjs +6 -0
- data/js/node_modules/protobufjs/cli/bin/pbts +6 -0
- data/js/node_modules/protobufjs/cli/index.d.ts +3 -0
- data/js/node_modules/protobufjs/cli/index.js +3 -0
- data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/LICENSE +21 -0
- data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/README.md +23 -0
- data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/plugin.js +21 -0
- data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/publish.js +705 -0
- data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc.json +18 -0
- data/js/node_modules/protobufjs/cli/package.json +8 -0
- data/js/node_modules/protobufjs/cli/package.standalone.json +32 -0
- data/js/node_modules/protobufjs/cli/pbjs.d.ts +9 -0
- data/js/node_modules/protobufjs/cli/pbjs.js +330 -0
- data/js/node_modules/protobufjs/cli/pbts.d.ts +9 -0
- data/js/node_modules/protobufjs/cli/pbts.js +197 -0
- data/js/node_modules/protobufjs/cli/targets/json-module.js +38 -0
- data/js/node_modules/protobufjs/cli/targets/json.js +8 -0
- data/js/node_modules/protobufjs/cli/targets/proto.js +326 -0
- data/js/node_modules/protobufjs/cli/targets/proto2.js +10 -0
- data/js/node_modules/protobufjs/cli/targets/proto3.js +10 -0
- data/js/node_modules/protobufjs/cli/targets/static-module.js +29 -0
- data/js/node_modules/protobufjs/cli/targets/static.js +711 -0
- data/js/node_modules/protobufjs/cli/util.js +183 -0
- data/js/node_modules/protobufjs/cli/wrappers/amd.js +7 -0
- data/js/node_modules/protobufjs/cli/wrappers/closure.js +7 -0
- data/js/node_modules/protobufjs/cli/wrappers/commonjs.js +7 -0
- data/js/node_modules/protobufjs/cli/wrappers/default.js +15 -0
- data/js/node_modules/protobufjs/cli/wrappers/es6.js +5 -0
- data/js/node_modules/protobufjs/dist/README.md +31 -0
- data/js/node_modules/protobufjs/dist/light/README.md +31 -0
- data/js/node_modules/protobufjs/dist/light/protobuf.js +7322 -0
- data/js/node_modules/protobufjs/dist/light/protobuf.js.map +1 -0
- data/js/node_modules/protobufjs/dist/light/protobuf.min.js +8 -0
- data/js/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -0
- data/js/node_modules/protobufjs/dist/minimal/README.md +31 -0
- data/js/node_modules/protobufjs/dist/minimal/protobuf.js +2714 -0
- data/js/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -0
- data/js/node_modules/protobufjs/dist/minimal/protobuf.min.js +8 -0
- data/js/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -0
- data/js/node_modules/protobufjs/dist/protobuf.js +8964 -0
- data/js/node_modules/protobufjs/dist/protobuf.js.map +1 -0
- data/js/node_modules/protobufjs/dist/protobuf.min.js +8 -0
- data/js/node_modules/protobufjs/dist/protobuf.min.js.map +1 -0
- data/js/node_modules/protobufjs/ext/debug/README.md +4 -0
- data/js/node_modules/protobufjs/ext/debug/index.js +71 -0
- data/js/node_modules/protobufjs/ext/descriptor/README.md +72 -0
- data/js/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -0
- data/js/node_modules/protobufjs/ext/descriptor/index.js +1052 -0
- data/js/node_modules/protobufjs/ext/descriptor/test.js +54 -0
- data/js/node_modules/protobufjs/google/LICENSE +27 -0
- data/js/node_modules/protobufjs/google/README.md +1 -0
- data/js/node_modules/protobufjs/google/api/annotations.json +83 -0
- data/js/node_modules/protobufjs/google/api/annotations.proto +11 -0
- data/js/node_modules/protobufjs/google/api/http.json +86 -0
- data/js/node_modules/protobufjs/google/api/http.proto +31 -0
- data/js/node_modules/protobufjs/google/protobuf/api.json +118 -0
- data/js/node_modules/protobufjs/google/protobuf/api.proto +34 -0
- data/js/node_modules/protobufjs/google/protobuf/descriptor.json +739 -0
- data/js/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -0
- data/js/node_modules/protobufjs/google/protobuf/source_context.json +20 -0
- data/js/node_modules/protobufjs/google/protobuf/source_context.proto +7 -0
- data/js/node_modules/protobufjs/google/protobuf/type.json +202 -0
- data/js/node_modules/protobufjs/google/protobuf/type.proto +89 -0
- data/js/node_modules/protobufjs/index.d.ts +2739 -0
- data/js/node_modules/protobufjs/index.js +4 -0
- data/js/node_modules/protobufjs/light.d.ts +2 -0
- data/js/node_modules/protobufjs/light.js +4 -0
- data/js/node_modules/protobufjs/minimal.d.ts +2 -0
- data/js/node_modules/protobufjs/minimal.js +4 -0
- data/js/node_modules/protobufjs/package-lock.json +7870 -0
- data/js/node_modules/protobufjs/package.json +122 -0
- data/js/node_modules/protobufjs/scripts/changelog.js +150 -0
- data/js/node_modules/protobufjs/scripts/postinstall.js +35 -0
- data/js/node_modules/protobufjs/src/common.js +399 -0
- data/js/node_modules/protobufjs/src/converter.js +293 -0
- data/js/node_modules/protobufjs/src/decoder.js +128 -0
- data/js/node_modules/protobufjs/src/encoder.js +100 -0
- data/js/node_modules/protobufjs/src/enum.js +181 -0
- data/js/node_modules/protobufjs/src/field.js +374 -0
- data/js/node_modules/protobufjs/src/index-light.js +104 -0
- data/js/node_modules/protobufjs/src/index-minimal.js +36 -0
- data/js/node_modules/protobufjs/src/index.js +12 -0
- data/js/node_modules/protobufjs/src/mapfield.js +126 -0
- data/js/node_modules/protobufjs/src/message.js +139 -0
- data/js/node_modules/protobufjs/src/method.js +160 -0
- data/js/node_modules/protobufjs/src/namespace.js +434 -0
- data/js/node_modules/protobufjs/src/object.js +243 -0
- data/js/node_modules/protobufjs/src/oneof.js +203 -0
- data/js/node_modules/protobufjs/src/parse.js +820 -0
- data/js/node_modules/protobufjs/src/reader.js +411 -0
- data/js/node_modules/protobufjs/src/reader_buffer.js +51 -0
- data/js/node_modules/protobufjs/src/root.js +363 -0
- data/js/node_modules/protobufjs/src/roots.js +18 -0
- data/js/node_modules/protobufjs/src/rpc/service.js +142 -0
- data/js/node_modules/protobufjs/src/rpc.js +36 -0
- data/js/node_modules/protobufjs/src/service.js +167 -0
- data/js/node_modules/protobufjs/src/tokenize.js +403 -0
- data/js/node_modules/protobufjs/src/type.js +589 -0
- data/js/node_modules/protobufjs/src/types.js +196 -0
- data/js/node_modules/protobufjs/src/typescript.jsdoc +15 -0
- data/js/node_modules/protobufjs/src/util/longbits.js +200 -0
- data/js/node_modules/protobufjs/src/util/minimal.js +421 -0
- data/js/node_modules/protobufjs/src/util.js +212 -0
- data/js/node_modules/protobufjs/src/verifier.js +177 -0
- data/js/node_modules/protobufjs/src/wrappers.js +102 -0
- data/js/node_modules/protobufjs/src/writer.js +465 -0
- data/js/node_modules/protobufjs/src/writer_buffer.js +85 -0
- data/js/node_modules/protobufjs/tsconfig.json +7 -0
- data/js/node_modules/tr46/index.js +193 -0
- data/js/node_modules/tr46/lib/mappingTable.json +1 -0
- data/js/node_modules/tr46/package.json +31 -0
- data/js/node_modules/typed-ts-events/dist/EventEmitter.d.ts +23 -0
- data/js/node_modules/typed-ts-events/dist/events.js +145 -0
- data/js/node_modules/typed-ts-events/dist/events.js.map +1 -0
- data/js/node_modules/typed-ts-events/dist/events.min.js +2 -0
- data/js/node_modules/typed-ts-events/dist/events.min.js.map +1 -0
- data/js/node_modules/typed-ts-events/dist/index.d.ts +3 -0
- data/js/node_modules/typed-ts-events/package.json +64 -0
- data/js/node_modules/typed-ts-events/readme.md +77 -0
- data/js/node_modules/webidl-conversions/LICENSE.md +12 -0
- data/js/node_modules/webidl-conversions/README.md +53 -0
- data/js/node_modules/webidl-conversions/lib/index.js +189 -0
- data/js/node_modules/webidl-conversions/package.json +23 -0
- data/js/node_modules/whatwg-url/LICENSE.txt +21 -0
- data/js/node_modules/whatwg-url/README.md +67 -0
- data/js/node_modules/whatwg-url/lib/URL-impl.js +200 -0
- data/js/node_modules/whatwg-url/lib/URL.js +196 -0
- data/js/node_modules/whatwg-url/lib/public-api.js +11 -0
- data/js/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
- data/js/node_modules/whatwg-url/lib/utils.js +20 -0
- data/js/node_modules/whatwg-url/package.json +32 -0
- data/js/package-lock.json +706 -0
- data/js/package.json +15 -0
- data/js/worker.js +109 -0
- data/js/yarn.lock +285 -0
- data/lib/waves_lib/map.rb +211 -0
- data/lib/waves_lib/root_wrapper.rb +85 -0
- data/lib/waves_lib/version.rb +6 -0
- data/lib/waves_lib/wrapped_buffer.rb +26 -0
- data/lib/waves_lib/wrapper.rb +82 -0
- data/lib/waves_lib.rb +10 -0
- metadata +1264 -0
@@ -0,0 +1,1240 @@
|
|
1
|
+
import * as addressesModule from './api-node/addresses';
|
2
|
+
import * as blocksModule from './api-node/blocks';
|
3
|
+
import * as transactionsModule from './api-node/transactions';
|
4
|
+
import * as leasingModule from './api-node/leasing';
|
5
|
+
import * as peersModule from './api-node/peers';
|
6
|
+
import * as rewardsModule from './api-node/rewards';
|
7
|
+
import * as utilsModule from './api-node/utils';
|
8
|
+
import * as debugModule from './api-node/debug';
|
9
|
+
import * as aliasModule from './api-node/alias';
|
10
|
+
import * as consensusModule from './api-node/consensus';
|
11
|
+
import * as activationModule from './api-node/activation';
|
12
|
+
import * as nodeModule from './api-node/node';
|
13
|
+
import * as assetsModule from './api-node/assets';
|
14
|
+
import * as ethModule from './api-node/eth';
|
15
|
+
import query from './tools/query';
|
16
|
+
import resolve from './tools/resolve';
|
17
|
+
import request from './tools/request';
|
18
|
+
import { IOptions, TMap, TMapTuple } from './tools/transactions/broadcast';
|
19
|
+
import getAssetIdListByTx from './tools/adresses/getAssetIdListByTx';
|
20
|
+
import parse from './tools/parse';
|
21
|
+
import * as toolsUtilsModule from './tools/utils';
|
22
|
+
import { Transaction, TransactionMap, WithApiMixin } from '@waves/ts-types';
|
23
|
+
import { TLong } from './interface';
|
24
|
+
declare function broadcastWrapped<T extends Array<Transaction<TLong>>>(list: T, options?: Partial<IOptions>): Promise<TMapTuple<T, TransactionMap<TLong>, 'type'> & WithApiMixin>;
|
25
|
+
declare function broadcastWrapped<T extends Transaction<TLong>>(tx: T, options?: Partial<IOptions>): Promise<TMap<TransactionMap<TLong>, T['type'] & WithApiMixin>>;
|
26
|
+
declare type TWrapRecord<T extends Record<string, (base: string, ...args: Array<any>) => any>> = {
|
27
|
+
[Key in keyof T]: TWrapApi<T[Key]>;
|
28
|
+
};
|
29
|
+
declare type TWrapApi<T extends (base: string, ...args: Array<any>) => any> = T extends (base: string, ...args: infer NEXT) => any ? (...args: NEXT) => ReturnType<T> : never;
|
30
|
+
export declare function create(base: string): {
|
31
|
+
addresses: TWrapRecord<typeof addressesModule>;
|
32
|
+
blocks: TWrapRecord<typeof blocksModule>;
|
33
|
+
transactions: TWrapRecord<typeof transactionsModule>;
|
34
|
+
leasing: TWrapRecord<typeof leasingModule>;
|
35
|
+
tools: {
|
36
|
+
transactions: {
|
37
|
+
broadcast: typeof broadcastWrapped;
|
38
|
+
wait: (tx: (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
39
|
+
version: 1;
|
40
|
+
} & import("@waves/ts-types").WithId & {
|
41
|
+
sender: string;
|
42
|
+
height: number;
|
43
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
44
|
+
version: 2;
|
45
|
+
} & import("@waves/ts-types").WithId & {
|
46
|
+
sender: string;
|
47
|
+
height: number;
|
48
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
49
|
+
version: 3;
|
50
|
+
} & import("@waves/ts-types").WithId & {
|
51
|
+
sender: string;
|
52
|
+
height: number;
|
53
|
+
}) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
|
54
|
+
type: 1;
|
55
|
+
chainId: number;
|
56
|
+
timestamp: number;
|
57
|
+
fee: import("@waves/ts-types").Long;
|
58
|
+
} & {
|
59
|
+
version: 1;
|
60
|
+
} & import("@waves/ts-types").WithId & {
|
61
|
+
sender: string;
|
62
|
+
height: number;
|
63
|
+
}) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
|
64
|
+
version: 1;
|
65
|
+
} & import("@waves/ts-types").WithId & {
|
66
|
+
sender: string;
|
67
|
+
height: number;
|
68
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
69
|
+
version: 1;
|
70
|
+
} & import("@waves/ts-types").WithId & {
|
71
|
+
sender: string;
|
72
|
+
height: number;
|
73
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
74
|
+
version: 2;
|
75
|
+
} & import("@waves/ts-types").WithId & {
|
76
|
+
sender: string;
|
77
|
+
height: number;
|
78
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
79
|
+
version: 3;
|
80
|
+
} & import("@waves/ts-types").WithId & {
|
81
|
+
sender: string;
|
82
|
+
height: number;
|
83
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
84
|
+
version: 1;
|
85
|
+
} & import("@waves/ts-types").WithId & {
|
86
|
+
sender: string;
|
87
|
+
height: number;
|
88
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
89
|
+
version: 2;
|
90
|
+
} & import("@waves/ts-types").WithId & {
|
91
|
+
sender: string;
|
92
|
+
height: number;
|
93
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
94
|
+
version: 3;
|
95
|
+
} & import("@waves/ts-types").WithId & {
|
96
|
+
sender: string;
|
97
|
+
height: number;
|
98
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
99
|
+
version: 1;
|
100
|
+
} & import("@waves/ts-types").WithId & {
|
101
|
+
sender: string;
|
102
|
+
height: number;
|
103
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
104
|
+
version: 2;
|
105
|
+
} & import("@waves/ts-types").WithId & {
|
106
|
+
sender: string;
|
107
|
+
height: number;
|
108
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
109
|
+
version: 3;
|
110
|
+
} & import("@waves/ts-types").WithId & {
|
111
|
+
sender: string;
|
112
|
+
height: number;
|
113
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
114
|
+
version: 1;
|
115
|
+
} & import("@waves/ts-types").WithId & {
|
116
|
+
sender: string;
|
117
|
+
height: number;
|
118
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
119
|
+
version: 2;
|
120
|
+
} & import("@waves/ts-types").WithId & {
|
121
|
+
sender: string;
|
122
|
+
height: number;
|
123
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
124
|
+
version: 3;
|
125
|
+
} & import("@waves/ts-types").WithId & {
|
126
|
+
sender: string;
|
127
|
+
height: number;
|
128
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
129
|
+
version: 1;
|
130
|
+
} & import("@waves/ts-types").WithId & {
|
131
|
+
sender: string;
|
132
|
+
height: number;
|
133
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
134
|
+
version: 2;
|
135
|
+
} & import("@waves/ts-types").WithId & {
|
136
|
+
sender: string;
|
137
|
+
height: number;
|
138
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
139
|
+
version: 3;
|
140
|
+
} & import("@waves/ts-types").WithId & {
|
141
|
+
sender: string;
|
142
|
+
height: number;
|
143
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
144
|
+
version: 1;
|
145
|
+
} & import("@waves/ts-types").WithId & {
|
146
|
+
sender: string;
|
147
|
+
height: number;
|
148
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
149
|
+
version: 2;
|
150
|
+
} & import("@waves/ts-types").WithId & {
|
151
|
+
sender: string;
|
152
|
+
height: number;
|
153
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
154
|
+
version: 3;
|
155
|
+
} & import("@waves/ts-types").WithId & {
|
156
|
+
sender: string;
|
157
|
+
height: number;
|
158
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
159
|
+
version: 1;
|
160
|
+
} & import("@waves/ts-types").WithId & {
|
161
|
+
sender: string;
|
162
|
+
height: number;
|
163
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
164
|
+
version: 2;
|
165
|
+
} & import("@waves/ts-types").WithId & {
|
166
|
+
sender: string;
|
167
|
+
height: number;
|
168
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
169
|
+
version: 3;
|
170
|
+
} & import("@waves/ts-types").WithId & {
|
171
|
+
sender: string;
|
172
|
+
height: number;
|
173
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
174
|
+
version: 1;
|
175
|
+
} & import("@waves/ts-types").WithId & {
|
176
|
+
sender: string;
|
177
|
+
height: number;
|
178
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
179
|
+
version: 2;
|
180
|
+
} & import("@waves/ts-types").WithId & {
|
181
|
+
sender: string;
|
182
|
+
height: number;
|
183
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
184
|
+
version: 1;
|
185
|
+
} & import("@waves/ts-types").WithId & {
|
186
|
+
sender: string;
|
187
|
+
height: number;
|
188
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
189
|
+
version: 2;
|
190
|
+
} & import("@waves/ts-types").WithId & {
|
191
|
+
sender: string;
|
192
|
+
height: number;
|
193
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
194
|
+
version: 1;
|
195
|
+
} & import("@waves/ts-types").WithId & {
|
196
|
+
sender: string;
|
197
|
+
height: number;
|
198
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
199
|
+
version: 2;
|
200
|
+
} & import("@waves/ts-types").WithId & {
|
201
|
+
sender: string;
|
202
|
+
height: number;
|
203
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
204
|
+
version: 1;
|
205
|
+
} & import("@waves/ts-types").WithId & {
|
206
|
+
sender: string;
|
207
|
+
height: number;
|
208
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
209
|
+
version: 2;
|
210
|
+
} & import("@waves/ts-types").WithId & {
|
211
|
+
sender: string;
|
212
|
+
height: number;
|
213
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
214
|
+
version: 1;
|
215
|
+
} & import("@waves/ts-types").WithId & {
|
216
|
+
sender: string;
|
217
|
+
height: number;
|
218
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
219
|
+
version: 2;
|
220
|
+
} & import("@waves/ts-types").WithId & {
|
221
|
+
sender: string;
|
222
|
+
height: number;
|
223
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
224
|
+
version: 1;
|
225
|
+
} & import("@waves/ts-types").WithId & {
|
226
|
+
sender: string;
|
227
|
+
height: number;
|
228
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
229
|
+
version: 2;
|
230
|
+
} & import("@waves/ts-types").WithId & {
|
231
|
+
sender: string;
|
232
|
+
height: number;
|
233
|
+
}) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
|
234
|
+
version: 1;
|
235
|
+
} & import("@waves/ts-types").WithId & {
|
236
|
+
sender: string;
|
237
|
+
height: number;
|
238
|
+
}) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
239
|
+
version: 1;
|
240
|
+
} & import("@waves/ts-types").WithId & {
|
241
|
+
sender: string;
|
242
|
+
height: number;
|
243
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
244
|
+
version: 2;
|
245
|
+
} & import("@waves/ts-types").WithId & {
|
246
|
+
sender: string;
|
247
|
+
height: number;
|
248
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
249
|
+
version: 3;
|
250
|
+
} & import("@waves/ts-types").WithId & {
|
251
|
+
sender: string;
|
252
|
+
height: number;
|
253
|
+
}) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
|
254
|
+
type: 1;
|
255
|
+
chainId: number;
|
256
|
+
timestamp: number;
|
257
|
+
fee: import("@waves/ts-types").Long;
|
258
|
+
} & {
|
259
|
+
version: 1;
|
260
|
+
} & import("@waves/ts-types").WithId & {
|
261
|
+
sender: string;
|
262
|
+
height: number;
|
263
|
+
}) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
|
264
|
+
version: 1;
|
265
|
+
} & import("@waves/ts-types").WithId & {
|
266
|
+
sender: string;
|
267
|
+
height: number;
|
268
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
269
|
+
version: 1;
|
270
|
+
} & import("@waves/ts-types").WithId & {
|
271
|
+
sender: string;
|
272
|
+
height: number;
|
273
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
274
|
+
version: 2;
|
275
|
+
} & import("@waves/ts-types").WithId & {
|
276
|
+
sender: string;
|
277
|
+
height: number;
|
278
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
279
|
+
version: 3;
|
280
|
+
} & import("@waves/ts-types").WithId & {
|
281
|
+
sender: string;
|
282
|
+
height: number;
|
283
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
284
|
+
version: 1;
|
285
|
+
} & import("@waves/ts-types").WithId & {
|
286
|
+
sender: string;
|
287
|
+
height: number;
|
288
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
289
|
+
version: 2;
|
290
|
+
} & import("@waves/ts-types").WithId & {
|
291
|
+
sender: string;
|
292
|
+
height: number;
|
293
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
294
|
+
version: 3;
|
295
|
+
} & import("@waves/ts-types").WithId & {
|
296
|
+
sender: string;
|
297
|
+
height: number;
|
298
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
299
|
+
version: 1;
|
300
|
+
} & import("@waves/ts-types").WithId & {
|
301
|
+
sender: string;
|
302
|
+
height: number;
|
303
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
304
|
+
version: 2;
|
305
|
+
} & import("@waves/ts-types").WithId & {
|
306
|
+
sender: string;
|
307
|
+
height: number;
|
308
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
309
|
+
version: 3;
|
310
|
+
} & import("@waves/ts-types").WithId & {
|
311
|
+
sender: string;
|
312
|
+
height: number;
|
313
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
314
|
+
version: 1;
|
315
|
+
} & import("@waves/ts-types").WithId & {
|
316
|
+
sender: string;
|
317
|
+
height: number;
|
318
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
319
|
+
version: 2;
|
320
|
+
} & import("@waves/ts-types").WithId & {
|
321
|
+
sender: string;
|
322
|
+
height: number;
|
323
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
324
|
+
version: 3;
|
325
|
+
} & import("@waves/ts-types").WithId & {
|
326
|
+
sender: string;
|
327
|
+
height: number;
|
328
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
329
|
+
version: 1;
|
330
|
+
} & import("@waves/ts-types").WithId & {
|
331
|
+
sender: string;
|
332
|
+
height: number;
|
333
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
334
|
+
version: 2;
|
335
|
+
} & import("@waves/ts-types").WithId & {
|
336
|
+
sender: string;
|
337
|
+
height: number;
|
338
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
339
|
+
version: 3;
|
340
|
+
} & import("@waves/ts-types").WithId & {
|
341
|
+
sender: string;
|
342
|
+
height: number;
|
343
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
344
|
+
version: 1;
|
345
|
+
} & import("@waves/ts-types").WithId & {
|
346
|
+
sender: string;
|
347
|
+
height: number;
|
348
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
349
|
+
version: 2;
|
350
|
+
} & import("@waves/ts-types").WithId & {
|
351
|
+
sender: string;
|
352
|
+
height: number;
|
353
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
354
|
+
version: 3;
|
355
|
+
} & import("@waves/ts-types").WithId & {
|
356
|
+
sender: string;
|
357
|
+
height: number;
|
358
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
359
|
+
version: 1;
|
360
|
+
} & import("@waves/ts-types").WithId & {
|
361
|
+
sender: string;
|
362
|
+
height: number;
|
363
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
364
|
+
version: 2;
|
365
|
+
} & import("@waves/ts-types").WithId & {
|
366
|
+
sender: string;
|
367
|
+
height: number;
|
368
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
369
|
+
version: 3;
|
370
|
+
} & import("@waves/ts-types").WithId & {
|
371
|
+
sender: string;
|
372
|
+
height: number;
|
373
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
374
|
+
version: 1;
|
375
|
+
} & import("@waves/ts-types").WithId & {
|
376
|
+
sender: string;
|
377
|
+
height: number;
|
378
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
379
|
+
version: 2;
|
380
|
+
} & import("@waves/ts-types").WithId & {
|
381
|
+
sender: string;
|
382
|
+
height: number;
|
383
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
384
|
+
version: 1;
|
385
|
+
} & import("@waves/ts-types").WithId & {
|
386
|
+
sender: string;
|
387
|
+
height: number;
|
388
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
389
|
+
version: 2;
|
390
|
+
} & import("@waves/ts-types").WithId & {
|
391
|
+
sender: string;
|
392
|
+
height: number;
|
393
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
394
|
+
version: 1;
|
395
|
+
} & import("@waves/ts-types").WithId & {
|
396
|
+
sender: string;
|
397
|
+
height: number;
|
398
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
399
|
+
version: 2;
|
400
|
+
} & import("@waves/ts-types").WithId & {
|
401
|
+
sender: string;
|
402
|
+
height: number;
|
403
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
404
|
+
version: 1;
|
405
|
+
} & import("@waves/ts-types").WithId & {
|
406
|
+
sender: string;
|
407
|
+
height: number;
|
408
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
409
|
+
version: 2;
|
410
|
+
} & import("@waves/ts-types").WithId & {
|
411
|
+
sender: string;
|
412
|
+
height: number;
|
413
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
414
|
+
version: 1;
|
415
|
+
} & import("@waves/ts-types").WithId & {
|
416
|
+
sender: string;
|
417
|
+
height: number;
|
418
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
419
|
+
version: 2;
|
420
|
+
} & import("@waves/ts-types").WithId & {
|
421
|
+
sender: string;
|
422
|
+
height: number;
|
423
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
424
|
+
version: 1;
|
425
|
+
} & import("@waves/ts-types").WithId & {
|
426
|
+
sender: string;
|
427
|
+
height: number;
|
428
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
429
|
+
version: 2;
|
430
|
+
} & import("@waves/ts-types").WithId & {
|
431
|
+
sender: string;
|
432
|
+
height: number;
|
433
|
+
}) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
|
434
|
+
version: 1;
|
435
|
+
} & import("@waves/ts-types").WithId & {
|
436
|
+
sender: string;
|
437
|
+
height: number;
|
438
|
+
}))[], options?: import("./tools/transactions/wait").IWaitOptions | undefined) => Promise<(import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
439
|
+
version: 1;
|
440
|
+
} & import("@waves/ts-types").WithId & {
|
441
|
+
sender: string;
|
442
|
+
height: number;
|
443
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
444
|
+
version: 2;
|
445
|
+
} & import("@waves/ts-types").WithId & {
|
446
|
+
sender: string;
|
447
|
+
height: number;
|
448
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
449
|
+
version: 3;
|
450
|
+
} & import("@waves/ts-types").WithId & {
|
451
|
+
sender: string;
|
452
|
+
height: number;
|
453
|
+
}) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
|
454
|
+
type: 1;
|
455
|
+
chainId: number;
|
456
|
+
timestamp: number;
|
457
|
+
fee: import("@waves/ts-types").Long;
|
458
|
+
} & {
|
459
|
+
version: 1;
|
460
|
+
} & import("@waves/ts-types").WithId & {
|
461
|
+
sender: string;
|
462
|
+
height: number;
|
463
|
+
}) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
|
464
|
+
version: 1;
|
465
|
+
} & import("@waves/ts-types").WithId & {
|
466
|
+
sender: string;
|
467
|
+
height: number;
|
468
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
469
|
+
version: 1;
|
470
|
+
} & import("@waves/ts-types").WithId & {
|
471
|
+
sender: string;
|
472
|
+
height: number;
|
473
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
474
|
+
version: 2;
|
475
|
+
} & import("@waves/ts-types").WithId & {
|
476
|
+
sender: string;
|
477
|
+
height: number;
|
478
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
479
|
+
version: 3;
|
480
|
+
} & import("@waves/ts-types").WithId & {
|
481
|
+
sender: string;
|
482
|
+
height: number;
|
483
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
484
|
+
version: 1;
|
485
|
+
} & import("@waves/ts-types").WithId & {
|
486
|
+
sender: string;
|
487
|
+
height: number;
|
488
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
489
|
+
version: 2;
|
490
|
+
} & import("@waves/ts-types").WithId & {
|
491
|
+
sender: string;
|
492
|
+
height: number;
|
493
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
494
|
+
version: 3;
|
495
|
+
} & import("@waves/ts-types").WithId & {
|
496
|
+
sender: string;
|
497
|
+
height: number;
|
498
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
499
|
+
version: 1;
|
500
|
+
} & import("@waves/ts-types").WithId & {
|
501
|
+
sender: string;
|
502
|
+
height: number;
|
503
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
504
|
+
version: 2;
|
505
|
+
} & import("@waves/ts-types").WithId & {
|
506
|
+
sender: string;
|
507
|
+
height: number;
|
508
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
509
|
+
version: 3;
|
510
|
+
} & import("@waves/ts-types").WithId & {
|
511
|
+
sender: string;
|
512
|
+
height: number;
|
513
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
514
|
+
version: 1;
|
515
|
+
} & import("@waves/ts-types").WithId & {
|
516
|
+
sender: string;
|
517
|
+
height: number;
|
518
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
519
|
+
version: 2;
|
520
|
+
} & import("@waves/ts-types").WithId & {
|
521
|
+
sender: string;
|
522
|
+
height: number;
|
523
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
524
|
+
version: 3;
|
525
|
+
} & import("@waves/ts-types").WithId & {
|
526
|
+
sender: string;
|
527
|
+
height: number;
|
528
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
529
|
+
version: 1;
|
530
|
+
} & import("@waves/ts-types").WithId & {
|
531
|
+
sender: string;
|
532
|
+
height: number;
|
533
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
534
|
+
version: 2;
|
535
|
+
} & import("@waves/ts-types").WithId & {
|
536
|
+
sender: string;
|
537
|
+
height: number;
|
538
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
539
|
+
version: 3;
|
540
|
+
} & import("@waves/ts-types").WithId & {
|
541
|
+
sender: string;
|
542
|
+
height: number;
|
543
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
544
|
+
version: 1;
|
545
|
+
} & import("@waves/ts-types").WithId & {
|
546
|
+
sender: string;
|
547
|
+
height: number;
|
548
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
549
|
+
version: 2;
|
550
|
+
} & import("@waves/ts-types").WithId & {
|
551
|
+
sender: string;
|
552
|
+
height: number;
|
553
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
554
|
+
version: 3;
|
555
|
+
} & import("@waves/ts-types").WithId & {
|
556
|
+
sender: string;
|
557
|
+
height: number;
|
558
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
559
|
+
version: 1;
|
560
|
+
} & import("@waves/ts-types").WithId & {
|
561
|
+
sender: string;
|
562
|
+
height: number;
|
563
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
564
|
+
version: 2;
|
565
|
+
} & import("@waves/ts-types").WithId & {
|
566
|
+
sender: string;
|
567
|
+
height: number;
|
568
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
569
|
+
version: 3;
|
570
|
+
} & import("@waves/ts-types").WithId & {
|
571
|
+
sender: string;
|
572
|
+
height: number;
|
573
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
574
|
+
version: 1;
|
575
|
+
} & import("@waves/ts-types").WithId & {
|
576
|
+
sender: string;
|
577
|
+
height: number;
|
578
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
579
|
+
version: 2;
|
580
|
+
} & import("@waves/ts-types").WithId & {
|
581
|
+
sender: string;
|
582
|
+
height: number;
|
583
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
584
|
+
version: 1;
|
585
|
+
} & import("@waves/ts-types").WithId & {
|
586
|
+
sender: string;
|
587
|
+
height: number;
|
588
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
589
|
+
version: 2;
|
590
|
+
} & import("@waves/ts-types").WithId & {
|
591
|
+
sender: string;
|
592
|
+
height: number;
|
593
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
594
|
+
version: 1;
|
595
|
+
} & import("@waves/ts-types").WithId & {
|
596
|
+
sender: string;
|
597
|
+
height: number;
|
598
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
599
|
+
version: 2;
|
600
|
+
} & import("@waves/ts-types").WithId & {
|
601
|
+
sender: string;
|
602
|
+
height: number;
|
603
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
604
|
+
version: 1;
|
605
|
+
} & import("@waves/ts-types").WithId & {
|
606
|
+
sender: string;
|
607
|
+
height: number;
|
608
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
609
|
+
version: 2;
|
610
|
+
} & import("@waves/ts-types").WithId & {
|
611
|
+
sender: string;
|
612
|
+
height: number;
|
613
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
614
|
+
version: 1;
|
615
|
+
} & import("@waves/ts-types").WithId & {
|
616
|
+
sender: string;
|
617
|
+
height: number;
|
618
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
619
|
+
version: 2;
|
620
|
+
} & import("@waves/ts-types").WithId & {
|
621
|
+
sender: string;
|
622
|
+
height: number;
|
623
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
624
|
+
version: 1;
|
625
|
+
} & import("@waves/ts-types").WithId & {
|
626
|
+
sender: string;
|
627
|
+
height: number;
|
628
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
629
|
+
version: 2;
|
630
|
+
} & import("@waves/ts-types").WithId & {
|
631
|
+
sender: string;
|
632
|
+
height: number;
|
633
|
+
}) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
|
634
|
+
version: 1;
|
635
|
+
} & import("@waves/ts-types").WithId & {
|
636
|
+
sender: string;
|
637
|
+
height: number;
|
638
|
+
}) | ((import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
639
|
+
version: 1;
|
640
|
+
} & import("@waves/ts-types").WithId & {
|
641
|
+
sender: string;
|
642
|
+
height: number;
|
643
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
644
|
+
version: 2;
|
645
|
+
} & import("@waves/ts-types").WithId & {
|
646
|
+
sender: string;
|
647
|
+
height: number;
|
648
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
649
|
+
version: 3;
|
650
|
+
} & import("@waves/ts-types").WithId & {
|
651
|
+
sender: string;
|
652
|
+
height: number;
|
653
|
+
}) | (import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
|
654
|
+
type: 1;
|
655
|
+
chainId: number;
|
656
|
+
timestamp: number;
|
657
|
+
fee: import("@waves/ts-types").Long;
|
658
|
+
} & {
|
659
|
+
version: 1;
|
660
|
+
} & import("@waves/ts-types").WithId & {
|
661
|
+
sender: string;
|
662
|
+
height: number;
|
663
|
+
}) | (import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2> & {
|
664
|
+
version: 1;
|
665
|
+
} & import("@waves/ts-types").WithId & {
|
666
|
+
sender: string;
|
667
|
+
height: number;
|
668
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
669
|
+
version: 1;
|
670
|
+
} & import("@waves/ts-types").WithId & {
|
671
|
+
sender: string;
|
672
|
+
height: number;
|
673
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
674
|
+
version: 2;
|
675
|
+
} & import("@waves/ts-types").WithId & {
|
676
|
+
sender: string;
|
677
|
+
height: number;
|
678
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
679
|
+
version: 3;
|
680
|
+
} & import("@waves/ts-types").WithId & {
|
681
|
+
sender: string;
|
682
|
+
height: number;
|
683
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
684
|
+
version: 1;
|
685
|
+
} & import("@waves/ts-types").WithId & {
|
686
|
+
sender: string;
|
687
|
+
height: number;
|
688
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
689
|
+
version: 2;
|
690
|
+
} & import("@waves/ts-types").WithId & {
|
691
|
+
sender: string;
|
692
|
+
height: number;
|
693
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
694
|
+
version: 3;
|
695
|
+
} & import("@waves/ts-types").WithId & {
|
696
|
+
sender: string;
|
697
|
+
height: number;
|
698
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
699
|
+
version: 1;
|
700
|
+
} & import("@waves/ts-types").WithId & {
|
701
|
+
sender: string;
|
702
|
+
height: number;
|
703
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
704
|
+
version: 2;
|
705
|
+
} & import("@waves/ts-types").WithId & {
|
706
|
+
sender: string;
|
707
|
+
height: number;
|
708
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
709
|
+
version: 3;
|
710
|
+
} & import("@waves/ts-types").WithId & {
|
711
|
+
sender: string;
|
712
|
+
height: number;
|
713
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
714
|
+
version: 1;
|
715
|
+
} & import("@waves/ts-types").WithId & {
|
716
|
+
sender: string;
|
717
|
+
height: number;
|
718
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
719
|
+
version: 2;
|
720
|
+
} & import("@waves/ts-types").WithId & {
|
721
|
+
sender: string;
|
722
|
+
height: number;
|
723
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
724
|
+
version: 3;
|
725
|
+
} & import("@waves/ts-types").WithId & {
|
726
|
+
sender: string;
|
727
|
+
height: number;
|
728
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
729
|
+
version: 1;
|
730
|
+
} & import("@waves/ts-types").WithId & {
|
731
|
+
sender: string;
|
732
|
+
height: number;
|
733
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
734
|
+
version: 2;
|
735
|
+
} & import("@waves/ts-types").WithId & {
|
736
|
+
sender: string;
|
737
|
+
height: number;
|
738
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
739
|
+
version: 3;
|
740
|
+
} & import("@waves/ts-types").WithId & {
|
741
|
+
sender: string;
|
742
|
+
height: number;
|
743
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
744
|
+
version: 1;
|
745
|
+
} & import("@waves/ts-types").WithId & {
|
746
|
+
sender: string;
|
747
|
+
height: number;
|
748
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
749
|
+
version: 2;
|
750
|
+
} & import("@waves/ts-types").WithId & {
|
751
|
+
sender: string;
|
752
|
+
height: number;
|
753
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
754
|
+
version: 3;
|
755
|
+
} & import("@waves/ts-types").WithId & {
|
756
|
+
sender: string;
|
757
|
+
height: number;
|
758
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
759
|
+
version: 1;
|
760
|
+
} & import("@waves/ts-types").WithId & {
|
761
|
+
sender: string;
|
762
|
+
height: number;
|
763
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
764
|
+
version: 2;
|
765
|
+
} & import("@waves/ts-types").WithId & {
|
766
|
+
sender: string;
|
767
|
+
height: number;
|
768
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
769
|
+
version: 3;
|
770
|
+
} & import("@waves/ts-types").WithId & {
|
771
|
+
sender: string;
|
772
|
+
height: number;
|
773
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
774
|
+
version: 1;
|
775
|
+
} & import("@waves/ts-types").WithId & {
|
776
|
+
sender: string;
|
777
|
+
height: number;
|
778
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
779
|
+
version: 2;
|
780
|
+
} & import("@waves/ts-types").WithId & {
|
781
|
+
sender: string;
|
782
|
+
height: number;
|
783
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
784
|
+
version: 1;
|
785
|
+
} & import("@waves/ts-types").WithId & {
|
786
|
+
sender: string;
|
787
|
+
height: number;
|
788
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
789
|
+
version: 2;
|
790
|
+
} & import("@waves/ts-types").WithId & {
|
791
|
+
sender: string;
|
792
|
+
height: number;
|
793
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
794
|
+
version: 1;
|
795
|
+
} & import("@waves/ts-types").WithId & {
|
796
|
+
sender: string;
|
797
|
+
height: number;
|
798
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
799
|
+
version: 2;
|
800
|
+
} & import("@waves/ts-types").WithId & {
|
801
|
+
sender: string;
|
802
|
+
height: number;
|
803
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
804
|
+
version: 1;
|
805
|
+
} & import("@waves/ts-types").WithId & {
|
806
|
+
sender: string;
|
807
|
+
height: number;
|
808
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
809
|
+
version: 2;
|
810
|
+
} & import("@waves/ts-types").WithId & {
|
811
|
+
sender: string;
|
812
|
+
height: number;
|
813
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
814
|
+
version: 1;
|
815
|
+
} & import("@waves/ts-types").WithId & {
|
816
|
+
sender: string;
|
817
|
+
height: number;
|
818
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
819
|
+
version: 2;
|
820
|
+
} & import("@waves/ts-types").WithId & {
|
821
|
+
sender: string;
|
822
|
+
height: number;
|
823
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
824
|
+
version: 1;
|
825
|
+
} & import("@waves/ts-types").WithId & {
|
826
|
+
sender: string;
|
827
|
+
height: number;
|
828
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
829
|
+
version: 2;
|
830
|
+
} & import("@waves/ts-types").WithId & {
|
831
|
+
sender: string;
|
832
|
+
height: number;
|
833
|
+
}) | (import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17> & {
|
834
|
+
version: 1;
|
835
|
+
} & import("@waves/ts-types").WithId & {
|
836
|
+
sender: string;
|
837
|
+
height: number;
|
838
|
+
}))[]>;
|
839
|
+
};
|
840
|
+
blocks: {
|
841
|
+
getNetworkByte: () => Promise<number>;
|
842
|
+
getNetworkCode: () => Promise<string>;
|
843
|
+
};
|
844
|
+
addresses: {
|
845
|
+
createWatch: (address: string, interval?: number | undefined) => Promise<import("./tools/adresses/watch").Watch>;
|
846
|
+
getAssetsByTransaction: (tx: import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").GenesisTransactionFields<import("@waves/ts-types").Long> & {
|
847
|
+
type: 1;
|
848
|
+
chainId: number;
|
849
|
+
timestamp: number;
|
850
|
+
fee: import("@waves/ts-types").Long;
|
851
|
+
}, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").PaymentTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 2>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10>, 3> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16>, 1> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16>, 2> | import("@waves/ts-types").WithVersion<import("@waves/ts-types").UpdateAssetInfoTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 17>, 1> | import("@waves/ts-types").GenesisTransactionFromNode<import("@waves/ts-types").Long> | import("@waves/ts-types").PaymentTransactionFromNode<import("@waves/ts-types").Long> | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
852
|
+
version: 1;
|
853
|
+
} & {
|
854
|
+
proofs: string[];
|
855
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
856
|
+
sender: string;
|
857
|
+
height: number;
|
858
|
+
} & {
|
859
|
+
feeAssetId: null;
|
860
|
+
assetId: string;
|
861
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
862
|
+
version: 2;
|
863
|
+
} & {
|
864
|
+
proofs: string[];
|
865
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
866
|
+
sender: string;
|
867
|
+
height: number;
|
868
|
+
} & {
|
869
|
+
feeAssetId: null;
|
870
|
+
assetId: string;
|
871
|
+
}) | (import("@waves/ts-types").IssueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 3> & {
|
872
|
+
version: 3;
|
873
|
+
} & {
|
874
|
+
proofs: string[];
|
875
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
876
|
+
sender: string;
|
877
|
+
height: number;
|
878
|
+
} & {
|
879
|
+
feeAssetId: null;
|
880
|
+
assetId: string;
|
881
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
882
|
+
version: 1;
|
883
|
+
} & {
|
884
|
+
proofs: string[];
|
885
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
886
|
+
sender: string;
|
887
|
+
height: number;
|
888
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
889
|
+
version: 2;
|
890
|
+
} & {
|
891
|
+
proofs: string[];
|
892
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
893
|
+
sender: string;
|
894
|
+
height: number;
|
895
|
+
}) | (import("@waves/ts-types").TransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 4> & {
|
896
|
+
version: 3;
|
897
|
+
} & {
|
898
|
+
proofs: string[];
|
899
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
900
|
+
sender: string;
|
901
|
+
height: number;
|
902
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
903
|
+
version: 1;
|
904
|
+
} & {
|
905
|
+
proofs: string[];
|
906
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
907
|
+
sender: string;
|
908
|
+
height: number;
|
909
|
+
} & {
|
910
|
+
feeAssetId: null;
|
911
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
912
|
+
version: 2;
|
913
|
+
} & {
|
914
|
+
proofs: string[];
|
915
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
916
|
+
sender: string;
|
917
|
+
height: number;
|
918
|
+
} & {
|
919
|
+
feeAssetId: null;
|
920
|
+
}) | (import("@waves/ts-types").ReissueTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 5> & {
|
921
|
+
version: 3;
|
922
|
+
} & {
|
923
|
+
proofs: string[];
|
924
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
925
|
+
sender: string;
|
926
|
+
height: number;
|
927
|
+
} & {
|
928
|
+
feeAssetId: null;
|
929
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
930
|
+
version: 1;
|
931
|
+
} & {
|
932
|
+
proofs: string[];
|
933
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
934
|
+
sender: string;
|
935
|
+
height: number;
|
936
|
+
} & {
|
937
|
+
feeAssetId: null;
|
938
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
939
|
+
version: 2;
|
940
|
+
} & {
|
941
|
+
proofs: string[];
|
942
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
943
|
+
sender: string;
|
944
|
+
height: number;
|
945
|
+
} & {
|
946
|
+
feeAssetId: null;
|
947
|
+
}) | (import("@waves/ts-types").BurnTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 6> & {
|
948
|
+
version: 3;
|
949
|
+
} & {
|
950
|
+
proofs: string[];
|
951
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
952
|
+
sender: string;
|
953
|
+
height: number;
|
954
|
+
} & {
|
955
|
+
feeAssetId: null;
|
956
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
957
|
+
version: 1;
|
958
|
+
} & {
|
959
|
+
proofs: string[];
|
960
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
961
|
+
sender: string;
|
962
|
+
height: number;
|
963
|
+
} & {
|
964
|
+
feeAssetId: null;
|
965
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
966
|
+
version: 2;
|
967
|
+
} & {
|
968
|
+
proofs: string[];
|
969
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
970
|
+
sender: string;
|
971
|
+
height: number;
|
972
|
+
} & {
|
973
|
+
feeAssetId: null;
|
974
|
+
}) | (import("@waves/ts-types").ExchangeTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 7> & {
|
975
|
+
version: 3;
|
976
|
+
} & {
|
977
|
+
proofs: string[];
|
978
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
979
|
+
sender: string;
|
980
|
+
height: number;
|
981
|
+
} & {
|
982
|
+
feeAssetId: null;
|
983
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
984
|
+
version: 1;
|
985
|
+
} & {
|
986
|
+
proofs: string[];
|
987
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
988
|
+
sender: string;
|
989
|
+
height: number;
|
990
|
+
} & {
|
991
|
+
feeAssetId: null;
|
992
|
+
status: "canceled" | "active";
|
993
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
994
|
+
version: 2;
|
995
|
+
} & {
|
996
|
+
proofs: string[];
|
997
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
998
|
+
sender: string;
|
999
|
+
height: number;
|
1000
|
+
} & {
|
1001
|
+
feeAssetId: null;
|
1002
|
+
status: "canceled" | "active";
|
1003
|
+
}) | (import("@waves/ts-types").LeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 8> & {
|
1004
|
+
version: 3;
|
1005
|
+
} & {
|
1006
|
+
proofs: string[];
|
1007
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1008
|
+
sender: string;
|
1009
|
+
height: number;
|
1010
|
+
} & {
|
1011
|
+
feeAssetId: null;
|
1012
|
+
status: "canceled" | "active";
|
1013
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
1014
|
+
version: 1;
|
1015
|
+
} & {
|
1016
|
+
proofs: string[];
|
1017
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1018
|
+
sender: string;
|
1019
|
+
height: number;
|
1020
|
+
} & {
|
1021
|
+
feeAssetId: null;
|
1022
|
+
} & {
|
1023
|
+
lease: {
|
1024
|
+
id: string;
|
1025
|
+
originTransactionId: string;
|
1026
|
+
sender: string;
|
1027
|
+
recipient: string;
|
1028
|
+
amount: import("@waves/ts-types").Long;
|
1029
|
+
height: number;
|
1030
|
+
status: "canceled" | "active";
|
1031
|
+
cancelHeight: number;
|
1032
|
+
cancelTransactionId: string;
|
1033
|
+
};
|
1034
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
1035
|
+
version: 2;
|
1036
|
+
} & {
|
1037
|
+
proofs: string[];
|
1038
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1039
|
+
sender: string;
|
1040
|
+
height: number;
|
1041
|
+
} & {
|
1042
|
+
feeAssetId: null;
|
1043
|
+
} & {
|
1044
|
+
lease: {
|
1045
|
+
id: string;
|
1046
|
+
originTransactionId: string;
|
1047
|
+
sender: string;
|
1048
|
+
recipient: string;
|
1049
|
+
amount: import("@waves/ts-types").Long;
|
1050
|
+
height: number;
|
1051
|
+
status: "canceled" | "active";
|
1052
|
+
cancelHeight: number;
|
1053
|
+
cancelTransactionId: string;
|
1054
|
+
};
|
1055
|
+
}) | (import("@waves/ts-types").CancelLeaseTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 9> & {
|
1056
|
+
version: 3;
|
1057
|
+
} & {
|
1058
|
+
proofs: string[];
|
1059
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1060
|
+
sender: string;
|
1061
|
+
height: number;
|
1062
|
+
} & {
|
1063
|
+
feeAssetId: null;
|
1064
|
+
} & {
|
1065
|
+
lease: {
|
1066
|
+
id: string;
|
1067
|
+
originTransactionId: string;
|
1068
|
+
sender: string;
|
1069
|
+
recipient: string;
|
1070
|
+
amount: import("@waves/ts-types").Long;
|
1071
|
+
height: number;
|
1072
|
+
status: "canceled" | "active";
|
1073
|
+
cancelHeight: number;
|
1074
|
+
cancelTransactionId: string;
|
1075
|
+
};
|
1076
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
1077
|
+
version: 1;
|
1078
|
+
} & {
|
1079
|
+
proofs: string[];
|
1080
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1081
|
+
sender: string;
|
1082
|
+
height: number;
|
1083
|
+
} & {
|
1084
|
+
feeAssetId: null;
|
1085
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
1086
|
+
version: 2;
|
1087
|
+
} & {
|
1088
|
+
proofs: string[];
|
1089
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1090
|
+
sender: string;
|
1091
|
+
height: number;
|
1092
|
+
} & {
|
1093
|
+
feeAssetId: null;
|
1094
|
+
}) | (import("@waves/ts-types").AliasTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 10> & {
|
1095
|
+
version: 3;
|
1096
|
+
} & {
|
1097
|
+
proofs: string[];
|
1098
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1099
|
+
sender: string;
|
1100
|
+
height: number;
|
1101
|
+
} & {
|
1102
|
+
feeAssetId: null;
|
1103
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
1104
|
+
version: 1;
|
1105
|
+
} & {
|
1106
|
+
proofs: string[];
|
1107
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1108
|
+
sender: string;
|
1109
|
+
height: number;
|
1110
|
+
} & {
|
1111
|
+
feeAssetId: null;
|
1112
|
+
totalAmount: import("@waves/ts-types").Long;
|
1113
|
+
transferCount: number;
|
1114
|
+
}) | (import("@waves/ts-types").MassTransferTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 11> & {
|
1115
|
+
version: 2;
|
1116
|
+
} & {
|
1117
|
+
proofs: string[];
|
1118
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1119
|
+
sender: string;
|
1120
|
+
height: number;
|
1121
|
+
} & {
|
1122
|
+
feeAssetId: null;
|
1123
|
+
totalAmount: import("@waves/ts-types").Long;
|
1124
|
+
transferCount: number;
|
1125
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
1126
|
+
version: 1;
|
1127
|
+
} & {
|
1128
|
+
proofs: string[];
|
1129
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1130
|
+
sender: string;
|
1131
|
+
height: number;
|
1132
|
+
} & {
|
1133
|
+
feeAssetId: null;
|
1134
|
+
}) | (import("@waves/ts-types").DataTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 12> & {
|
1135
|
+
version: 2;
|
1136
|
+
} & {
|
1137
|
+
proofs: string[];
|
1138
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1139
|
+
sender: string;
|
1140
|
+
height: number;
|
1141
|
+
} & {
|
1142
|
+
feeAssetId: null;
|
1143
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
1144
|
+
version: 1;
|
1145
|
+
} & {
|
1146
|
+
proofs: string[];
|
1147
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1148
|
+
sender: string;
|
1149
|
+
height: number;
|
1150
|
+
} & {
|
1151
|
+
feeAssetId: null;
|
1152
|
+
}) | (import("@waves/ts-types").SetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 13> & {
|
1153
|
+
version: 2;
|
1154
|
+
} & {
|
1155
|
+
proofs: string[];
|
1156
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1157
|
+
sender: string;
|
1158
|
+
height: number;
|
1159
|
+
} & {
|
1160
|
+
feeAssetId: null;
|
1161
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
1162
|
+
version: 1;
|
1163
|
+
} & {
|
1164
|
+
proofs: string[];
|
1165
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1166
|
+
sender: string;
|
1167
|
+
height: number;
|
1168
|
+
} & {
|
1169
|
+
feeAssetId: null;
|
1170
|
+
}) | (import("@waves/ts-types").SponsorshipTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 14> & {
|
1171
|
+
version: 2;
|
1172
|
+
} & {
|
1173
|
+
proofs: string[];
|
1174
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1175
|
+
sender: string;
|
1176
|
+
height: number;
|
1177
|
+
} & {
|
1178
|
+
feeAssetId: null;
|
1179
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
1180
|
+
version: 1;
|
1181
|
+
} & {
|
1182
|
+
proofs: string[];
|
1183
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1184
|
+
sender: string;
|
1185
|
+
height: number;
|
1186
|
+
} & {
|
1187
|
+
feeAssetId: null;
|
1188
|
+
}) | (import("@waves/ts-types").SetAssetScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 15> & {
|
1189
|
+
version: 2;
|
1190
|
+
} & {
|
1191
|
+
proofs: string[];
|
1192
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1193
|
+
sender: string;
|
1194
|
+
height: number;
|
1195
|
+
} & {
|
1196
|
+
feeAssetId: null;
|
1197
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
1198
|
+
version: 1;
|
1199
|
+
} & {
|
1200
|
+
proofs: string[];
|
1201
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1202
|
+
sender: string;
|
1203
|
+
height: number;
|
1204
|
+
} & {
|
1205
|
+
stateChanges: import("@waves/ts-types").TStateChanges;
|
1206
|
+
}) | (import("@waves/ts-types").InvokeScriptTransactionFields<import("@waves/ts-types").Long> & import("@waves/ts-types").BaseTransaction<import("@waves/ts-types").Long, 16> & {
|
1207
|
+
version: 2;
|
1208
|
+
} & {
|
1209
|
+
proofs: string[];
|
1210
|
+
} & import("@waves/ts-types").WithId & import("@waves/ts-types").WithApplicationStatus & {
|
1211
|
+
sender: string;
|
1212
|
+
height: number;
|
1213
|
+
} & {
|
1214
|
+
stateChanges: import("@waves/ts-types").TStateChanges;
|
1215
|
+
}) | import("@waves/ts-types").UpdateAssetInfoTransactionFromNode<import("@waves/ts-types").Long> | import("@waves/ts-types").EthereumTransaction<import("@waves/ts-types").Long> | import("@waves/ts-types").TransactionFromNode<import("@waves/ts-types").Long>[] | Transaction<import("@waves/ts-types").Long>[]) => Promise<Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>>;
|
1216
|
+
getAssetIdListByTx: typeof getAssetIdListByTx;
|
1217
|
+
getTransactionsWithAssets: (address: string, limit: number, after?: string | undefined) => Promise<{
|
1218
|
+
transactions: import("@waves/ts-types").TransactionFromNode<import("@waves/ts-types").Long>[];
|
1219
|
+
assets: Record<string, assetsModule.TAssetDetails<import("@waves/ts-types").Long>>;
|
1220
|
+
}>;
|
1221
|
+
availableSponsoredBalances: (address: string, wavesFee: import("@waves/ts-types").Long) => Promise<import("./tools/adresses/availableSponsoredBalances").TAssetFeeInfo[]>;
|
1222
|
+
};
|
1223
|
+
utils: typeof toolsUtilsModule;
|
1224
|
+
query: typeof query;
|
1225
|
+
resolve: typeof resolve;
|
1226
|
+
request: typeof request;
|
1227
|
+
parse: typeof parse;
|
1228
|
+
};
|
1229
|
+
peers: TWrapRecord<typeof peersModule>;
|
1230
|
+
rewards: TWrapRecord<typeof rewardsModule>;
|
1231
|
+
utils: TWrapRecord<typeof utilsModule>;
|
1232
|
+
debug: TWrapRecord<typeof debugModule>;
|
1233
|
+
alias: TWrapRecord<typeof aliasModule>;
|
1234
|
+
consensus: TWrapRecord<typeof consensusModule>;
|
1235
|
+
activation: TWrapRecord<typeof activationModule>;
|
1236
|
+
node: TWrapRecord<typeof nodeModule>;
|
1237
|
+
assets: TWrapRecord<typeof assetsModule>;
|
1238
|
+
eth: TWrapRecord<typeof ethModule>;
|
1239
|
+
};
|
1240
|
+
export {};
|