");
+ $input.on("blur.tt", function($e) {
+ var active, isActive, hasActive;
+ active = document.activeElement;
+ isActive = $menu.is(active);
+ hasActive = $menu.has(active).length > 0;
+ if (_.isMsie() && (isActive || hasActive)) {
+ $e.preventDefault();
+ $e.stopImmediatePropagation();
+ _.defer(function() {
+ $input.focus();
+ });
+ }
+ });
+ $menu.on("mousedown.tt", function($e) {
+ $e.preventDefault();
+ });
+ },
+ _onSelectableClicked: function onSelectableClicked(type, $el) {
+ this.select($el);
+ },
+ _onDatasetCleared: function onDatasetCleared() {
+ this._updateHint();
+ },
+ _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) {
+ this._updateHint();
+ if (this.autoselect) {
+ var cursorClass = this.selectors.cursor.substr(1);
+ this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass);
+ }
+ this.eventBus.trigger("render", suggestions, async, dataset);
+ },
+ _onAsyncRequested: function onAsyncRequested(type, dataset, query) {
+ this.eventBus.trigger("asyncrequest", query, dataset);
+ },
+ _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) {
+ this.eventBus.trigger("asynccancel", query, dataset);
+ },
+ _onAsyncReceived: function onAsyncReceived(type, dataset, query) {
+ this.eventBus.trigger("asyncreceive", query, dataset);
+ },
+ _onFocused: function onFocused() {
+ this._minLengthMet() && this.menu.update(this.input.getQuery());
+ },
+ _onBlurred: function onBlurred() {
+ if (this.input.hasQueryChangedSinceLastFocus()) {
+ this.eventBus.trigger("change", this.input.getQuery());
+ }
+ },
+ _onEnterKeyed: function onEnterKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ if (this.select($selectable)) {
+ $e.preventDefault();
+ $e.stopPropagation();
+ }
+ } else if (this.autoselect) {
+ if (this.select(this.menu.getTopSelectable())) {
+ $e.preventDefault();
+ $e.stopPropagation();
+ }
+ }
+ },
+ _onTabKeyed: function onTabKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ this.select($selectable) && $e.preventDefault();
+ } else if (this.autoselect) {
+ if ($selectable = this.menu.getTopSelectable()) {
+ this.autocomplete($selectable) && $e.preventDefault();
+ }
+ }
+ },
+ _onEscKeyed: function onEscKeyed() {
+ this.close();
+ },
+ _onUpKeyed: function onUpKeyed() {
+ this.moveCursor(-1);
+ },
+ _onDownKeyed: function onDownKeyed() {
+ this.moveCursor(+1);
+ },
+ _onLeftKeyed: function onLeftKeyed() {
+ if (this.dir === "rtl" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable());
+ }
+ },
+ _onRightKeyed: function onRightKeyed() {
+ if (this.dir === "ltr" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable());
+ }
+ },
+ _onQueryChanged: function onQueryChanged(e, query) {
+ this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty();
+ },
+ _onWhitespaceChanged: function onWhitespaceChanged() {
+ this._updateHint();
+ },
+ _onLangDirChanged: function onLangDirChanged(e, dir) {
+ if (this.dir !== dir) {
+ this.dir = dir;
+ this.menu.setLanguageDirection(dir);
+ }
+ },
+ _openIfActive: function openIfActive() {
+ this.isActive() && this.open();
+ },
+ _minLengthMet: function minLengthMet(query) {
+ query = _.isString(query) ? query : this.input.getQuery() || "";
+ return query.length >= this.minLength;
+ },
+ _updateHint: function updateHint() {
+ var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match;
+ $selectable = this.menu.getTopSelectable();
+ data = this.menu.getSelectableData($selectable);
+ val = this.input.getInputValue();
+ if (data && !_.isBlankString(val) && !this.input.hasOverflow()) {
+ query = Input.normalizeQuery(val);
+ escapedQuery = _.escapeRegExChars(query);
+ frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i");
+ match = frontMatchRegEx.exec(data.val);
+ match && this.input.setHint(val + match[1]);
+ } else {
+ this.input.clearHint();
+ }
+ },
+ isEnabled: function isEnabled() {
+ return this.enabled;
+ },
+ enable: function enable() {
+ this.enabled = true;
+ },
+ disable: function disable() {
+ this.enabled = false;
+ },
+ isActive: function isActive() {
+ return this.active;
+ },
+ activate: function activate() {
+ if (this.isActive()) {
+ return true;
+ } else if (!this.isEnabled() || this.eventBus.before("active")) {
+ return false;
+ } else {
+ this.active = true;
+ this.eventBus.trigger("active");
+ return true;
+ }
+ },
+ deactivate: function deactivate() {
+ if (!this.isActive()) {
+ return true;
+ } else if (this.eventBus.before("idle")) {
+ return false;
+ } else {
+ this.active = false;
+ this.close();
+ this.eventBus.trigger("idle");
+ return true;
+ }
+ },
+ isOpen: function isOpen() {
+ return this.menu.isOpen();
+ },
+ open: function open() {
+ if (!this.isOpen() && !this.eventBus.before("open")) {
+ this.input.setAriaExpanded(true);
+ this.menu.open();
+ this._updateHint();
+ this.eventBus.trigger("open");
+ }
+ return this.isOpen();
+ },
+ close: function close() {
+ if (this.isOpen() && !this.eventBus.before("close")) {
+ this.input.setAriaExpanded(false);
+ this.menu.close();
+ this.input.clearHint();
+ this.input.resetInputValue();
+ this.eventBus.trigger("close");
+ }
+ return !this.isOpen();
+ },
+ setVal: function setVal(val) {
+ this.input.setQuery(_.toStr(val));
+ },
+ getVal: function getVal() {
+ return this.input.getQuery();
+ },
+ select: function select($selectable) {
+ var data = this.menu.getSelectableData($selectable);
+ if (data && !this.eventBus.before("select", data.obj, data.dataset)) {
+ this.input.setQuery(data.val, true);
+ this.eventBus.trigger("select", data.obj, data.dataset);
+ this.close();
+ return true;
+ }
+ return false;
+ },
+ autocomplete: function autocomplete($selectable) {
+ var query, data, isValid;
+ query = this.input.getQuery();
+ data = this.menu.getSelectableData($selectable);
+ isValid = data && query !== data.val;
+ if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) {
+ this.input.setQuery(data.val);
+ this.eventBus.trigger("autocomplete", data.obj, data.dataset);
+ return true;
+ }
+ return false;
+ },
+ moveCursor: function moveCursor(delta) {
+ var query, $candidate, data, suggestion, datasetName, cancelMove, id;
+ query = this.input.getQuery();
+ $candidate = this.menu.selectableRelativeToCursor(delta);
+ data = this.menu.getSelectableData($candidate);
+ suggestion = data ? data.obj : null;
+ datasetName = data ? data.dataset : null;
+ id = $candidate ? $candidate.attr("id") : null;
+ this.input.trigger("cursorchange", id);
+ cancelMove = this._minLengthMet() && this.menu.update(query);
+ if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) {
+ this.menu.setCursor($candidate);
+ if (data) {
+ if (typeof data.val === "string") {
+ this.input.setInputValue(data.val);
+ }
+ } else {
+ this.input.resetInputValue();
+ this._updateHint();
+ }
+ this.eventBus.trigger("cursorchange", suggestion, datasetName);
+ return true;
+ }
+ return false;
+ },
+ destroy: function destroy() {
+ this.input.destroy();
+ this.menu.destroy();
+ }
+ });
+ return Typeahead;
+ function c(ctx) {
+ var methods = [].slice.call(arguments, 1);
+ return function() {
+ var args = [].slice.call(arguments);
+ _.each(methods, function(method) {
+ return ctx[method].apply(ctx, args);
+ });
+ };
+ }
+ }();
+ (function() {
+ "use strict";
+ var old, keys, methods;
+ old = $.fn.typeahead;
+ keys = {
+ www: "tt-www",
+ attrs: "tt-attrs",
+ typeahead: "tt-typeahead"
+ };
+ methods = {
+ initialize: function initialize(o, datasets) {
+ var www;
+ datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1);
+ o = o || {};
+ www = WWW(o.classNames);
+ return this.each(attach);
+ function attach() {
+ var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor;
+ _.each(datasets, function(d) {
+ d.highlight = !!o.highlight;
+ });
+ $input = $(this);
+ $wrapper = $(www.html.wrapper);
+ $hint = $elOrNull(o.hint);
+ $menu = $elOrNull(o.menu);
+ defaultHint = o.hint !== false && !$hint;
+ defaultMenu = o.menu !== false && !$menu;
+ defaultHint && ($hint = buildHintFromInput($input, www));
+ defaultMenu && ($menu = $(www.html.menu).css(www.css.menu));
+ $hint && $hint.val("");
+ $input = prepInput($input, www);
+ if (defaultHint || defaultMenu) {
+ $wrapper.css(www.css.wrapper);
+ $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint);
+ $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null);
+ }
+ MenuConstructor = defaultMenu ? DefaultMenu : Menu;
+ eventBus = new EventBus({
+ el: $input
+ });
+ input = new Input({
+ hint: $hint,
+ input: $input,
+ menu: $menu
+ }, www);
+ menu = new MenuConstructor({
+ node: $menu,
+ datasets: datasets
+ }, www);
+ status = new Status({
+ $input: $input,
+ menu: menu
+ });
+ typeahead = new Typeahead({
+ input: input,
+ menu: menu,
+ eventBus: eventBus,
+ minLength: o.minLength,
+ autoselect: o.autoselect
+ }, www);
+ $input.data(keys.www, www);
+ $input.data(keys.typeahead, typeahead);
+ }
+ },
+ isEnabled: function isEnabled() {
+ var enabled;
+ ttEach(this.first(), function(t) {
+ enabled = t.isEnabled();
+ });
+ return enabled;
+ },
+ enable: function enable() {
+ ttEach(this, function(t) {
+ t.enable();
+ });
+ return this;
+ },
+ disable: function disable() {
+ ttEach(this, function(t) {
+ t.disable();
+ });
+ return this;
+ },
+ isActive: function isActive() {
+ var active;
+ ttEach(this.first(), function(t) {
+ active = t.isActive();
+ });
+ return active;
+ },
+ activate: function activate() {
+ ttEach(this, function(t) {
+ t.activate();
+ });
+ return this;
+ },
+ deactivate: function deactivate() {
+ ttEach(this, function(t) {
+ t.deactivate();
+ });
+ return this;
+ },
+ isOpen: function isOpen() {
+ var open;
+ ttEach(this.first(), function(t) {
+ open = t.isOpen();
+ });
+ return open;
+ },
+ open: function open() {
+ ttEach(this, function(t) {
+ t.open();
+ });
+ return this;
+ },
+ close: function close() {
+ ttEach(this, function(t) {
+ t.close();
+ });
+ return this;
+ },
+ select: function select(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.select($el);
+ });
+ return success;
+ },
+ autocomplete: function autocomplete(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.autocomplete($el);
+ });
+ return success;
+ },
+ moveCursor: function moveCursoe(delta) {
+ var success = false;
+ ttEach(this.first(), function(t) {
+ success = t.moveCursor(delta);
+ });
+ return success;
+ },
+ val: function val(newVal) {
+ var query;
+ if (!arguments.length) {
+ ttEach(this.first(), function(t) {
+ query = t.getVal();
+ });
+ return query;
+ } else {
+ ttEach(this, function(t) {
+ t.setVal(_.toStr(newVal));
+ });
+ return this;
+ }
+ },
+ destroy: function destroy() {
+ ttEach(this, function(typeahead, $input) {
+ revert($input);
+ typeahead.destroy();
+ });
+ return this;
+ }
+ };
+ $.fn.typeahead = function(method) {
+ if (methods[method]) {
+ return methods[method].apply(this, [].slice.call(arguments, 1));
+ } else {
+ return methods.initialize.apply(this, arguments);
+ }
+ };
+ $.fn.typeahead.noConflict = function noConflict() {
+ $.fn.typeahead = old;
+ return this;
+ };
+ function ttEach($els, fn) {
+ $els.each(function() {
+ var $input = $(this), typeahead;
+ (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input);
+ });
+ }
+ function buildHintFromInput($input, www) {
+ return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({
+ readonly: true,
+ required: false
+ }).removeAttr("id name placeholder").removeClass("required").attr({
+ spellcheck: "false",
+ tabindex: -1
+ });
+ }
+ function prepInput($input, www) {
+ $input.data(keys.attrs, {
+ dir: $input.attr("dir"),
+ autocomplete: $input.attr("autocomplete"),
+ spellcheck: $input.attr("spellcheck"),
+ style: $input.attr("style")
+ });
+ $input.addClass(www.classes.input).attr({
+ spellcheck: false
+ });
+ try {
+ !$input.attr("dir") && $input.attr("dir", "auto");
+ } catch (e) {}
+ return $input;
+ }
+ function getBackgroundStyles($el) {
+ return {
+ backgroundAttachment: $el.css("background-attachment"),
+ backgroundClip: $el.css("background-clip"),
+ backgroundColor: $el.css("background-color"),
+ backgroundImage: $el.css("background-image"),
+ backgroundOrigin: $el.css("background-origin"),
+ backgroundPosition: $el.css("background-position"),
+ backgroundRepeat: $el.css("background-repeat"),
+ backgroundSize: $el.css("background-size")
+ };
+ }
+ function revert($input) {
+ var www, $wrapper;
+ www = $input.data(keys.www);
+ $wrapper = $input.parent().filter(www.selectors.wrapper);
+ _.each($input.data(keys.attrs), function(val, key) {
+ _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val);
+ });
+ $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input);
+ if ($wrapper.length) {
+ $input.detach().insertAfter($wrapper);
+ $wrapper.remove();
+ }
+ }
+ function $elOrNull(obj) {
+ var isValid, $el;
+ isValid = _.isJQuery(obj) || _.isElement(obj);
+ $el = isValid ? $(obj).first() : [];
+ return $el.length ? $el : null;
+ }
+ })();
+});
\ No newline at end of file
diff --git a/docs/docsets/Flow.docset/Contents/Resources/Documents/search.json b/docs/docsets/Flow.docset/Contents/Resources/Documents/search.json
new file mode 100644
index 0000000..30bb6e2
--- /dev/null
+++ b/docs/docsets/Flow.docset/Contents/Resources/Documents/search.json
@@ -0,0 +1 @@
+{"Typealiases.html#/s:4Flow0A4Dataa":{"name":"FlowData","abstract":"
Undocumented
"},"Typealiases.html#/s:4Flow5Bytesa":{"name":"Bytes","abstract":"
Convenient alias to make list of UInt8 as Bytes.
"},"Structs/P256FlowSigner.html#/s:4Flow04P256A6SignerV9algorithmA2AC18SignatureAlgorithmOvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP7addressA2AC7AddressVvp":{"name":"address","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP8keyIndexSivp":{"name":"keyIndex","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow04P256A6SignerV3key7address0D5IndexAC9CryptoKit0B0O7SigningO10PrivateKeyV_A2AC7AddressVSitcfc":{"name":"init(key:address:keyIndex:)","abstract":"
Undocumented
","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP4sign12signableData11transaction10Foundation0E0VAI_A2AC11TransactionVSgtYaKF":{"name":"sign(signableData:transaction:)","parent_name":"P256FlowSigner"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV5topicSSvp":{"name":"topic","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV5topic2idACSS_SStcfc":{"name":"init(topic:id:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/AnyEncodable.html#/s:4Flow12AnyEncodableVyACSE_pcfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"AnyEncodable"},"Structs/AnyEncodable.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"AnyEncodable"},"Structs/AnyDecodable.html#/s:4Flow12AnyDecodableV5valueypvp":{"name":"value","abstract":"
Undocumented
","parent_name":"AnyDecodable"},"Structs/AnyDecodable.html#/s:4Flow12AnyDecodableVyACypSgcfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"AnyDecodable"},"Structs/AnyDecodable.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"AnyDecodable"},"Structs/ConsoleLogger.html#/s:4Flow13ConsoleLoggerVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"ConsoleLogger"},"Structs/ConsoleLogger.html#/s:4Flow13ConsoleLoggerV3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"ConsoleLogger"},"Structs/TimeoutAsyncSequence/Iterator.html#/s:ScI4next7ElementQzSgyYaKF":{"name":"next()","parent_name":"Iterator"},"Structs/TimeoutAsyncSequence.html#/s:Sci7ElementQa":{"name":"Element","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence.html#/s:4Flow20TimeoutAsyncSequenceV4base5after9tolerance5clock6policyACyxq_Gx_8DurationQy_AKSgq_AA0B6PolicyOtcfc":{"name":"init(base:after:tolerance:clock:policy:)","abstract":"
Undocumented
","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence/Iterator.html":{"name":"Iterator","abstract":"
Undocumented
","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence.html#/s:Sci17makeAsyncIterator0bC0QzyF":{"name":"makeAsyncIterator()","parent_name":"TimeoutAsyncSequence"},"Structs/FinishedWithoutValueError.html#/s:4Flow25FinishedWithoutValueErrorVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FinishedWithoutValueError"},"Structs/FinishedWithoutValueError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"FinishedWithoutValueError"},"Structs/TimeoutError.html#/s:4Flow12TimeoutErrorVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"TimeoutError"},"Structs/TimeoutError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"TimeoutError"},"Structs/NIOTransport.html#/s:4Flow12NIOTransportV7chainIDAc2AC05ChainD0O_tcfc":{"name":"init(chainID:)","abstract":"
Undocumented
","parent_name":"NIOTransport"},"Structs/NIOTransport.html#/s:4Flow12NIOTransportV10executeRPC_7requestq_AA0A9RPCMethodO_xtYaKSERzSeR_r0_lF":{"name":"executeRPC(_:request:)","abstract":"
Undocumented
","parent_name":"NIOTransport"},"Structs/NIOTransport.html":{"name":"NIOTransport","abstract":"
Temporary NIO-based transport."},"Structs/TimeoutError.html":{"name":"TimeoutError","abstract":"
Undocumented
"},"Structs/FinishedWithoutValueError.html":{"name":"FinishedWithoutValueError","abstract":"
Undocumented
"},"Structs/TimeoutAsyncSequence.html":{"name":"TimeoutAsyncSequence","abstract":"
Undocumented
"},"Structs/ConsoleLogger.html":{"name":"ConsoleLogger","abstract":"
Undocumented
"},"Structs/AnyDecodable.html":{"name":"AnyDecodable","abstract":"
Undocumented
"},"Structs/AnyEncodable.html":{"name":"AnyEncodable","abstract":"
Undocumented
"},"Structs/FlowWebSocketSubscriptionKey.html":{"name":"FlowWebSocketSubscriptionKey","abstract":"
A key that uniquely identifies a subscription within the websocket center.
"},"Structs/P256FlowSigner.html":{"name":"P256FlowSigner","abstract":"
ECDSA P‑256 signer for Flow, backed by CryptoKit.
"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP7baseURL10Foundation0E0Vvp":{"name":"baseURL","abstract":"
The target’s base URL.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP4pathSSvp":{"name":"path","abstract":"
The path to be appended to baseURL to form the full URL.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP6methodAA6MethodOvp":{"name":"method","abstract":"
The HTTP method used in the request.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP4taskAA4TaskOvp":{"name":"task","abstract":"
The type of HTTP task to be performed.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP7headersSDyS2SGSgvp":{"name":"headers","abstract":"
The headers to be used in the request.
","parent_name":"TargetType"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","abstract":"
Check node connectivity
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","abstract":"
Get latest block header
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","abstract":"
Get block header by ID
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22getBlockHeaderByHeight6heightA2AC0eF0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP14getLatestBlock11blockStatusA2AC0F0VAF0fH0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP12getBlockById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP16getBlockByHeight6heightA2AC0E0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP17getCollectionById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP15sendTransaction11transactionA2AC2IDVAF0E0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP18getTransactionById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP24getTransactionResultById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getAccountAtLatestBlock7address11blockStatusA2AC0E0VAG7AddressV_AG0hK0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getAccountByBlockHeight7address6heightA2AC0E0VAG7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0E8ResponseVAH0E0V_SayAH8ArgumentVGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0E8ResponseVAH0E0V_SayAH7CadenceC6FValueOGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22executeScriptAtBlockId6script05blockH09argumentsA2AC0E8ResponseVAH0E0V_AH2IDVSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22executeScriptAtBlockId6script05blockH09argumentsA2AC0E8ResponseVAH0E0V_AH2IDVSayAH7CadenceC6FValueOGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtBlockHeight6script6height9argumentsA2AC0E8ResponseVAH0E0V_s6UInt64VSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtBlockHeight6script6height9argumentsA2AC0E8ResponseVAH0E0V_s6UInt64VSayAH7CadenceC6FValueOGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getEventsForHeightRange4type5rangeSayA2AC5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getEventsForBlockIds4type3idsSayA2AC5EventV6ResultVGSS_ShyAG2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getNetworkParametersA2AC7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE23getAccountAtLatestBlock7address11blockStatusA2AC0E0VSS_AG0hK0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE18getTransactionById2idA2AC0E0VSS_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE24getTransactionResultById2idA2AC0eF0VSS_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE14getLatestBlock6sealedA2AC0F0VSb_tYaKF":{"name":"getLatestBlock(sealed:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock7cadence9arguments11blockStatusA2AC0E8ResponseVSS_SayAH8ArgumentVGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(cadence:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock7cadence9arguments11blockStatusA2AC0E8ResponseVSS_SayAH7CadenceC6FValueOGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(cadence:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock6script11blockStatusA2AC0E8ResponseVAG0E0V_AG0hK0OtYaKF":{"name":"executeScriptAtLatestBlock(script:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP7addressA2AC7AddressVvp":{"name":"address","abstract":"
Address in the flow blockchain
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of the public key
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP4sign12signableData11transaction10Foundation0E0VAI_A2AC11TransactionVSgtYaKF":{"name":"sign(signableData:transaction:)","abstract":"
Sign the data with account private key
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerPAAE4sign12signableData10Foundation0E0VAH_tYaKF":{"name":"sign(signableData:)","abstract":"
Undocumented
","parent_name":"FlowSigner"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","abstract":"
The content of the entity.
","parent_name":"FlowEntity"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP5bytesSays5UInt8VGvp":{"name":"bytes","abstract":"
Convert data into a list of UInt8.
","parent_name":"FlowEntity"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP3hexSSvp":{"name":"hex","abstract":"
Convert data into hex string.
","parent_name":"FlowEntity"},"Protocols/FlowLoggerProtocol.html#/s:4Flow0A14LoggerProtocolP3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLoggerProtocol"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP13cadenceBase64SSvp":{"name":"cadenceBase64","abstract":"
Base64-encoded Cadence script
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP4typeAA0bD0Ovp":{"name":"type","abstract":"
Script type (query or transaction)
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP06returnD0Se_pXpvp":{"name":"returnType","abstract":"
Return type for decoding
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP9argumentsSayA2AC8ArgumentVGvp":{"name":"arguments","abstract":"
Script arguments
","parent_name":"CadenceTargetType"},"Protocols/CadenceLoaderProtocol.html#/s:4Flow21CadenceLoaderProtocolP9directorySSvp":{"name":"directory","abstract":"
Undocumented
","parent_name":"CadenceLoaderProtocol"},"Protocols/CadenceLoaderProtocol.html#/s:4Flow21CadenceLoaderProtocolP8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"CadenceLoaderProtocol"},"Protocols/FlowTransport.html#/s:4Flow0A9TransportP10executeRPC_7requestqd_0_AA0A9RPCMethodO_qd__tYaKSERd__SeRd_0_r0_lF":{"name":"executeRPC(_:request:)","abstract":"
Undocumented
","parent_name":"FlowTransport"},"Protocols/FlowTransport.html":{"name":"FlowTransport","abstract":"
Abstract transport for Flow access nodes (HTTP/gRPC/etc.)."},"Protocols/CadenceLoaderProtocol.html":{"name":"CadenceLoaderProtocol","abstract":"
Undocumented
"},"Protocols/CadenceTargetType.html":{"name":"CadenceTargetType","abstract":"
Undocumented
"},"Protocols/FlowLoggerProtocol.html":{"name":"FlowLoggerProtocol","abstract":"
Undocumented
"},"Protocols/FlowEntity.html":{"name":"FlowEntity","abstract":"
Protocol to handle Flow network models.
"},"Protocols/FlowSigner.html":{"name":"FlowSigner","abstract":"
A protocol for signer to use private key to sign the data
"},"Protocols/FlowAccessProtocol.html":{"name":"FlowAccessProtocol","abstract":"
Flow Access API Protocol
"},"Protocols/TargetType.html":{"name":"TargetType","abstract":"
Undocumented
"},"Functions.html#/s:4Flow7cadence4textA2AC16TransactionBuildOSSyXE_tF":{"name":"cadence(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow7cadence4textA2AC16TransactionBuildOAD6ScriptVyXE_tF":{"name":"cadence(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow9arguments4textA2AC16TransactionBuildOSayAD7CadenceC6FValueOGyXE_tF":{"name":"arguments(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow9arguments4textA2AC16TransactionBuildOSayAD8ArgumentVGyXE_tF":{"name":"arguments(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow5payer4textA2AC16TransactionBuildOSSyXE_tF":{"name":"payer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow5payer4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"payer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow11authorizers4textA2AC16TransactionBuildOSayAD7AddressVGyXE_tF":{"name":"authorizers(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow11authorizers4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"authorizers(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOSSyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOAD0D11ProposalKeyVyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8gasLimit4textA2AC16TransactionBuildO6BigInt0G4UIntVyXE_tF":{"name":"gasLimit(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8gasLimit4textA2AC16TransactionBuildOSiyXE_tF":{"name":"gasLimit(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8refBlock4textA2AC16TransactionBuildOSSSgyXE_tF":{"name":"refBlock(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8refBlock4textA2AC16TransactionBuildOAD2IDVyXE_tF":{"name":"refBlock(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow10awaitFirst_14timeoutSeconds7ElementQzx_SdtYaKs8SendableRzSciRzsAfERQlF":{"name":"awaitFirst(_:timeoutSeconds:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow15awaitFirstOrNil_14timeoutSeconds7ElementQzSgx_SdtYas8SendableRzSciRzsAgERQlF":{"name":"awaitFirstOrNil(_:timeoutSeconds:)","abstract":"
Undocumented
"},"Extensions/URLSession.html#/s:So12NSURLSessionC4FlowE4data4from10Foundation4DataV_So13NSURLResponseCtAF3URLV_tYaKF":{"name":"data(from:)","abstract":"
Undocumented
","parent_name":"URLSession"},"Extensions/AsyncSequence.html#/s:Sci4Flows8SendableRzsAB7ElementRpzrlE7timeout5after9tolerance5clock6policyAA20TimeoutAsyncSequenceVyxqd__G8DurationQyd___ANSgqd__AA0I6PolicyOt12_Concurrency5ClockRd__lF":{"name":"timeout(after:tolerance:clock:policy:)","abstract":"
Undocumented
","parent_name":"AsyncSequence"},"Extensions/AsyncSequence.html#/s:Sci4Flows8SendableRzsAB7ElementRpzrlE7timeout5after9tolerance6policyAA20TimeoutAsyncSequenceVyx12_Concurrency15ContinuousClockVGs8DurationV_APSgAA0H6PolicyOtF":{"name":"timeout(after:tolerance:policy:)","abstract":"
Undocumented
","parent_name":"AsyncSequence"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE5bytesSays5UInt8VGvp":{"name":"bytes","abstract":"
Convert data to list of byte
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE7fromHexyACSgSSFZ":{"name":"fromHex(_:)","abstract":"
Initial the data with hex string
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE8hexValueSSvp":{"name":"hexValue","abstract":"
Convert data to hex string
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE11padZeroLeft9blockSizeACSi_tF":{"name":"padZeroLeft(blockSize:)","abstract":"
Mutate data with adding zero padding to the left until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE12padZeroRight9blockSizeACSi_tF":{"name":"padZeroRight(blockSize:)","abstract":"
Mutate data with adding zero padding to the right until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE15paddingZeroLeft9blockSizeACSi_tF":{"name":"paddingZeroLeft(blockSize:)","abstract":"
Add zero padding to the left until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE16paddingZeroRight9blockSizeACSi_tF":{"name":"paddingZeroRight(blockSize:)","abstract":"
Add zero padding to the right until fulfil the block size
","parent_name":"Data"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE4data10Foundation4DataVvp":{"name":"data","abstract":"
Convert to Data type
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE8hexValueSSvp":{"name":"hexValue","abstract":"
Convert bytes to hex string
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE11padZeroLeft9blockSizeSayACGSi_tF":{"name":"padZeroLeft(blockSize:)","abstract":"
Mutate data with adding zero padding to the left until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE12padZeroRight9blockSizeSayACGSi_tF":{"name":"padZeroRight(blockSize:)","abstract":"
Mutate data with adding zero padding to the right until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE15paddingZeroLeft9blockSizeSayACGSi_tF":{"name":"paddingZeroLeft(blockSize:)","abstract":"
Add zero padding to the left until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE16paddingZeroRight9blockSizeSayACGSi_tF":{"name":"paddingZeroRight(blockSize:)","abstract":"
Add zero padding to the right until fulfil the block size
","parent_name":"Array"},"Extensions/Decimal.html#/s:So9NSDecimala4FlowE11tokenFormat21maximumFractionDigitsSSSi_tF":{"name":"tokenFormat(maximumFractionDigits:)","abstract":"
Undocumented
","parent_name":"Decimal"},"Extensions/Double.html#/s:Sd4FlowE14roundToDecimalySdSiF":{"name":"roundToDecimal(_:)","abstract":"
Undocumented
","parent_name":"Double"},"Extensions/String.html#/s:SS4FlowE8hexValueSays5UInt8VGvp":{"name":"hexValue","abstract":"
Convert hex string to bytes
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE12hasHexPrefixSbyF":{"name":"hasHexPrefix()","abstract":"
Determine string has hexadecimal prefix.
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE14stripHexPrefixSSyF":{"name":"stripHexPrefix()","abstract":"
If string has hexadecimal prefix, remove it
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE12addHexPrefixSSyF":{"name":"addHexPrefix()","abstract":"
Add hexadecimal prefix to a string.","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE7replace2bySSSDyS2SG_tF":{"name":"replace(by:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE7replace4fromSSSDyS2SG_tF":{"name":"replace(from:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE17replaceExactMatch6target11replacementS2S_SStF":{"name":"replaceExactMatch(target:replacement:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html":{"name":"String"},"Extensions/Double.html":{"name":"Double"},"Extensions/Decimal.html":{"name":"Decimal"},"Extensions/Array.html":{"name":"Array"},"Extensions/Data.html":{"name":"Data"},"Extensions/AsyncSequence.html":{"name":"AsyncSequence"},"Extensions/URLSession.html":{"name":"URLSession"},"Enums/RLP.html#/s:4Flow3RLPO6encodey10Foundation4DataVSgypFZ":{"name":"encode(_:)","abstract":"
Undocumented
","parent_name":"RLP"},"Enums/FlowWebSocketUpgradeEvent.html#/s:4Flow0A21WebSocketUpgradeEventO8upgradedyA2CmF":{"name":"upgraded","abstract":"
Undocumented
","parent_name":"FlowWebSocketUpgradeEvent"},"Enums/UserAgent.html#/s:4Flow9UserAgentO5valueSSvpZ":{"name":"value","abstract":"
Short SDK‑centric UA, e.g. “flow-swift/1.0.0 (macOS 14.4) FlowTests”
","parent_name":"UserAgent"},"Enums/UserAgent.html#/s:4Flow9UserAgentO8extendedSSvpZ":{"name":"extended","abstract":"
Extended UA including device and CFNetwork/Darwin tokens, e.g.:","parent_name":"UserAgent"},"Enums/Task.html#/s:4Flow4TaskO17requestParametersyACSDyS2SGSg_SE_pSgtcACmF":{"name":"requestParameters(_:body:)","abstract":"
A requests body set with encoded parameters.
","parent_name":"Task"},"Enums/Method.html#/s:4Flow6MethodO3GETyA2CmF":{"name":"GET","abstract":"
Undocumented
","parent_name":"Method"},"Enums/Method.html#/s:4Flow6MethodO4POSTyA2CmF":{"name":"POST","abstract":"
Undocumented
","parent_name":"Method"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO5debugyA2CmF":{"name":"debug","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO4infoyA2CmF":{"name":"info","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO7warningyA2CmF":{"name":"warning","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO5erroryA2CmF":{"name":"error","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FCLFlow.html#/s:4Flow7FCLFlowO16buildTransaction7chainID14skipEmptyCheck7builderA2AC0D0VAH05ChainF0OSg_SbSayAH0D5BuildOGyXEtYaKFZ":{"name":"buildTransaction(chainID:skipEmptyCheck:builder:)","abstract":"
Undocumented
","parent_name":"FCLFlow"},"Enums/FCLFlow.html#/s:4Flow7FCLFlowO4send7chainID7signers7builderA2AC0E0VAH05ChainE0OSg_SayAA0A6Signer_pGSayAH16TransactionBuildOGyXEtYaKFZ":{"name":"send(chainID:signers:builder:)","abstract":"
Undocumented
","parent_name":"FCLFlow"},"Enums/TimeoutEvent.html#/s:4Flow12TimeoutEventO7elementyACyxGxcAEms8SendableRzlF":{"name":"element(_:)","abstract":"
Undocumented
","parent_name":"TimeoutEvent"},"Enums/TimeoutEvent.html#/s:4Flow12TimeoutEventO7timeoutyACyxGAEms8SendableRzlF":{"name":"timeout","abstract":"
Undocumented
","parent_name":"TimeoutEvent"},"Enums/TimeoutPolicy.html#/s:4Flow13TimeoutPolicyO07throwOnB0yA2CmF":{"name":"throwOnTimeout","abstract":"
Undocumented
","parent_name":"TimeoutPolicy"},"Enums/TimeoutPolicy.html#/s:4Flow13TimeoutPolicyO08finishOnB0yA2CmF":{"name":"finishOnTimeout","abstract":"
Undocumented
","parent_name":"TimeoutPolicy"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO07unknownC0yA2CmF":{"name":"unknownError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO012txValidationC0yA2CmF":{"name":"txValidationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO017invalidTxByteSizeC0yA2CmF":{"name":"invalidTxByteSizeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021invalidReferenceBlockC0yA2CmF":{"name":"invalidReferenceBlockError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO018expiredTransactionC0yA2CmF":{"name":"expiredTransactionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013invalidScriptC0yA2CmF":{"name":"invalidScriptError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidGasLimitC0yA2CmF":{"name":"invalidGasLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidProposalSignatureC0yA2CmF":{"name":"invalidProposalSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidProposalSeqNumberC0yA2CmF":{"name":"invalidProposalSeqNumberError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO023invalidPayloadSignatureC0yA2CmF":{"name":"invalidPayloadSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidEnvelopeSignatureC0yA2CmF":{"name":"invalidEnvelopeSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO011fvmInternalC0yA2CmF":{"name":"fvmInternalError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO05valueC0yA2CmF":{"name":"valueError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidArgumentC0yA2CmF":{"name":"invalidArgumentError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO014invalidAddressC0yA2CmF":{"name":"invalidAddressError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidLocationC0yA2CmF":{"name":"invalidLocationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO020accountAuthorizationC0yA2CmF":{"name":"accountAuthorizationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO022operationAuthorizationC0yA2CmF":{"name":"operationAuthorizationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021operationNotSupportedC0yA2CmF":{"name":"operationNotSupportedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021blockHeightOutOfRangeC0yA2CmF":{"name":"blockHeightOutOfRangeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO09executionC0yA2CmF":{"name":"executionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO014cadenceRuntimeC0yA2CmF":{"name":"cadenceRuntimeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO24encodingUnsupportedValueyA2CmF":{"name":"encodingUnsupportedValue","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO23storageCapacityExceededyA2CmF":{"name":"storageCapacityExceeded","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO016gasLimitExceededC0yA2CmF":{"name":"gasLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO018eventLimitExceededC0yA2CmF":{"name":"eventLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO030ledgerInteractionLimitExceededC0yA2CmF":{"name":"ledgerInteractionLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO017stateKeySizeLimitC0yA2CmF":{"name":"stateKeySizeLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO019stateValueSizeLimitC0yA2CmF":{"name":"stateValueSizeLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO029transactionFeeDeductionFailedC0yA2CmF":{"name":"transactionFeeDeductionFailedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024computationLimitExceededC0yA2CmF":{"name":"computationLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO019memoryLimitExceededC0yA2CmF":{"name":"memoryLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO41couldNotDecodeExecutionParameterFromStateyA2CmF":{"name":"couldNotDecodeExecutionParameterFromState","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO023scriptExecutionTimedOutC0yA2CmF":{"name":"scriptExecutionTimedOutError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024scriptExecutionCancelledC0yA2CmF":{"name":"scriptExecutionCancelledError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013eventEncodingC0yA2CmF":{"name":"eventEncodingError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO026invalidInternalStateAccessC0yA2CmF":{"name":"invalidInternalStateAccessError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO24insufficientPayerBalanceyA2CmF":{"name":"insufficientPayerBalance","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO07accountC0yA2CmF":{"name":"accountError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015accountNotFoundC0yA2CmF":{"name":"accountNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024accountPublicKeyNotFoundC0yA2CmF":{"name":"accountPublicKeyNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO020accountAlreadyExistsC0yA2CmF":{"name":"accountAlreadyExistsError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013frozenAccountC0yA2CmF":{"name":"frozenAccountError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO028accountStorageNotInitializedC0yA2CmF":{"name":"accountStorageNotInitializedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021accountPublicKeyLimitC0yA2CmF":{"name":"accountPublicKeyLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO08contractC0yA2CmF":{"name":"contractError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO016contractNotFoundC0yA2CmF":{"name":"contractNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021contractNamesNotFoundC0yA2CmF":{"name":"contractNamesNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO012evmExecutionC0yA2CmF":{"name":"evmExecutionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/CadenceType.html#/s:4Flow11CadenceTypeO5queryyA2CmF":{"name":"query","abstract":"
Undocumented
","parent_name":"CadenceType"},"Enums/CadenceType.html#/s:4Flow11CadenceTypeO11transactionyA2CmF":{"name":"transaction","abstract":"
Undocumented
","parent_name":"CadenceType"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO4pingyA2CmF":{"name":"ping","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getLatestBlockHeaderyA2CmF":{"name":"getLatestBlockHeader","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO18getBlockHeaderByIdyA2CmF":{"name":"getBlockHeaderById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO22getBlockHeaderByHeightyA2CmF":{"name":"getBlockHeaderByHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO14getLatestBlockyA2CmF":{"name":"getLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO12getBlockByIdyA2CmF":{"name":"getBlockById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO16getBlockByHeightyA2CmF":{"name":"getBlockByHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO17getCollectionByIdyA2CmF":{"name":"getCollectionById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO15sendTransactionyA2CmF":{"name":"sendTransaction","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO18getTransactionByIdyA2CmF":{"name":"getTransactionById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO24getTransactionResultByIdyA2CmF":{"name":"getTransactionResultById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getAccountAtLatestBlockyA2CmF":{"name":"getAccountAtLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getAccountByBlockHeightyA2CmF":{"name":"getAccountByBlockHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO26executeScriptAtLatestBlockyA2CmF":{"name":"executeScriptAtLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO22executeScriptAtBlockIdyA2CmF":{"name":"executeScriptAtBlockId","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO26executeScriptAtBlockHeightyA2CmF":{"name":"executeScriptAtBlockHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getEventsForHeightRangeyA2CmF":{"name":"getEventsForHeightRange","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getEventsForBlockIdsyA2CmF":{"name":"getEventsForBlockIds","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getNetworkParametersyA2CmF":{"name":"getNetworkParameters","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html":{"name":"FlowRPCMethod","abstract":"
RPC methods supported by the transport layer."},"Enums/CadenceType.html":{"name":"CadenceType","abstract":"
Undocumented
"},"Enums/FvmErrorCode.html":{"name":"FvmErrorCode","abstract":"
Undocumented
"},"Enums/TimeoutPolicy.html":{"name":"TimeoutPolicy","abstract":"
Undocumented
"},"Enums/TimeoutEvent.html":{"name":"TimeoutEvent","abstract":"
Undocumented
"},"Enums/FCLFlow.html":{"name":"FCLFlow","abstract":"
Undocumented
"},"Enums.html#/s:4Flow0A6ActorsO":{"name":"FlowActors","abstract":"
Undocumented
"},"Enums/FlowLogLevel.html":{"name":"FlowLogLevel","abstract":"
Undocumented
"},"Enums/Method.html":{"name":"Method","abstract":"
Undocumented
"},"Enums/Task.html":{"name":"Task","abstract":"
Undocumented
"},"Enums/UserAgent.html":{"name":"UserAgent","abstract":"
Unified, safe user agent generator for the Flow SDK."},"Enums/FlowWebSocketUpgradeEvent.html":{"name":"FlowWebSocketUpgradeEvent","abstract":"
Undocumented
"},"Enums/RLP.html":{"name":"RLP","abstract":"
Undocumented
"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC5group11configActorAC7NIOCore14EventLoopGroup_pSg_AA0a6ConfigG0Ctcfc":{"name":"init(group:configActor:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC15connectIfNeededyyYaKF":{"name":"connectIfNeeded()","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC10disconnectyyYaF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC30sendTransactionStatusSubscribe2idyA2AC2IDV_tYaF":{"name":"sendTransactionStatusSubscribe(id:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC20sendSubscribeMessage14subscriptionId5topic9argumentsySS_A2AC03WebC5TopicOxtYaKSERzs8SendableRzlF":{"name":"sendSubscribeMessage(subscriptionId:topic:arguments:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC15minimumLogLevelAA0adE0Ovp":{"name":"minimumLogLevel","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC03addB0yyAA0aB8Protocol_pF":{"name":"addLogger(_:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC16removeAllLoggersyyF":{"name":"removeAllLoggers()","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC8logAsync_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"logAsync(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC03setC0_3for2onySS_SSA2AC7ChainIDOtF":{"name":"setAddress(_:for:on:)","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC7address3for2onSSSgSS_A2AC7ChainIDOtF":{"name":"address(for:on:)","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC14resolveImports2in3forS2S_A2AC7ChainIDOtF":{"name":"resolveImports(in:for:)","abstract":"
Resolve import X from 0x... in a script, based on configured addresses.
","parent_name":"ContractAddressRegister"},"Classes/CadenceLoader/Category/Token.html#/s:4Flow13CadenceLoaderC8CategoryO5TokenO03getE14BalanceStorageyA2GmF":{"name":"getTokenBalanceStorage","abstract":"
Undocumented
","parent_name":"Token"},"Classes/CadenceLoader/Category/Token.html#/s:4Flow13CadenceLoaderC8CategoryO5TokenO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Token"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV2idSivp":{"name":"id","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV6nodeIDSSvp":{"name":"nodeID","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV15tokensCommittedSdvp":{"name":"tokensCommitted","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV12tokensStakedSdvp":{"name":"tokensStaked","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV15tokensUnstakingSdvp":{"name":"tokensUnstaking","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14tokensRewardedSdvp":{"name":"tokensRewarded","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14tokensUnstakedSdvp":{"name":"tokensUnstaked","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV24tokensRequestedToUnstakeSdvp":{"name":"tokensRequestedToUnstake","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV12stakingCountSdvp":{"name":"stakingCount","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14unstakingCountSdvp":{"name":"unstakingCount","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO16getDelegatorInfoyA2GmF":{"name":"getDelegatorInfo","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/Staking.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/Staking/StakingNode.html":{"name":"StakingNode","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO10getAddressyA2GmF":{"name":"getAddress","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO9createCOAyA2GmF":{"name":"createCOA","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO6evmRunyA2GmF":{"name":"evmRun","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9ThumbnailV9urlStringSSSgvp":{"name":"urlString","abstract":"
Undocumented
","parent_name":"Thumbnail"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9ThumbnailV3url10Foundation3URLVSgvp":{"name":"url","abstract":"
Undocumented
","parent_name":"Thumbnail"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV4nameSSSgvp":{"name":"name","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV11descriptionSSSgvp":{"name":"description","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9thumbnailAI9ThumbnailVSgvp":{"name":"thumbnail","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html":{"name":"Thumbnail","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO03getE7AddressyA2GmF":{"name":"getChildAddress","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO03getE11AccountMetayA2GmF":{"name":"getChildAccountMeta","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child/Metadata.html":{"name":"Metadata","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html":{"name":"Child","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/EVM.html":{"name":"EVM","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/Staking.html":{"name":"Staking","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/Token.html":{"name":"Token","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category.html":{"name":"Category","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC12subdirectorySSvpZ":{"name":"subdirectory","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC4load4name9directoryS2S_SStKFZ":{"name":"load(name:directory:)","abstract":"
Load a Cadence script from the module bundle.
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC4loadySSAA0bC8Protocol_pKFZ":{"name":"load(_:)","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV5topicAB0bcD0Ovp":{"name":"topic","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV7payloadxSgvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV5errorAB0bcC5ErrorVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketSocketError.html#/s:4FlowAAC09WebSocketC5ErrorV4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"WebSocketSocketError"},"Classes/Flow/WebSocketSocketError.html#/s:4FlowAAC09WebSocketC5ErrorV7messageSSvp":{"name":"message","abstract":"
Undocumented
","parent_name":"WebSocketSocketError"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV6actionAB0bC6ActionOvp":{"name":"action","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV5errorAB0bcC5ErrorVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV2idSSSgvp":{"name":"id","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV6actionAB0bC6ActionOvp":{"name":"action","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV5topicAB0bC5TopicOSgvp":{"name":"topic","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV9argumentsxSgvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV2id6action5topic9argumentsADy_xGSSSg_AB0bC6ActionOAB0bC5TopicOSgxSgtcfc":{"name":"init(id:action:topic:arguments:)","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO9subscribeyA2DmF":{"name":"subscribe","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO11unsubscribeyA2DmF":{"name":"unsubscribe","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO17listSubscriptionsyA2DmF":{"name":"listSubscriptions","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO12blockDigestsyA2DmF":{"name":"blockDigests","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO12blockHeadersyA2DmF":{"name":"blockHeaders","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO6blocksyA2DmF":{"name":"blocks","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO6eventsyA2DmF":{"name":"events","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO15accountStatusesyA2DmF":{"name":"accountStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO19transactionStatusesyA2DmF":{"name":"transactionStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO29sendAndGetTransactionStatusesyA2DmF":{"name":"sendAndGetTransactionStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV13transactionIdSSvp":{"name":"transactionId","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV16transactionIndexSSvp":{"name":"transactionIndex","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV10eventIndexSSvp":{"name":"eventIndex","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV7payloadSSvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV4type13transactionId0H5Index05eventJ07payloadADSS_S4Stcfc":{"name":"init(type:transactionId:transactionIndex:eventIndex:payload:)","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV7blockIdSSvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV6heightSSvp":{"name":"height","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV13accountEventsSDySSSayAB0bcdE5EventVGGvp":{"name":"accountEvents","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV7blockId6height13accountEventsADSS_SSSDySSSayAB0bcdE5EventVGGtcfc":{"name":"init(blockId:height:accountEvents:)","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV11blockStatusAB0bcdH0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV05startD6HeightSSSgvp":{"name":"startBlockHeight","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV05startD2IdSSSgvp":{"name":"startBlockId","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV11blockStatus05startD6Height0iD2IdAdB0bcdH0O_SSSgAJtcfc":{"name":"init(blockStatus:startBlockHeight:startBlockId:)","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketTransactionStatusRequest.html#/s:4FlowAAC33WebSocketTransactionStatusRequestV4txIdSSvp":{"name":"txId","abstract":"
Undocumented
","parent_name":"WebSocketTransactionStatusRequest"},"Classes/Flow/WebSocketTransactionStatusRequest.html#/s:4FlowAAC33WebSocketTransactionStatusRequestV4txIdADSS_tcfc":{"name":"init(txId:)","abstract":"
Undocumented
","parent_name":"WebSocketTransactionStatusRequest"},"Classes/Flow/WebSocketBlockStatus.html#/s:4FlowAAC20WebSocketBlockStatusO9finalizedyA2DmF":{"name":"finalized","abstract":"
Undocumented
","parent_name":"WebSocketBlockStatus"},"Classes/Flow/WebSocketBlockStatus.html#/s:4FlowAAC20WebSocketBlockStatusO6sealedyA2DmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"WebSocketBlockStatus"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV6statusAB11TransactionV6StatusOvp":{"name":"status","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV10statusCodeSivp":{"name":"statusCode","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV12errorMessageSSSgvp":{"name":"errorMessage","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV7blockIdSSSgvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV15computationUsedSSSgvp":{"name":"computationUsed","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV6eventsSayAB5EventVGvp":{"name":"events","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV19asTransactionResultAB0eF0VyKF":{"name":"asTransactionResult()","abstract":"
Bridge to the public TransactionResult model.
","parent_name":"WSTransactionResponse"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC6sharedADvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC07accountB07addressScSyAB7AddressVGAH_tF":{"name":"accountPublisher(address:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC010connectionB0ScSySbGyF":{"name":"connectionPublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC014walletResponseB0ScSyAB06WalletE0VGyF":{"name":"walletResponsePublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC05errorB0ScSys5Error_pGyF":{"name":"errorPublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC20publishAccountUpdate7addressyAB7AddressV_tF":{"name":"publishAccountUpdate(address:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC23publishConnectionStatus11isConnectedySb_tF":{"name":"publishConnectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC21publishWalletResponseyyAB0eF0VF":{"name":"publishWalletResponse(_:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC12publishErroryys0E0_pF":{"name":"publishError(_:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV2idSivp":{"name":"id","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV7jsonrpcSSvp":{"name":"jsonrpc","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV9requestIdSSvp":{"name":"requestId","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV8approvedSbvp":{"name":"approved","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV2id7jsonrpc9requestId8approvedADSi_S2SSbtcfc":{"name":"init(id:jsonrpc:requestId:approved:)","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV6heightSSvp":{"name":"height","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV7blockId6height9timestampAfB2IDV_SS10Foundation4DateVtcfc":{"name":"init(blockId:height:timestamp:)","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html":{"name":"WSBlockHeader","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC17transactionStreamScSyAB2IDV_AB17TransactionResultVtGyF":{"name":"transactionStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC13accountStreamScSyAB7AddressVGyF":{"name":"accountStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC11blockStreamScSyAD13WSBlockHeaderVGyF":{"name":"blockStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC16connectionStreamScSySbGyF":{"name":"connectionStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC20walletResponseStreamScSySb8approved_SDySSypGtGyF":{"name":"walletResponseStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC11errorStreamScSys5Error_pGyF":{"name":"errorStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC24publishTransactionStatus2id6statusyAB2IDV_AB0D6ResultVtF":{"name":"publishTransactionStatus(id:status:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC20publishAccountUpdate7addressyAB7AddressV_tF":{"name":"publishAccountUpdate(address:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC23publishConnectionStatus11isConnectedySb_tF":{"name":"publishConnectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC21publishWalletResponse8approved4dataySb_SDySSypGtF":{"name":"publishWalletResponse(approved:data:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC12publishBlock2id6height9timestampyAB2IDV_SS10Foundation4DateVtF":{"name":"publishBlock(id:height:timestamp:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC12publishErroryys0D0_pF":{"name":"publishError(_:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO17transactionStatusyAdB2IDV_AB17TransactionResultVtcADmF":{"name":"transactionStatus(id:status:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO13accountUpdateyAdB7AddressV_tcADmF":{"name":"accountUpdate(address:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO16connectionStatusyADSb_tcADmF":{"name":"connectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO14walletResponseyADSb_SDySSypGtcADmF":{"name":"walletResponse(approved:_:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO5blockyAdB2IDV_SS10Foundation4DateVtcADmF":{"name":"block(id:height:timestamp:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO5erroryADs5Error_pcADmF":{"name":"error(_:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/BlockStatus.html#/s:4FlowAAC11BlockStatusO6sealedyA2DmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"BlockStatus"},"Classes/Flow/BlockStatus.html#/s:4FlowAAC11BlockStatusO5finalyA2DmF":{"name":"final","abstract":"
Undocumented
","parent_name":"BlockStatus"},"Classes/Flow/Code.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Code"},"Classes/Flow/Code.html#/s:4FlowAAC4CodeV4textSSvp":{"name":"text","abstract":"
UTF‑8 text representation of the code.
","parent_name":"Code"},"Classes/Flow/Code.html#/s:4FlowAAC4CodeV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Code"},"Classes/Flow/Code.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Code"},"Classes/Flow/Code.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Code"},"Classes/Flow/Code.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Code"},"Classes/Flow/PublicKey.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"PublicKey"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7addressAB7AddressVvp":{"name":"address","abstract":"
The address of the signature
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of the signed key
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV9signature10Foundation4DataVvp":{"name":"signature","abstract":"
Signature Data
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7address8keyIndex9signatureAdB7AddressV_Si10Foundation4DataVtcfc":{"name":"init(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7address11signerIndex03keyF09signatureAdB7AddressV_S2i10Foundation4DataVtcfc":{"name":"init(address:signerIndex:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV9buildUpon7address11signerIndex03keyH09signatureAdB7AddressVSg_SiSgAM10Foundation4DataVSgtF":{"name":"buildUpon(address:signerIndex:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7addressAB7AddressVvp":{"name":"address","abstract":"
The address of account
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of public key in account
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV14sequenceNumber6BigIntAFVvp":{"name":"sequenceNumber","abstract":"
The sequence numbers to ensure that each transaction runs at most once","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7address8keyIndexAdB7AddressV_Sitcfc":{"name":"init(address:keyIndex:)","abstract":"
Undocumented
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7address8keyIndex14sequenceNumberAdB7AddressV_Sis5Int64Vtcfc":{"name":"init(address:keyIndex:sequenceNumber:)","abstract":"
Undocumented
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionProposalKey"},"Classes/Flow/Transaction/EnvelopeSignature.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"EnvelopeSignature"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7unknownyA2FmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7pendingyA2FmF":{"name":"pending","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO9finalizedyA2FmF":{"name":"finalized","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO8executedyA2FmF":{"name":"executed","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO6sealedyA2FmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7expiredyA2FmF":{"name":"expired","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO11stringValueSSvp":{"name":"stringValue","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusOyAFSScfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusOyAFSicfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"Status"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6scriptAB6ScriptVvp":{"name":"script","abstract":"
A valid cadence script.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Any arguments to the script if needed should be supplied via a function that returns an array of arguments.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16referenceBlockIdAB2IDVvp":{"name":"referenceBlockId","abstract":"
The ID of the block to execute the interaction at.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV8gasLimit6BigInt0E4UIntVvp":{"name":"gasLimit","abstract":"
Compute (Gas) limit for query. Read the documentation about computation cost for information about how computation cost is calculated on Flow.","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11proposalKeyAB0b8ProposalD0Vvp":{"name":"proposalKey","abstract":"
The valid key of proposer role.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV5payerAB7AddressVvp":{"name":"payer","abstract":"
The address of payer
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11authorizersSayAB7AddressVGvp":{"name":"authorizers","abstract":"
The list of authorizer’s address
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV17payloadSignaturesSayAB0B9SignatureVGvp":{"name":"payloadSignatures","abstract":"
The list of payload signature
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV18envelopeSignaturesSayAB0B9SignatureVGvp":{"name":"envelopeSignatures","abstract":"
The list of envelope signature
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeO0AdB6ScriptV_SayAB8ArgumentVGAB2IDV6BigInt0T4UIntVAB0b8ProposalK0VAB7AddressVSayA_GSayAB0B9SignatureVGA3_tcfc":{"name":"init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeO0AdB6ScriptV_SayAB8ArgumentVGAB2IDVs6UInt64VAB0b8ProposalK0VAB7AddressVSayAZGSayAB0B9SignatureVGA2_tcfc":{"name":"init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV9buildUpOn6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeR0AdB6ScriptVSg_SayAB8ArgumentVGSgAB2IDVSg6BigInt0W4UIntVSgAB0b8ProposalN0VSgAB7AddressVSgSayA5_GSgSayAB0B9SignatureVGSgA12_tF":{"name":"buildUpOn(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15encodedEnvelope10Foundation4DataVSgvp":{"name":"encodedEnvelope","abstract":"
RLP Encoded data of Envelope
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15envelopeMessageSSSgvp":{"name":"envelopeMessage","abstract":"
RLP Encoded data of Envelope in hex string
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16signableEnvelope10Foundation4DataVSgvp":{"name":"signableEnvelope","abstract":"
RLP Encoded data of Envelope with DomainTag.transaction prefix
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV14encodedPayload10Foundation4DataVSgvp":{"name":"encodedPayload","abstract":"
RLP Encoded data of Payload
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV14payloadMessageSSSgvp":{"name":"payloadMessage","abstract":"
RLP Encoded data of Payload in hex string
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16signablePlayload10Foundation4DataVSgvp":{"name":"signablePlayload","abstract":"
RLP Encoded data of Payload with DomainTag.transaction prefix
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV12updateScript6scriptyAB0D0V_tF":{"name":"updateScript(script:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV19addPayloadSignatureyyAB0bE0VF":{"name":"addPayloadSignature(_:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV19addPayloadSignature7address8keyIndex9signatureyAB7AddressV_Si10Foundation4DataVtF":{"name":"addPayloadSignature(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV20addEnvelopeSignature7address8keyIndex9signatureyAB7AddressV_Si10Foundation4DataVtF":{"name":"addEnvelopeSignature(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV20addEnvelopeSignatureyyAB0bE0VF":{"name":"addEnvelopeSignature(_:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11signPayload7signersADSayAA0A6Signer_pG_tYaKF":{"name":"signPayload(signers:)","abstract":"
Sign transaction payload with provided signers
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV12signEnvelope7signersADSayAA0A6Signer_pG_tYaKF":{"name":"signEnvelope(signers:)","abstract":"
Sign transaction envelope with payer
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV4sign7signersADSayAA0A6Signer_pG_tYaKF":{"name":"sign(signers:)","abstract":"
Sign (Mutate) unsigned Flow Transaction with a list of FlowSigner
","parent_name":"Transaction"},"Classes/Flow/Transaction/Status.html":{"name":"Status","abstract":"
The transaction status
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV7PayloadV":{"name":"Payload","abstract":"
Internal struct for payload RLP encoding
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15PayloadEnvelopeV":{"name":"PayloadEnvelope","abstract":"
Internal struct for Envelope RLP encoding
","parent_name":"Transaction"},"Classes/Flow/Transaction/EnvelopeSignature.html":{"name":"EnvelopeSignature","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15PaymentEnvelopeV":{"name":"PaymentEnvelope","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Signature.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:4FlowAAC9SignatureV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:4FlowAAC9SignatureV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Signature"},"Classes/Flow/ScriptResponse.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6fieldsAB8ArgumentVSgvp":{"name":"fields","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ScriptResponse"},"Classes/Flow/Script.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4textSSvp":{"name":"text","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4textADSS_tcfc":{"name":"init(text:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Script"},"Classes/Flow/Script.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Script"},"Classes/Flow/Script.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Script"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4data10Foundation4DataVvp":{"name":"data","abstract":"
Raw ID bytes (big-endian).
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Create an ID from raw bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Create an ID from a hex string (with or without “0x” prefix).
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Create an ID from an array of bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV5bytesADs10ArraySliceVys5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Create an ID from a slice of bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ID"},"Classes/Flow/ID.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"ID"},"Classes/Flow/ID.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4once6status7timeoutAB17TransactionResultVAB0F0V6StatusO_SdtYaKF":{"name":"once(status:timeout:)","abstract":"
Undocumented
","parent_name":"ID"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6statusAB0B0V6StatusOvp":{"name":"status","abstract":"
The status of the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV12errorMessageSSvp":{"name":"errorMessage","abstract":"
The error message for the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6eventsSayAB5EventVGvp":{"name":"events","abstract":"
The emitted events by this transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV10statusCodeSivp":{"name":"statusCode","abstract":"
The status code of the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
The ID of the block that included this transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV15computationUsedSSvp":{"name":"computationUsed","abstract":"
Total computation used by this transaction (as returned by the API)
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6status12errorMessage6events0D4Code7blockId15computationUsedAdB0B0V6StatusO_SSSayAB5EventVGSiAB2IDVSStcfc":{"name":"init(status:errorMessage:events:statusCode:blockId:computationUsed:)","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV9errorCodeAA08FvmErrorE0OSgvp":{"name":"errorCode","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV8getEventyAB0E0VSgSSF":{"name":"getEvent(_:)","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV17getCreatedAddressSSSgyF":{"name":"getCreatedAddress()","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/Snapshot.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:4FlowAAC8SnapshotV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:4FlowAAC8SnapshotV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Snapshot"},"Classes/Flow/Event/Payload.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6fieldsAB8ArgumentVSgvp":{"name":"fields","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV4dataAF10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV5bytesAFSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Block ID where event occurred.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV11blockHeights6UInt64Vvp":{"name":"blockHeight","abstract":"
Block height.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV6eventsSayADGvp":{"name":"events","abstract":"
Events in this result.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV7blockId0D6Height6eventsAfB2IDV_s6UInt64VSayADGtcfc":{"name":"init(blockId:blockHeight:events:)","abstract":"
Undocumented
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Result"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV4typeSSvp":{"name":"type","abstract":"
Event type identifier.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV13transactionIdAB2IDVvp":{"name":"transactionId","abstract":"
The id for the transaction, Flow.ID.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV16transactionIndexSivp":{"name":"transactionIndex","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV10eventIndexSivp":{"name":"eventIndex","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV7payloadAD7PayloadVvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV4type13transactionId0D5Index05eventF07payloadADSS_AB2IDVS2iAD7PayloadVtcfc":{"name":"init(type:transactionId:transactionIndex:eventIndex:payload:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Event"},"Classes/Flow/Event/Result.html":{"name":"Result","abstract":"
Event result including block context.
","parent_name":"Event"},"Classes/Flow/Event/Payload.html":{"name":"Payload","abstract":"
Raw Cadence payload and decoded argument fields.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV8getFieldyxSgSSSeRzlF":{"name":"getField(_:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8RawValuea":{"name":"RawValue","abstract":"
Undocumented
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO11transactionyA2DmF":{"name":"transaction","abstract":"
The tag for transaction
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO4useryA2DmF":{"name":"user","abstract":"
The tag for user
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO12accountProofyA2DmF":{"name":"accountProof","abstract":"
The tag for account proof
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO6customyADSScADmF":{"name":"custom(_:)","abstract":"
Custom domain tag
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8rawValueSSvp":{"name":"rawValue","abstract":"
The rawValue for domain tag
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8rawValueADSgSS_tcfc":{"name":"init(rawValue:)","abstract":"
Init a domain tag by string","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO9normalize10Foundation4DataVvp":{"name":"normalize","abstract":"
Convert tag string into data with .uft8 format","parent_name":"DomainTag"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV12collectionIdAB2IDVvp":{"name":"collectionId","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV9signerIdsSayAB2IDVGvp":{"name":"signerIds","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV12collectionId9signerIdsAdB2IDV_SayAHGtcfc":{"name":"init(collectionId:signerIds:)","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV2idAB2IDVvp":{"name":"id","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV14transactionIdsSayAB2IDVGvp":{"name":"transactionIds","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV2id14transactionIdsAdB2IDV_SayAHGtcfc":{"name":"init(id:transactionIds:)","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7unknownyA2DmF":{"name":"unknown","abstract":"
Unknown environment as a fallback.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7mainnetyA2DmF":{"name":"mainnet","abstract":"
Mainnet environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7testnetyA2DmF":{"name":"testnet","abstract":"
Testnet environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO8emulatoryA2DmF":{"name":"emulator","abstract":"
Emulator environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO6customyADSS_AB9TransportOtcADmF":{"name":"custom(name:transport:)","abstract":"
Custom ChainID with custom Transport.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO8allCasesSayADGvpZ":{"name":"allCases","abstract":"
List of non-custom chain ids.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO4nameSSvp":{"name":"name","abstract":"
Name of the chain id.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO5valueSSvp":{"name":"value","abstract":"
Value from the access API","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO15defaultHTTPNodeAB9TransportOvp":{"name":"defaultHTTPNode","abstract":"
Default HTTP endpoint for this chain.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO11defaultNodeAB9TransportOvp":{"name":"defaultNode","abstract":"
Default node for .mainnet, .testnet, .emulator.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO20defaultWebSocketNodeAB9TransportOSgvp":{"name":"defaultWebSocketNode","abstract":"
Undocumented
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO4nameADSS_tcfc":{"name":"init(name:)","abstract":"
Undocumented
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"ChainID"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4voidyA2FmF":{"name":"void","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8optionalyA2FSgcAFmF":{"name":"optional(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4boolyAFSbcAFmF":{"name":"bool(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6stringyAFSScAFmF":{"name":"string(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO9characteryAFSScAFmF":{"name":"character(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO3intyAFSicAFmF":{"name":"int(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4uintyAFSucAFmF":{"name":"uint(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4int8yAFs4Int8VcAFmF":{"name":"int8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5uint8yAFs5UInt8VcAFmF":{"name":"uint8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int16yAFs5Int16VcAFmF":{"name":"int16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint16yAFs6UInt16VcAFmF":{"name":"uint16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int32yAFs5Int32VcAFmF":{"name":"int32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint32yAFs6UInt32VcAFmF":{"name":"uint32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int64yAFs5Int64VcAFmF":{"name":"int64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint64yAFs6UInt64VcAFmF":{"name":"uint64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6int128yAF6BigIntAHVcAFmF":{"name":"int128(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7uint128yAF6BigInt0E4UIntVcAFmF":{"name":"uint128(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6int256yAF6BigIntAHVcAFmF":{"name":"int256(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7uint256yAF6BigInt0E4UIntVcAFmF":{"name":"uint256(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5word8yAFs5UInt8VcAFmF":{"name":"word8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word16yAFs6UInt16VcAFmF":{"name":"word16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word32yAFs6UInt32VcAFmF":{"name":"word32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word64yAFs6UInt64VcAFmF":{"name":"word64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5fix64yAFSo9NSDecimalacAFmF":{"name":"fix64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6ufix64yAFSo9NSDecimalacAFmF":{"name":"ufix64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5arrayyAFSayAFGcAFmF":{"name":"array(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7addressyAfB7AddressVcAFmF":{"name":"address(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4pathyAfB8ArgumentV4PathVcAFmF":{"name":"path(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO9referenceyAfB8ArgumentV9ReferenceVcAFmF":{"name":"reference(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO10capabilityyAfB8ArgumentV10CapabilityVcAFmF":{"name":"capability(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4typeyAfB8ArgumentV10StaticTypeVcAFmF":{"name":"type(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO10dictionaryyAFSayAB8ArgumentV10DictionaryVGcAFmF":{"name":"dictionary(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6structyAfB8ArgumentV5EventVcAFmF":{"name":"struct(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8resourceyAfB8ArgumentV5EventVcAFmF":{"name":"resource(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5eventyAfB8ArgumentV5EventVcAFmF":{"name":"event(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8contractyAfB8ArgumentV5EventVcAFmF":{"name":"contract(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4enumyAfB8ArgumentV5EventVcAFmF":{"name":"enum(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO11unsupportedyA2FmF":{"name":"unsupported","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5erroryA2FmF":{"name":"error","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"FValue"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4voidyA2FmF":{"name":"void","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8optionalyA2FmF":{"name":"optional","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4boolyA2FmF":{"name":"bool","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6stringyA2FmF":{"name":"string","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO3intyA2FmF":{"name":"int","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4uintyA2FmF":{"name":"uint","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4int8yA2FmF":{"name":"int8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5uint8yA2FmF":{"name":"uint8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int16yA2FmF":{"name":"int16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint16yA2FmF":{"name":"uint16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int32yA2FmF":{"name":"int32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint32yA2FmF":{"name":"uint32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int64yA2FmF":{"name":"int64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint64yA2FmF":{"name":"uint64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6int128yA2FmF":{"name":"int128","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7uint128yA2FmF":{"name":"uint128","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6int256yA2FmF":{"name":"int256","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7uint256yA2FmF":{"name":"uint256","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5word8yA2FmF":{"name":"word8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word16yA2FmF":{"name":"word16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word32yA2FmF":{"name":"word32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word64yA2FmF":{"name":"word64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5fix64yA2FmF":{"name":"fix64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6ufix64yA2FmF":{"name":"ufix64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5arrayyA2FmF":{"name":"array","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO10dictionaryyA2FmF":{"name":"dictionary","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7addressyA2FmF":{"name":"address","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4pathyA2FmF":{"name":"path","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6structyA2FmF":{"name":"struct","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8resourceyA2FmF":{"name":"resource","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5eventyA2FmF":{"name":"event","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9characteryA2FmF":{"name":"character","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9referenceyA2FmF":{"name":"reference","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO10capabilityyA2FmF":{"name":"capability","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4typeyA2FmF":{"name":"type","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8contractyA2FmF":{"name":"contract","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4enumyA2FmF":{"name":"enum","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9undefinedyA2FmF":{"name":"undefined","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"FType"},"Classes/Flow/Cadence/FType.html":{"name":"FType","abstract":"
All the type in Cadence","parent_name":"Cadence"},"Classes/Flow/Cadence/FValue.html":{"name":"FValue","abstract":"
Cadence runtime value.","parent_name":"Cadence"},"Classes/Flow/Cadence.html#/s:4FlowAAC7CadenceC4KindV":{"name":"Kind","abstract":"
Undocumented
","parent_name":"Cadence"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV2idAB2IDVvp":{"name":"id","abstract":"
The identification of block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV8parentIdAB2IDVvp":{"name":"parentId","abstract":"
The identification of previous block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV6heights6UInt64Vvp":{"name":"height","abstract":"
The height of block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
The time when the block is created.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV20collectionGuaranteesSayAB19CollectionGuaranteeVGvp":{"name":"collectionGuarantees","abstract":"
Collection guarantees included in the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV10blockSealsSayAB0B4SealVGvp":{"name":"blockSeals","abstract":"
Seals associated with the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV10signaturesSayAB9SignatureVGSgvp":{"name":"signatures","abstract":"
The list of signatures of the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV2id8parentId6height9timestamp20collectionGuarantees10blockSeals10signaturesAdB2IDV_AMs6UInt64V10Foundation4DateVSayAB19CollectionGuaranteeVGSayAB0B4SealVGSayAB9SignatureVGSgtcfc":{"name":"init(id:parentId:height:timestamp:collectionGuarantees:blockSeals:signatures:)","abstract":"
Undocumented
","parent_name":"Block"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV18executionReceiptIdAB2IDVvp":{"name":"executionReceiptId","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV26executionReceiptSignaturesSayAB9SignatureVGSgvp":{"name":"executionReceiptSignatures","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV24resultApprovalSignaturesSayAB9SignatureVGSgvp":{"name":"resultApprovalSignatures","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV7blockId016executionReceiptE00fG10Signatures014resultApprovalH0AdB2IDV_AJSayAB9SignatureVGSgANtcfc":{"name":"init(blockId:executionReceiptId:executionReceiptSignatures:resultApprovalSignatures:)","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"BlockSeal"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV2idAB2IDVvp":{"name":"id","abstract":"
The identification of block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV8parentIdAB2IDVvp":{"name":"parentId","abstract":"
The identification of previous block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV6heights6UInt64Vvp":{"name":"height","abstract":"
The height of block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
The time when the block is created.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV2id8parentId6height9timestampAdB2IDV_AJs6UInt64V10Foundation4DateVtcfc":{"name":"init(id:parentId:height:timestamp:)","abstract":"
Undocumented
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"BlockHeader"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO7unknownyA2DmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA2_256yA2DmF":{"name":"SHA2_256","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA2_384yA2DmF":{"name":"SHA2_384","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA3_256yA2DmF":{"name":"SHA3_256","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA3_384yA2DmF":{"name":"SHA3_384","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO9algorithmSSvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO10outputSizeSivp":{"name":"outputSize","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO4codeADSi_tcfc":{"name":"init(code:)","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO7cadenceADSi_tcfc":{"name":"init(cadence:)","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO7unknownyA2DmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO10ECDSA_P256yA2DmF":{"name":"ECDSA_P256","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO15ECDSA_SECP256k1yA2DmF":{"name":"ECDSA_SECP256k1","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO9algorithmSSvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO5curveSSvp":{"name":"curve","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO4codeADSi_tcfc":{"name":"init(code:)","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO5indexADSi_tcfc":{"name":"init(index:)","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV06publicC0AB06PublicC0Vvp":{"name":"publicKey","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV8signAlgoAB18SignatureAlgorithmOvp":{"name":"signAlgo","abstract":"
Use Flow’s crypto enums, not NIO TLS ones.
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV8hashAlgoAB13HashAlgorithmOvp":{"name":"hashAlgo","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV6weightSivp":{"name":"weight","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV14sequenceNumbers5Int64Vvp":{"name":"sequenceNumber","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV7revokedSbvp":{"name":"revoked","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV5index06publicC08signAlgo04hashG06weight14sequenceNumber7revokedADSi_AB06PublicC0VAB18SignatureAlgorithmOAB04HashO0OSis5Int64VSbtcfc":{"name":"init(index:publicKey:signAlgo:hashAlgo:weight:sequenceNumber:revoked:)","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV7encoded10Foundation4DataVSgvp":{"name":"encoded","abstract":"
Encode the account key with RLP encoding
","parent_name":"AccountKey"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7balance6BigIntAFVSgvp":{"name":"balance","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV4keysSayAB0B3KeyVGvp":{"name":"keys","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV9contractsSDySSAB4CodeVGSgvp":{"name":"contracts","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7address7balance4keys9contractsAdB7AddressV_6BigIntAKVSgSayAB0B3KeyVGSDySSAB4CodeVGSgtcfc":{"name":"init(address:balance:keys:contracts:)","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Account"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO7genericyA2DmF":{"name":"generic","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO8urlEmptyyA2DmF":{"name":"urlEmpty","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO10urlInvaildyA2DmF":{"name":"urlInvaild","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO8declinedyA2DmF":{"name":"declined","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13encodeFailureyA2DmF":{"name":"encodeFailure","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13decodeFailureyA2DmF":{"name":"decodeFailure","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15unauthenticatedyA2DmF":{"name":"unauthenticated","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13emptyProposeryA2DmF":{"name":"emptyProposer","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildPlayloadyA2DmF":{"name":"invaildPlayload","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildEnvelopeyA2DmF":{"name":"invaildEnvelope","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO18invaildAccountInfoyA2DmF":{"name":"invaildAccountInfo","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13missingSigneryA2DmF":{"name":"missingSigner","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO26preparingTransactionFailedyA2DmF":{"name":"preparingTransactionFailed","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO7timeoutyA2DmF":{"name":"timeout","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildResponseyA2DmF":{"name":"invaildResponse","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13invalidScriptyA2DmF":{"name":"invalidScript","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO14scriptNotFoundyADSS_SStcADmF":{"name":"scriptNotFound(name:directory:)","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO11customErroryADSS_tcADmF":{"name":"customError(msg:)","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO21createWebSocketFailedyA2DmF":{"name":"createWebSocketFailed","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"FError"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV10byteLengthSivpZ":{"name":"byteLength","abstract":"
Flow address size in bytes.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV4data10Foundation4DataVvp":{"name":"data","abstract":"
Raw address bytes.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV3hexSSvp":{"name":"hex","abstract":"
Hexadecimal string representation with 0x prefix.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressVyADSScfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Address"},"Classes/Flow/Address.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Address"},"Classes/Flow/Address.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Address"},"Classes/Flow/Argument/StaticType.html#/s:4FlowAAC8ArgumentV10StaticTypeV06staticD0AB7CadenceC4KindVvp":{"name":"staticType","abstract":"
Undocumented
","parent_name":"StaticType"},"Classes/Flow/Argument/StaticType.html#/s:4FlowAAC8ArgumentV10StaticTypeV06staticD0AfB7CadenceC4KindV_tcfc":{"name":"init(staticType:)","abstract":"
Undocumented
","parent_name":"StaticType"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV4pathSSvp":{"name":"path","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV7addressSSvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV10borrowTypeSSvp":{"name":"borrowType","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV4path7address10borrowTypeAFSS_S2Stcfc":{"name":"init(path:address:borrowType:)","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3keyADvp":{"name":"key","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV5valueADvp":{"name":"value","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3key5valueAfB7CadenceC6FValueO_ALtcfc":{"name":"init(key:value:)","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3key5valueAfD_ADtcfc":{"name":"init(key:value:)","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV7addressSSvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV7address4typeAFSS_SStcfc":{"name":"init(address:type:)","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4nameSSvp":{"name":"name","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV5valueADvp":{"name":"value","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4name5valueAHSS_AB7CadenceC6FValueOtcfc":{"name":"init(name:value:)","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4name5valueAHSS_ADtcfc":{"name":"init(name:value:)","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV2idSSvp":{"name":"id","abstract":"
The identification of the event.
","parent_name":"Event"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV6fieldsSayAF4NameVGvp":{"name":"fields","abstract":"
The list of value in Flow.Argument.Event.Name type.
","parent_name":"Event"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV2id6fieldsAFSS_SayAF4NameVGtcfc":{"name":"init(id:fields:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Argument/Event/Name.html":{"name":"Name","abstract":"
The data structure for the fields in Flow.Argument.Event.
","parent_name":"Event"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV6domainSSvp":{"name":"domain","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV10identifierSSvp":{"name":"identifier","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV6domain10identifierAFSS_SStcfc":{"name":"init(domain:identifier:)","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/CodingKeys.html#/s:4FlowAAC8ArgumentV10CodingKeysO4typeyA2FmF":{"name":"type","abstract":"
Undocumented
","parent_name":"CodingKeys"},"Classes/Flow/Argument/CodingKeys.html#/s:4FlowAAC8ArgumentV10CodingKeysO5valueyA2FmF":{"name":"value","abstract":"
Undocumented
","parent_name":"CodingKeys"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4typeAB7CadenceC5FTypeOvp":{"name":"type","abstract":"
The type of the argument in Flow.Cadence.FType.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV5valueAB7CadenceC6FValueOvp":{"name":"value","abstract":"
The value of the argument in Flow.Cadence.FValue.
","parent_name":"Argument"},"Classes/Flow/Argument/CodingKeys.html":{"name":"CodingKeys","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV8jsonData10Foundation0D0VSgvp":{"name":"jsonData","abstract":"
Encode argument into JSON data.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV10jsonStringSSSgvp":{"name":"jsonString","abstract":"
Encode argument into JSON string.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4type5valueAdB7CadenceC5FTypeO_AH6FValueOtcfc":{"name":"init(type:value:)","abstract":"
Initial argument with type and value.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV5valueAdB7CadenceC6FValueO_tcfc":{"name":"init(value:)","abstract":"
Initial argument with value in Flow.Cadence.FValue type.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV8jsonDataADSg10Foundation0D0V_tcfc":{"name":"init(jsonData:)","abstract":"
Initialize from JSON data.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV10jsonStringADSgSS_tcfc":{"name":"init(jsonString:)","abstract":"
Initialize from JSON string.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4fromADs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"
Decode argument from JSON.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Argument"},"Classes/Flow/Argument/Path.html":{"name":"Path","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Event.html":{"name":"Event","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Reference.html":{"name":"Reference","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Dictionary.html":{"name":"Dictionary","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Capability.html":{"name":"Capability","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/StaticType.html":{"name":"StaticType","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/Event":{"name":"Event","parent_name":"Argument"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO6scriptyAdB6ScriptVcADmF":{"name":"script(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8argumentyADSayAB8ArgumentVGcADmF":{"name":"argument(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO5payeryAdB7AddressVcADmF":{"name":"payer(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO11authorizersyADSayAB7AddressVGcADmF":{"name":"authorizers(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8proposeryAdB0B11ProposalKeyVcADmF":{"name":"proposer(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8gasLimityAD6BigInt0F4UIntVcADmF":{"name":"gasLimit(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8refBlockyAdB2IDVSgcADmF":{"name":"refBlock(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO5erroryA2DmF":{"name":"error","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/WebSocketError.html#/s:4FlowAAC14WebSocketErrorO06serverD0yAdB17SubscribeResponseV0D4BodyVcADmF":{"name":"serverError(_:)","abstract":"
Undocumented
","parent_name":"WebSocketError"},"Classes/Flow/SubscribeResponse/ErrorBody.html#/s:4FlowAAC17SubscribeResponseV9ErrorBodyV7messageSSvp":{"name":"message","abstract":"
Undocumented
","parent_name":"ErrorBody"},"Classes/Flow/SubscribeResponse/ErrorBody.html#/s:4FlowAAC17SubscribeResponseV9ErrorBodyV4codeSiSgvp":{"name":"code","abstract":"
Undocumented
","parent_name":"ErrorBody"},"Classes/Flow/SubscribeResponse/ErrorBody.html":{"name":"ErrorBody","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/SubscribeResponse.html#/s:4FlowAAC17SubscribeResponseV2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/SubscribeResponse.html#/s:4FlowAAC17SubscribeResponseV5errorAD9ErrorBodyVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/TopicResponse.html#/s:4FlowAAC13TopicResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"TopicResponse"},"Classes/Flow/TopicResponse.html#/s:4FlowAAC13TopicResponseV7payloadxSgvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"TopicResponse"},"Classes/Flow/Topic.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"Topic"},"Classes/Flow/Topic.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"Topic"},"Classes/Flow/Topic.html#/s:4FlowAAC5TopicV17transactionStatus4txIdAdB2IDV_tFZ":{"name":"transactionStatus(txId:)","abstract":"
Undocumented
","parent_name":"Topic"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketCADycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC7connect2toy10Foundation3URLV_tF":{"name":"connect(to:)","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC10disconnectyyF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC28subscribeToTransactionStatus4txIdScsyAB13TopicResponseVy_AB013WSTransactionJ0VGs5Error_pGAB2IDV_tYaKF":{"name":"subscribeToTransactionStatus(txId:)","abstract":"
Async stream of raw topic responses for a given transaction ID.","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC34subscribeToManyTransactionStatuses5txIdsSDyAB2IDVScsyAB13TopicResponseVy_AB013WSTransactionL0VGs5Error_pGGSayAHG_tYaKFZ":{"name":"subscribeToManyTransactionStatuses(txIds:)","abstract":"
Convenience helper to build streams for multiple transaction IDs.
","parent_name":"Websocket"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV3idsShyAB2IDVGvp":{"name":"ids","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV4type3idsADSS_ShyAB2IDVGtcfc":{"name":"init(type:ids:)","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV5rangeSNys6UInt64VGvp":{"name":"range","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV4type5rangeADSS_SNys6UInt64VGtcfc":{"name":"init(type:range:)","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6heights6UInt64Vvp":{"name":"height","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6script6height9argumentsAdB0C0V_s6UInt64VSayAB8ArgumentVGtcfc":{"name":"init(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV05blockF0AB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV6script05blockF09argumentsAdB0C0V_AB2IDVSayAB8ArgumentVGtcfc":{"name":"init(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV11blockStatusAB0fI0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV6script9arguments11blockStatusAdB0C0V_SayAB8ArgumentVGAB0fK0Otcfc":{"name":"init(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV6heights6UInt64Vvp":{"name":"height","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV7address6heightAdB7AddressV_s6UInt64Vtcfc":{"name":"init(address:height:)","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV11blockStatusAB0eH0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV7address11blockStatusAdB7AddressV_AB0eI0Otcfc":{"name":"init(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4nodeSSvp":{"name":"node","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4portSiSgvp":{"name":"port","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4node4portAFSS_SiSgtcfc":{"name":"init(node:port:)","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO4HTTPyAD10Foundation3URLVcADmF":{"name":"HTTP(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO4gRPCyA2D8EndpointVcADmF":{"name":"gRPC(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO9websocketyAD10Foundation3URLVcADmF":{"name":"websocket(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO3url10Foundation3URLVSgvp":{"name":"url","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO12gRPCEndpointAD8EndpointVSgvp":{"name":"gRPCEndpoint","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Transport"},"Classes/Flow/Transport/Endpoint.html":{"name":"Endpoint","abstract":"
Endpoint information for a gRPC node.
","parent_name":"Transport"},"Classes/Flow.html#/s:4FlowAAC6sharedABvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16defaultUserAgentSSvp":{"name":"defaultUserAgent","abstract":"
The user agent for the SDK client, used in access API header.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15addressRegisterAA015ContractAddressC0Cvp":{"name":"addressRegister","abstract":"
Contract address registry (value type, safe to share).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7decoder10Foundation11JSONDecoderCvp":{"name":"decoder","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAACABycfc":{"name":"init()","abstract":"
Private init; use Flow.shared.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7chainIDAB05ChainC0Ovp":{"name":"chainID","abstract":"
Current chain ID (reads from FlowConfigActor).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9configure7chainIDyAB05ChainD0O_tYaF":{"name":"configure(chainID:)","abstract":"
Configure chainID; will recreate the HTTP access client by default.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9configure7chainID9accessAPIyAB05ChainD0O_AA0A14AccessProtocol_ptYaF":{"name":"configure(chainID:accessAPI:)","abstract":"
Configure chainID and a custom accessAPI implementation.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC19createHTTPAccessAPI7chainIDAA0A14AccessProtocol_pAB05ChainF0O_tF":{"name":"createHTTPAccessAPI(chainID:)","abstract":"
Create an HTTP access API client by chainID (non-cached).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9accessAPIAA0A14AccessProtocol_pvp":{"name":"accessAPI","abstract":"
Current FlowAccessProtocol client (from actor).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17TransactionStatusa":{"name":"TransactionStatus","abstract":"
Backwards compatibility bridge: use Flow.Transaction.Status everywhere,","parent_name":"Flow"},"Classes/Flow/Transport.html":{"name":"Transport","abstract":"
Endpoint / transport description for Flow access nodes.
","parent_name":"Flow"},"Classes/Flow/AccountAtLatestBlockRequest.html":{"name":"AccountAtLatestBlockRequest","abstract":"
Request for getAccountAtLatestBlock.
","parent_name":"Flow"},"Classes/Flow/AccountByBlockHeightRequest.html":{"name":"AccountByBlockHeightRequest","abstract":"
Request for getAccountByBlockHeight.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html":{"name":"ExecuteScriptAtLatestBlockRequest","abstract":"
Request for executeScriptAtLatestBlock.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html":{"name":"ExecuteScriptAtBlockIdRequest","abstract":"
Request for executeScriptAtBlockId.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html":{"name":"ExecuteScriptAtBlockHeightRequest","abstract":"
Request for executeScriptAtBlockHeight.
","parent_name":"Flow"},"Classes/Flow/EventsForHeightRangeRequest.html":{"name":"EventsForHeightRangeRequest","abstract":"
Request for getEventsForHeightRange.
","parent_name":"Flow"},"Classes/Flow/EventsForBlockIdsRequest.html":{"name":"EventsForBlockIdsRequest","abstract":"
Request for getEventsForBlockIds.
","parent_name":"Flow"},"Classes/Flow/Websocket.html":{"name":"Websocket","abstract":"
Websocket façade that delegates to FlowWebSocketCenter + NIO","parent_name":"Flow"},"Classes/Flow/Topic.html":{"name":"Topic","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TopicResponse.html":{"name":"TopicResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/SubscribeResponse.html":{"name":"SubscribeResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/WebSocketError.html":{"name":"WebSocketError","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TransactionBuild.html":{"name":"TransactionBuild","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction7chainID14skipEmptyCheck7builderAB0C0VAB05ChainE0O_SbSayAB0C5BuildOGyXEtYaKF":{"name":"buildTransaction(chainID:skipEmptyCheck:builder:)","abstract":"
Core builder with explicit chainID (no default using self/await).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction14skipEmptyCheck7builderAB0C0VSb_SayAB0C5BuildOGyXEtYaKF":{"name":"buildTransaction(skipEmptyCheck:builder:)","abstract":"
Convenience overload: uses current Flow.chainID.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction7chainID6script8agrument10authorizer12payerAddress11proposerKey5limit05blockE0AB0C0VAB05ChainE0O_SSSayAB8ArgumentVGSayAB0J0VGAtB0c8ProposalL0V6BigInt0R4UIntVAB0E0VSgtYaKF":{"name":"buildTransaction(chainID:script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction6script8agrument10authorizer12payerAddress11proposerKey5limit7blockIDAB0C0VSS_SayAB8ArgumentVGSayAB0H0VGAqB0c8ProposalJ0V6BigInt0P4UIntVAB0M0VSgtYaKF":{"name":"buildTransaction(script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7chainID06signedC0AB0E0VAB05ChainE0O_AB0C0VtYaKF":{"name":"sendTransaction(chainID:signedTransaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction06signedC0AB2IDVAB0C0V_tYaKF":{"name":"sendTransaction(signedTransaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7chainID7signers7builderAB0E0VAB05ChainE0O_SayAA0A6Signer_pGSayAB0C5BuildOGyXEtYaKF":{"name":"sendTransaction(chainID:signers:builder:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7signers7builderAB2IDVSayAA0A6Signer_pG_SayAB0C5BuildOGyXEtYaKF":{"name":"sendTransaction(signers:builder:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15getChildAddress7addressSayAB0D0VGAF_tYaKF":{"name":"getChildAddress(address:)","abstract":"
Fetch child account addresses with Swift 6 concurrency
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16getChildMetadata7addressSDySSAA13CadenceLoaderC8CategoryO0C0O0D0VGAB7AddressV_tYaKF":{"name":"getChildMetadata(address:)","abstract":"
Fetch child account metadata concurrently
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13getEVMAddress7addressSSSgAB7AddressV_tYaKF":{"name":"getEVMAddress(address:)","abstract":"
Get EVM address for Flow account
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9createCOA7chainID8proposer5payer6amount7signersAB0E0VAB05ChainE0O_AB7AddressVANSo9NSDecimalaSayAA0A6Signer_pGtYaKF":{"name":"createCOA(chainID:proposer:payer:amount:signers:)","abstract":"
Create Cadence Object Account (COA) with gas fee
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17runEVMTransaction7chainID8proposer5payer21rlpEncodedTransaction15coinbaseAddress7signersAB0E0VAB05ChainE0O_AB0L0VAOSays5UInt8VGSSSayAA0A6Signer_pGtYaKF":{"name":"runEVMTransaction(chainID:proposer:payer:rlpEncodedTransaction:coinbaseAddress:signers:)","abstract":"
Execute EVM transaction through Flow
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC14getStakingInfo7addressSayAA13CadenceLoaderC8CategoryO0C0O0C4NodeVGAB7AddressV_tYaKF":{"name":"getStakingInfo(address:)","abstract":"
Get staking info for delegator
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15getTokenBalance7addressSDySSSo9NSDecimalaGAB7AddressV_tYaKF":{"name":"getTokenBalance(address:)","abstract":"
Get all token balances for an account using the Cadence script","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC5query_7chainIDxAA17CadenceTargetType_p_AB05ChainD0OtYaKSeRzlF":{"name":"query(_:chainID:)","abstract":"
Query with generic return type
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction_7signers7chainIDAB0F0Vx_SayAA0A6Signer_pGAB05ChainF0OtYaKAA17CadenceTargetTypeRzlF":{"name":"sendTransaction(_:signers:chainID:)","abstract":"
Transaction with generic argument building
","parent_name":"Flow"},"Classes/Flow/Argument.html":{"name":"Argument","abstract":"
The argument for Cadence code for encoding and decoding.
","parent_name":"Flow"},"Classes/Flow/Address.html":{"name":"Address","abstract":"
Flow Address Model
","parent_name":"Flow"},"Classes/Flow/FError.html":{"name":"FError","abstract":"
List of common error in Flow Swift SDK
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC4once_6status7timeoutAB17TransactionResultVAB2IDV_AB0E0V6StatusOSdtYaKF":{"name":"once(_:status:timeout:)","abstract":"
Get notified when transaction’s status changed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13onceFinalizedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceFinalized(_:)","abstract":"
Get notified when transaction’s status change to .finalized.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC12onceExecutedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceExecuted(_:)","abstract":"
Get notified when transaction’s status change to .executed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC10onceSealedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceSealed(_:)","abstract":"
Get notified when transaction’s status change to .sealed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17isAddressVaildate7address7networkSbAB0C0V_AB7ChainIDOtYaF":{"name":"isAddressVaildate(address:network:)","abstract":"
Validate whether an address exists on a given network using an HTTP client.
","parent_name":"Flow"},"Classes/Flow/Account.html":{"name":"Account","abstract":"
The data structure of account in Flow blockchain
","parent_name":"Flow"},"Classes/Flow/AccountKey.html":{"name":"AccountKey","abstract":"
The data structure of account key in flow account
","parent_name":"Flow"},"Classes/Flow/SignatureAlgorithm.html":{"name":"SignatureAlgorithm","abstract":"
Public key signing algorithm (ECDSA P-256, ECDSA secp256k1, etc).
","parent_name":"Flow"},"Classes/Flow/HashAlgorithm.html":{"name":"HashAlgorithm","abstract":"
Message-digest algorithm for signing (SHA2-256, SHA3-256, etc).
","parent_name":"Flow"},"Classes/Flow/BlockHeader.html":{"name":"BlockHeader","abstract":"
Brief information of Flow.Block.
","parent_name":"Flow"},"Classes/Flow/BlockSeal.html":{"name":"BlockSeal","abstract":"
The data structure of Flow.Block which is sealed.
","parent_name":"Flow"},"Classes/Flow/Block.html":{"name":"Block","abstract":"
The data structure for the block in the Flow blockchain.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7decimalSivpZ":{"name":"decimal","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24accountCreationEventTypeSSvpZ":{"name":"accountCreationEventType","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24accountCreationFieldNameSSvpZ":{"name":"accountCreationFieldName","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/Cadence.html":{"name":"Cadence","abstract":"
Cadence namespace container.","parent_name":"Flow"},"Classes/Flow/ChainID.html":{"name":"ChainID","abstract":"
Identification of the Flow environment.
","parent_name":"Flow"},"Classes/Flow/Collection.html":{"name":"Collection","abstract":"
A batch of transactions that have been included in the same block.
","parent_name":"Flow"},"Classes/Flow/CollectionGuarantee.html":{"name":"CollectionGuarantee","abstract":"
Lightweight collection guarantee with signer IDs, used in blocks.
","parent_name":"Flow"},"Classes/Flow/DomainTag.html":{"name":"DomainTag","abstract":"
The prefix when encoding transaction and user with RLP
","parent_name":"Flow"},"Classes/Flow/Event.html":{"name":"Event","abstract":"
Flow blockchain event.
","parent_name":"Flow"},"Classes/Flow/Snapshot.html":{"name":"Snapshot","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TransactionResult.html":{"name":"TransactionResult","abstract":"
The transaction result in the chain
","parent_name":"Flow"},"Classes/Flow/ID.html":{"name":"ID","abstract":"
The ID in Flow chain, which can represent a transaction id, block id,","parent_name":"Flow"},"Classes/Flow/Script.html":{"name":"Script","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/ScriptResponse.html":{"name":"ScriptResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/Signature.html":{"name":"Signature","abstract":"
The model to handle the signature data, which can present as a hex string
","parent_name":"Flow"},"Classes/Flow/Transaction.html":{"name":"Transaction","abstract":"
The data structure of Transaction
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15signTransaction08unsignedC07signersAB0C0VAG_SayAA0A6Signer_pGtYaKF":{"name":"signTransaction(unsignedTransaction:signers:)","abstract":"
Sign the unsigned transaction with a list of FlowSigner
","parent_name":"Flow"},"Classes/Flow/TransactionProposalKey.html":{"name":"TransactionProposalKey","abstract":"
The class to represent the proposer key information in the transaction
","parent_name":"Flow"},"Classes/Flow/TransactionSignature.html":{"name":"TransactionSignature","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublicKey.html":{"name":"PublicKey","abstract":"
Public key used for Flow accounts and signers.","parent_name":"Flow"},"Classes/Flow/Code.html":{"name":"Code","abstract":"
On‑chain code blob (e.g. smart contract or script) encoded as Data.
","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC22getBlockHeaderByHeight6heightAB0cD0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC14getLatestBlock11blockStatusAB0D0VAB0dF0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC12getBlockById2idAB0C0VAB2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16getBlockByHeight6heightAB0C0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17getCollectionById2idAB0C0VAB2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction11transactionAB2IDVAB0C0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC18getTransactionById2idAB0C0VAB2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24getTransactionResultById2idAB0cD0VAB2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getAccountAtLatestBlock7address11blockStatusAB0C0VAB7AddressV_AB0fI0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getAccountByBlockHeight7address6heightAB0C0VAB7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getEventsForHeightRange4type5rangeSayAB5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20getEventsForBlockIds4type3idsSayAB5EventV6ResultVGSS_ShyAB2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC26executeScriptAtLatestBlock6script9arguments11blockStatusAB0C8ResponseVAB0C0V_SayAB8ArgumentVGAB0fJ0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20getNetworkParametersAB7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/BlockStatus.html":{"name":"BlockStatus","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13ErrorResponseV":{"name":"ErrorResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC19BlockHeaderResponseV":{"name":"BlockHeaderResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15NetworkResponseV":{"name":"NetworkResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13BlockResponseV":{"name":"BlockResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20BlockPayloadResponseV":{"name":"BlockPayloadResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13ScriptRequestV":{"name":"ScriptRequest","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC21TransactionIdResponseV":{"name":"TransactionIdResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublisherEvent.html":{"name":"PublisherEvent","abstract":"
Represents different types of events that can be published.
","parent_name":"Flow"},"Classes/Flow/Publisher.html":{"name":"Publisher","abstract":"
Central publisher manager for Flow events (AsyncStream-based).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9publisherAB9PublisherCvp":{"name":"publisher","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/WalletResponse.html":{"name":"WalletResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublisherCenter.html":{"name":"PublisherCenter","abstract":"
Async/await-friendly event hub for tests and modern consumers.","parent_name":"Flow"},"Classes/Flow/WSTransactionResponse.html":{"name":"WSTransactionResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16WebSocketRequestO":{"name":"WebSocketRequest","abstract":"
Convenience namespace for WebSocket-specific helpers.
","parent_name":"Flow"},"Classes/Flow/WebSocketBlockStatus.html":{"name":"WebSocketBlockStatus","abstract":"
Block status used in websocket arguments.
","parent_name":"Flow"},"Classes/Flow/WebSocketTransactionStatusRequest.html":{"name":"WebSocketTransactionStatusRequest","abstract":"
Transaction status request arguments (transaction_statuses topic).
","parent_name":"Flow"},"Classes/Flow/WebSocketBlockDigestArguments.html":{"name":"WebSocketBlockDigestArguments","abstract":"
Block digests arguments (for blocks / block_digests topics).
","parent_name":"Flow"},"Classes/Flow/WebSocketAccountStatusResponse.html":{"name":"WebSocketAccountStatusResponse","abstract":"
Account status response for account-specific streaming topics.
","parent_name":"Flow"},"Classes/Flow/WebSocketAccountStatusEvent.html":{"name":"WebSocketAccountStatusEvent","abstract":"
Single account status event, matching the WebSocket event shape.
","parent_name":"Flow"},"Classes/Flow/WebSocketTopic.html":{"name":"WebSocketTopic","abstract":"
High-level websocket topics used by the Flow access node.
","parent_name":"Flow"},"Classes/Flow/WebSocketAction.html":{"name":"WebSocketAction","abstract":"
Websocket action verbs.
","parent_name":"Flow"},"Classes/Flow/WebSocketSubscribeRequest.html":{"name":"WebSocketSubscribeRequest","abstract":"
Generic subscribe request for Flow websocket.
","parent_name":"Flow"},"Classes/Flow/WebSocketSubscribeResponse.html":{"name":"WebSocketSubscribeResponse","abstract":"
Response to a subscribe/unsubscribe/list request.
","parent_name":"Flow"},"Classes/Flow/WebSocketSocketError.html":{"name":"WebSocketSocketError","abstract":"
Error payload from websocket.
","parent_name":"Flow"},"Classes/Flow/WebSocketTopicResponse.html":{"name":"WebSocketTopicResponse","abstract":"
Topic response carrying typed payload T.
","parent_name":"Flow"},"Classes/Flow.html":{"name":"Flow","abstract":"
Namespace and main entrypoint for Flow SDK."},"Classes/CadenceLoader.html":{"name":"CadenceLoader","abstract":"
Utility type for loading Cadence scripts from resources
"},"Classes/ContractAddressRegister.html":{"name":"ContractAddressRegister","abstract":"
Contract Address Register manages the mapping of contract names to their addresses"},"Classes/FlowLogger.html":{"name":"FlowLogger","abstract":"
Undocumented
"},"Classes/FlowNIOWebSocketClient.html":{"name":"FlowNIOWebSocketClient","abstract":"
NIO-based websocket client for Flow transaction status and topics.
"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC9nioClientAcA0a6NIOWebcF0CSg_tcfc":{"name":"init(nioClient:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC15connectIfNeededyyYaKF":{"name":"connectIfNeeded()","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC10disconnectyyYaF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC23transactionStatusStream3forScsyA2AC0bC13TopicResponseVy_AF013WSTransactionJ0VGs5Error_pGAF2IDV_tYaKF":{"name":"transactionStatusStream(for:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC30handleTransactionStatusMessageyyA2AC0bC13TopicResponseVy_AE013WSTransactionJ0VGYaF":{"name":"handleTransactionStatusMessage(_:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC23finishTransactionStatus2id5erroryA2AC2IDV_s5Error_pSgtF":{"name":"finishTransactionStatus(id:error:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC6clientACvpZ":{"name":"client","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC7chainIDA2AC05ChainD0Ovp":{"name":"chainID","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC7chainIDAc2AC05ChainD0O_tcfc":{"name":"init(chainID:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC6decode_8responsex10Foundation4DataV_So13NSURLResponseCSgtKSeRzlFZ":{"name":"decode(_:response:)","abstract":"
Decode helper with Flow’s JSON settings and 400-error mapping.
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC20getNetworkParametersA2AC7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC22getBlockHeaderByHeight6heightA2AC0dE0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC14getLatestBlock11blockStatusA2AC0E0VAF0eG0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC12getBlockById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC16getBlockByHeight6heightA2AC0D0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC17getCollectionById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC15sendTransaction11transactionA2AC2IDVAF0D0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC18getTransactionById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC24getTransactionResultById2idA2AC0dE0VAF2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getAccountAtLatestBlock7address11blockStatusA2AC0D0VAG7AddressV_AG0gJ0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getAccountByBlockHeight7address6heightA2AC0D0VAG7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0D8ResponseVAH0D0V_SayAH8ArgumentVGAH0gK0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC22executeScriptAtBlockId6script05blockG09argumentsA2AC0D8ResponseVAH0D0V_AH2IDVSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC26executeScriptAtBlockHeight6script6height9argumentsA2AC0D8ResponseVAH0D0V_s6UInt64VSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getEventsForHeightRange4type5rangeSayA2AC5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC20getEventsForBlockIds4type3idsSayA2AC5EventV6ResultVGSS_ShyAG2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowLogActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowLogActor"},"Actors/CadenceLoaderActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"CadenceLoaderActor"},"Actors/FlowWebsocketActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowWebsocketActor"},"Actors/FlowWebsocketActor.html#/s:4Flow0A14WebsocketActorC9websocketA2AC0B0Cvp":{"name":"websocket","abstract":"
Undocumented
","parent_name":"FlowWebsocketActor"},"Actors/FlowWebsocketActor.html#/s:4Flow0A14WebsocketActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowWebsocketActor"},"Actors/FlowCryptoActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowCryptoActor"},"Actors/FlowCryptoActor.html#/s:4Flow0A11CryptoActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowCryptoActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC7chainIDA2AC05ChainE0Ovp":{"name":"chainID","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC13updateChainIDyyA2AC0eF0OF":{"name":"updateChainID(_:)","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowActor"},"Actors/FlowActor.html#/s:4Flow0A5ActorC4flowA2ACvp":{"name":"flow","abstract":"
Undocumented
","parent_name":"FlowActor"},"Actors/FlowActor.html#/s:4Flow0A5ActorC4flowAc2AC_tcfc":{"name":"init(flow:)","abstract":"
Default to Flow.shared but allow injection for tests.
","parent_name":"FlowActor"},"Actors/FlowAccessActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC14initialChainIDAc2AC0eF0O_tcfc":{"name":"init(initialChainID:)","abstract":"
Undocumented
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC9configure7chainID9accessAPIyA2AC05ChainF0O_AA0aB8Protocol_pSgtYaF":{"name":"configure(chainID:accessAPI:)","abstract":"
Reconfigure access endpoint and chain ID in a single isolated place.
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC13currentClientAA0aB8Protocol_pyF":{"name":"currentClient()","abstract":"
Get the current access client.
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html":{"name":"FlowAccessActor","abstract":"
Global actor that owns the FlowAccessProtocol client (HTTP/gRPC).
"},"Actors/FlowActor.html":{"name":"FlowActor","abstract":"
Global actor used to isolate high-level Flow façade APIs.
"},"Actors/FlowConfigActor.html":{"name":"FlowConfigActor","abstract":"
Actor owning Flow configuration (chainID, endpoints, QoS).
"},"Actors/FlowCryptoActor.html":{"name":"FlowCryptoActor","abstract":"
Undocumented
"},"Actors/FlowWebsocketActor.html":{"name":"FlowWebsocketActor","abstract":"
Undocumented
"},"Actors/CadenceLoaderActor.html":{"name":"CadenceLoaderActor","abstract":"
Undocumented
"},"Actors/FlowLogActor.html":{"name":"FlowLogActor","abstract":"
Undocumented
"},"Actors/FlowHTTPAPI.html":{"name":"FlowHTTPAPI","abstract":"
HTTP implementation of the Flow access API, using URLSession."},"Actors/FlowWebSocketCenter.html":{"name":"FlowWebSocketCenter","abstract":"
Central NIO-based websocket coordination actor.
"},"Actors.html":{"name":"Actors","abstract":"
The following actors are available globally.
"},"Classes.html":{"name":"Classes","abstract":"
The following classes are available globally.
"},"Enums.html":{"name":"Enumerations","abstract":"
The following enumerations are available globally.
"},"Extensions.html":{"name":"Extensions","abstract":"
The following extensions are available globally.
"},"Functions.html":{"name":"Functions","abstract":"
The following functions are available globally.
"},"Protocols.html":{"name":"Protocols","abstract":"
The following protocols are available globally.
"},"Structs.html":{"name":"Structures","abstract":"
The following structures are available globally.
"},"Typealiases.html":{"name":"Type Aliases","abstract":"
The following type aliases are available globally.
"}}
\ No newline at end of file
diff --git a/docs/docsets/Flow.docset/Contents/Resources/Documents/undocumented.json b/docs/docsets/Flow.docset/Contents/Resources/Documents/undocumented.json
new file mode 100644
index 0000000..6bd7ee7
--- /dev/null
+++ b/docs/docsets/Flow.docset/Contents/Resources/Documents/undocumented.json
@@ -0,0 +1,5052 @@
+{
+ "warnings": [
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowAccessActor.swift",
+ "line": 17,
+ "symbol": "FlowAccessActor.init(initialChainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowActor.swift",
+ "line": 15,
+ "symbol": "FlowActor.flow",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 17,
+ "symbol": "FlowConfigActor.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 19,
+ "symbol": "FlowConfigActor.chainID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 21,
+ "symbol": "FlowConfigActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 23,
+ "symbol": "FlowConfigActor.updateChainID(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowCryptoActor.swift",
+ "line": 11,
+ "symbol": "FlowCryptoActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowCryptoActor.swift",
+ "line": 14,
+ "symbol": "FlowCryptoActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 28,
+ "symbol": "Flow.Transport.HTTP(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 29,
+ "symbol": "Flow.Transport.gRPC(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 30,
+ "symbol": "Flow.Transport.websocket(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 32,
+ "symbol": "Flow.Transport.url",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 43,
+ "symbol": "Flow.Transport.gRPCEndpoint",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 67,
+ "symbol": "Flow.Transport.Endpoint.node",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 68,
+ "symbol": "Flow.Transport.Endpoint.port",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 70,
+ "symbol": "Flow.Transport.Endpoint.init(node:port:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 84,
+ "symbol": "Flow.AccountAtLatestBlockRequest.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 85,
+ "symbol": "Flow.AccountAtLatestBlockRequest.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 87,
+ "symbol": "Flow.AccountAtLatestBlockRequest.init(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 95,
+ "symbol": "Flow.AccountByBlockHeightRequest.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 96,
+ "symbol": "Flow.AccountByBlockHeightRequest.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 98,
+ "symbol": "Flow.AccountByBlockHeightRequest.init(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 106,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 107,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 108,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 110,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.init(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 123,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 124,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 125,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 127,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.init(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 140,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 141,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 142,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 144,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.init(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 157,
+ "symbol": "Flow.EventsForHeightRangeRequest.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 158,
+ "symbol": "Flow.EventsForHeightRangeRequest.range",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 160,
+ "symbol": "Flow.EventsForHeightRangeRequest.init(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 168,
+ "symbol": "Flow.EventsForBlockIdsRequest.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 169,
+ "symbol": "Flow.EventsForBlockIdsRequest.ids",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 171,
+ "symbol": "Flow.EventsForBlockIdsRequest.init(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 183,
+ "symbol": "FlowRPCMethod.ping",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 184,
+ "symbol": "FlowRPCMethod.getLatestBlockHeader",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 185,
+ "symbol": "FlowRPCMethod.getBlockHeaderById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 186,
+ "symbol": "FlowRPCMethod.getBlockHeaderByHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 187,
+ "symbol": "FlowRPCMethod.getLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 188,
+ "symbol": "FlowRPCMethod.getBlockById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 189,
+ "symbol": "FlowRPCMethod.getBlockByHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 190,
+ "symbol": "FlowRPCMethod.getCollectionById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 191,
+ "symbol": "FlowRPCMethod.sendTransaction",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 192,
+ "symbol": "FlowRPCMethod.getTransactionById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 193,
+ "symbol": "FlowRPCMethod.getTransactionResultById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 194,
+ "symbol": "FlowRPCMethod.getAccountAtLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 195,
+ "symbol": "FlowRPCMethod.getAccountByBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 196,
+ "symbol": "FlowRPCMethod.executeScriptAtLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 197,
+ "symbol": "FlowRPCMethod.executeScriptAtBlockId",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 198,
+ "symbol": "FlowRPCMethod.executeScriptAtBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 199,
+ "symbol": "FlowRPCMethod.getEventsForHeightRange",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 200,
+ "symbol": "FlowRPCMethod.getEventsForBlockIds",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 201,
+ "symbol": "FlowRPCMethod.getNetworkParameters",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 209,
+ "symbol": "FlowTransport.executeRPC(_:request:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 225,
+ "symbol": "NIOTransport.init(chainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 229,
+ "symbol": "NIOTransport.executeRPC(_:request:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 15,
+ "symbol": "FlowWebsocketActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 18,
+ "symbol": "FlowWebsocketActor.websocket",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 20,
+ "symbol": "FlowWebsocketActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 37,
+ "symbol": "Flow.Websocket.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 41,
+ "symbol": "Flow.Websocket.connect(to:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 53,
+ "symbol": "Flow.Websocket.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 136,
+ "symbol": "Flow.Topic",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 143,
+ "symbol": "Flow.Topic.transactionStatus(txId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 148,
+ "symbol": "Flow.TopicResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 149,
+ "symbol": "Flow.TopicResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 150,
+ "symbol": "Flow.TopicResponse.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 153,
+ "symbol": "Flow.SubscribeResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 154,
+ "symbol": "Flow.SubscribeResponse.ErrorBody",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 155,
+ "symbol": "Flow.SubscribeResponse.ErrorBody.message",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 156,
+ "symbol": "Flow.SubscribeResponse.ErrorBody.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 159,
+ "symbol": "Flow.SubscribeResponse.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 160,
+ "symbol": "Flow.SubscribeResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 163,
+ "symbol": "Flow.WebSocketError",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 164,
+ "symbol": "Flow.WebSocketError.serverError(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 26,
+ "symbol": "cadence(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 30,
+ "symbol": "cadence(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 34,
+ "symbol": "arguments(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 38,
+ "symbol": "arguments(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 42,
+ "symbol": "payer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 46,
+ "symbol": "payer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 50,
+ "symbol": "authorizers(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 54,
+ "symbol": "authorizers(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 58,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 63,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 67,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 71,
+ "symbol": "gasLimit(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 75,
+ "symbol": "gasLimit(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 79,
+ "symbol": "refBlock(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 86,
+ "symbol": "refBlock(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 94,
+ "symbol": "Flow.TransactionBuild",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 95,
+ "symbol": "Flow.TransactionBuild.script(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 96,
+ "symbol": "Flow.TransactionBuild.argument(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 97,
+ "symbol": "Flow.TransactionBuild.payer(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 98,
+ "symbol": "Flow.TransactionBuild.authorizers(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 99,
+ "symbol": "Flow.TransactionBuild.proposer(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 100,
+ "symbol": "Flow.TransactionBuild.gasLimit(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 101,
+ "symbol": "Flow.TransactionBuild.refBlock(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 102,
+ "symbol": "Flow.TransactionBuild.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 294,
+ "symbol": "Flow.buildTransaction(chainID:script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 316,
+ "symbol": "Flow.buildTransaction(script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 338,
+ "symbol": "Flow.sendTransaction(chainID:signedTransaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 346,
+ "symbol": "Flow.sendTransaction(signedTransaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 352,
+ "symbol": "Flow.sendTransaction(chainID:signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 366,
+ "symbol": "Flow.sendTransaction(signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/BatchProcessor.swift",
+ "line": 11,
+ "symbol": "FlowData",
+ "symbol_kind": "source.lang.swift.decl.typealias",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 11,
+ "symbol": "CadenceLoader.Category.Child",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category.Child.getChildAddress",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Child.getChildAccountMeta",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.Child.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 20,
+ "symbol": "CadenceLoader.Category.Child",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 21,
+ "symbol": "CadenceLoader.Category.Child.Metadata",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 22,
+ "symbol": "CadenceLoader.Category.Child.Metadata.name",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 23,
+ "symbol": "CadenceLoader.Category.Child.Metadata.description",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 24,
+ "symbol": "CadenceLoader.Category.Child.Metadata.thumbnail",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 26,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 27,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail.urlString",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 29,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail.url",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.EVM",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 14,
+ "symbol": "CadenceLoader.Category.EVM.getAddress",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.EVM.createCOA",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 16,
+ "symbol": "CadenceLoader.Category.EVM.evmRun",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 18,
+ "symbol": "CadenceLoader.Category.EVM.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category.Staking",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Staking.getDelegatorInfo",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.Staking.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 19,
+ "symbol": "CadenceLoader.Category.Staking",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 20,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 21,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 22,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.nodeID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 23,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensCommitted",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 24,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensStaked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 25,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensUnstaking",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 26,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensRewarded",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 27,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensUnstaked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 28,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensRequestedToUnstake",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 30,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.stakingCount",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 34,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.unstakingCount",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Token",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 14,
+ "symbol": "CadenceLoader.Category.Token.getTokenBalanceStorage",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 16,
+ "symbol": "CadenceLoader.Category.Token.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 10,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 11,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoaderActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 18,
+ "symbol": "CadenceLoaderProtocol",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 19,
+ "symbol": "CadenceLoaderProtocol.directory",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 20,
+ "symbol": "CadenceLoaderProtocol.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 23,
+ "symbol": "CadenceLoaderProtocol",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 24,
+ "symbol": "CadenceLoaderProtocol.directory",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 35,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 37,
+ "symbol": "CadenceLoader.subdirectory",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 63,
+ "symbol": "CadenceLoader.load(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 3,
+ "symbol": "CadenceType",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 4,
+ "symbol": "CadenceType.query",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 5,
+ "symbol": "CadenceType.transaction",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 8,
+ "symbol": "CadenceTargetType",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 19,
+ "symbol": "ContractAddressRegister.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 23,
+ "symbol": "ContractAddressRegister.setAddress(_:for:on:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 33,
+ "symbol": "ContractAddressRegister.address(for:on:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 35,
+ "symbol": "Flow.Argument.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 61,
+ "symbol": "Flow.Argument.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 66,
+ "symbol": "Flow.Argument.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 11,
+ "symbol": "FvmErrorCode",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 14,
+ "symbol": "FvmErrorCode.unknownError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 18,
+ "symbol": "FvmErrorCode.txValidationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 20,
+ "symbol": "FvmErrorCode.invalidTxByteSizeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 22,
+ "symbol": "FvmErrorCode.invalidReferenceBlockError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 24,
+ "symbol": "FvmErrorCode.expiredTransactionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 26,
+ "symbol": "FvmErrorCode.invalidScriptError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 28,
+ "symbol": "FvmErrorCode.invalidGasLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 29,
+ "symbol": "FvmErrorCode.invalidProposalSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 30,
+ "symbol": "FvmErrorCode.invalidProposalSeqNumberError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 31,
+ "symbol": "FvmErrorCode.invalidPayloadSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 32,
+ "symbol": "FvmErrorCode.invalidEnvelopeSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 36,
+ "symbol": "FvmErrorCode.fvmInternalError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 37,
+ "symbol": "FvmErrorCode.valueError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 38,
+ "symbol": "FvmErrorCode.invalidArgumentError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 39,
+ "symbol": "FvmErrorCode.invalidAddressError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 40,
+ "symbol": "FvmErrorCode.invalidLocationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 41,
+ "symbol": "FvmErrorCode.accountAuthorizationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 42,
+ "symbol": "FvmErrorCode.operationAuthorizationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 43,
+ "symbol": "FvmErrorCode.operationNotSupportedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 44,
+ "symbol": "FvmErrorCode.blockHeightOutOfRangeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 48,
+ "symbol": "FvmErrorCode.executionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 49,
+ "symbol": "FvmErrorCode.cadenceRuntimeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 51,
+ "symbol": "FvmErrorCode.encodingUnsupportedValue",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 52,
+ "symbol": "FvmErrorCode.storageCapacityExceeded",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 54,
+ "symbol": "FvmErrorCode.gasLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 55,
+ "symbol": "FvmErrorCode.eventLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 56,
+ "symbol": "FvmErrorCode.ledgerInteractionLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 57,
+ "symbol": "FvmErrorCode.stateKeySizeLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 58,
+ "symbol": "FvmErrorCode.stateValueSizeLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 59,
+ "symbol": "FvmErrorCode.transactionFeeDeductionFailedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 60,
+ "symbol": "FvmErrorCode.computationLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 61,
+ "symbol": "FvmErrorCode.memoryLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 62,
+ "symbol": "FvmErrorCode.couldNotDecodeExecutionParameterFromState",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 63,
+ "symbol": "FvmErrorCode.scriptExecutionTimedOutError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 64,
+ "symbol": "FvmErrorCode.scriptExecutionCancelledError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 65,
+ "symbol": "FvmErrorCode.eventEncodingError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 66,
+ "symbol": "FvmErrorCode.invalidInternalStateAccessError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 68,
+ "symbol": "FvmErrorCode.insufficientPayerBalance",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 72,
+ "symbol": "FvmErrorCode.accountError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 73,
+ "symbol": "FvmErrorCode.accountNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 74,
+ "symbol": "FvmErrorCode.accountPublicKeyNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 75,
+ "symbol": "FvmErrorCode.accountAlreadyExistsError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 77,
+ "symbol": "FvmErrorCode.frozenAccountError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 79,
+ "symbol": "FvmErrorCode.accountStorageNotInitializedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 80,
+ "symbol": "FvmErrorCode.accountPublicKeyLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 84,
+ "symbol": "FvmErrorCode.contractError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 85,
+ "symbol": "FvmErrorCode.contractNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 87,
+ "symbol": "FvmErrorCode.contractNamesNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 90,
+ "symbol": "FvmErrorCode.evmExecutionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 26,
+ "symbol": "Flow.FError.generic",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 27,
+ "symbol": "Flow.FError.urlEmpty",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 28,
+ "symbol": "Flow.FError.urlInvaild",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 29,
+ "symbol": "Flow.FError.declined",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 30,
+ "symbol": "Flow.FError.encodeFailure",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 31,
+ "symbol": "Flow.FError.decodeFailure",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 32,
+ "symbol": "Flow.FError.unauthenticated",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 33,
+ "symbol": "Flow.FError.emptyProposer",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 34,
+ "symbol": "Flow.FError.invaildPlayload",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 35,
+ "symbol": "Flow.FError.invaildEnvelope",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 36,
+ "symbol": "Flow.FError.invaildAccountInfo",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 37,
+ "symbol": "Flow.FError.missingSigner",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 38,
+ "symbol": "Flow.FError.preparingTransactionFailed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 39,
+ "symbol": "Flow.FError.timeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 40,
+ "symbol": "Flow.FError.invaildResponse",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 41,
+ "symbol": "Flow.FError.invalidScript",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 42,
+ "symbol": "Flow.FError.scriptNotFound(name:directory:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 43,
+ "symbol": "Flow.FError.customError(msg:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 44,
+ "symbol": "Flow.FError.createWebSocketFailed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Double.swift",
+ "line": 23,
+ "symbol": "Double.roundToDecimal(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Double.swift",
+ "line": 30,
+ "symbol": "Decimal.tokenFormat(maximumFractionDigits:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 4,
+ "symbol": "TimeoutError",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 5,
+ "symbol": "TimeoutError.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 9,
+ "symbol": "FinishedWithoutValueError",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 10,
+ "symbol": "FinishedWithoutValueError.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 14,
+ "symbol": "TimeoutPolicy",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 15,
+ "symbol": "TimeoutPolicy.throwOnTimeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 16,
+ "symbol": "TimeoutPolicy.finishOnTimeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 19,
+ "symbol": "TimeoutEvent",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 20,
+ "symbol": "TimeoutEvent.element(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 21,
+ "symbol": "TimeoutEvent.timeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 24,
+ "symbol": "TimeoutAsyncSequence",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 35,
+ "symbol": "TimeoutAsyncSequence.init(base:after:tolerance:clock:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 49,
+ "symbol": "TimeoutAsyncSequence.Iterator",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 102,
+ "symbol": "AsyncSequence.timeout(after:tolerance:clock:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 117,
+ "symbol": "AsyncSequence.timeout(after:tolerance:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 138,
+ "symbol": "awaitFirst(_:timeoutSeconds:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 153,
+ "symbol": "awaitFirstOrNil(_:timeoutSeconds:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 61,
+ "symbol": "String.replace(by:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 69,
+ "symbol": "String.replace(from:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 77,
+ "symbol": "String.replaceExactMatch(target:replacement:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/URLSession+Async.swift",
+ "line": 56,
+ "symbol": "URLSession.data(from:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 9,
+ "symbol": "FCLFlow",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 11,
+ "symbol": "FCLFlow.buildTransaction(chainID:skipEmptyCheck:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 30,
+ "symbol": "FCLFlow.send(chainID:signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 24,
+ "symbol": "FlowActors",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 38,
+ "symbol": "Flow.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 46,
+ "symbol": "Flow.encoder",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 52,
+ "symbol": "Flow.decoder",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 13,
+ "symbol": "FlowLogActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 19,
+ "symbol": "FlowLogLevel",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 20,
+ "symbol": "FlowLogLevel.debug",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 21,
+ "symbol": "FlowLogLevel.info",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 22,
+ "symbol": "FlowLogLevel.warning",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 23,
+ "symbol": "FlowLogLevel.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 35,
+ "symbol": "FlowLoggerProtocol",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 36,
+ "symbol": "FlowLoggerProtocol.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 48,
+ "symbol": "FlowLogger",
+ "symbol_kind": "source.lang.swift.decl.class",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 50,
+ "symbol": "FlowLogger.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 53,
+ "symbol": "FlowLogger.minimumLogLevel",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 60,
+ "symbol": "FlowLogger.addLogger(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 64,
+ "symbol": "FlowLogger.removeAllLoggers()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 68,
+ "symbol": "FlowLogger.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 83,
+ "symbol": "FlowLogger.logAsync(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 104,
+ "symbol": "ConsoleLogger",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 105,
+ "symbol": "ConsoleLogger.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 107,
+ "symbol": "ConsoleLogger.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 9,
+ "symbol": "Flow.Account.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 10,
+ "symbol": "Flow.Account.balance",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 11,
+ "symbol": "Flow.Account.keys",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 12,
+ "symbol": "Flow.Account.contracts",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 14,
+ "symbol": "Flow.Account.init(address:balance:keys:contracts:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 48,
+ "symbol": "Flow.AccountKey.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 49,
+ "symbol": "Flow.AccountKey.publicKey",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 53,
+ "symbol": "Flow.AccountKey.hashAlgo",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 55,
+ "symbol": "Flow.AccountKey.weight",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 56,
+ "symbol": "Flow.AccountKey.sequenceNumber",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 57,
+ "symbol": "Flow.AccountKey.revoked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 92,
+ "symbol": "Flow.AccountKey.init(index:publicKey:signAlgo:hashAlgo:weight:sequenceNumber:revoked:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 61,
+ "symbol": "Flow.Address.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 65,
+ "symbol": "Flow.Address.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 69,
+ "symbol": "Flow.Address.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 79,
+ "symbol": "Flow.Address.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 28,
+ "symbol": "Flow.SignatureAlgorithm.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 29,
+ "symbol": "Flow.SignatureAlgorithm.ECDSA_P256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 30,
+ "symbol": "Flow.SignatureAlgorithm.ECDSA_SECP256k1",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 32,
+ "symbol": "Flow.SignatureAlgorithm.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 41,
+ "symbol": "Flow.SignatureAlgorithm.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 52,
+ "symbol": "Flow.SignatureAlgorithm.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 63,
+ "symbol": "Flow.SignatureAlgorithm.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 74,
+ "symbol": "Flow.SignatureAlgorithm.curve",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 85,
+ "symbol": "Flow.SignatureAlgorithm.init(code:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 89,
+ "symbol": "Flow.SignatureAlgorithm.init(index:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 96,
+ "symbol": "Flow.HashAlgorithm.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 97,
+ "symbol": "Flow.HashAlgorithm.SHA2_256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 98,
+ "symbol": "Flow.HashAlgorithm.SHA2_384",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 99,
+ "symbol": "Flow.HashAlgorithm.SHA3_256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 100,
+ "symbol": "Flow.HashAlgorithm.SHA3_384",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 102,
+ "symbol": "Flow.HashAlgorithm.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 117,
+ "symbol": "Flow.HashAlgorithm.outputSize",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 128,
+ "symbol": "Flow.HashAlgorithm.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 143,
+ "symbol": "Flow.HashAlgorithm.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 154,
+ "symbol": "Flow.HashAlgorithm.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 169,
+ "symbol": "Flow.HashAlgorithm.init(code:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 173,
+ "symbol": "Flow.HashAlgorithm.init(cadence:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 20,
+ "symbol": "Flow.Argument.CodingKeys",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 21,
+ "symbol": "Flow.Argument.CodingKeys.type",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 22,
+ "symbol": "Flow.Argument.CodingKeys.value",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 308,
+ "symbol": "Flow.Argument.Path",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 309,
+ "symbol": "Flow.Argument.Path.domain",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 310,
+ "symbol": "Flow.Argument.Path.identifier",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 312,
+ "symbol": "Flow.Argument.Path.init(domain:identifier:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 318,
+ "symbol": "Flow.Argument.Event",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 325,
+ "symbol": "Flow.Argument.Event.init(id:fields:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 332,
+ "symbol": "Flow.Argument.Event.Name.name",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 333,
+ "symbol": "Flow.Argument.Event.Name.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 335,
+ "symbol": "Flow.Argument.Event.Name.init(name:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 340,
+ "symbol": "Flow.Argument.Event.Name.init(name:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 347,
+ "symbol": "Flow.Argument.Reference",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 348,
+ "symbol": "Flow.Argument.Reference.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 349,
+ "symbol": "Flow.Argument.Reference.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 351,
+ "symbol": "Flow.Argument.Reference.init(address:type:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 357,
+ "symbol": "Flow.Argument.Dictionary",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 358,
+ "symbol": "Flow.Argument.Dictionary.key",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 359,
+ "symbol": "Flow.Argument.Dictionary.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 361,
+ "symbol": "Flow.Argument.Dictionary.init(key:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 366,
+ "symbol": "Flow.Argument.Dictionary.init(key:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 372,
+ "symbol": "Flow.Argument.Capability",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 373,
+ "symbol": "Flow.Argument.Capability.path",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 374,
+ "symbol": "Flow.Argument.Capability.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 375,
+ "symbol": "Flow.Argument.Capability.borrowType",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 377,
+ "symbol": "Flow.Argument.Capability.init(path:address:borrowType:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 384,
+ "symbol": "Flow.Argument.StaticType",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 385,
+ "symbol": "Flow.Argument.StaticType.staticType",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 387,
+ "symbol": "Flow.Argument.StaticType.init(staticType:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 395,
+ "symbol": "Flow.Argument.Path",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 396,
+ "symbol": "Flow.Argument.Reference",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 397,
+ "symbol": "Flow.Argument.Capability",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 398,
+ "symbol": "Flow.Argument.Dictionary",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 399,
+ "symbol": "Flow.Argument.Event",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 55,
+ "symbol": "Flow.BlockHeader.init(id:parentId:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 81,
+ "symbol": "Flow.BlockSeal.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 82,
+ "symbol": "Flow.BlockSeal.executionReceiptId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 83,
+ "symbol": "Flow.BlockSeal.executionReceiptSignatures",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 84,
+ "symbol": "Flow.BlockSeal.resultApprovalSignatures",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 91,
+ "symbol": "Flow.BlockSeal.init(blockId:executionReceiptId:executionReceiptSignatures:resultApprovalSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 137,
+ "symbol": "Flow.Block.init(id:parentId:height:timestamp:collectionGuarantees:blockSeals:signatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 23,
+ "symbol": "Flow.decimal",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 24,
+ "symbol": "Flow.accountCreationEventType",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 25,
+ "symbol": "Flow.accountCreationFieldName",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 37,
+ "symbol": "Flow.Cadence.FType.void",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 38,
+ "symbol": "Flow.Cadence.FType.optional",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 39,
+ "symbol": "Flow.Cadence.FType.bool",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 40,
+ "symbol": "Flow.Cadence.FType.string",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 41,
+ "symbol": "Flow.Cadence.FType.int",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 42,
+ "symbol": "Flow.Cadence.FType.uint",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 43,
+ "symbol": "Flow.Cadence.FType.int8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 44,
+ "symbol": "Flow.Cadence.FType.uint8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 45,
+ "symbol": "Flow.Cadence.FType.int16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 46,
+ "symbol": "Flow.Cadence.FType.uint16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 47,
+ "symbol": "Flow.Cadence.FType.int32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 48,
+ "symbol": "Flow.Cadence.FType.uint32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 49,
+ "symbol": "Flow.Cadence.FType.int64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 50,
+ "symbol": "Flow.Cadence.FType.uint64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 51,
+ "symbol": "Flow.Cadence.FType.int128",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 52,
+ "symbol": "Flow.Cadence.FType.uint128",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 53,
+ "symbol": "Flow.Cadence.FType.int256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 54,
+ "symbol": "Flow.Cadence.FType.uint256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 55,
+ "symbol": "Flow.Cadence.FType.word8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 56,
+ "symbol": "Flow.Cadence.FType.word16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 57,
+ "symbol": "Flow.Cadence.FType.word32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 58,
+ "symbol": "Flow.Cadence.FType.word64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 59,
+ "symbol": "Flow.Cadence.FType.fix64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 60,
+ "symbol": "Flow.Cadence.FType.ufix64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 61,
+ "symbol": "Flow.Cadence.FType.array",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 62,
+ "symbol": "Flow.Cadence.FType.dictionary",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 63,
+ "symbol": "Flow.Cadence.FType.address",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 64,
+ "symbol": "Flow.Cadence.FType.path",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 65,
+ "symbol": "Flow.Cadence.FType.struct",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 66,
+ "symbol": "Flow.Cadence.FType.resource",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 67,
+ "symbol": "Flow.Cadence.FType.event",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 68,
+ "symbol": "Flow.Cadence.FType.character",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 69,
+ "symbol": "Flow.Cadence.FType.reference",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 70,
+ "symbol": "Flow.Cadence.FType.capability",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 71,
+ "symbol": "Flow.Cadence.FType.type",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 72,
+ "symbol": "Flow.Cadence.FType.contract",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 73,
+ "symbol": "Flow.Cadence.FType.enum",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 74,
+ "symbol": "Flow.Cadence.FType.undefined",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 89,
+ "symbol": "Flow.Cadence.FValue.void",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 90,
+ "symbol": "Flow.Cadence.FValue.optional(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 91,
+ "symbol": "Flow.Cadence.FValue.bool(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 92,
+ "symbol": "Flow.Cadence.FValue.string(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 93,
+ "symbol": "Flow.Cadence.FValue.character(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 95,
+ "symbol": "Flow.Cadence.FValue.int(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 96,
+ "symbol": "Flow.Cadence.FValue.uint(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 97,
+ "symbol": "Flow.Cadence.FValue.int8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 98,
+ "symbol": "Flow.Cadence.FValue.uint8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 99,
+ "symbol": "Flow.Cadence.FValue.int16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 100,
+ "symbol": "Flow.Cadence.FValue.uint16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 101,
+ "symbol": "Flow.Cadence.FValue.int32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 102,
+ "symbol": "Flow.Cadence.FValue.uint32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 103,
+ "symbol": "Flow.Cadence.FValue.int64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 104,
+ "symbol": "Flow.Cadence.FValue.uint64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 105,
+ "symbol": "Flow.Cadence.FValue.int128(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 106,
+ "symbol": "Flow.Cadence.FValue.uint128(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 107,
+ "symbol": "Flow.Cadence.FValue.int256(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 108,
+ "symbol": "Flow.Cadence.FValue.uint256(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 111,
+ "symbol": "Flow.Cadence.FValue.word8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 112,
+ "symbol": "Flow.Cadence.FValue.word16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 113,
+ "symbol": "Flow.Cadence.FValue.word32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 114,
+ "symbol": "Flow.Cadence.FValue.word64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 116,
+ "symbol": "Flow.Cadence.FValue.fix64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 117,
+ "symbol": "Flow.Cadence.FValue.ufix64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 119,
+ "symbol": "Flow.Cadence.FValue.array(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 120,
+ "symbol": "Flow.Cadence.FValue.address(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 121,
+ "symbol": "Flow.Cadence.FValue.path(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 122,
+ "symbol": "Flow.Cadence.FValue.reference(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 123,
+ "symbol": "Flow.Cadence.FValue.capability(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 124,
+ "symbol": "Flow.Cadence.FValue.type(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 125,
+ "symbol": "Flow.Cadence.FValue.dictionary(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 126,
+ "symbol": "Flow.Cadence.FValue.struct(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 127,
+ "symbol": "Flow.Cadence.FValue.resource(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 128,
+ "symbol": "Flow.Cadence.FValue.event(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 129,
+ "symbol": "Flow.Cadence.FValue.contract(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 130,
+ "symbol": "Flow.Cadence.FValue.enum(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 132,
+ "symbol": "Flow.Cadence.FValue.unsupported",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 133,
+ "symbol": "Flow.Cadence.FValue.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowChainId.swift",
+ "line": 105,
+ "symbol": "Flow.ChainID.defaultWebSocketNode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowChainId.swift",
+ "line": 116,
+ "symbol": "Flow.ChainID.init(name:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 27,
+ "symbol": "Flow.Collection.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 28,
+ "symbol": "Flow.Collection.transactionIds",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 30,
+ "symbol": "Flow.Collection.init(id:transactionIds:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 62,
+ "symbol": "Flow.CollectionGuarantee.collectionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 63,
+ "symbol": "Flow.CollectionGuarantee.signerIds",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 65,
+ "symbol": "Flow.CollectionGuarantee.init(collectionId:signerIds:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowDomainTag.swift",
+ "line": 25,
+ "symbol": "Flow.DomainTag.RawValue",
+ "symbol_kind": "source.lang.swift.decl.typealias",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 34,
+ "symbol": "Flow.Event.transactionIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 35,
+ "symbol": "Flow.Event.eventIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 36,
+ "symbol": "Flow.Event.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 38,
+ "symbol": "Flow.Event.init(type:transactionId:transactionIndex:eventIndex:payload:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 77,
+ "symbol": "Flow.Event.Result.init(blockId:blockHeight:events:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 101,
+ "symbol": "Flow.Event.Payload.fields",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 103,
+ "symbol": "Flow.Event.Payload.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 108,
+ "symbol": "Flow.Event.Payload.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 125,
+ "symbol": "Flow.Snapshot",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 128,
+ "symbol": "Flow.Snapshot.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 132,
+ "symbol": "Flow.Snapshot.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 138,
+ "symbol": "Flow.Snapshot",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 145,
+ "symbol": "Flow.Event.Payload.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 149,
+ "symbol": "Flow.Event.Payload.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 156,
+ "symbol": "Flow.Event.Payload.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 167,
+ "symbol": "Flow.Event.getField(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 181,
+ "symbol": "Flow.TransactionResult.getEvent(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 185,
+ "symbol": "Flow.TransactionResult.getCreatedAddress()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowId.swift",
+ "line": 64,
+ "symbol": "Flow.ID.once(status:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowKind.swift",
+ "line": 25,
+ "symbol": "Flow.Cadence.Kind",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 6,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 9,
+ "symbol": "Flow.Script.text",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 13,
+ "symbol": "Flow.Script.init(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 17,
+ "symbol": "Flow.Script.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 21,
+ "symbol": "Flow.Script.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 26,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 28,
+ "symbol": "Flow.ScriptResponse.fields",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 30,
+ "symbol": "Flow.ScriptResponse.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 44,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 45,
+ "symbol": "Flow.ScriptResponse.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 49,
+ "symbol": "Flow.ScriptResponse.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 56,
+ "symbol": "Flow.ScriptResponse.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 64,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 68,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 85,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSignature.swift",
+ "line": 26,
+ "symbol": "Flow.Signature.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSignature.swift",
+ "line": 30,
+ "symbol": "Flow.Signature.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSigner.swift",
+ "line": 40,
+ "symbol": "FlowSigner.sign(signableData:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 55,
+ "symbol": "Flow.Transaction.init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 77,
+ "symbol": "Flow.Transaction.init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 99,
+ "symbol": "Flow.Transaction.buildUpOn(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 200,
+ "symbol": "Flow.Transaction.updateScript(script:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 204,
+ "symbol": "Flow.Transaction.addPayloadSignature(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 209,
+ "symbol": "Flow.Transaction.addPayloadSignature(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 228,
+ "symbol": "Flow.Transaction.addEnvelopeSignature(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 247,
+ "symbol": "Flow.Transaction.addEnvelopeSignature(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 265,
+ "symbol": "Flow.Transaction.Status.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 266,
+ "symbol": "Flow.Transaction.Status.pending",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 267,
+ "symbol": "Flow.Transaction.Status.finalized",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 268,
+ "symbol": "Flow.Transaction.Status.executed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 269,
+ "symbol": "Flow.Transaction.Status.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 270,
+ "symbol": "Flow.Transaction.Status.expired",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 272,
+ "symbol": "Flow.Transaction.Status.stringValue",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 295,
+ "symbol": "Flow.Transaction.Status.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 299,
+ "symbol": "Flow.Transaction.Status.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 336,
+ "symbol": "Flow.Transaction.EnvelopeSignature",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 349,
+ "symbol": "Flow.Transaction.PaymentEnvelope",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 386,
+ "symbol": "Flow.TransactionResult.init(status:errorMessage:events:statusCode:blockId:computationUsed:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 422,
+ "symbol": "Flow.TransactionResult.errorCode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 441,
+ "symbol": "Flow.TransactionProposalKey.init(address:keyIndex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 447,
+ "symbol": "Flow.TransactionProposalKey.init(address:keyIndex:sequenceNumber:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 454,
+ "symbol": "Flow.TransactionSignature",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 467,
+ "symbol": "Flow.TransactionSignature.init(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 474,
+ "symbol": "Flow.TransactionSignature.init(address:signerIndex:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 488,
+ "symbol": "Flow.TransactionSignature.buildUpon(address:signerIndex:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 528,
+ "symbol": "Flow.TransactionSignature",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 30,
+ "symbol": "Flow.PublicKey.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 34,
+ "symbol": "Flow.PublicKey.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 38,
+ "symbol": "Flow.PublicKey.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 82,
+ "symbol": "Flow.Code.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 26,
+ "symbol": "Flow.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 30,
+ "symbol": "Flow.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 36,
+ "symbol": "Flow.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 40,
+ "symbol": "Flow.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 44,
+ "symbol": "Flow.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 48,
+ "symbol": "Flow.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 52,
+ "symbol": "Flow.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 56,
+ "symbol": "Flow.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 60,
+ "symbol": "Flow.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 70,
+ "symbol": "Flow.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 78,
+ "symbol": "Flow.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 85,
+ "symbol": "Flow.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 92,
+ "symbol": "Flow.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 104,
+ "symbol": "Flow.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 54,
+ "symbol": "FlowAccessProtocol.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 56,
+ "symbol": "FlowAccessProtocol.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 58,
+ "symbol": "FlowAccessProtocol.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 60,
+ "symbol": "FlowAccessProtocol.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 62,
+ "symbol": "FlowAccessProtocol.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 64,
+ "symbol": "FlowAccessProtocol.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 66,
+ "symbol": "FlowAccessProtocol.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 68,
+ "symbol": "FlowAccessProtocol.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 70,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 75,
+ "symbol": "FlowAccessProtocol.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 80,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 86,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 92,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 98,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 104,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 110,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 116,
+ "symbol": "FlowAccessProtocol.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 121,
+ "symbol": "FlowAccessProtocol.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 126,
+ "symbol": "FlowAccessProtocol.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 138,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 145,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 155,
+ "symbol": "FlowAccessProtocol.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 159,
+ "symbol": "FlowAccessProtocol.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 163,
+ "symbol": "FlowAccessProtocol.getLatestBlock(sealed:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 168,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(cadence:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 180,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(cadence:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 192,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 204,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 216,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 228,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 240,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 252,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 264,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 12,
+ "symbol": "Flow.BlockStatus",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 13,
+ "symbol": "Flow.BlockStatus.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 14,
+ "symbol": "Flow.BlockStatus.final",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 11,
+ "symbol": "AnyDecodable",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 12,
+ "symbol": "AnyDecodable.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 14,
+ "symbol": "AnyDecodable.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 15,
+ "symbol": "FlowHTTPAPI.client",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 17,
+ "symbol": "FlowHTTPAPI.chainID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 19,
+ "symbol": "FlowHTTPAPI.init(chainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 136,
+ "symbol": "FlowHTTPAPI.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 163,
+ "symbol": "FlowHTTPAPI.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 173,
+ "symbol": "FlowHTTPAPI.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 185,
+ "symbol": "FlowHTTPAPI.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 195,
+ "symbol": "FlowHTTPAPI.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 205,
+ "symbol": "FlowHTTPAPI.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 209,
+ "symbol": "FlowHTTPAPI.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 218,
+ "symbol": "FlowHTTPAPI.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 222,
+ "symbol": "FlowHTTPAPI.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 228,
+ "symbol": "FlowHTTPAPI.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 240,
+ "symbol": "FlowHTTPAPI.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 249,
+ "symbol": "FlowHTTPAPI.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 265,
+ "symbol": "FlowHTTPAPI.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 281,
+ "symbol": "FlowHTTPAPI.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 297,
+ "symbol": "FlowHTTPAPI.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 306,
+ "symbol": "FlowHTTPAPI.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 26,
+ "symbol": "Flow.ErrorResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 31,
+ "symbol": "Flow.BlockHeaderResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 35,
+ "symbol": "Flow.NetworkResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 39,
+ "symbol": "Flow.BlockResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 56,
+ "symbol": "Flow.BlockPayloadResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 61,
+ "symbol": "Flow.ScriptRequest",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 73,
+ "symbol": "Flow.TransactionIdResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 24,
+ "symbol": "Method",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 25,
+ "symbol": "Method.GET",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 26,
+ "symbol": "Method.POST",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 29,
+ "symbol": "TargetType",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 46,
+ "symbol": "Task",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 51,
+ "symbol": "AnyEncodable",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 54,
+ "symbol": "AnyEncodable.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 16,
+ "symbol": "Flow.PublisherEvent.transactionStatus(id:status:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 17,
+ "symbol": "Flow.PublisherEvent.accountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 18,
+ "symbol": "Flow.PublisherEvent.connectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 19,
+ "symbol": "Flow.PublisherEvent.walletResponse(approved:_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 20,
+ "symbol": "Flow.PublisherEvent.block(id:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 21,
+ "symbol": "Flow.PublisherEvent.error(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 53,
+ "symbol": "Flow.Publisher.WSBlockHeader",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 54,
+ "symbol": "Flow.Publisher.WSBlockHeader.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 55,
+ "symbol": "Flow.Publisher.WSBlockHeader.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 56,
+ "symbol": "Flow.Publisher.WSBlockHeader.timestamp",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 58,
+ "symbol": "Flow.Publisher.WSBlockHeader.init(blockId:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 74,
+ "symbol": "Flow.Publisher.transactionStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 88,
+ "symbol": "Flow.Publisher.accountStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 102,
+ "symbol": "Flow.Publisher.blockStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 116,
+ "symbol": "Flow.Publisher.connectionStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 131,
+ "symbol": "Flow.Publisher.walletResponseStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 163,
+ "symbol": "Flow.Publisher.errorStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 182,
+ "symbol": "Flow.Publisher.publishTransactionStatus(id:status:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 188,
+ "symbol": "Flow.Publisher.publishAccountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 194,
+ "symbol": "Flow.Publisher.publishConnectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 200,
+ "symbol": "Flow.Publisher.publishWalletResponse(approved:data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 207,
+ "symbol": "Flow.Publisher.publishBlock(id:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 214,
+ "symbol": "Flow.Publisher.publishError(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 225,
+ "symbol": "Flow.publisher",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 12,
+ "symbol": "FlowWebSocketSubscriptionKey.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 13,
+ "symbol": "FlowWebSocketSubscriptionKey.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 15,
+ "symbol": "FlowWebSocketSubscriptionKey.init(topic:id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 23,
+ "symbol": "FlowWebSocketCenter.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 35,
+ "symbol": "FlowWebSocketCenter.init(nioClient:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 41,
+ "symbol": "FlowWebSocketCenter.connectIfNeeded()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 45,
+ "symbol": "FlowWebSocketCenter.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 51,
+ "symbol": "FlowWebSocketCenter.transactionStatusStream(for:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 91,
+ "symbol": "FlowWebSocketCenter.handleTransactionStatusMessage(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 104,
+ "symbol": "FlowWebSocketCenter.finishTransactionStatus(id:error:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 13,
+ "symbol": "FlowWebSocketUpgradeEvent",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 14,
+ "symbol": "FlowWebSocketUpgradeEvent.upgraded",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 25,
+ "symbol": "FlowNIOWebSocketClient.init(group:configActor:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 39,
+ "symbol": "FlowNIOWebSocketClient.connectIfNeeded()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 52,
+ "symbol": "FlowNIOWebSocketClient.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 61,
+ "symbol": "FlowNIOWebSocketClient.sendTransactionStatusSubscribe(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 76,
+ "symbol": "FlowNIOWebSocketClient.sendSubscribeMessage(subscriptionId:topic:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 11,
+ "symbol": "Flow.WalletResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 12,
+ "symbol": "Flow.WalletResponse.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 13,
+ "symbol": "Flow.WalletResponse.jsonrpc",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 14,
+ "symbol": "Flow.WalletResponse.requestId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 15,
+ "symbol": "Flow.WalletResponse.approved",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 17,
+ "symbol": "Flow.WalletResponse.init(id:jsonrpc:requestId:approved:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 28,
+ "symbol": "Flow.PublisherCenter.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 41,
+ "symbol": "Flow.PublisherCenter.accountPublisher(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 57,
+ "symbol": "Flow.PublisherCenter.connectionPublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 73,
+ "symbol": "Flow.PublisherCenter.walletResponsePublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 89,
+ "symbol": "Flow.PublisherCenter.errorPublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 107,
+ "symbol": "Flow.PublisherCenter.publishAccountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 117,
+ "symbol": "Flow.PublisherCenter.publishConnectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 127,
+ "symbol": "Flow.PublisherCenter.publishWalletResponse(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 137,
+ "symbol": "Flow.PublisherCenter.publishError(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 15,
+ "symbol": "Flow.WSTransactionResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 16,
+ "symbol": "Flow.WSTransactionResponse.status",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 17,
+ "symbol": "Flow.WSTransactionResponse.statusCode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 18,
+ "symbol": "Flow.WSTransactionResponse.errorMessage",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 19,
+ "symbol": "Flow.WSTransactionResponse.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 20,
+ "symbol": "Flow.WSTransactionResponse.computationUsed",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 21,
+ "symbol": "Flow.WSTransactionResponse.events",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 70,
+ "symbol": "Flow.WebSocketBlockStatus.finalized",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 71,
+ "symbol": "Flow.WebSocketBlockStatus.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 76,
+ "symbol": "Flow.WebSocketTransactionStatusRequest.txId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 82,
+ "symbol": "Flow.WebSocketTransactionStatusRequest.init(txId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 89,
+ "symbol": "Flow.WebSocketBlockDigestArguments.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 90,
+ "symbol": "Flow.WebSocketBlockDigestArguments.startBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 91,
+ "symbol": "Flow.WebSocketBlockDigestArguments.startBlockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 99,
+ "symbol": "Flow.WebSocketBlockDigestArguments.init(blockStatus:startBlockHeight:startBlockId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 112,
+ "symbol": "Flow.WebSocketAccountStatusResponse.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 113,
+ "symbol": "Flow.WebSocketAccountStatusResponse.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 114,
+ "symbol": "Flow.WebSocketAccountStatusResponse.accountEvents",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 122,
+ "symbol": "Flow.WebSocketAccountStatusResponse.init(blockId:height:accountEvents:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 135,
+ "symbol": "Flow.WebSocketAccountStatusEvent.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 136,
+ "symbol": "Flow.WebSocketAccountStatusEvent.transactionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 137,
+ "symbol": "Flow.WebSocketAccountStatusEvent.transactionIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 138,
+ "symbol": "Flow.WebSocketAccountStatusEvent.eventIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 139,
+ "symbol": "Flow.WebSocketAccountStatusEvent.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 149,
+ "symbol": "Flow.WebSocketAccountStatusEvent.init(type:transactionId:transactionIndex:eventIndex:payload:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 15,
+ "symbol": "Flow.WebSocketTopic.blockDigests",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 16,
+ "symbol": "Flow.WebSocketTopic.blockHeaders",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 17,
+ "symbol": "Flow.WebSocketTopic.blocks",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 18,
+ "symbol": "Flow.WebSocketTopic.events",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 19,
+ "symbol": "Flow.WebSocketTopic.accountStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 20,
+ "symbol": "Flow.WebSocketTopic.transactionStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 21,
+ "symbol": "Flow.WebSocketTopic.sendAndGetTransactionStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 26,
+ "symbol": "Flow.WebSocketAction.subscribe",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 27,
+ "symbol": "Flow.WebSocketAction.unsubscribe",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 28,
+ "symbol": "Flow.WebSocketAction.listSubscriptions",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 33,
+ "symbol": "Flow.WebSocketSubscribeRequest.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 34,
+ "symbol": "Flow.WebSocketSubscribeRequest.action",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 35,
+ "symbol": "Flow.WebSocketSubscribeRequest.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 36,
+ "symbol": "Flow.WebSocketSubscribeRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 45,
+ "symbol": "Flow.WebSocketSubscribeRequest.init(id:action:topic:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 60,
+ "symbol": "Flow.WebSocketSubscribeResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 61,
+ "symbol": "Flow.WebSocketSubscribeResponse.action",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 62,
+ "symbol": "Flow.WebSocketSubscribeResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 67,
+ "symbol": "Flow.WebSocketSocketError.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 68,
+ "symbol": "Flow.WebSocketSocketError.message",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 73,
+ "symbol": "Flow.WebSocketTopicResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 74,
+ "symbol": "Flow.WebSocketTopicResponse.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 75,
+ "symbol": "Flow.WebSocketTopicResponse.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 76,
+ "symbol": "Flow.WebSocketTopicResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/P256FlowSigner.swift",
+ "line": 26,
+ "symbol": "P256FlowSigner.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/P256FlowSigner.swift",
+ "line": 32,
+ "symbol": "P256FlowSigner.init(key:address:keyIndex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/RLP.swift",
+ "line": 13,
+ "symbol": "RLP",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/RLP.swift",
+ "line": 14,
+ "symbol": "RLP.encode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ }
+ ],
+ "source_directory": "/Users/runner/work/flow-swift-macos/flow-swift-macos"
+}
\ No newline at end of file
diff --git a/docs/docsets/Flow.docset/Contents/Resources/docSet.dsidx b/docs/docsets/Flow.docset/Contents/Resources/docSet.dsidx
new file mode 100644
index 0000000..270ccb3
Binary files /dev/null and b/docs/docsets/Flow.docset/Contents/Resources/docSet.dsidx differ
diff --git a/docs/docsets/Flow.tgz b/docs/docsets/Flow.tgz
new file mode 100644
index 0000000..faf096f
Binary files /dev/null and b/docs/docsets/Flow.tgz differ
diff --git a/docs/img/carat.png b/docs/img/carat.png
new file mode 100755
index 0000000..29d2f7f
Binary files /dev/null and b/docs/img/carat.png differ
diff --git a/docs/img/dash.png b/docs/img/dash.png
new file mode 100755
index 0000000..6f694c7
Binary files /dev/null and b/docs/img/dash.png differ
diff --git a/docs/img/spinner.gif b/docs/img/spinner.gif
new file mode 100644
index 0000000..e3038d0
Binary files /dev/null and b/docs/img/spinner.gif differ
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 0000000..8e7635e
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,685 @@
+
+
+
+
Flow Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ # flow-swift (Swift 6 & Swift Testing Migration)
+
+This fork updates the original Outblock `flow-swift` SDK and tests for Swift 6, modern concurrency, and Swift Testing. It focuses on safety, test reliability, and compatibility with current Flow tooling and APIs.
+
+## What’s New
+
+### 1. Swift 6 Concurrency & Actors
+
+- Actor-based WebSocket center
+ - Introduced a WebSocket coordination actor that manages NIO-based subscriptions for transaction status streams.
+ - Uses `AsyncThrowingStream<Flow.WebSocketTopicResponse<Flow.WSTransactionResponse>, Error>.Continuation` per `Flow.ID` to bridge NIO callbacks into structured async streams.
+
+- Transaction status waiting APIs
+ - Added helpers like:
+ - `once(status: Flow.Transaction.Status, timeout: TimeInterval = 60) async throws -> Flow.TransactionResult` on `Flow.ID`.
+ - Internally, this uses `AsyncThrowingStream` and task groups to:
+ - Listen for WebSocket updates.
+ - Enforce timeouts.
+ - Cancel remaining work after a result is obtained.
+
+- Sendable coverage
+ - Marked core models as `Sendable` where correct, including:
+ - Transaction-related WebSocket response types.
+ - Value and argument container types used across tasks and actors.
+
+### 2. Swift Testing Migration
+
+All XCTest-based tests were migrated to the new Swift Testing APIs:
+
+- `@Suite` instead of `XCTestCase`.
+- `@Test("description")` instead of `func testXYZ()`.
+- `#expect(...)` assertions instead of `XCTAssert*`.
+
+Updated suites include (non-exhaustive):
+
+- `FlowAccessAPIOnTestnetTests`
+- `FlowOperationTests` (with legacy examples preserved but disabled)
+- `CadenceTargetTests`
+- `RLPTests`
+
+### 3. API & DSL Adjustments
+
+- Transaction builder DSL
+ - Transaction construction now uses a clearer builder style:
+ - `cadence { """ ... """ }`
+ - `proposer { Flow.TransactionProposalKey(...) }`
+ - `payer { Flow.Address(...) }`
+ - `authorizers { [...] }`
+ - `arguments { [Flow.Argument(...), ...] }`
+ - `gasLimit { 1000 }`
+ - Builders are compatible with Swift 6’s stricter closure isolation rules.
+
+- Flow.Argument & Cadence values
+ - `Flow.Argument` retains initializers that wrap Cadence values, while avoiding leaking internal representation types into the public API.
+ - Conversion helpers are available internally to map between Cadence values and arguments, but callers typically work directly with `Flow.Argument` and the DSL.
+
+- Cadence target tests
+ - `CadenceTargetTests` now uses an explicit enum-based target description without relying on reflection.
+ - Arguments are explicitly constructed per case, improving clarity and type safety.
+
+### 4. Access Control & Safety Tightening
+
+- Cadence model types and conversion utilities remain internal to the SDK, so they do not appear in the public API.
+- Helpers that depend on internal representation types are kept internal to avoid access-control and ABI issues.
+- Public surface area exposes stable, high-level types (e.g., `Flow.Argument`, `Flow.Address`, `Flow.Transaction`) instead of low-level Cadence internals.
+
+### 5. RLP & Transaction Encoding Tests
+
+- `RLPTests` were modernized for Swift 6:
+ - Fixed issues where mutating helpers were called on immutable values by introducing local mutable copies when necessary.
+ - Preserved all original RLP expectations, ensuring transaction encoding remains compatible with Flow nodes.
+
+## What Was Removed or Disabled
+
+- Legacy high-level transaction helpers on `Flow`
+ - Methods like `addContractToAccount`, `removeAccountKeyByIndex`, `addKeyToAccount`, `createAccount(...)`, `updateContractOfAccount`, `removeContractFromAccount`, and `verifyUserSignature(...)` are no longer exposed on the main `Flow` type.
+ - Tests that referenced these helpers have been converted into commented examples inside `FlowOperationTests`:
+ - They remain as documentation for how to implement these flows.
+ - They can be reintroduced or reimplemented using the new transaction builder DSL as needed.
+
+- Reflection-based test plumbing
+ - Reflection-based helper types previously used to derive arguments (e.g., via `Mirror`) are no longer used in public-facing tests.
+ - Tests now wire arguments explicitly for clarity and compatibility with Swift 6.
+
+## Installation
+
+### Requirements
+
+- Swift 6 toolchain (or the latest Swift that supports Swift Testing and stricter concurrency checks).
+- macOS with Xcode 16+ (or a matching Swift toolchain on another platform).
+- Network access to Flow testnet/mainnet for integration tests.
+
+### Using Swift Package Manager
+
+Add the package to `Package.swift`:
+
+```swift
+dependencies: [
+ .package(url: "https://github.com/<your-org>/flow-swift.git", branch: "main")
+]
+
+
+Then add Flow as a dependency to your target:
+.target(
+ name: "MyApp",
+ dependencies: [
+ .product(name: "Flow", package: "flow-swift")
+ ]
+)
+
+
+Update and build:
+swift package update
+swift build
+
+Testing
+
+This repository uses Swift Testing (@Suite, @Test, #expect) instead of XCTest.
+Run All Tests
+
+From the package root:
+swift test
+
+
+This will build and run all active test suites, including:
+
+
+FlowAccessAPIOnTestnetTests
+CadenceTargetTests
+RLPTests
+FlowOperationTests (only active tests; legacy examples remain commented out)
+
+Network-dependent Tests
+
+
+FlowAccessAPIOnTestnetTests exercises real Flow access nodes against testnet.
+- Ensure:
+
+
+- Correct access node configuration (HTTP endpoint via
createHTTPAccessAPI(chainID: .testnet)).
+- Stable network connectivity.
+
+
+
+If you need to avoid network tests (e.g., in CI):
+
+
+- Disable or tag specific tests/suites.
+- Or temporarily comment out the
@Test attributes for integration tests.
+
+Run a Single Suite
+
+If your toolchain supports filtering:
+swift test --filter FlowAccessAPIOnTestnetTests
+
+Notes for Contributors
+
+
+Concurrency
+
+
+- Prefer
actor for shared mutable state (e.g., WebSocket centers).
+- Only mark types as
Sendable when they are truly safe across tasks.
+- Avoid capturing non-Sendable types (such as test suites) in
@Sendable closures; capture only the values needed.
+
+Access control
+
+
+- Keep Cadence internals (
FValue-like types and converters) non-public.
+- When adding helpers on top of internal types, keep them internal unless you design a stable public abstraction.
+
+Tests as specification
+
+
+- Encoding tests (especially RLP) serve as a compatibility spec; do not change expected hex outputs unless you are intentionally changing encoding semantics and understand the implications for network compatibility.
+“`
+
+
+
+\
+
+
+
+
+
+
+
+
diff --git a/docs/js/jazzy.js b/docs/js/jazzy.js
new file mode 100755
index 0000000..1ac8699
--- /dev/null
+++ b/docs/js/jazzy.js
@@ -0,0 +1,74 @@
+// Jazzy - https://github.com/realm/jazzy
+// Copyright Realm Inc.
+// SPDX-License-Identifier: MIT
+
+window.jazzy = {'docset': false}
+if (typeof window.dash != 'undefined') {
+ document.documentElement.className += ' dash'
+ window.jazzy.docset = true
+}
+if (navigator.userAgent.match(/xcode/i)) {
+ document.documentElement.className += ' xcode'
+ window.jazzy.docset = true
+}
+
+function toggleItem($link, $content) {
+ var animationDuration = 300;
+ $link.toggleClass('token-open');
+ $content.slideToggle(animationDuration);
+}
+
+function itemLinkToContent($link) {
+ return $link.parent().parent().next();
+}
+
+// On doc load + hash-change, open any targeted item
+function openCurrentItemIfClosed() {
+ if (window.jazzy.docset) {
+ return;
+ }
+ var $link = $(`a[name="${location.hash.substring(1)}"]`).nextAll('.token');
+ $content = itemLinkToContent($link);
+ if ($content.is(':hidden')) {
+ toggleItem($link, $content);
+ }
+}
+
+$(openCurrentItemIfClosed);
+$(window).on('hashchange', openCurrentItemIfClosed);
+
+// On item link ('token') click, toggle its discussion
+$('.token').on('click', function(event) {
+ if (window.jazzy.docset) {
+ return;
+ }
+ var $link = $(this);
+ toggleItem($link, itemLinkToContent($link));
+
+ // Keeps the document from jumping to the hash.
+ var href = $link.attr('href');
+ if (history.pushState) {
+ history.pushState({}, '', href);
+ } else {
+ location.hash = href;
+ }
+ event.preventDefault();
+});
+
+// Clicks on links to the current, closed, item need to open the item
+$("a:not('.token')").on('click', function() {
+ if (location == this.href) {
+ openCurrentItemIfClosed();
+ }
+});
+
+// KaTeX rendering
+if ("katex" in window) {
+ $($('.math').each( (_, element) => {
+ katex.render(element.textContent, element, {
+ displayMode: $(element).hasClass('m-block'),
+ throwOnError: false,
+ trust: true
+ });
+ }))
+}
diff --git a/docs/js/jazzy.search.js b/docs/js/jazzy.search.js
new file mode 100644
index 0000000..359cdbb
--- /dev/null
+++ b/docs/js/jazzy.search.js
@@ -0,0 +1,74 @@
+// Jazzy - https://github.com/realm/jazzy
+// Copyright Realm Inc.
+// SPDX-License-Identifier: MIT
+
+$(function(){
+ var $typeahead = $('[data-typeahead]');
+ var $form = $typeahead.parents('form');
+ var searchURL = $form.attr('action');
+
+ function displayTemplate(result) {
+ return result.name;
+ }
+
+ function suggestionTemplate(result) {
+ var t = '
';
+ t += '' + result.name + '';
+ if (result.parent_name) {
+ t += '' + result.parent_name + '';
+ }
+ t += '
';
+ return t;
+ }
+
+ $typeahead.one('focus', function() {
+ $form.addClass('loading');
+
+ $.getJSON(searchURL).then(function(searchData) {
+ const searchIndex = lunr(function() {
+ this.ref('url');
+ this.field('name');
+ this.field('abstract');
+ for (const [url, doc] of Object.entries(searchData)) {
+ this.add({url: url, name: doc.name, abstract: doc.abstract});
+ }
+ });
+
+ $typeahead.typeahead(
+ {
+ highlight: true,
+ minLength: 3,
+ autoselect: true
+ },
+ {
+ limit: 10,
+ display: displayTemplate,
+ templates: { suggestion: suggestionTemplate },
+ source: function(query, sync) {
+ const lcSearch = query.toLowerCase();
+ const results = searchIndex.query(function(q) {
+ q.term(lcSearch, { boost: 100 });
+ q.term(lcSearch, {
+ boost: 10,
+ wildcard: lunr.Query.wildcard.TRAILING
+ });
+ }).map(function(result) {
+ var doc = searchData[result.ref];
+ doc.url = result.ref;
+ return doc;
+ });
+ sync(results);
+ }
+ }
+ );
+ $form.removeClass('loading');
+ $typeahead.trigger('focus');
+ });
+ });
+
+ var baseURL = searchURL.slice(0, -"search.json".length);
+
+ $typeahead.on('typeahead:select', function(e, result) {
+ window.location = baseURL + result.url;
+ });
+});
diff --git a/docs/js/jquery.min.js b/docs/js/jquery.min.js
new file mode 100644
index 0000000..7f37b5d
--- /dev/null
+++ b/docs/js/jquery.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0
+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 00){var c=e.utils.clone(r)||{};c.position=[a,l],c.index=s.length,s.push(new e.Token(i.slice(a,o),c))}a=o+1}}return s},e.tokenizer.separator=/[\s\-]+/,e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,r){r in this.registeredFunctions&&e.utils.warn("Overwriting existing registered function: "+r),t.label=r,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var r=t.label&&t.label in this.registeredFunctions;r||e.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",t)},e.Pipeline.load=function(t){var r=new e.Pipeline;return t.forEach(function(t){var i=e.Pipeline.registeredFunctions[t];if(!i)throw new Error("Cannot load unregistered function: "+t);r.add(i)}),r},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(t){e.Pipeline.warnIfFunctionNotRegistered(t),this._stack.push(t)},this)},e.Pipeline.prototype.after=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");i+=1,this._stack.splice(i,0,r)},e.Pipeline.prototype.before=function(t,r){e.Pipeline.warnIfFunctionNotRegistered(r);var i=this._stack.indexOf(t);if(i==-1)throw new Error("Cannot find existingFn");this._stack.splice(i,0,r)},e.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);t!=-1&&this._stack.splice(t,1)},e.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r1&&(se&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e?2*n:s>e?2*n:sa?l+=2:o==a&&(t+=r[u+1]*i[l+1],u+=2,l+=2);return t},e.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t0){var o,a=s.str.charAt(0);a in s.node.edges?o=s.node.edges[a]:(o=new e.TokenSet,s.node.edges[a]=o),1==s.str.length&&(o["final"]=!0),n.push({node:o,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(0!=s.editsRemaining){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new e.TokenSet;s.node.edges["*"]=u}if(0==s.str.length&&(u["final"]=!0),n.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&n.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),1==s.str.length&&(s.node["final"]=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new e.TokenSet;s.node.edges["*"]=l}1==s.str.length&&(l["final"]=!0),n.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var c,h=s.str.charAt(0),d=s.str.charAt(1);d in s.node.edges?c=s.node.edges[d]:(c=new e.TokenSet,s.node.edges[d]=c),1==s.str.length&&(c["final"]=!0),n.push({node:c,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var r=new e.TokenSet,i=r,n=0,s=t.length;n=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r["char"]]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},e.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},e.Index.prototype.search=function(t){return this.query(function(r){var i=new e.QueryParser(t,r);i.parse()})},e.Index.prototype.query=function(t){for(var r=new e.Query(this.fields),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},e.Builder.prototype.k1=function(e){this._k1=e},e.Builder.prototype.add=function(t,r){var i=t[this._ref],n=Object.keys(this._fields);this._documents[i]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,r;do t=this.next(),r=t.charCodeAt(0);while(r>47&&r<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var r=t.next();if(r==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(92!=r.charCodeAt(0)){if(":"==r)return e.QueryLexer.lexField;if("~"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if("^"==r)return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if("+"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if("-"==r&&1===t.width())return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(r.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}else t.escapeCharacter()}},e.QueryParser=function(t,r){this.lexer=new e.QueryLexer(t),this.query=r,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},e.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},e.QueryParser.parseClause=function(t){var r=t.peekLexeme();if(void 0!=r)switch(r.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(i+=" with value '"+r.str+"'"),new e.QueryParseError(i,r.start,r.end)}},e.QueryParser.parsePresence=function(t){var r=t.consumeLexeme();if(void 0!=r){switch(r.str){case"-":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case"+":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i="unrecognised presence operator'"+r.str+"'";throw new e.QueryParseError(i,r.start,r.end)}var n=t.peekLexeme();if(void 0==n){var i="expecting term or field, found nothing";throw new e.QueryParseError(i,r.start,r.end)}switch(n.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i="expecting term or field, found '"+n.type+"'";throw new e.QueryParseError(i,n.start,n.end)}}},e.QueryParser.parseField=function(t){var r=t.consumeLexeme();if(void 0!=r){if(t.query.allFields.indexOf(r.str)==-1){var i=t.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),n="unrecognised field '"+r.str+"', possible fields: "+i;throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.fields=[r.str];var s=t.peekLexeme();if(void 0==s){var n="expecting term, found nothing";throw new e.QueryParseError(n,r.start,r.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var n="expecting term, found '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var r=t.consumeLexeme();if(void 0!=r){t.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(void 0==i)return void t.nextClause();switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+i.type+"'";throw new e.QueryParseError(n,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="edit distance must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var r=t.consumeLexeme();if(void 0!=r){var i=parseInt(r.str,10);if(isNaN(i)){var n="boost must be numeric";throw new e.QueryParseError(n,r.start,r.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(void 0==s)return void t.nextClause();switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var n="Unexpected lexeme type '"+s.type+"'";throw new e.QueryParseError(n,s.start,s.end)}}},function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():e.lunr=t()}(this,function(){return e})}();
diff --git a/docs/js/typeahead.jquery.js b/docs/js/typeahead.jquery.js
new file mode 100644
index 0000000..bcb734b
--- /dev/null
+++ b/docs/js/typeahead.jquery.js
@@ -0,0 +1,1695 @@
+/*!
+ * typeahead.js 1.3.3
+ * https://github.com/corejavascript/typeahead.js
+ * Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
+ */
+
+
+(function(root, factory) {
+ if (typeof define === "function" && define.amd) {
+ define([ "jquery" ], function(a0) {
+ return factory(a0);
+ });
+ } else if (typeof module === "object" && module.exports) {
+ module.exports = factory(require("jquery"));
+ } else {
+ factory(root["jQuery"]);
+ }
+})(this, function($) {
+ var _ = function() {
+ "use strict";
+ return {
+ isMsie: function() {
+ return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false;
+ },
+ isBlankString: function(str) {
+ return !str || /^\s*$/.test(str);
+ },
+ escapeRegExChars: function(str) {
+ return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
+ },
+ isString: function(obj) {
+ return typeof obj === "string";
+ },
+ isNumber: function(obj) {
+ return typeof obj === "number";
+ },
+ isArray: $.isArray,
+ isFunction: $.isFunction,
+ isObject: $.isPlainObject,
+ isUndefined: function(obj) {
+ return typeof obj === "undefined";
+ },
+ isElement: function(obj) {
+ return !!(obj && obj.nodeType === 1);
+ },
+ isJQuery: function(obj) {
+ return obj instanceof $;
+ },
+ toStr: function toStr(s) {
+ return _.isUndefined(s) || s === null ? "" : s + "";
+ },
+ bind: $.proxy,
+ each: function(collection, cb) {
+ $.each(collection, reverseArgs);
+ function reverseArgs(index, value) {
+ return cb(value, index);
+ }
+ },
+ map: $.map,
+ filter: $.grep,
+ every: function(obj, test) {
+ var result = true;
+ if (!obj) {
+ return result;
+ }
+ $.each(obj, function(key, val) {
+ if (!(result = test.call(null, val, key, obj))) {
+ return false;
+ }
+ });
+ return !!result;
+ },
+ some: function(obj, test) {
+ var result = false;
+ if (!obj) {
+ return result;
+ }
+ $.each(obj, function(key, val) {
+ if (result = test.call(null, val, key, obj)) {
+ return false;
+ }
+ });
+ return !!result;
+ },
+ mixin: $.extend,
+ identity: function(x) {
+ return x;
+ },
+ clone: function(obj) {
+ return $.extend(true, {}, obj);
+ },
+ getIdGenerator: function() {
+ var counter = 0;
+ return function() {
+ return counter++;
+ };
+ },
+ templatify: function templatify(obj) {
+ return $.isFunction(obj) ? obj : template;
+ function template() {
+ return String(obj);
+ }
+ },
+ defer: function(fn) {
+ setTimeout(fn, 0);
+ },
+ debounce: function(func, wait, immediate) {
+ var timeout, result;
+ return function() {
+ var context = this, args = arguments, later, callNow;
+ later = function() {
+ timeout = null;
+ if (!immediate) {
+ result = func.apply(context, args);
+ }
+ };
+ callNow = immediate && !timeout;
+ clearTimeout(timeout);
+ timeout = setTimeout(later, wait);
+ if (callNow) {
+ result = func.apply(context, args);
+ }
+ return result;
+ };
+ },
+ throttle: function(func, wait) {
+ var context, args, timeout, result, previous, later;
+ previous = 0;
+ later = function() {
+ previous = new Date();
+ timeout = null;
+ result = func.apply(context, args);
+ };
+ return function() {
+ var now = new Date(), remaining = wait - (now - previous);
+ context = this;
+ args = arguments;
+ if (remaining <= 0) {
+ clearTimeout(timeout);
+ timeout = null;
+ previous = now;
+ result = func.apply(context, args);
+ } else if (!timeout) {
+ timeout = setTimeout(later, remaining);
+ }
+ return result;
+ };
+ },
+ stringify: function(val) {
+ return _.isString(val) ? val : JSON.stringify(val);
+ },
+ guid: function() {
+ function _p8(s) {
+ var p = (Math.random().toString(16) + "000000000").substr(2, 8);
+ return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p;
+ }
+ return "tt-" + _p8() + _p8(true) + _p8(true) + _p8();
+ },
+ noop: function() {}
+ };
+ }();
+ var WWW = function() {
+ "use strict";
+ var defaultClassNames = {
+ wrapper: "twitter-typeahead",
+ input: "tt-input",
+ hint: "tt-hint",
+ menu: "tt-menu",
+ dataset: "tt-dataset",
+ suggestion: "tt-suggestion",
+ selectable: "tt-selectable",
+ empty: "tt-empty",
+ open: "tt-open",
+ cursor: "tt-cursor",
+ highlight: "tt-highlight"
+ };
+ return build;
+ function build(o) {
+ var www, classes;
+ classes = _.mixin({}, defaultClassNames, o);
+ www = {
+ css: buildCss(),
+ classes: classes,
+ html: buildHtml(classes),
+ selectors: buildSelectors(classes)
+ };
+ return {
+ css: www.css,
+ html: www.html,
+ classes: www.classes,
+ selectors: www.selectors,
+ mixin: function(o) {
+ _.mixin(o, www);
+ }
+ };
+ }
+ function buildHtml(c) {
+ return {
+ wrapper: '',
+ menu: ''
+ };
+ }
+ function buildSelectors(classes) {
+ var selectors = {};
+ _.each(classes, function(v, k) {
+ selectors[k] = "." + v;
+ });
+ return selectors;
+ }
+ function buildCss() {
+ var css = {
+ wrapper: {
+ position: "relative",
+ display: "inline-block"
+ },
+ hint: {
+ position: "absolute",
+ top: "0",
+ left: "0",
+ borderColor: "transparent",
+ boxShadow: "none",
+ opacity: "1"
+ },
+ input: {
+ position: "relative",
+ verticalAlign: "top",
+ backgroundColor: "transparent"
+ },
+ inputWithNoHint: {
+ position: "relative",
+ verticalAlign: "top"
+ },
+ menu: {
+ position: "absolute",
+ top: "100%",
+ left: "0",
+ zIndex: "100",
+ display: "none"
+ },
+ ltr: {
+ left: "0",
+ right: "auto"
+ },
+ rtl: {
+ left: "auto",
+ right: " 0"
+ }
+ };
+ if (_.isMsie()) {
+ _.mixin(css.input, {
+ backgroundImage: "url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)"
+ });
+ }
+ return css;
+ }
+ }();
+ var EventBus = function() {
+ "use strict";
+ var namespace, deprecationMap;
+ namespace = "typeahead:";
+ deprecationMap = {
+ render: "rendered",
+ cursorchange: "cursorchanged",
+ select: "selected",
+ autocomplete: "autocompleted"
+ };
+ function EventBus(o) {
+ if (!o || !o.el) {
+ $.error("EventBus initialized without el");
+ }
+ this.$el = $(o.el);
+ }
+ _.mixin(EventBus.prototype, {
+ _trigger: function(type, args) {
+ var $e = $.Event(namespace + type);
+ this.$el.trigger.call(this.$el, $e, args || []);
+ return $e;
+ },
+ before: function(type) {
+ var args, $e;
+ args = [].slice.call(arguments, 1);
+ $e = this._trigger("before" + type, args);
+ return $e.isDefaultPrevented();
+ },
+ trigger: function(type) {
+ var deprecatedType;
+ this._trigger(type, [].slice.call(arguments, 1));
+ if (deprecatedType = deprecationMap[type]) {
+ this._trigger(deprecatedType, [].slice.call(arguments, 1));
+ }
+ }
+ });
+ return EventBus;
+ }();
+ var EventEmitter = function() {
+ "use strict";
+ var splitter = /\s+/, nextTick = getNextTick();
+ return {
+ onSync: onSync,
+ onAsync: onAsync,
+ off: off,
+ trigger: trigger
+ };
+ function on(method, types, cb, context) {
+ var type;
+ if (!cb) {
+ return this;
+ }
+ types = types.split(splitter);
+ cb = context ? bindContext(cb, context) : cb;
+ this._callbacks = this._callbacks || {};
+ while (type = types.shift()) {
+ this._callbacks[type] = this._callbacks[type] || {
+ sync: [],
+ async: []
+ };
+ this._callbacks[type][method].push(cb);
+ }
+ return this;
+ }
+ function onAsync(types, cb, context) {
+ return on.call(this, "async", types, cb, context);
+ }
+ function onSync(types, cb, context) {
+ return on.call(this, "sync", types, cb, context);
+ }
+ function off(types) {
+ var type;
+ if (!this._callbacks) {
+ return this;
+ }
+ types = types.split(splitter);
+ while (type = types.shift()) {
+ delete this._callbacks[type];
+ }
+ return this;
+ }
+ function trigger(types) {
+ var type, callbacks, args, syncFlush, asyncFlush;
+ if (!this._callbacks) {
+ return this;
+ }
+ types = types.split(splitter);
+ args = [].slice.call(arguments, 1);
+ while ((type = types.shift()) && (callbacks = this._callbacks[type])) {
+ syncFlush = getFlush(callbacks.sync, this, [ type ].concat(args));
+ asyncFlush = getFlush(callbacks.async, this, [ type ].concat(args));
+ syncFlush() && nextTick(asyncFlush);
+ }
+ return this;
+ }
+ function getFlush(callbacks, context, args) {
+ return flush;
+ function flush() {
+ var cancelled;
+ for (var i = 0, len = callbacks.length; !cancelled && i < len; i += 1) {
+ cancelled = callbacks[i].apply(context, args) === false;
+ }
+ return !cancelled;
+ }
+ }
+ function getNextTick() {
+ var nextTickFn;
+ if (window.setImmediate) {
+ nextTickFn = function nextTickSetImmediate(fn) {
+ setImmediate(function() {
+ fn();
+ });
+ };
+ } else {
+ nextTickFn = function nextTickSetTimeout(fn) {
+ setTimeout(function() {
+ fn();
+ }, 0);
+ };
+ }
+ return nextTickFn;
+ }
+ function bindContext(fn, context) {
+ return fn.bind ? fn.bind(context) : function() {
+ fn.apply(context, [].slice.call(arguments, 0));
+ };
+ }
+ }();
+ var highlight = function(doc) {
+ "use strict";
+ var defaults = {
+ node: null,
+ pattern: null,
+ tagName: "strong",
+ className: null,
+ wordsOnly: false,
+ caseSensitive: false,
+ diacriticInsensitive: false
+ };
+ var accented = {
+ A: "[AaªÀ-Åà-åĀ-ąǍǎȀ-ȃȦȧᴬᵃḀḁẚẠ-ảₐ℀℁℻⒜Ⓐⓐ㍱-㍴㎀-㎄㎈㎉㎩-㎯㏂㏊㏟㏿Aa]",
+ B: "[BbᴮᵇḂ-ḇℬ⒝Ⓑⓑ㍴㎅-㎇㏃㏈㏔㏝Bb]",
+ C: "[CcÇçĆ-čᶜ℀ℂ℃℅℆ℭⅭⅽ⒞Ⓒⓒ㍶㎈㎉㎝㎠㎤㏄-㏇Cc]",
+ D: "[DdĎďDŽ-džDZ-dzᴰᵈḊ-ḓⅅⅆⅮⅾ⒟Ⓓⓓ㋏㍲㍷-㍹㎗㎭-㎯㏅㏈Dd]",
+ E: "[EeÈ-Ëè-ëĒ-ěȄ-ȇȨȩᴱᵉḘ-ḛẸ-ẽₑ℡ℯℰⅇ⒠Ⓔⓔ㉐㋍㋎Ee]",
+ F: "[FfᶠḞḟ℉ℱ℻⒡Ⓕⓕ㎊-㎌㎙ff-fflFf]",
+ G: "[GgĜ-ģǦǧǴǵᴳᵍḠḡℊ⒢Ⓖⓖ㋌㋍㎇㎍-㎏㎓㎬㏆㏉㏒㏿Gg]",
+ H: "[HhĤĥȞȟʰᴴḢ-ḫẖℋ-ℎ⒣Ⓗⓗ㋌㍱㎐-㎔㏊㏋㏗Hh]",
+ I: "[IiÌ-Ïì-ïĨ-İIJijǏǐȈ-ȋᴵᵢḬḭỈ-ịⁱℐℑℹⅈⅠ-ⅣⅥ-ⅨⅪⅫⅰ-ⅳⅵ-ⅸⅺⅻ⒤Ⓘⓘ㍺㏌㏕fiffiIi]",
+ J: "[JjIJ-ĵLJ-njǰʲᴶⅉ⒥ⒿⓙⱼJj]",
+ K: "[KkĶķǨǩᴷᵏḰ-ḵK⒦Ⓚⓚ㎄㎅㎉㎏㎑㎘㎞㎢㎦㎪㎸㎾㏀㏆㏍-㏏Kk]",
+ L: "[LlĹ-ŀLJ-ljˡᴸḶḷḺ-ḽℒℓ℡Ⅼⅼ⒧Ⓛⓛ㋏㎈㎉㏐-㏓㏕㏖㏿flfflLl]",
+ M: "[MmᴹᵐḾ-ṃ℠™ℳⅯⅿ⒨Ⓜⓜ㍷-㍹㎃㎆㎎㎒㎖㎙-㎨㎫㎳㎷㎹㎽㎿㏁㏂㏎㏐㏔-㏖㏘㏙㏞㏟Mm]",
+ N: "[NnÑñŃ-ʼnNJ-njǸǹᴺṄ-ṋⁿℕ№⒩Ⓝⓝ㎁㎋㎚㎱㎵㎻㏌㏑Nn]",
+ O: "[OoºÒ-Öò-öŌ-őƠơǑǒǪǫȌ-ȏȮȯᴼᵒỌ-ỏₒ℅№ℴ⒪Ⓞⓞ㍵㏇㏒㏖Oo]",
+ P: "[PpᴾᵖṔ-ṗℙ⒫Ⓟⓟ㉐㍱㍶㎀㎊㎩-㎬㎰㎴㎺㏋㏗-㏚Pp]",
+ Q: "[Qqℚ⒬Ⓠⓠ㏃Qq]",
+ R: "[RrŔ-řȐ-ȓʳᴿᵣṘ-ṛṞṟ₨ℛ-ℝ⒭Ⓡⓡ㋍㍴㎭-㎯㏚㏛Rr]",
+ S: "[SsŚ-šſȘșˢṠ-ṣ₨℁℠⒮Ⓢⓢ㎧㎨㎮-㎳㏛㏜stSs]",
+ T: "[TtŢ-ťȚțᵀᵗṪ-ṱẗ℡™⒯Ⓣⓣ㉐㋏㎔㏏ſtstTt]",
+ U: "[UuÙ-Üù-üŨ-ųƯưǓǔȔ-ȗᵁᵘᵤṲ-ṷỤ-ủ℆⒰Ⓤⓤ㍳㍺Uu]",
+ V: "[VvᵛᵥṼ-ṿⅣ-Ⅷⅳ-ⅷ⒱Ⓥⓥⱽ㋎㍵㎴-㎹㏜㏞Vv]",
+ W: "[WwŴŵʷᵂẀ-ẉẘ⒲Ⓦⓦ㎺-㎿㏝Ww]",
+ X: "[XxˣẊ-ẍₓ℻Ⅸ-Ⅻⅸ-ⅻ⒳Ⓧⓧ㏓Xx]",
+ Y: "[YyÝýÿŶ-ŸȲȳʸẎẏẙỲ-ỹ⒴Ⓨⓨ㏉Yy]",
+ Z: "[ZzŹ-žDZ-dzᶻẐ-ẕℤℨ⒵Ⓩⓩ㎐-㎔Zz]"
+ };
+ return function hightlight(o) {
+ var regex;
+ o = _.mixin({}, defaults, o);
+ if (!o.node || !o.pattern) {
+ return;
+ }
+ o.pattern = _.isArray(o.pattern) ? o.pattern : [ o.pattern ];
+ regex = getRegex(o.pattern, o.caseSensitive, o.wordsOnly, o.diacriticInsensitive);
+ traverse(o.node, hightlightTextNode);
+ function hightlightTextNode(textNode) {
+ var match, patternNode, wrapperNode;
+ if (match = regex.exec(textNode.data)) {
+ wrapperNode = doc.createElement(o.tagName);
+ o.className && (wrapperNode.className = o.className);
+ patternNode = textNode.splitText(match.index);
+ patternNode.splitText(match[0].length);
+ wrapperNode.appendChild(patternNode.cloneNode(true));
+ textNode.parentNode.replaceChild(wrapperNode, patternNode);
+ }
+ return !!match;
+ }
+ function traverse(el, hightlightTextNode) {
+ var childNode, TEXT_NODE_TYPE = 3;
+ for (var i = 0; i < el.childNodes.length; i++) {
+ childNode = el.childNodes[i];
+ if (childNode.nodeType === TEXT_NODE_TYPE) {
+ i += hightlightTextNode(childNode) ? 1 : 0;
+ } else {
+ traverse(childNode, hightlightTextNode);
+ }
+ }
+ }
+ };
+ function accent_replacer(chr) {
+ return accented[chr.toUpperCase()] || chr;
+ }
+ function getRegex(patterns, caseSensitive, wordsOnly, diacriticInsensitive) {
+ var escapedPatterns = [], regexStr;
+ for (var i = 0, len = patterns.length; i < len; i++) {
+ var escapedWord = _.escapeRegExChars(patterns[i]);
+ if (diacriticInsensitive) {
+ escapedWord = escapedWord.replace(/\S/g, accent_replacer);
+ }
+ escapedPatterns.push(escapedWord);
+ }
+ regexStr = wordsOnly ? "\\b(" + escapedPatterns.join("|") + ")\\b" : "(" + escapedPatterns.join("|") + ")";
+ return caseSensitive ? new RegExp(regexStr) : new RegExp(regexStr, "i");
+ }
+ }(window.document);
+ var Input = function() {
+ "use strict";
+ var specialKeyCodeMap;
+ specialKeyCodeMap = {
+ 9: "tab",
+ 27: "esc",
+ 37: "left",
+ 39: "right",
+ 13: "enter",
+ 38: "up",
+ 40: "down"
+ };
+ function Input(o, www) {
+ var id;
+ o = o || {};
+ if (!o.input) {
+ $.error("input is missing");
+ }
+ www.mixin(this);
+ this.$hint = $(o.hint);
+ this.$input = $(o.input);
+ this.$menu = $(o.menu);
+ id = this.$input.attr("id") || _.guid();
+ this.$menu.attr("id", id + "_listbox");
+ this.$hint.attr({
+ "aria-hidden": true
+ });
+ this.$input.attr({
+ "aria-owns": id + "_listbox",
+ "aria-controls": id + "_listbox",
+ role: "combobox",
+ "aria-autocomplete": "list",
+ "aria-expanded": false
+ });
+ this.query = this.$input.val();
+ this.queryWhenFocused = this.hasFocus() ? this.query : null;
+ this.$overflowHelper = buildOverflowHelper(this.$input);
+ this._checkLanguageDirection();
+ if (this.$hint.length === 0) {
+ this.setHint = this.getHint = this.clearHint = this.clearHintIfInvalid = _.noop;
+ }
+ this.onSync("cursorchange", this._updateDescendent);
+ }
+ Input.normalizeQuery = function(str) {
+ return _.toStr(str).replace(/^\s*/g, "").replace(/\s{2,}/g, " ");
+ };
+ _.mixin(Input.prototype, EventEmitter, {
+ _onBlur: function onBlur() {
+ this.resetInputValue();
+ this.trigger("blurred");
+ },
+ _onFocus: function onFocus() {
+ this.queryWhenFocused = this.query;
+ this.trigger("focused");
+ },
+ _onKeydown: function onKeydown($e) {
+ var keyName = specialKeyCodeMap[$e.which || $e.keyCode];
+ this._managePreventDefault(keyName, $e);
+ if (keyName && this._shouldTrigger(keyName, $e)) {
+ this.trigger(keyName + "Keyed", $e);
+ }
+ },
+ _onInput: function onInput() {
+ this._setQuery(this.getInputValue());
+ this.clearHintIfInvalid();
+ this._checkLanguageDirection();
+ },
+ _managePreventDefault: function managePreventDefault(keyName, $e) {
+ var preventDefault;
+ switch (keyName) {
+ case "up":
+ case "down":
+ preventDefault = !withModifier($e);
+ break;
+
+ default:
+ preventDefault = false;
+ }
+ preventDefault && $e.preventDefault();
+ },
+ _shouldTrigger: function shouldTrigger(keyName, $e) {
+ var trigger;
+ switch (keyName) {
+ case "tab":
+ trigger = !withModifier($e);
+ break;
+
+ default:
+ trigger = true;
+ }
+ return trigger;
+ },
+ _checkLanguageDirection: function checkLanguageDirection() {
+ var dir = (this.$input.css("direction") || "ltr").toLowerCase();
+ if (this.dir !== dir) {
+ this.dir = dir;
+ this.$hint.attr("dir", dir);
+ this.trigger("langDirChanged", dir);
+ }
+ },
+ _setQuery: function setQuery(val, silent) {
+ var areEquivalent, hasDifferentWhitespace;
+ areEquivalent = areQueriesEquivalent(val, this.query);
+ hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false;
+ this.query = val;
+ if (!silent && !areEquivalent) {
+ this.trigger("queryChanged", this.query);
+ } else if (!silent && hasDifferentWhitespace) {
+ this.trigger("whitespaceChanged", this.query);
+ }
+ },
+ _updateDescendent: function updateDescendent(event, id) {
+ this.$input.attr("aria-activedescendant", id);
+ },
+ bind: function() {
+ var that = this, onBlur, onFocus, onKeydown, onInput;
+ onBlur = _.bind(this._onBlur, this);
+ onFocus = _.bind(this._onFocus, this);
+ onKeydown = _.bind(this._onKeydown, this);
+ onInput = _.bind(this._onInput, this);
+ this.$input.on("blur.tt", onBlur).on("focus.tt", onFocus).on("keydown.tt", onKeydown);
+ if (!_.isMsie() || _.isMsie() > 9) {
+ this.$input.on("input.tt", onInput);
+ } else {
+ this.$input.on("keydown.tt keypress.tt cut.tt paste.tt", function($e) {
+ if (specialKeyCodeMap[$e.which || $e.keyCode]) {
+ return;
+ }
+ _.defer(_.bind(that._onInput, that, $e));
+ });
+ }
+ return this;
+ },
+ focus: function focus() {
+ this.$input.focus();
+ },
+ blur: function blur() {
+ this.$input.blur();
+ },
+ getLangDir: function getLangDir() {
+ return this.dir;
+ },
+ getQuery: function getQuery() {
+ return this.query || "";
+ },
+ setQuery: function setQuery(val, silent) {
+ this.setInputValue(val);
+ this._setQuery(val, silent);
+ },
+ hasQueryChangedSinceLastFocus: function hasQueryChangedSinceLastFocus() {
+ return this.query !== this.queryWhenFocused;
+ },
+ getInputValue: function getInputValue() {
+ return this.$input.val();
+ },
+ setInputValue: function setInputValue(value) {
+ this.$input.val(value);
+ this.clearHintIfInvalid();
+ this._checkLanguageDirection();
+ },
+ resetInputValue: function resetInputValue() {
+ this.setInputValue(this.query);
+ },
+ getHint: function getHint() {
+ return this.$hint.val();
+ },
+ setHint: function setHint(value) {
+ this.$hint.val(value);
+ },
+ clearHint: function clearHint() {
+ this.setHint("");
+ },
+ clearHintIfInvalid: function clearHintIfInvalid() {
+ var val, hint, valIsPrefixOfHint, isValid;
+ val = this.getInputValue();
+ hint = this.getHint();
+ valIsPrefixOfHint = val !== hint && hint.indexOf(val) === 0;
+ isValid = val !== "" && valIsPrefixOfHint && !this.hasOverflow();
+ !isValid && this.clearHint();
+ },
+ hasFocus: function hasFocus() {
+ return this.$input.is(":focus");
+ },
+ hasOverflow: function hasOverflow() {
+ var constraint = this.$input.width() - 2;
+ this.$overflowHelper.text(this.getInputValue());
+ return this.$overflowHelper.width() >= constraint;
+ },
+ isCursorAtEnd: function() {
+ var valueLength, selectionStart, range;
+ valueLength = this.$input.val().length;
+ selectionStart = this.$input[0].selectionStart;
+ if (_.isNumber(selectionStart)) {
+ return selectionStart === valueLength;
+ } else if (document.selection) {
+ range = document.selection.createRange();
+ range.moveStart("character", -valueLength);
+ return valueLength === range.text.length;
+ }
+ return true;
+ },
+ destroy: function destroy() {
+ this.$hint.off(".tt");
+ this.$input.off(".tt");
+ this.$overflowHelper.remove();
+ this.$hint = this.$input = this.$overflowHelper = $("");
+ },
+ setAriaExpanded: function setAriaExpanded(value) {
+ this.$input.attr("aria-expanded", value);
+ }
+ });
+ return Input;
+ function buildOverflowHelper($input) {
+ return $('
').css({
+ position: "absolute",
+ visibility: "hidden",
+ whiteSpace: "pre",
+ fontFamily: $input.css("font-family"),
+ fontSize: $input.css("font-size"),
+ fontStyle: $input.css("font-style"),
+ fontVariant: $input.css("font-variant"),
+ fontWeight: $input.css("font-weight"),
+ wordSpacing: $input.css("word-spacing"),
+ letterSpacing: $input.css("letter-spacing"),
+ textIndent: $input.css("text-indent"),
+ textRendering: $input.css("text-rendering"),
+ textTransform: $input.css("text-transform")
+ }).insertAfter($input);
+ }
+ function areQueriesEquivalent(a, b) {
+ return Input.normalizeQuery(a) === Input.normalizeQuery(b);
+ }
+ function withModifier($e) {
+ return $e.altKey || $e.ctrlKey || $e.metaKey || $e.shiftKey;
+ }
+ }();
+ var Dataset = function() {
+ "use strict";
+ var keys, nameGenerator;
+ keys = {
+ dataset: "tt-selectable-dataset",
+ val: "tt-selectable-display",
+ obj: "tt-selectable-object"
+ };
+ nameGenerator = _.getIdGenerator();
+ function Dataset(o, www) {
+ o = o || {};
+ o.templates = o.templates || {};
+ o.templates.notFound = o.templates.notFound || o.templates.empty;
+ if (!o.source) {
+ $.error("missing source");
+ }
+ if (!o.node) {
+ $.error("missing node");
+ }
+ if (o.name && !isValidName(o.name)) {
+ $.error("invalid dataset name: " + o.name);
+ }
+ www.mixin(this);
+ this.highlight = !!o.highlight;
+ this.name = _.toStr(o.name || nameGenerator());
+ this.limit = o.limit || 5;
+ this.displayFn = getDisplayFn(o.display || o.displayKey);
+ this.templates = getTemplates(o.templates, this.displayFn);
+ this.source = o.source.__ttAdapter ? o.source.__ttAdapter() : o.source;
+ this.async = _.isUndefined(o.async) ? this.source.length > 2 : !!o.async;
+ this._resetLastSuggestion();
+ this.$el = $(o.node).attr("role", "presentation").addClass(this.classes.dataset).addClass(this.classes.dataset + "-" + this.name);
+ }
+ Dataset.extractData = function extractData(el) {
+ var $el = $(el);
+ if ($el.data(keys.obj)) {
+ return {
+ dataset: $el.data(keys.dataset) || "",
+ val: $el.data(keys.val) || "",
+ obj: $el.data(keys.obj) || null
+ };
+ }
+ return null;
+ };
+ _.mixin(Dataset.prototype, EventEmitter, {
+ _overwrite: function overwrite(query, suggestions) {
+ suggestions = suggestions || [];
+ if (suggestions.length) {
+ this._renderSuggestions(query, suggestions);
+ } else if (this.async && this.templates.pending) {
+ this._renderPending(query);
+ } else if (!this.async && this.templates.notFound) {
+ this._renderNotFound(query);
+ } else {
+ this._empty();
+ }
+ this.trigger("rendered", suggestions, false, this.name);
+ },
+ _append: function append(query, suggestions) {
+ suggestions = suggestions || [];
+ if (suggestions.length && this.$lastSuggestion.length) {
+ this._appendSuggestions(query, suggestions);
+ } else if (suggestions.length) {
+ this._renderSuggestions(query, suggestions);
+ } else if (!this.$lastSuggestion.length && this.templates.notFound) {
+ this._renderNotFound(query);
+ }
+ this.trigger("rendered", suggestions, true, this.name);
+ },
+ _renderSuggestions: function renderSuggestions(query, suggestions) {
+ var $fragment;
+ $fragment = this._getSuggestionsFragment(query, suggestions);
+ this.$lastSuggestion = $fragment.children().last();
+ this.$el.html($fragment).prepend(this._getHeader(query, suggestions)).append(this._getFooter(query, suggestions));
+ },
+ _appendSuggestions: function appendSuggestions(query, suggestions) {
+ var $fragment, $lastSuggestion;
+ $fragment = this._getSuggestionsFragment(query, suggestions);
+ $lastSuggestion = $fragment.children().last();
+ this.$lastSuggestion.after($fragment);
+ this.$lastSuggestion = $lastSuggestion;
+ },
+ _renderPending: function renderPending(query) {
+ var template = this.templates.pending;
+ this._resetLastSuggestion();
+ template && this.$el.html(template({
+ query: query,
+ dataset: this.name
+ }));
+ },
+ _renderNotFound: function renderNotFound(query) {
+ var template = this.templates.notFound;
+ this._resetLastSuggestion();
+ template && this.$el.html(template({
+ query: query,
+ dataset: this.name
+ }));
+ },
+ _empty: function empty() {
+ this.$el.empty();
+ this._resetLastSuggestion();
+ },
+ _getSuggestionsFragment: function getSuggestionsFragment(query, suggestions) {
+ var that = this, fragment;
+ fragment = document.createDocumentFragment();
+ _.each(suggestions, function getSuggestionNode(suggestion) {
+ var $el, context;
+ context = that._injectQuery(query, suggestion);
+ $el = $(that.templates.suggestion(context)).data(keys.dataset, that.name).data(keys.obj, suggestion).data(keys.val, that.displayFn(suggestion)).addClass(that.classes.suggestion + " " + that.classes.selectable);
+ fragment.appendChild($el[0]);
+ });
+ this.highlight && highlight({
+ className: this.classes.highlight,
+ node: fragment,
+ pattern: query
+ });
+ return $(fragment);
+ },
+ _getFooter: function getFooter(query, suggestions) {
+ return this.templates.footer ? this.templates.footer({
+ query: query,
+ suggestions: suggestions,
+ dataset: this.name
+ }) : null;
+ },
+ _getHeader: function getHeader(query, suggestions) {
+ return this.templates.header ? this.templates.header({
+ query: query,
+ suggestions: suggestions,
+ dataset: this.name
+ }) : null;
+ },
+ _resetLastSuggestion: function resetLastSuggestion() {
+ this.$lastSuggestion = $();
+ },
+ _injectQuery: function injectQuery(query, obj) {
+ return _.isObject(obj) ? _.mixin({
+ _query: query
+ }, obj) : obj;
+ },
+ update: function update(query) {
+ var that = this, canceled = false, syncCalled = false, rendered = 0;
+ this.cancel();
+ this.cancel = function cancel() {
+ canceled = true;
+ that.cancel = $.noop;
+ that.async && that.trigger("asyncCanceled", query, that.name);
+ };
+ this.source(query, sync, async);
+ !syncCalled && sync([]);
+ function sync(suggestions) {
+ if (syncCalled) {
+ return;
+ }
+ syncCalled = true;
+ suggestions = (suggestions || []).slice(0, that.limit);
+ rendered = suggestions.length;
+ that._overwrite(query, suggestions);
+ if (rendered < that.limit && that.async) {
+ that.trigger("asyncRequested", query, that.name);
+ }
+ }
+ function async(suggestions) {
+ suggestions = suggestions || [];
+ if (!canceled && rendered < that.limit) {
+ that.cancel = $.noop;
+ var idx = Math.abs(rendered - that.limit);
+ rendered += idx;
+ that._append(query, suggestions.slice(0, idx));
+ that.async && that.trigger("asyncReceived", query, that.name);
+ }
+ }
+ },
+ cancel: $.noop,
+ clear: function clear() {
+ this._empty();
+ this.cancel();
+ this.trigger("cleared");
+ },
+ isEmpty: function isEmpty() {
+ return this.$el.is(":empty");
+ },
+ destroy: function destroy() {
+ this.$el = $("
");
+ }
+ });
+ return Dataset;
+ function getDisplayFn(display) {
+ display = display || _.stringify;
+ return _.isFunction(display) ? display : displayFn;
+ function displayFn(obj) {
+ return obj[display];
+ }
+ }
+ function getTemplates(templates, displayFn) {
+ return {
+ notFound: templates.notFound && _.templatify(templates.notFound),
+ pending: templates.pending && _.templatify(templates.pending),
+ header: templates.header && _.templatify(templates.header),
+ footer: templates.footer && _.templatify(templates.footer),
+ suggestion: templates.suggestion ? userSuggestionTemplate : suggestionTemplate
+ };
+ function userSuggestionTemplate(context) {
+ var template = templates.suggestion;
+ return $(template(context)).attr("id", _.guid());
+ }
+ function suggestionTemplate(context) {
+ return $('
').attr("id", _.guid()).text(displayFn(context));
+ }
+ }
+ function isValidName(str) {
+ return /^[_a-zA-Z0-9-]+$/.test(str);
+ }
+ }();
+ var Menu = function() {
+ "use strict";
+ function Menu(o, www) {
+ var that = this;
+ o = o || {};
+ if (!o.node) {
+ $.error("node is required");
+ }
+ www.mixin(this);
+ this.$node = $(o.node);
+ this.query = null;
+ this.datasets = _.map(o.datasets, initializeDataset);
+ function initializeDataset(oDataset) {
+ var node = that.$node.find(oDataset.node).first();
+ oDataset.node = node.length ? node : $("
").appendTo(that.$node);
+ return new Dataset(oDataset, www);
+ }
+ }
+ _.mixin(Menu.prototype, EventEmitter, {
+ _onSelectableClick: function onSelectableClick($e) {
+ this.trigger("selectableClicked", $($e.currentTarget));
+ },
+ _onRendered: function onRendered(type, dataset, suggestions, async) {
+ this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty());
+ this.trigger("datasetRendered", dataset, suggestions, async);
+ },
+ _onCleared: function onCleared() {
+ this.$node.toggleClass(this.classes.empty, this._allDatasetsEmpty());
+ this.trigger("datasetCleared");
+ },
+ _propagate: function propagate() {
+ this.trigger.apply(this, arguments);
+ },
+ _allDatasetsEmpty: function allDatasetsEmpty() {
+ return _.every(this.datasets, _.bind(function isDatasetEmpty(dataset) {
+ var isEmpty = dataset.isEmpty();
+ this.$node.attr("aria-expanded", !isEmpty);
+ return isEmpty;
+ }, this));
+ },
+ _getSelectables: function getSelectables() {
+ return this.$node.find(this.selectors.selectable);
+ },
+ _removeCursor: function _removeCursor() {
+ var $selectable = this.getActiveSelectable();
+ $selectable && $selectable.removeClass(this.classes.cursor);
+ },
+ _ensureVisible: function ensureVisible($el) {
+ var elTop, elBottom, nodeScrollTop, nodeHeight;
+ elTop = $el.position().top;
+ elBottom = elTop + $el.outerHeight(true);
+ nodeScrollTop = this.$node.scrollTop();
+ nodeHeight = this.$node.height() + parseInt(this.$node.css("paddingTop"), 10) + parseInt(this.$node.css("paddingBottom"), 10);
+ if (elTop < 0) {
+ this.$node.scrollTop(nodeScrollTop + elTop);
+ } else if (nodeHeight < elBottom) {
+ this.$node.scrollTop(nodeScrollTop + (elBottom - nodeHeight));
+ }
+ },
+ bind: function() {
+ var that = this, onSelectableClick;
+ onSelectableClick = _.bind(this._onSelectableClick, this);
+ this.$node.on("click.tt", this.selectors.selectable, onSelectableClick);
+ this.$node.on("mouseover", this.selectors.selectable, function() {
+ that.setCursor($(this));
+ });
+ this.$node.on("mouseleave", function() {
+ that._removeCursor();
+ });
+ _.each(this.datasets, function(dataset) {
+ dataset.onSync("asyncRequested", that._propagate, that).onSync("asyncCanceled", that._propagate, that).onSync("asyncReceived", that._propagate, that).onSync("rendered", that._onRendered, that).onSync("cleared", that._onCleared, that);
+ });
+ return this;
+ },
+ isOpen: function isOpen() {
+ return this.$node.hasClass(this.classes.open);
+ },
+ open: function open() {
+ this.$node.scrollTop(0);
+ this.$node.addClass(this.classes.open);
+ },
+ close: function close() {
+ this.$node.attr("aria-expanded", false);
+ this.$node.removeClass(this.classes.open);
+ this._removeCursor();
+ },
+ setLanguageDirection: function setLanguageDirection(dir) {
+ this.$node.attr("dir", dir);
+ },
+ selectableRelativeToCursor: function selectableRelativeToCursor(delta) {
+ var $selectables, $oldCursor, oldIndex, newIndex;
+ $oldCursor = this.getActiveSelectable();
+ $selectables = this._getSelectables();
+ oldIndex = $oldCursor ? $selectables.index($oldCursor) : -1;
+ newIndex = oldIndex + delta;
+ newIndex = (newIndex + 1) % ($selectables.length + 1) - 1;
+ newIndex = newIndex < -1 ? $selectables.length - 1 : newIndex;
+ return newIndex === -1 ? null : $selectables.eq(newIndex);
+ },
+ setCursor: function setCursor($selectable) {
+ this._removeCursor();
+ if ($selectable = $selectable && $selectable.first()) {
+ $selectable.addClass(this.classes.cursor);
+ this._ensureVisible($selectable);
+ }
+ },
+ getSelectableData: function getSelectableData($el) {
+ return $el && $el.length ? Dataset.extractData($el) : null;
+ },
+ getActiveSelectable: function getActiveSelectable() {
+ var $selectable = this._getSelectables().filter(this.selectors.cursor).first();
+ return $selectable.length ? $selectable : null;
+ },
+ getTopSelectable: function getTopSelectable() {
+ var $selectable = this._getSelectables().first();
+ return $selectable.length ? $selectable : null;
+ },
+ update: function update(query) {
+ var isValidUpdate = query !== this.query;
+ if (isValidUpdate) {
+ this.query = query;
+ _.each(this.datasets, updateDataset);
+ }
+ return isValidUpdate;
+ function updateDataset(dataset) {
+ dataset.update(query);
+ }
+ },
+ empty: function empty() {
+ _.each(this.datasets, clearDataset);
+ this.query = null;
+ this.$node.addClass(this.classes.empty);
+ function clearDataset(dataset) {
+ dataset.clear();
+ }
+ },
+ destroy: function destroy() {
+ this.$node.off(".tt");
+ this.$node = $("
");
+ _.each(this.datasets, destroyDataset);
+ function destroyDataset(dataset) {
+ dataset.destroy();
+ }
+ }
+ });
+ return Menu;
+ }();
+ var Status = function() {
+ "use strict";
+ function Status(options) {
+ this.$el = $("
", {
+ role: "status",
+ "aria-live": "polite"
+ }).css({
+ position: "absolute",
+ padding: "0",
+ border: "0",
+ height: "1px",
+ width: "1px",
+ "margin-bottom": "-1px",
+ "margin-right": "-1px",
+ overflow: "hidden",
+ clip: "rect(0 0 0 0)",
+ "white-space": "nowrap"
+ });
+ options.$input.after(this.$el);
+ _.each(options.menu.datasets, _.bind(function(dataset) {
+ if (dataset.onSync) {
+ dataset.onSync("rendered", _.bind(this.update, this));
+ dataset.onSync("cleared", _.bind(this.cleared, this));
+ }
+ }, this));
+ }
+ _.mixin(Status.prototype, {
+ update: function update(event, suggestions) {
+ var length = suggestions.length;
+ var words;
+ if (length === 1) {
+ words = {
+ result: "result",
+ is: "is"
+ };
+ } else {
+ words = {
+ result: "results",
+ is: "are"
+ };
+ }
+ this.$el.text(length + " " + words.result + " " + words.is + " available, use up and down arrow keys to navigate.");
+ },
+ cleared: function() {
+ this.$el.text("");
+ }
+ });
+ return Status;
+ }();
+ var DefaultMenu = function() {
+ "use strict";
+ var s = Menu.prototype;
+ function DefaultMenu() {
+ Menu.apply(this, [].slice.call(arguments, 0));
+ }
+ _.mixin(DefaultMenu.prototype, Menu.prototype, {
+ open: function open() {
+ !this._allDatasetsEmpty() && this._show();
+ return s.open.apply(this, [].slice.call(arguments, 0));
+ },
+ close: function close() {
+ this._hide();
+ return s.close.apply(this, [].slice.call(arguments, 0));
+ },
+ _onRendered: function onRendered() {
+ if (this._allDatasetsEmpty()) {
+ this._hide();
+ } else {
+ this.isOpen() && this._show();
+ }
+ return s._onRendered.apply(this, [].slice.call(arguments, 0));
+ },
+ _onCleared: function onCleared() {
+ if (this._allDatasetsEmpty()) {
+ this._hide();
+ } else {
+ this.isOpen() && this._show();
+ }
+ return s._onCleared.apply(this, [].slice.call(arguments, 0));
+ },
+ setLanguageDirection: function setLanguageDirection(dir) {
+ this.$node.css(dir === "ltr" ? this.css.ltr : this.css.rtl);
+ return s.setLanguageDirection.apply(this, [].slice.call(arguments, 0));
+ },
+ _hide: function hide() {
+ this.$node.hide();
+ },
+ _show: function show() {
+ this.$node.css("display", "block");
+ }
+ });
+ return DefaultMenu;
+ }();
+ var Typeahead = function() {
+ "use strict";
+ function Typeahead(o, www) {
+ var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged;
+ o = o || {};
+ if (!o.input) {
+ $.error("missing input");
+ }
+ if (!o.menu) {
+ $.error("missing menu");
+ }
+ if (!o.eventBus) {
+ $.error("missing event bus");
+ }
+ www.mixin(this);
+ this.eventBus = o.eventBus;
+ this.minLength = _.isNumber(o.minLength) ? o.minLength : 1;
+ this.input = o.input;
+ this.menu = o.menu;
+ this.enabled = true;
+ this.autoselect = !!o.autoselect;
+ this.active = false;
+ this.input.hasFocus() && this.activate();
+ this.dir = this.input.getLangDir();
+ this._hacks();
+ this.menu.bind().onSync("selectableClicked", this._onSelectableClicked, this).onSync("asyncRequested", this._onAsyncRequested, this).onSync("asyncCanceled", this._onAsyncCanceled, this).onSync("asyncReceived", this._onAsyncReceived, this).onSync("datasetRendered", this._onDatasetRendered, this).onSync("datasetCleared", this._onDatasetCleared, this);
+ onFocused = c(this, "activate", "open", "_onFocused");
+ onBlurred = c(this, "deactivate", "_onBlurred");
+ onEnterKeyed = c(this, "isActive", "isOpen", "_onEnterKeyed");
+ onTabKeyed = c(this, "isActive", "isOpen", "_onTabKeyed");
+ onEscKeyed = c(this, "isActive", "_onEscKeyed");
+ onUpKeyed = c(this, "isActive", "open", "_onUpKeyed");
+ onDownKeyed = c(this, "isActive", "open", "_onDownKeyed");
+ onLeftKeyed = c(this, "isActive", "isOpen", "_onLeftKeyed");
+ onRightKeyed = c(this, "isActive", "isOpen", "_onRightKeyed");
+ onQueryChanged = c(this, "_openIfActive", "_onQueryChanged");
+ onWhitespaceChanged = c(this, "_openIfActive", "_onWhitespaceChanged");
+ this.input.bind().onSync("focused", onFocused, this).onSync("blurred", onBlurred, this).onSync("enterKeyed", onEnterKeyed, this).onSync("tabKeyed", onTabKeyed, this).onSync("escKeyed", onEscKeyed, this).onSync("upKeyed", onUpKeyed, this).onSync("downKeyed", onDownKeyed, this).onSync("leftKeyed", onLeftKeyed, this).onSync("rightKeyed", onRightKeyed, this).onSync("queryChanged", onQueryChanged, this).onSync("whitespaceChanged", onWhitespaceChanged, this).onSync("langDirChanged", this._onLangDirChanged, this);
+ }
+ _.mixin(Typeahead.prototype, {
+ _hacks: function hacks() {
+ var $input, $menu;
+ $input = this.input.$input || $("
");
+ $menu = this.menu.$node || $("
");
+ $input.on("blur.tt", function($e) {
+ var active, isActive, hasActive;
+ active = document.activeElement;
+ isActive = $menu.is(active);
+ hasActive = $menu.has(active).length > 0;
+ if (_.isMsie() && (isActive || hasActive)) {
+ $e.preventDefault();
+ $e.stopImmediatePropagation();
+ _.defer(function() {
+ $input.focus();
+ });
+ }
+ });
+ $menu.on("mousedown.tt", function($e) {
+ $e.preventDefault();
+ });
+ },
+ _onSelectableClicked: function onSelectableClicked(type, $el) {
+ this.select($el);
+ },
+ _onDatasetCleared: function onDatasetCleared() {
+ this._updateHint();
+ },
+ _onDatasetRendered: function onDatasetRendered(type, suggestions, async, dataset) {
+ this._updateHint();
+ if (this.autoselect) {
+ var cursorClass = this.selectors.cursor.substr(1);
+ this.menu.$node.find(this.selectors.suggestion).first().addClass(cursorClass);
+ }
+ this.eventBus.trigger("render", suggestions, async, dataset);
+ },
+ _onAsyncRequested: function onAsyncRequested(type, dataset, query) {
+ this.eventBus.trigger("asyncrequest", query, dataset);
+ },
+ _onAsyncCanceled: function onAsyncCanceled(type, dataset, query) {
+ this.eventBus.trigger("asynccancel", query, dataset);
+ },
+ _onAsyncReceived: function onAsyncReceived(type, dataset, query) {
+ this.eventBus.trigger("asyncreceive", query, dataset);
+ },
+ _onFocused: function onFocused() {
+ this._minLengthMet() && this.menu.update(this.input.getQuery());
+ },
+ _onBlurred: function onBlurred() {
+ if (this.input.hasQueryChangedSinceLastFocus()) {
+ this.eventBus.trigger("change", this.input.getQuery());
+ }
+ },
+ _onEnterKeyed: function onEnterKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ if (this.select($selectable)) {
+ $e.preventDefault();
+ $e.stopPropagation();
+ }
+ } else if (this.autoselect) {
+ if (this.select(this.menu.getTopSelectable())) {
+ $e.preventDefault();
+ $e.stopPropagation();
+ }
+ }
+ },
+ _onTabKeyed: function onTabKeyed(type, $e) {
+ var $selectable;
+ if ($selectable = this.menu.getActiveSelectable()) {
+ this.select($selectable) && $e.preventDefault();
+ } else if (this.autoselect) {
+ if ($selectable = this.menu.getTopSelectable()) {
+ this.autocomplete($selectable) && $e.preventDefault();
+ }
+ }
+ },
+ _onEscKeyed: function onEscKeyed() {
+ this.close();
+ },
+ _onUpKeyed: function onUpKeyed() {
+ this.moveCursor(-1);
+ },
+ _onDownKeyed: function onDownKeyed() {
+ this.moveCursor(+1);
+ },
+ _onLeftKeyed: function onLeftKeyed() {
+ if (this.dir === "rtl" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable());
+ }
+ },
+ _onRightKeyed: function onRightKeyed() {
+ if (this.dir === "ltr" && this.input.isCursorAtEnd()) {
+ this.autocomplete(this.menu.getActiveSelectable() || this.menu.getTopSelectable());
+ }
+ },
+ _onQueryChanged: function onQueryChanged(e, query) {
+ this._minLengthMet(query) ? this.menu.update(query) : this.menu.empty();
+ },
+ _onWhitespaceChanged: function onWhitespaceChanged() {
+ this._updateHint();
+ },
+ _onLangDirChanged: function onLangDirChanged(e, dir) {
+ if (this.dir !== dir) {
+ this.dir = dir;
+ this.menu.setLanguageDirection(dir);
+ }
+ },
+ _openIfActive: function openIfActive() {
+ this.isActive() && this.open();
+ },
+ _minLengthMet: function minLengthMet(query) {
+ query = _.isString(query) ? query : this.input.getQuery() || "";
+ return query.length >= this.minLength;
+ },
+ _updateHint: function updateHint() {
+ var $selectable, data, val, query, escapedQuery, frontMatchRegEx, match;
+ $selectable = this.menu.getTopSelectable();
+ data = this.menu.getSelectableData($selectable);
+ val = this.input.getInputValue();
+ if (data && !_.isBlankString(val) && !this.input.hasOverflow()) {
+ query = Input.normalizeQuery(val);
+ escapedQuery = _.escapeRegExChars(query);
+ frontMatchRegEx = new RegExp("^(?:" + escapedQuery + ")(.+$)", "i");
+ match = frontMatchRegEx.exec(data.val);
+ match && this.input.setHint(val + match[1]);
+ } else {
+ this.input.clearHint();
+ }
+ },
+ isEnabled: function isEnabled() {
+ return this.enabled;
+ },
+ enable: function enable() {
+ this.enabled = true;
+ },
+ disable: function disable() {
+ this.enabled = false;
+ },
+ isActive: function isActive() {
+ return this.active;
+ },
+ activate: function activate() {
+ if (this.isActive()) {
+ return true;
+ } else if (!this.isEnabled() || this.eventBus.before("active")) {
+ return false;
+ } else {
+ this.active = true;
+ this.eventBus.trigger("active");
+ return true;
+ }
+ },
+ deactivate: function deactivate() {
+ if (!this.isActive()) {
+ return true;
+ } else if (this.eventBus.before("idle")) {
+ return false;
+ } else {
+ this.active = false;
+ this.close();
+ this.eventBus.trigger("idle");
+ return true;
+ }
+ },
+ isOpen: function isOpen() {
+ return this.menu.isOpen();
+ },
+ open: function open() {
+ if (!this.isOpen() && !this.eventBus.before("open")) {
+ this.input.setAriaExpanded(true);
+ this.menu.open();
+ this._updateHint();
+ this.eventBus.trigger("open");
+ }
+ return this.isOpen();
+ },
+ close: function close() {
+ if (this.isOpen() && !this.eventBus.before("close")) {
+ this.input.setAriaExpanded(false);
+ this.menu.close();
+ this.input.clearHint();
+ this.input.resetInputValue();
+ this.eventBus.trigger("close");
+ }
+ return !this.isOpen();
+ },
+ setVal: function setVal(val) {
+ this.input.setQuery(_.toStr(val));
+ },
+ getVal: function getVal() {
+ return this.input.getQuery();
+ },
+ select: function select($selectable) {
+ var data = this.menu.getSelectableData($selectable);
+ if (data && !this.eventBus.before("select", data.obj, data.dataset)) {
+ this.input.setQuery(data.val, true);
+ this.eventBus.trigger("select", data.obj, data.dataset);
+ this.close();
+ return true;
+ }
+ return false;
+ },
+ autocomplete: function autocomplete($selectable) {
+ var query, data, isValid;
+ query = this.input.getQuery();
+ data = this.menu.getSelectableData($selectable);
+ isValid = data && query !== data.val;
+ if (isValid && !this.eventBus.before("autocomplete", data.obj, data.dataset)) {
+ this.input.setQuery(data.val);
+ this.eventBus.trigger("autocomplete", data.obj, data.dataset);
+ return true;
+ }
+ return false;
+ },
+ moveCursor: function moveCursor(delta) {
+ var query, $candidate, data, suggestion, datasetName, cancelMove, id;
+ query = this.input.getQuery();
+ $candidate = this.menu.selectableRelativeToCursor(delta);
+ data = this.menu.getSelectableData($candidate);
+ suggestion = data ? data.obj : null;
+ datasetName = data ? data.dataset : null;
+ id = $candidate ? $candidate.attr("id") : null;
+ this.input.trigger("cursorchange", id);
+ cancelMove = this._minLengthMet() && this.menu.update(query);
+ if (!cancelMove && !this.eventBus.before("cursorchange", suggestion, datasetName)) {
+ this.menu.setCursor($candidate);
+ if (data) {
+ if (typeof data.val === "string") {
+ this.input.setInputValue(data.val);
+ }
+ } else {
+ this.input.resetInputValue();
+ this._updateHint();
+ }
+ this.eventBus.trigger("cursorchange", suggestion, datasetName);
+ return true;
+ }
+ return false;
+ },
+ destroy: function destroy() {
+ this.input.destroy();
+ this.menu.destroy();
+ }
+ });
+ return Typeahead;
+ function c(ctx) {
+ var methods = [].slice.call(arguments, 1);
+ return function() {
+ var args = [].slice.call(arguments);
+ _.each(methods, function(method) {
+ return ctx[method].apply(ctx, args);
+ });
+ };
+ }
+ }();
+ (function() {
+ "use strict";
+ var old, keys, methods;
+ old = $.fn.typeahead;
+ keys = {
+ www: "tt-www",
+ attrs: "tt-attrs",
+ typeahead: "tt-typeahead"
+ };
+ methods = {
+ initialize: function initialize(o, datasets) {
+ var www;
+ datasets = _.isArray(datasets) ? datasets : [].slice.call(arguments, 1);
+ o = o || {};
+ www = WWW(o.classNames);
+ return this.each(attach);
+ function attach() {
+ var $input, $wrapper, $hint, $menu, defaultHint, defaultMenu, eventBus, input, menu, status, typeahead, MenuConstructor;
+ _.each(datasets, function(d) {
+ d.highlight = !!o.highlight;
+ });
+ $input = $(this);
+ $wrapper = $(www.html.wrapper);
+ $hint = $elOrNull(o.hint);
+ $menu = $elOrNull(o.menu);
+ defaultHint = o.hint !== false && !$hint;
+ defaultMenu = o.menu !== false && !$menu;
+ defaultHint && ($hint = buildHintFromInput($input, www));
+ defaultMenu && ($menu = $(www.html.menu).css(www.css.menu));
+ $hint && $hint.val("");
+ $input = prepInput($input, www);
+ if (defaultHint || defaultMenu) {
+ $wrapper.css(www.css.wrapper);
+ $input.css(defaultHint ? www.css.input : www.css.inputWithNoHint);
+ $input.wrap($wrapper).parent().prepend(defaultHint ? $hint : null).append(defaultMenu ? $menu : null);
+ }
+ MenuConstructor = defaultMenu ? DefaultMenu : Menu;
+ eventBus = new EventBus({
+ el: $input
+ });
+ input = new Input({
+ hint: $hint,
+ input: $input,
+ menu: $menu
+ }, www);
+ menu = new MenuConstructor({
+ node: $menu,
+ datasets: datasets
+ }, www);
+ status = new Status({
+ $input: $input,
+ menu: menu
+ });
+ typeahead = new Typeahead({
+ input: input,
+ menu: menu,
+ eventBus: eventBus,
+ minLength: o.minLength,
+ autoselect: o.autoselect
+ }, www);
+ $input.data(keys.www, www);
+ $input.data(keys.typeahead, typeahead);
+ }
+ },
+ isEnabled: function isEnabled() {
+ var enabled;
+ ttEach(this.first(), function(t) {
+ enabled = t.isEnabled();
+ });
+ return enabled;
+ },
+ enable: function enable() {
+ ttEach(this, function(t) {
+ t.enable();
+ });
+ return this;
+ },
+ disable: function disable() {
+ ttEach(this, function(t) {
+ t.disable();
+ });
+ return this;
+ },
+ isActive: function isActive() {
+ var active;
+ ttEach(this.first(), function(t) {
+ active = t.isActive();
+ });
+ return active;
+ },
+ activate: function activate() {
+ ttEach(this, function(t) {
+ t.activate();
+ });
+ return this;
+ },
+ deactivate: function deactivate() {
+ ttEach(this, function(t) {
+ t.deactivate();
+ });
+ return this;
+ },
+ isOpen: function isOpen() {
+ var open;
+ ttEach(this.first(), function(t) {
+ open = t.isOpen();
+ });
+ return open;
+ },
+ open: function open() {
+ ttEach(this, function(t) {
+ t.open();
+ });
+ return this;
+ },
+ close: function close() {
+ ttEach(this, function(t) {
+ t.close();
+ });
+ return this;
+ },
+ select: function select(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.select($el);
+ });
+ return success;
+ },
+ autocomplete: function autocomplete(el) {
+ var success = false, $el = $(el);
+ ttEach(this.first(), function(t) {
+ success = t.autocomplete($el);
+ });
+ return success;
+ },
+ moveCursor: function moveCursoe(delta) {
+ var success = false;
+ ttEach(this.first(), function(t) {
+ success = t.moveCursor(delta);
+ });
+ return success;
+ },
+ val: function val(newVal) {
+ var query;
+ if (!arguments.length) {
+ ttEach(this.first(), function(t) {
+ query = t.getVal();
+ });
+ return query;
+ } else {
+ ttEach(this, function(t) {
+ t.setVal(_.toStr(newVal));
+ });
+ return this;
+ }
+ },
+ destroy: function destroy() {
+ ttEach(this, function(typeahead, $input) {
+ revert($input);
+ typeahead.destroy();
+ });
+ return this;
+ }
+ };
+ $.fn.typeahead = function(method) {
+ if (methods[method]) {
+ return methods[method].apply(this, [].slice.call(arguments, 1));
+ } else {
+ return methods.initialize.apply(this, arguments);
+ }
+ };
+ $.fn.typeahead.noConflict = function noConflict() {
+ $.fn.typeahead = old;
+ return this;
+ };
+ function ttEach($els, fn) {
+ $els.each(function() {
+ var $input = $(this), typeahead;
+ (typeahead = $input.data(keys.typeahead)) && fn(typeahead, $input);
+ });
+ }
+ function buildHintFromInput($input, www) {
+ return $input.clone().addClass(www.classes.hint).removeData().css(www.css.hint).css(getBackgroundStyles($input)).prop({
+ readonly: true,
+ required: false
+ }).removeAttr("id name placeholder").removeClass("required").attr({
+ spellcheck: "false",
+ tabindex: -1
+ });
+ }
+ function prepInput($input, www) {
+ $input.data(keys.attrs, {
+ dir: $input.attr("dir"),
+ autocomplete: $input.attr("autocomplete"),
+ spellcheck: $input.attr("spellcheck"),
+ style: $input.attr("style")
+ });
+ $input.addClass(www.classes.input).attr({
+ spellcheck: false
+ });
+ try {
+ !$input.attr("dir") && $input.attr("dir", "auto");
+ } catch (e) {}
+ return $input;
+ }
+ function getBackgroundStyles($el) {
+ return {
+ backgroundAttachment: $el.css("background-attachment"),
+ backgroundClip: $el.css("background-clip"),
+ backgroundColor: $el.css("background-color"),
+ backgroundImage: $el.css("background-image"),
+ backgroundOrigin: $el.css("background-origin"),
+ backgroundPosition: $el.css("background-position"),
+ backgroundRepeat: $el.css("background-repeat"),
+ backgroundSize: $el.css("background-size")
+ };
+ }
+ function revert($input) {
+ var www, $wrapper;
+ www = $input.data(keys.www);
+ $wrapper = $input.parent().filter(www.selectors.wrapper);
+ _.each($input.data(keys.attrs), function(val, key) {
+ _.isUndefined(val) ? $input.removeAttr(key) : $input.attr(key, val);
+ });
+ $input.removeData(keys.typeahead).removeData(keys.www).removeData(keys.attr).removeClass(www.classes.input);
+ if ($wrapper.length) {
+ $input.detach().insertAfter($wrapper);
+ $wrapper.remove();
+ }
+ }
+ function $elOrNull(obj) {
+ var isValid, $el;
+ isValid = _.isJQuery(obj) || _.isElement(obj);
+ $el = isValid ? $(obj).first() : [];
+ return $el.length ? $el : null;
+ }
+ })();
+});
\ No newline at end of file
diff --git a/docs/search.json b/docs/search.json
new file mode 100644
index 0000000..30bb6e2
--- /dev/null
+++ b/docs/search.json
@@ -0,0 +1 @@
+{"Typealiases.html#/s:4Flow0A4Dataa":{"name":"FlowData","abstract":"
Undocumented
"},"Typealiases.html#/s:4Flow5Bytesa":{"name":"Bytes","abstract":"
Convenient alias to make list of UInt8 as Bytes.
"},"Structs/P256FlowSigner.html#/s:4Flow04P256A6SignerV9algorithmA2AC18SignatureAlgorithmOvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP7addressA2AC7AddressVvp":{"name":"address","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP8keyIndexSivp":{"name":"keyIndex","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow04P256A6SignerV3key7address0D5IndexAC9CryptoKit0B0O7SigningO10PrivateKeyV_A2AC7AddressVSitcfc":{"name":"init(key:address:keyIndex:)","abstract":"
Undocumented
","parent_name":"P256FlowSigner"},"Structs/P256FlowSigner.html#/s:4Flow0A6SignerP4sign12signableData11transaction10Foundation0E0VAI_A2AC11TransactionVSgtYaKF":{"name":"sign(signableData:transaction:)","parent_name":"P256FlowSigner"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV5topicSSvp":{"name":"topic","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/FlowWebSocketSubscriptionKey.html#/s:4Flow0A24WebSocketSubscriptionKeyV5topic2idACSS_SStcfc":{"name":"init(topic:id:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketSubscriptionKey"},"Structs/AnyEncodable.html#/s:4Flow12AnyEncodableVyACSE_pcfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"AnyEncodable"},"Structs/AnyEncodable.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"AnyEncodable"},"Structs/AnyDecodable.html#/s:4Flow12AnyDecodableV5valueypvp":{"name":"value","abstract":"
Undocumented
","parent_name":"AnyDecodable"},"Structs/AnyDecodable.html#/s:4Flow12AnyDecodableVyACypSgcfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"AnyDecodable"},"Structs/AnyDecodable.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"AnyDecodable"},"Structs/ConsoleLogger.html#/s:4Flow13ConsoleLoggerVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"ConsoleLogger"},"Structs/ConsoleLogger.html#/s:4Flow13ConsoleLoggerV3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"ConsoleLogger"},"Structs/TimeoutAsyncSequence/Iterator.html#/s:ScI4next7ElementQzSgyYaKF":{"name":"next()","parent_name":"Iterator"},"Structs/TimeoutAsyncSequence.html#/s:Sci7ElementQa":{"name":"Element","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence.html#/s:4Flow20TimeoutAsyncSequenceV4base5after9tolerance5clock6policyACyxq_Gx_8DurationQy_AKSgq_AA0B6PolicyOtcfc":{"name":"init(base:after:tolerance:clock:policy:)","abstract":"
Undocumented
","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence/Iterator.html":{"name":"Iterator","abstract":"
Undocumented
","parent_name":"TimeoutAsyncSequence"},"Structs/TimeoutAsyncSequence.html#/s:Sci17makeAsyncIterator0bC0QzyF":{"name":"makeAsyncIterator()","parent_name":"TimeoutAsyncSequence"},"Structs/FinishedWithoutValueError.html#/s:4Flow25FinishedWithoutValueErrorVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FinishedWithoutValueError"},"Structs/FinishedWithoutValueError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"FinishedWithoutValueError"},"Structs/TimeoutError.html#/s:4Flow12TimeoutErrorVACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"TimeoutError"},"Structs/TimeoutError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"TimeoutError"},"Structs/NIOTransport.html#/s:4Flow12NIOTransportV7chainIDAc2AC05ChainD0O_tcfc":{"name":"init(chainID:)","abstract":"
Undocumented
","parent_name":"NIOTransport"},"Structs/NIOTransport.html#/s:4Flow12NIOTransportV10executeRPC_7requestq_AA0A9RPCMethodO_xtYaKSERzSeR_r0_lF":{"name":"executeRPC(_:request:)","abstract":"
Undocumented
","parent_name":"NIOTransport"},"Structs/NIOTransport.html":{"name":"NIOTransport","abstract":"
Temporary NIO-based transport."},"Structs/TimeoutError.html":{"name":"TimeoutError","abstract":"
Undocumented
"},"Structs/FinishedWithoutValueError.html":{"name":"FinishedWithoutValueError","abstract":"
Undocumented
"},"Structs/TimeoutAsyncSequence.html":{"name":"TimeoutAsyncSequence","abstract":"
Undocumented
"},"Structs/ConsoleLogger.html":{"name":"ConsoleLogger","abstract":"
Undocumented
"},"Structs/AnyDecodable.html":{"name":"AnyDecodable","abstract":"
Undocumented
"},"Structs/AnyEncodable.html":{"name":"AnyEncodable","abstract":"
Undocumented
"},"Structs/FlowWebSocketSubscriptionKey.html":{"name":"FlowWebSocketSubscriptionKey","abstract":"
A key that uniquely identifies a subscription within the websocket center.
"},"Structs/P256FlowSigner.html":{"name":"P256FlowSigner","abstract":"
ECDSA P‑256 signer for Flow, backed by CryptoKit.
"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP7baseURL10Foundation0E0Vvp":{"name":"baseURL","abstract":"
The target’s base URL.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP4pathSSvp":{"name":"path","abstract":"
The path to be appended to baseURL to form the full URL.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP6methodAA6MethodOvp":{"name":"method","abstract":"
The HTTP method used in the request.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP4taskAA4TaskOvp":{"name":"task","abstract":"
The type of HTTP task to be performed.
","parent_name":"TargetType"},"Protocols/TargetType.html#/s:4Flow10TargetTypeP7headersSDyS2SGSgvp":{"name":"headers","abstract":"
The headers to be used in the request.
","parent_name":"TargetType"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","abstract":"
Check node connectivity
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","abstract":"
Get latest block header
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","abstract":"
Get block header by ID
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22getBlockHeaderByHeight6heightA2AC0eF0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP14getLatestBlock11blockStatusA2AC0F0VAF0fH0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP12getBlockById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP16getBlockByHeight6heightA2AC0E0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP17getCollectionById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP15sendTransaction11transactionA2AC2IDVAF0E0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP18getTransactionById2idA2AC0E0VAF2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP24getTransactionResultById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getAccountAtLatestBlock7address11blockStatusA2AC0E0VAG7AddressV_AG0hK0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getAccountByBlockHeight7address6heightA2AC0E0VAG7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0E8ResponseVAH0E0V_SayAH8ArgumentVGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0E8ResponseVAH0E0V_SayAH7CadenceC6FValueOGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22executeScriptAtBlockId6script05blockH09argumentsA2AC0E8ResponseVAH0E0V_AH2IDVSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP22executeScriptAtBlockId6script05blockH09argumentsA2AC0E8ResponseVAH0E0V_AH2IDVSayAH7CadenceC6FValueOGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtBlockHeight6script6height9argumentsA2AC0E8ResponseVAH0E0V_s6UInt64VSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP26executeScriptAtBlockHeight6script6height9argumentsA2AC0E8ResponseVAH0E0V_s6UInt64VSayAH7CadenceC6FValueOGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP23getEventsForHeightRange4type5rangeSayA2AC5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getEventsForBlockIds4type3idsSayA2AC5EventV6ResultVGSS_ShyAG2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolP20getNetworkParametersA2AC7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE23getAccountAtLatestBlock7address11blockStatusA2AC0E0VSS_AG0hK0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE18getTransactionById2idA2AC0E0VSS_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE24getTransactionResultById2idA2AC0eF0VSS_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE14getLatestBlock6sealedA2AC0F0VSb_tYaKF":{"name":"getLatestBlock(sealed:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock7cadence9arguments11blockStatusA2AC0E8ResponseVSS_SayAH8ArgumentVGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(cadence:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock7cadence9arguments11blockStatusA2AC0E8ResponseVSS_SayAH7CadenceC6FValueOGAH0hL0OtYaKF":{"name":"executeScriptAtLatestBlock(cadence:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowAccessProtocol.html#/s:4Flow0A14AccessProtocolPAAE26executeScriptAtLatestBlock6script11blockStatusA2AC0E8ResponseVAG0E0V_AG0hK0OtYaKF":{"name":"executeScriptAtLatestBlock(script:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowAccessProtocol"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP7addressA2AC7AddressVvp":{"name":"address","abstract":"
Address in the flow blockchain
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of the public key
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerP4sign12signableData11transaction10Foundation0E0VAI_A2AC11TransactionVSgtYaKF":{"name":"sign(signableData:transaction:)","abstract":"
Sign the data with account private key
","parent_name":"FlowSigner"},"Protocols/FlowSigner.html#/s:4Flow0A6SignerPAAE4sign12signableData10Foundation0E0VAH_tYaKF":{"name":"sign(signableData:)","abstract":"
Undocumented
","parent_name":"FlowSigner"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","abstract":"
The content of the entity.
","parent_name":"FlowEntity"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP5bytesSays5UInt8VGvp":{"name":"bytes","abstract":"
Convert data into a list of UInt8.
","parent_name":"FlowEntity"},"Protocols/FlowEntity.html#/s:4Flow0A6EntityP3hexSSvp":{"name":"hex","abstract":"
Convert data into hex string.
","parent_name":"FlowEntity"},"Protocols/FlowLoggerProtocol.html#/s:4Flow0A14LoggerProtocolP3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLoggerProtocol"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP13cadenceBase64SSvp":{"name":"cadenceBase64","abstract":"
Base64-encoded Cadence script
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP4typeAA0bD0Ovp":{"name":"type","abstract":"
Script type (query or transaction)
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP06returnD0Se_pXpvp":{"name":"returnType","abstract":"
Return type for decoding
","parent_name":"CadenceTargetType"},"Protocols/CadenceTargetType.html#/s:4Flow17CadenceTargetTypeP9argumentsSayA2AC8ArgumentVGvp":{"name":"arguments","abstract":"
Script arguments
","parent_name":"CadenceTargetType"},"Protocols/CadenceLoaderProtocol.html#/s:4Flow21CadenceLoaderProtocolP9directorySSvp":{"name":"directory","abstract":"
Undocumented
","parent_name":"CadenceLoaderProtocol"},"Protocols/CadenceLoaderProtocol.html#/s:4Flow21CadenceLoaderProtocolP8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"CadenceLoaderProtocol"},"Protocols/FlowTransport.html#/s:4Flow0A9TransportP10executeRPC_7requestqd_0_AA0A9RPCMethodO_qd__tYaKSERd__SeRd_0_r0_lF":{"name":"executeRPC(_:request:)","abstract":"
Undocumented
","parent_name":"FlowTransport"},"Protocols/FlowTransport.html":{"name":"FlowTransport","abstract":"
Abstract transport for Flow access nodes (HTTP/gRPC/etc.)."},"Protocols/CadenceLoaderProtocol.html":{"name":"CadenceLoaderProtocol","abstract":"
Undocumented
"},"Protocols/CadenceTargetType.html":{"name":"CadenceTargetType","abstract":"
Undocumented
"},"Protocols/FlowLoggerProtocol.html":{"name":"FlowLoggerProtocol","abstract":"
Undocumented
"},"Protocols/FlowEntity.html":{"name":"FlowEntity","abstract":"
Protocol to handle Flow network models.
"},"Protocols/FlowSigner.html":{"name":"FlowSigner","abstract":"
A protocol for signer to use private key to sign the data
"},"Protocols/FlowAccessProtocol.html":{"name":"FlowAccessProtocol","abstract":"
Flow Access API Protocol
"},"Protocols/TargetType.html":{"name":"TargetType","abstract":"
Undocumented
"},"Functions.html#/s:4Flow7cadence4textA2AC16TransactionBuildOSSyXE_tF":{"name":"cadence(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow7cadence4textA2AC16TransactionBuildOAD6ScriptVyXE_tF":{"name":"cadence(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow9arguments4textA2AC16TransactionBuildOSayAD7CadenceC6FValueOGyXE_tF":{"name":"arguments(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow9arguments4textA2AC16TransactionBuildOSayAD8ArgumentVGyXE_tF":{"name":"arguments(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow5payer4textA2AC16TransactionBuildOSSyXE_tF":{"name":"payer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow5payer4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"payer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow11authorizers4textA2AC16TransactionBuildOSayAD7AddressVGyXE_tF":{"name":"authorizers(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow11authorizers4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"authorizers(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOSSyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOAD7AddressVyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8proposer4textA2AC16TransactionBuildOAD0D11ProposalKeyVyXE_tF":{"name":"proposer(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8gasLimit4textA2AC16TransactionBuildO6BigInt0G4UIntVyXE_tF":{"name":"gasLimit(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8gasLimit4textA2AC16TransactionBuildOSiyXE_tF":{"name":"gasLimit(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8refBlock4textA2AC16TransactionBuildOSSSgyXE_tF":{"name":"refBlock(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow8refBlock4textA2AC16TransactionBuildOAD2IDVyXE_tF":{"name":"refBlock(text:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow10awaitFirst_14timeoutSeconds7ElementQzx_SdtYaKs8SendableRzSciRzsAfERQlF":{"name":"awaitFirst(_:timeoutSeconds:)","abstract":"
Undocumented
"},"Functions.html#/s:4Flow15awaitFirstOrNil_14timeoutSeconds7ElementQzSgx_SdtYas8SendableRzSciRzsAgERQlF":{"name":"awaitFirstOrNil(_:timeoutSeconds:)","abstract":"
Undocumented
"},"Extensions/URLSession.html#/s:So12NSURLSessionC4FlowE4data4from10Foundation4DataV_So13NSURLResponseCtAF3URLV_tYaKF":{"name":"data(from:)","abstract":"
Undocumented
","parent_name":"URLSession"},"Extensions/AsyncSequence.html#/s:Sci4Flows8SendableRzsAB7ElementRpzrlE7timeout5after9tolerance5clock6policyAA20TimeoutAsyncSequenceVyxqd__G8DurationQyd___ANSgqd__AA0I6PolicyOt12_Concurrency5ClockRd__lF":{"name":"timeout(after:tolerance:clock:policy:)","abstract":"
Undocumented
","parent_name":"AsyncSequence"},"Extensions/AsyncSequence.html#/s:Sci4Flows8SendableRzsAB7ElementRpzrlE7timeout5after9tolerance6policyAA20TimeoutAsyncSequenceVyx12_Concurrency15ContinuousClockVGs8DurationV_APSgAA0H6PolicyOtF":{"name":"timeout(after:tolerance:policy:)","abstract":"
Undocumented
","parent_name":"AsyncSequence"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE5bytesSays5UInt8VGvp":{"name":"bytes","abstract":"
Convert data to list of byte
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE7fromHexyACSgSSFZ":{"name":"fromHex(_:)","abstract":"
Initial the data with hex string
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE8hexValueSSvp":{"name":"hexValue","abstract":"
Convert data to hex string
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE11padZeroLeft9blockSizeACSi_tF":{"name":"padZeroLeft(blockSize:)","abstract":"
Mutate data with adding zero padding to the left until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE12padZeroRight9blockSizeACSi_tF":{"name":"padZeroRight(blockSize:)","abstract":"
Mutate data with adding zero padding to the right until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE15paddingZeroLeft9blockSizeACSi_tF":{"name":"paddingZeroLeft(blockSize:)","abstract":"
Add zero padding to the left until fulfil the block size
","parent_name":"Data"},"Extensions/Data.html#/s:10Foundation4DataV4FlowE16paddingZeroRight9blockSizeACSi_tF":{"name":"paddingZeroRight(blockSize:)","abstract":"
Add zero padding to the right until fulfil the block size
","parent_name":"Data"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE4data10Foundation4DataVvp":{"name":"data","abstract":"
Convert to Data type
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE8hexValueSSvp":{"name":"hexValue","abstract":"
Convert bytes to hex string
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE11padZeroLeft9blockSizeSayACGSi_tF":{"name":"padZeroLeft(blockSize:)","abstract":"
Mutate data with adding zero padding to the left until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE12padZeroRight9blockSizeSayACGSi_tF":{"name":"padZeroRight(blockSize:)","abstract":"
Mutate data with adding zero padding to the right until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE15paddingZeroLeft9blockSizeSayACGSi_tF":{"name":"paddingZeroLeft(blockSize:)","abstract":"
Add zero padding to the left until fulfil the block size
","parent_name":"Array"},"Extensions/Array.html#/s:Sa4Flows5UInt8VRszlE16paddingZeroRight9blockSizeSayACGSi_tF":{"name":"paddingZeroRight(blockSize:)","abstract":"
Add zero padding to the right until fulfil the block size
","parent_name":"Array"},"Extensions/Decimal.html#/s:So9NSDecimala4FlowE11tokenFormat21maximumFractionDigitsSSSi_tF":{"name":"tokenFormat(maximumFractionDigits:)","abstract":"
Undocumented
","parent_name":"Decimal"},"Extensions/Double.html#/s:Sd4FlowE14roundToDecimalySdSiF":{"name":"roundToDecimal(_:)","abstract":"
Undocumented
","parent_name":"Double"},"Extensions/String.html#/s:SS4FlowE8hexValueSays5UInt8VGvp":{"name":"hexValue","abstract":"
Convert hex string to bytes
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE12hasHexPrefixSbyF":{"name":"hasHexPrefix()","abstract":"
Determine string has hexadecimal prefix.
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE14stripHexPrefixSSyF":{"name":"stripHexPrefix()","abstract":"
If string has hexadecimal prefix, remove it
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE12addHexPrefixSSyF":{"name":"addHexPrefix()","abstract":"
Add hexadecimal prefix to a string.","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE7replace2bySSSDyS2SG_tF":{"name":"replace(by:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE7replace4fromSSSDyS2SG_tF":{"name":"replace(from:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html#/s:SS4FlowE17replaceExactMatch6target11replacementS2S_SStF":{"name":"replaceExactMatch(target:replacement:)","abstract":"
Undocumented
","parent_name":"String"},"Extensions/String.html":{"name":"String"},"Extensions/Double.html":{"name":"Double"},"Extensions/Decimal.html":{"name":"Decimal"},"Extensions/Array.html":{"name":"Array"},"Extensions/Data.html":{"name":"Data"},"Extensions/AsyncSequence.html":{"name":"AsyncSequence"},"Extensions/URLSession.html":{"name":"URLSession"},"Enums/RLP.html#/s:4Flow3RLPO6encodey10Foundation4DataVSgypFZ":{"name":"encode(_:)","abstract":"
Undocumented
","parent_name":"RLP"},"Enums/FlowWebSocketUpgradeEvent.html#/s:4Flow0A21WebSocketUpgradeEventO8upgradedyA2CmF":{"name":"upgraded","abstract":"
Undocumented
","parent_name":"FlowWebSocketUpgradeEvent"},"Enums/UserAgent.html#/s:4Flow9UserAgentO5valueSSvpZ":{"name":"value","abstract":"
Short SDK‑centric UA, e.g. “flow-swift/1.0.0 (macOS 14.4) FlowTests”
","parent_name":"UserAgent"},"Enums/UserAgent.html#/s:4Flow9UserAgentO8extendedSSvpZ":{"name":"extended","abstract":"
Extended UA including device and CFNetwork/Darwin tokens, e.g.:","parent_name":"UserAgent"},"Enums/Task.html#/s:4Flow4TaskO17requestParametersyACSDyS2SGSg_SE_pSgtcACmF":{"name":"requestParameters(_:body:)","abstract":"
A requests body set with encoded parameters.
","parent_name":"Task"},"Enums/Method.html#/s:4Flow6MethodO3GETyA2CmF":{"name":"GET","abstract":"
Undocumented
","parent_name":"Method"},"Enums/Method.html#/s:4Flow6MethodO4POSTyA2CmF":{"name":"POST","abstract":"
Undocumented
","parent_name":"Method"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO5debugyA2CmF":{"name":"debug","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO4infoyA2CmF":{"name":"info","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO7warningyA2CmF":{"name":"warning","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FlowLogLevel.html#/s:4Flow0A8LogLevelO5erroryA2CmF":{"name":"error","abstract":"
Undocumented
","parent_name":"FlowLogLevel"},"Enums/FCLFlow.html#/s:4Flow7FCLFlowO16buildTransaction7chainID14skipEmptyCheck7builderA2AC0D0VAH05ChainF0OSg_SbSayAH0D5BuildOGyXEtYaKFZ":{"name":"buildTransaction(chainID:skipEmptyCheck:builder:)","abstract":"
Undocumented
","parent_name":"FCLFlow"},"Enums/FCLFlow.html#/s:4Flow7FCLFlowO4send7chainID7signers7builderA2AC0E0VAH05ChainE0OSg_SayAA0A6Signer_pGSayAH16TransactionBuildOGyXEtYaKFZ":{"name":"send(chainID:signers:builder:)","abstract":"
Undocumented
","parent_name":"FCLFlow"},"Enums/TimeoutEvent.html#/s:4Flow12TimeoutEventO7elementyACyxGxcAEms8SendableRzlF":{"name":"element(_:)","abstract":"
Undocumented
","parent_name":"TimeoutEvent"},"Enums/TimeoutEvent.html#/s:4Flow12TimeoutEventO7timeoutyACyxGAEms8SendableRzlF":{"name":"timeout","abstract":"
Undocumented
","parent_name":"TimeoutEvent"},"Enums/TimeoutPolicy.html#/s:4Flow13TimeoutPolicyO07throwOnB0yA2CmF":{"name":"throwOnTimeout","abstract":"
Undocumented
","parent_name":"TimeoutPolicy"},"Enums/TimeoutPolicy.html#/s:4Flow13TimeoutPolicyO08finishOnB0yA2CmF":{"name":"finishOnTimeout","abstract":"
Undocumented
","parent_name":"TimeoutPolicy"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO07unknownC0yA2CmF":{"name":"unknownError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO012txValidationC0yA2CmF":{"name":"txValidationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO017invalidTxByteSizeC0yA2CmF":{"name":"invalidTxByteSizeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021invalidReferenceBlockC0yA2CmF":{"name":"invalidReferenceBlockError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO018expiredTransactionC0yA2CmF":{"name":"expiredTransactionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013invalidScriptC0yA2CmF":{"name":"invalidScriptError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidGasLimitC0yA2CmF":{"name":"invalidGasLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidProposalSignatureC0yA2CmF":{"name":"invalidProposalSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidProposalSeqNumberC0yA2CmF":{"name":"invalidProposalSeqNumberError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO023invalidPayloadSignatureC0yA2CmF":{"name":"invalidPayloadSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024invalidEnvelopeSignatureC0yA2CmF":{"name":"invalidEnvelopeSignatureError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO011fvmInternalC0yA2CmF":{"name":"fvmInternalError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO05valueC0yA2CmF":{"name":"valueError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidArgumentC0yA2CmF":{"name":"invalidArgumentError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO014invalidAddressC0yA2CmF":{"name":"invalidAddressError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015invalidLocationC0yA2CmF":{"name":"invalidLocationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO020accountAuthorizationC0yA2CmF":{"name":"accountAuthorizationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO022operationAuthorizationC0yA2CmF":{"name":"operationAuthorizationError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021operationNotSupportedC0yA2CmF":{"name":"operationNotSupportedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021blockHeightOutOfRangeC0yA2CmF":{"name":"blockHeightOutOfRangeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO09executionC0yA2CmF":{"name":"executionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO014cadenceRuntimeC0yA2CmF":{"name":"cadenceRuntimeError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO24encodingUnsupportedValueyA2CmF":{"name":"encodingUnsupportedValue","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO23storageCapacityExceededyA2CmF":{"name":"storageCapacityExceeded","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO016gasLimitExceededC0yA2CmF":{"name":"gasLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO018eventLimitExceededC0yA2CmF":{"name":"eventLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO030ledgerInteractionLimitExceededC0yA2CmF":{"name":"ledgerInteractionLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO017stateKeySizeLimitC0yA2CmF":{"name":"stateKeySizeLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO019stateValueSizeLimitC0yA2CmF":{"name":"stateValueSizeLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO029transactionFeeDeductionFailedC0yA2CmF":{"name":"transactionFeeDeductionFailedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024computationLimitExceededC0yA2CmF":{"name":"computationLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO019memoryLimitExceededC0yA2CmF":{"name":"memoryLimitExceededError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO41couldNotDecodeExecutionParameterFromStateyA2CmF":{"name":"couldNotDecodeExecutionParameterFromState","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO023scriptExecutionTimedOutC0yA2CmF":{"name":"scriptExecutionTimedOutError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024scriptExecutionCancelledC0yA2CmF":{"name":"scriptExecutionCancelledError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013eventEncodingC0yA2CmF":{"name":"eventEncodingError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO026invalidInternalStateAccessC0yA2CmF":{"name":"invalidInternalStateAccessError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO24insufficientPayerBalanceyA2CmF":{"name":"insufficientPayerBalance","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO07accountC0yA2CmF":{"name":"accountError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO015accountNotFoundC0yA2CmF":{"name":"accountNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO024accountPublicKeyNotFoundC0yA2CmF":{"name":"accountPublicKeyNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO020accountAlreadyExistsC0yA2CmF":{"name":"accountAlreadyExistsError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO013frozenAccountC0yA2CmF":{"name":"frozenAccountError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO028accountStorageNotInitializedC0yA2CmF":{"name":"accountStorageNotInitializedError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021accountPublicKeyLimitC0yA2CmF":{"name":"accountPublicKeyLimitError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO08contractC0yA2CmF":{"name":"contractError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO016contractNotFoundC0yA2CmF":{"name":"contractNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO021contractNamesNotFoundC0yA2CmF":{"name":"contractNamesNotFoundError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/FvmErrorCode.html#/s:4Flow12FvmErrorCodeO012evmExecutionC0yA2CmF":{"name":"evmExecutionError","abstract":"
Undocumented
","parent_name":"FvmErrorCode"},"Enums/CadenceType.html#/s:4Flow11CadenceTypeO5queryyA2CmF":{"name":"query","abstract":"
Undocumented
","parent_name":"CadenceType"},"Enums/CadenceType.html#/s:4Flow11CadenceTypeO11transactionyA2CmF":{"name":"transaction","abstract":"
Undocumented
","parent_name":"CadenceType"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO4pingyA2CmF":{"name":"ping","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getLatestBlockHeaderyA2CmF":{"name":"getLatestBlockHeader","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO18getBlockHeaderByIdyA2CmF":{"name":"getBlockHeaderById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO22getBlockHeaderByHeightyA2CmF":{"name":"getBlockHeaderByHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO14getLatestBlockyA2CmF":{"name":"getLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO12getBlockByIdyA2CmF":{"name":"getBlockById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO16getBlockByHeightyA2CmF":{"name":"getBlockByHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO17getCollectionByIdyA2CmF":{"name":"getCollectionById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO15sendTransactionyA2CmF":{"name":"sendTransaction","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO18getTransactionByIdyA2CmF":{"name":"getTransactionById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO24getTransactionResultByIdyA2CmF":{"name":"getTransactionResultById","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getAccountAtLatestBlockyA2CmF":{"name":"getAccountAtLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getAccountByBlockHeightyA2CmF":{"name":"getAccountByBlockHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO26executeScriptAtLatestBlockyA2CmF":{"name":"executeScriptAtLatestBlock","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO22executeScriptAtBlockIdyA2CmF":{"name":"executeScriptAtBlockId","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO26executeScriptAtBlockHeightyA2CmF":{"name":"executeScriptAtBlockHeight","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO23getEventsForHeightRangeyA2CmF":{"name":"getEventsForHeightRange","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getEventsForBlockIdsyA2CmF":{"name":"getEventsForBlockIds","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html#/s:4Flow0A9RPCMethodO20getNetworkParametersyA2CmF":{"name":"getNetworkParameters","abstract":"
Undocumented
","parent_name":"FlowRPCMethod"},"Enums/FlowRPCMethod.html":{"name":"FlowRPCMethod","abstract":"
RPC methods supported by the transport layer."},"Enums/CadenceType.html":{"name":"CadenceType","abstract":"
Undocumented
"},"Enums/FvmErrorCode.html":{"name":"FvmErrorCode","abstract":"
Undocumented
"},"Enums/TimeoutPolicy.html":{"name":"TimeoutPolicy","abstract":"
Undocumented
"},"Enums/TimeoutEvent.html":{"name":"TimeoutEvent","abstract":"
Undocumented
"},"Enums/FCLFlow.html":{"name":"FCLFlow","abstract":"
Undocumented
"},"Enums.html#/s:4Flow0A6ActorsO":{"name":"FlowActors","abstract":"
Undocumented
"},"Enums/FlowLogLevel.html":{"name":"FlowLogLevel","abstract":"
Undocumented
"},"Enums/Method.html":{"name":"Method","abstract":"
Undocumented
"},"Enums/Task.html":{"name":"Task","abstract":"
Undocumented
"},"Enums/UserAgent.html":{"name":"UserAgent","abstract":"
Unified, safe user agent generator for the Flow SDK."},"Enums/FlowWebSocketUpgradeEvent.html":{"name":"FlowWebSocketUpgradeEvent","abstract":"
Undocumented
"},"Enums/RLP.html":{"name":"RLP","abstract":"
Undocumented
"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC5group11configActorAC7NIOCore14EventLoopGroup_pSg_AA0a6ConfigG0Ctcfc":{"name":"init(group:configActor:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC15connectIfNeededyyYaKF":{"name":"connectIfNeeded()","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC10disconnectyyYaF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC30sendTransactionStatusSubscribe2idyA2AC2IDV_tYaF":{"name":"sendTransactionStatusSubscribe(id:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowNIOWebSocketClient.html#/s:4Flow0A18NIOWebSocketClientC20sendSubscribeMessage14subscriptionId5topic9argumentsySS_A2AC03WebC5TopicOxtYaKSERzs8SendableRzlF":{"name":"sendSubscribeMessage(subscriptionId:topic:arguments:)","abstract":"
Undocumented
","parent_name":"FlowNIOWebSocketClient"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC15minimumLogLevelAA0adE0Ovp":{"name":"minimumLogLevel","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC03addB0yyAA0aB8Protocol_pF":{"name":"addLogger(_:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC16removeAllLoggersyyF":{"name":"removeAllLoggers()","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC3log_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"log(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/FlowLogger.html#/s:4Flow0A6LoggerC8logAsync_7message8function4file4lineyAA0A8LogLevelO_S3SSitF":{"name":"logAsync(_:message:function:file:line:)","abstract":"
Undocumented
","parent_name":"FlowLogger"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC03setC0_3for2onySS_SSA2AC7ChainIDOtF":{"name":"setAddress(_:for:on:)","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC7address3for2onSSSgSS_A2AC7ChainIDOtF":{"name":"address(for:on:)","abstract":"
Undocumented
","parent_name":"ContractAddressRegister"},"Classes/ContractAddressRegister.html#/s:4Flow23ContractAddressRegisterC14resolveImports2in3forS2S_A2AC7ChainIDOtF":{"name":"resolveImports(in:for:)","abstract":"
Resolve import X from 0x... in a script, based on configured addresses.
","parent_name":"ContractAddressRegister"},"Classes/CadenceLoader/Category/Token.html#/s:4Flow13CadenceLoaderC8CategoryO5TokenO03getE14BalanceStorageyA2GmF":{"name":"getTokenBalanceStorage","abstract":"
Undocumented
","parent_name":"Token"},"Classes/CadenceLoader/Category/Token.html#/s:4Flow13CadenceLoaderC8CategoryO5TokenO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Token"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV2idSivp":{"name":"id","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV6nodeIDSSvp":{"name":"nodeID","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV15tokensCommittedSdvp":{"name":"tokensCommitted","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV12tokensStakedSdvp":{"name":"tokensStaked","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV15tokensUnstakingSdvp":{"name":"tokensUnstaking","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14tokensRewardedSdvp":{"name":"tokensRewarded","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14tokensUnstakedSdvp":{"name":"tokensUnstaked","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV24tokensRequestedToUnstakeSdvp":{"name":"tokensRequestedToUnstake","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV12stakingCountSdvp":{"name":"stakingCount","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking/StakingNode.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO0E4NodeV14unstakingCountSdvp":{"name":"unstakingCount","abstract":"
Undocumented
","parent_name":"StakingNode"},"Classes/CadenceLoader/Category/Staking.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO16getDelegatorInfoyA2GmF":{"name":"getDelegatorInfo","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/Staking.html#/s:4Flow13CadenceLoaderC8CategoryO7StakingO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/Staking/StakingNode.html":{"name":"StakingNode","abstract":"
Undocumented
","parent_name":"Staking"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO10getAddressyA2GmF":{"name":"getAddress","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO9createCOAyA2GmF":{"name":"createCOA","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO6evmRunyA2GmF":{"name":"evmRun","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/EVM.html#/s:4Flow13CadenceLoaderC8CategoryO3EVMO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"EVM"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9ThumbnailV9urlStringSSSgvp":{"name":"urlString","abstract":"
Undocumented
","parent_name":"Thumbnail"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9ThumbnailV3url10Foundation3URLVSgvp":{"name":"url","abstract":"
Undocumented
","parent_name":"Thumbnail"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV4nameSSSgvp":{"name":"name","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV11descriptionSSSgvp":{"name":"description","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8MetadataV9thumbnailAI9ThumbnailVSgvp":{"name":"thumbnail","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child/Metadata/Thumbnail.html":{"name":"Thumbnail","abstract":"
Undocumented
","parent_name":"Metadata"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO03getE7AddressyA2GmF":{"name":"getChildAddress","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO03getE11AccountMetayA2GmF":{"name":"getChildAccountMeta","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html#/s:4Flow13CadenceLoaderC8CategoryO5ChildO8filenameSSvp":{"name":"filename","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child/Metadata.html":{"name":"Metadata","abstract":"
Undocumented
","parent_name":"Child"},"Classes/CadenceLoader/Category/Child.html":{"name":"Child","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/EVM.html":{"name":"EVM","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/Staking.html":{"name":"Staking","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category/Token.html":{"name":"Token","abstract":"
Undocumented
","parent_name":"Category"},"Classes/CadenceLoader/Category.html":{"name":"Category","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC12subdirectorySSvpZ":{"name":"subdirectory","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC4load4name9directoryS2S_SStKFZ":{"name":"load(name:directory:)","abstract":"
Load a Cadence script from the module bundle.
","parent_name":"CadenceLoader"},"Classes/CadenceLoader.html#/s:4Flow13CadenceLoaderC4loadySSAA0bC8Protocol_pKFZ":{"name":"load(_:)","abstract":"
Undocumented
","parent_name":"CadenceLoader"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV5topicAB0bcD0Ovp":{"name":"topic","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV7payloadxSgvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketTopicResponse.html#/s:4FlowAAC22WebSocketTopicResponseV5errorAB0bcC5ErrorVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"WebSocketTopicResponse"},"Classes/Flow/WebSocketSocketError.html#/s:4FlowAAC09WebSocketC5ErrorV4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"WebSocketSocketError"},"Classes/Flow/WebSocketSocketError.html#/s:4FlowAAC09WebSocketC5ErrorV7messageSSvp":{"name":"message","abstract":"
Undocumented
","parent_name":"WebSocketSocketError"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV6actionAB0bC6ActionOvp":{"name":"action","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeResponse.html#/s:4FlowAAC26WebSocketSubscribeResponseV5errorAB0bcC5ErrorVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeResponse"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV2idSSSgvp":{"name":"id","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV6actionAB0bC6ActionOvp":{"name":"action","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV5topicAB0bC5TopicOSgvp":{"name":"topic","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV9argumentsxSgvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketSubscribeRequest.html#/s:4FlowAAC25WebSocketSubscribeRequestV2id6action5topic9argumentsADy_xGSSSg_AB0bC6ActionOAB0bC5TopicOSgxSgtcfc":{"name":"init(id:action:topic:arguments:)","abstract":"
Undocumented
","parent_name":"WebSocketSubscribeRequest"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO9subscribeyA2DmF":{"name":"subscribe","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO11unsubscribeyA2DmF":{"name":"unsubscribe","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketAction.html#/s:4FlowAAC15WebSocketActionO17listSubscriptionsyA2DmF":{"name":"listSubscriptions","abstract":"
Undocumented
","parent_name":"WebSocketAction"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO12blockDigestsyA2DmF":{"name":"blockDigests","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO12blockHeadersyA2DmF":{"name":"blockHeaders","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO6blocksyA2DmF":{"name":"blocks","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO6eventsyA2DmF":{"name":"events","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO15accountStatusesyA2DmF":{"name":"accountStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO19transactionStatusesyA2DmF":{"name":"transactionStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketTopic.html#/s:4FlowAAC14WebSocketTopicO29sendAndGetTransactionStatusesyA2DmF":{"name":"sendAndGetTransactionStatuses","abstract":"
Undocumented
","parent_name":"WebSocketTopic"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV13transactionIdSSvp":{"name":"transactionId","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV16transactionIndexSSvp":{"name":"transactionIndex","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV10eventIndexSSvp":{"name":"eventIndex","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV7payloadSSvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusEvent.html#/s:4FlowAAC27WebSocketAccountStatusEventV4type13transactionId0H5Index05eventJ07payloadADSS_S4Stcfc":{"name":"init(type:transactionId:transactionIndex:eventIndex:payload:)","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusEvent"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV7blockIdSSvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV6heightSSvp":{"name":"height","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV13accountEventsSDySSSayAB0bcdE5EventVGGvp":{"name":"accountEvents","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketAccountStatusResponse.html#/s:4FlowAAC30WebSocketAccountStatusResponseV7blockId6height13accountEventsADSS_SSSDySSSayAB0bcdE5EventVGGtcfc":{"name":"init(blockId:height:accountEvents:)","abstract":"
Undocumented
","parent_name":"WebSocketAccountStatusResponse"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV11blockStatusAB0bcdH0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV05startD6HeightSSSgvp":{"name":"startBlockHeight","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV05startD2IdSSSgvp":{"name":"startBlockId","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketBlockDigestArguments.html#/s:4FlowAAC29WebSocketBlockDigestArgumentsV11blockStatus05startD6Height0iD2IdAdB0bcdH0O_SSSgAJtcfc":{"name":"init(blockStatus:startBlockHeight:startBlockId:)","abstract":"
Undocumented
","parent_name":"WebSocketBlockDigestArguments"},"Classes/Flow/WebSocketTransactionStatusRequest.html#/s:4FlowAAC33WebSocketTransactionStatusRequestV4txIdSSvp":{"name":"txId","abstract":"
Undocumented
","parent_name":"WebSocketTransactionStatusRequest"},"Classes/Flow/WebSocketTransactionStatusRequest.html#/s:4FlowAAC33WebSocketTransactionStatusRequestV4txIdADSS_tcfc":{"name":"init(txId:)","abstract":"
Undocumented
","parent_name":"WebSocketTransactionStatusRequest"},"Classes/Flow/WebSocketBlockStatus.html#/s:4FlowAAC20WebSocketBlockStatusO9finalizedyA2DmF":{"name":"finalized","abstract":"
Undocumented
","parent_name":"WebSocketBlockStatus"},"Classes/Flow/WebSocketBlockStatus.html#/s:4FlowAAC20WebSocketBlockStatusO6sealedyA2DmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"WebSocketBlockStatus"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV6statusAB11TransactionV6StatusOvp":{"name":"status","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV10statusCodeSivp":{"name":"statusCode","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV12errorMessageSSSgvp":{"name":"errorMessage","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV7blockIdSSSgvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV15computationUsedSSSgvp":{"name":"computationUsed","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV6eventsSayAB5EventVGvp":{"name":"events","abstract":"
Undocumented
","parent_name":"WSTransactionResponse"},"Classes/Flow/WSTransactionResponse.html#/s:4FlowAAC21WSTransactionResponseV19asTransactionResultAB0eF0VyKF":{"name":"asTransactionResult()","abstract":"
Bridge to the public TransactionResult model.
","parent_name":"WSTransactionResponse"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC6sharedADvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC07accountB07addressScSyAB7AddressVGAH_tF":{"name":"accountPublisher(address:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC010connectionB0ScSySbGyF":{"name":"connectionPublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC014walletResponseB0ScSyAB06WalletE0VGyF":{"name":"walletResponsePublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC05errorB0ScSys5Error_pGyF":{"name":"errorPublisher()","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC20publishAccountUpdate7addressyAB7AddressV_tF":{"name":"publishAccountUpdate(address:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC23publishConnectionStatus11isConnectedySb_tF":{"name":"publishConnectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC21publishWalletResponseyyAB0eF0VF":{"name":"publishWalletResponse(_:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/PublisherCenter.html#/s:4FlowAAC15PublisherCenterC12publishErroryys0E0_pF":{"name":"publishError(_:)","abstract":"
Undocumented
","parent_name":"PublisherCenter"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV2idSivp":{"name":"id","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV7jsonrpcSSvp":{"name":"jsonrpc","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV9requestIdSSvp":{"name":"requestId","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV8approvedSbvp":{"name":"approved","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/WalletResponse.html#/s:4FlowAAC14WalletResponseV2id7jsonrpc9requestId8approvedADSi_S2SSbtcfc":{"name":"init(id:jsonrpc:requestId:approved:)","abstract":"
Undocumented
","parent_name":"WalletResponse"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV6heightSSvp":{"name":"height","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html#/s:4FlowAAC9PublisherC13WSBlockHeaderV7blockId6height9timestampAfB2IDV_SS10Foundation4DateVtcfc":{"name":"init(blockId:height:timestamp:)","abstract":"
Undocumented
","parent_name":"WSBlockHeader"},"Classes/Flow/Publisher/WSBlockHeader.html":{"name":"WSBlockHeader","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC17transactionStreamScSyAB2IDV_AB17TransactionResultVtGyF":{"name":"transactionStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC13accountStreamScSyAB7AddressVGyF":{"name":"accountStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC11blockStreamScSyAD13WSBlockHeaderVGyF":{"name":"blockStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC16connectionStreamScSySbGyF":{"name":"connectionStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC20walletResponseStreamScSySb8approved_SDySSypGtGyF":{"name":"walletResponseStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC11errorStreamScSys5Error_pGyF":{"name":"errorStream()","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC24publishTransactionStatus2id6statusyAB2IDV_AB0D6ResultVtF":{"name":"publishTransactionStatus(id:status:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC20publishAccountUpdate7addressyAB7AddressV_tF":{"name":"publishAccountUpdate(address:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC23publishConnectionStatus11isConnectedySb_tF":{"name":"publishConnectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC21publishWalletResponse8approved4dataySb_SDySSypGtF":{"name":"publishWalletResponse(approved:data:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC12publishBlock2id6height9timestampyAB2IDV_SS10Foundation4DateVtF":{"name":"publishBlock(id:height:timestamp:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/Publisher.html#/s:4FlowAAC9PublisherC12publishErroryys0D0_pF":{"name":"publishError(_:)","abstract":"
Undocumented
","parent_name":"Publisher"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO17transactionStatusyAdB2IDV_AB17TransactionResultVtcADmF":{"name":"transactionStatus(id:status:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO13accountUpdateyAdB7AddressV_tcADmF":{"name":"accountUpdate(address:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO16connectionStatusyADSb_tcADmF":{"name":"connectionStatus(isConnected:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO14walletResponseyADSb_SDySSypGtcADmF":{"name":"walletResponse(approved:_:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO5blockyAdB2IDV_SS10Foundation4DateVtcADmF":{"name":"block(id:height:timestamp:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/PublisherEvent.html#/s:4FlowAAC14PublisherEventO5erroryADs5Error_pcADmF":{"name":"error(_:)","abstract":"
Undocumented
","parent_name":"PublisherEvent"},"Classes/Flow/BlockStatus.html#/s:4FlowAAC11BlockStatusO6sealedyA2DmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"BlockStatus"},"Classes/Flow/BlockStatus.html#/s:4FlowAAC11BlockStatusO5finalyA2DmF":{"name":"final","abstract":"
Undocumented
","parent_name":"BlockStatus"},"Classes/Flow/Code.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Code"},"Classes/Flow/Code.html#/s:4FlowAAC4CodeV4textSSvp":{"name":"text","abstract":"
UTF‑8 text representation of the code.
","parent_name":"Code"},"Classes/Flow/Code.html#/s:4FlowAAC4CodeV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Code"},"Classes/Flow/Code.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Code"},"Classes/Flow/Code.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Code"},"Classes/Flow/Code.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Code"},"Classes/Flow/PublicKey.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:4FlowAAC9PublicKeyV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"PublicKey"},"Classes/Flow/PublicKey.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"PublicKey"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7addressAB7AddressVvp":{"name":"address","abstract":"
The address of the signature
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of the signed key
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV9signature10Foundation4DataVvp":{"name":"signature","abstract":"
Signature Data
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7address8keyIndex9signatureAdB7AddressV_Si10Foundation4DataVtcfc":{"name":"init(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV7address11signerIndex03keyF09signatureAdB7AddressV_S2i10Foundation4DataVtcfc":{"name":"init(address:signerIndex:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:4FlowAAC20TransactionSignatureV9buildUpon7address11signerIndex03keyH09signatureAdB7AddressVSg_SiSgAM10Foundation4DataVSgtF":{"name":"buildUpon(address:signerIndex:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionSignature.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionSignature"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7addressAB7AddressVvp":{"name":"address","abstract":"
The address of account
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV8keyIndexSivp":{"name":"keyIndex","abstract":"
The index of public key in account
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV14sequenceNumber6BigIntAFVvp":{"name":"sequenceNumber","abstract":"
The sequence numbers to ensure that each transaction runs at most once","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7address8keyIndexAdB7AddressV_Sitcfc":{"name":"init(address:keyIndex:)","abstract":"
Undocumented
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:4FlowAAC22TransactionProposalKeyV7address8keyIndex14sequenceNumberAdB7AddressV_Sis5Int64Vtcfc":{"name":"init(address:keyIndex:sequenceNumber:)","abstract":"
Undocumented
","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionProposalKey"},"Classes/Flow/TransactionProposalKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionProposalKey"},"Classes/Flow/Transaction/EnvelopeSignature.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"EnvelopeSignature"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7unknownyA2FmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7pendingyA2FmF":{"name":"pending","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO9finalizedyA2FmF":{"name":"finalized","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO8executedyA2FmF":{"name":"executed","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO6sealedyA2FmF":{"name":"sealed","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO7expiredyA2FmF":{"name":"expired","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusO11stringValueSSvp":{"name":"stringValue","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusOyAFSScfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:4FlowAAC11TransactionV6StatusOyAFSicfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Status"},"Classes/Flow/Transaction/Status.html#/s:SL1loiySbx_xtFZ":{"name":"<(_:_:)","parent_name":"Status"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6scriptAB6ScriptVvp":{"name":"script","abstract":"
A valid cadence script.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Any arguments to the script if needed should be supplied via a function that returns an array of arguments.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16referenceBlockIdAB2IDVvp":{"name":"referenceBlockId","abstract":"
The ID of the block to execute the interaction at.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV8gasLimit6BigInt0E4UIntVvp":{"name":"gasLimit","abstract":"
Compute (Gas) limit for query. Read the documentation about computation cost for information about how computation cost is calculated on Flow.","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11proposalKeyAB0b8ProposalD0Vvp":{"name":"proposalKey","abstract":"
The valid key of proposer role.
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV5payerAB7AddressVvp":{"name":"payer","abstract":"
The address of payer
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11authorizersSayAB7AddressVGvp":{"name":"authorizers","abstract":"
The list of authorizer’s address
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV17payloadSignaturesSayAB0B9SignatureVGvp":{"name":"payloadSignatures","abstract":"
The list of payload signature
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV18envelopeSignaturesSayAB0B9SignatureVGvp":{"name":"envelopeSignatures","abstract":"
The list of envelope signature
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeO0AdB6ScriptV_SayAB8ArgumentVGAB2IDV6BigInt0T4UIntVAB0b8ProposalK0VAB7AddressVSayA_GSayAB0B9SignatureVGA3_tcfc":{"name":"init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeO0AdB6ScriptV_SayAB8ArgumentVGAB2IDVs6UInt64VAB0b8ProposalK0VAB7AddressVSayAZGSayAB0B9SignatureVGA2_tcfc":{"name":"init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV9buildUpOn6script9arguments16referenceBlockId8gasLimit11proposalKey5payer11authorizers17payloadSignatures08envelopeR0AdB6ScriptVSg_SayAB8ArgumentVGSgAB2IDVSg6BigInt0W4UIntVSgAB0b8ProposalN0VSgAB7AddressVSgSayA5_GSgSayAB0B9SignatureVGSgA12_tF":{"name":"buildUpOn(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15encodedEnvelope10Foundation4DataVSgvp":{"name":"encodedEnvelope","abstract":"
RLP Encoded data of Envelope
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15envelopeMessageSSSgvp":{"name":"envelopeMessage","abstract":"
RLP Encoded data of Envelope in hex string
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16signableEnvelope10Foundation4DataVSgvp":{"name":"signableEnvelope","abstract":"
RLP Encoded data of Envelope with DomainTag.transaction prefix
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV14encodedPayload10Foundation4DataVSgvp":{"name":"encodedPayload","abstract":"
RLP Encoded data of Payload
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV14payloadMessageSSSgvp":{"name":"payloadMessage","abstract":"
RLP Encoded data of Payload in hex string
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV16signablePlayload10Foundation4DataVSgvp":{"name":"signablePlayload","abstract":"
RLP Encoded data of Payload with DomainTag.transaction prefix
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV12updateScript6scriptyAB0D0V_tF":{"name":"updateScript(script:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV19addPayloadSignatureyyAB0bE0VF":{"name":"addPayloadSignature(_:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV19addPayloadSignature7address8keyIndex9signatureyAB7AddressV_Si10Foundation4DataVtF":{"name":"addPayloadSignature(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV20addEnvelopeSignature7address8keyIndex9signatureyAB7AddressV_Si10Foundation4DataVtF":{"name":"addEnvelopeSignature(address:keyIndex:signature:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV20addEnvelopeSignatureyyAB0bE0VF":{"name":"addEnvelopeSignature(_:)","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV11signPayload7signersADSayAA0A6Signer_pG_tYaKF":{"name":"signPayload(signers:)","abstract":"
Sign transaction payload with provided signers
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV12signEnvelope7signersADSayAA0A6Signer_pG_tYaKF":{"name":"signEnvelope(signers:)","abstract":"
Sign transaction envelope with payer
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV4sign7signersADSayAA0A6Signer_pG_tYaKF":{"name":"sign(signers:)","abstract":"
Sign (Mutate) unsigned Flow Transaction with a list of FlowSigner
","parent_name":"Transaction"},"Classes/Flow/Transaction/Status.html":{"name":"Status","abstract":"
The transaction status
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV7PayloadV":{"name":"Payload","abstract":"
Internal struct for payload RLP encoding
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15PayloadEnvelopeV":{"name":"PayloadEnvelope","abstract":"
Internal struct for Envelope RLP encoding
","parent_name":"Transaction"},"Classes/Flow/Transaction/EnvelopeSignature.html":{"name":"EnvelopeSignature","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Transaction.html#/s:4FlowAAC11TransactionV15PaymentEnvelopeV":{"name":"PaymentEnvelope","abstract":"
Undocumented
","parent_name":"Transaction"},"Classes/Flow/Signature.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:4FlowAAC9SignatureV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:4FlowAAC9SignatureV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"Signature"},"Classes/Flow/Signature.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Signature"},"Classes/Flow/ScriptResponse.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6fieldsAB8ArgumentVSgvp":{"name":"fields","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:4FlowAAC14ScriptResponseV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"ScriptResponse"},"Classes/Flow/ScriptResponse.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ScriptResponse"},"Classes/Flow/Script.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4textSSvp":{"name":"text","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4textADSS_tcfc":{"name":"init(text:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:4FlowAAC6ScriptV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Script"},"Classes/Flow/Script.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Script"},"Classes/Flow/Script.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Script"},"Classes/Flow/Script.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Script"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4data10Foundation4DataVvp":{"name":"data","abstract":"
Raw ID bytes (big-endian).
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Create an ID from raw bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Create an ID from a hex string (with or without “0x” prefix).
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Create an ID from an array of bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV5bytesADs10ArraySliceVys5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Create an ID from a slice of bytes.
","parent_name":"ID"},"Classes/Flow/ID.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ID"},"Classes/Flow/ID.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"ID"},"Classes/Flow/ID.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"ID"},"Classes/Flow/ID.html#/s:4FlowAAC2IDV4once6status7timeoutAB17TransactionResultVAB0F0V6StatusO_SdtYaKF":{"name":"once(status:timeout:)","abstract":"
Undocumented
","parent_name":"ID"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6statusAB0B0V6StatusOvp":{"name":"status","abstract":"
The status of the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV12errorMessageSSvp":{"name":"errorMessage","abstract":"
The error message for the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6eventsSayAB5EventVGvp":{"name":"events","abstract":"
The emitted events by this transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV10statusCodeSivp":{"name":"statusCode","abstract":"
The status code of the transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
The ID of the block that included this transaction
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV15computationUsedSSvp":{"name":"computationUsed","abstract":"
Total computation used by this transaction (as returned by the API)
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV6status12errorMessage6events0D4Code7blockId15computationUsedAdB0B0V6StatusO_SSSayAB5EventVGSiAB2IDVSStcfc":{"name":"init(status:errorMessage:events:statusCode:blockId:computationUsed:)","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV9errorCodeAA08FvmErrorE0OSgvp":{"name":"errorCode","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV8getEventyAB0E0VSgSSF":{"name":"getEvent(_:)","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/TransactionResult.html#/s:4FlowAAC17TransactionResultV17getCreatedAddressSSSgyF":{"name":"getCreatedAddress()","abstract":"
Undocumented
","parent_name":"TransactionResult"},"Classes/Flow/Snapshot.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:4FlowAAC8SnapshotV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:4FlowAAC8SnapshotV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Snapshot"},"Classes/Flow/Snapshot.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Snapshot"},"Classes/Flow/Event/Payload.html#/s:4Flow0A6EntityP4data10Foundation4DataVvp":{"name":"data","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6fieldsAB8ArgumentVSgvp":{"name":"fields","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV4dataAF10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV5bytesAFSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Payload.html#/s:4FlowAAC5EventV7PayloadV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Payload"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Block ID where event occurred.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV11blockHeights6UInt64Vvp":{"name":"blockHeight","abstract":"
Block height.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV6eventsSayADGvp":{"name":"events","abstract":"
Events in this result.
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:4FlowAAC5EventV6ResultV7blockId0D6Height6eventsAfB2IDV_s6UInt64VSayADGtcfc":{"name":"init(blockId:blockHeight:events:)","abstract":"
Undocumented
","parent_name":"Result"},"Classes/Flow/Event/Result.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Result"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV4typeSSvp":{"name":"type","abstract":"
Event type identifier.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV13transactionIdAB2IDVvp":{"name":"transactionId","abstract":"
The id for the transaction, Flow.ID.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV16transactionIndexSivp":{"name":"transactionIndex","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV10eventIndexSivp":{"name":"eventIndex","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV7payloadAD7PayloadVvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV4type13transactionId0D5Index05eventF07payloadADSS_AB2IDVS2iAD7PayloadVtcfc":{"name":"init(type:transactionId:transactionIndex:eventIndex:payload:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Event.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Event"},"Classes/Flow/Event/Result.html":{"name":"Result","abstract":"
Event result including block context.
","parent_name":"Event"},"Classes/Flow/Event/Payload.html":{"name":"Payload","abstract":"
Raw Cadence payload and decoded argument fields.
","parent_name":"Event"},"Classes/Flow/Event.html#/s:4FlowAAC5EventV8getFieldyxSgSSSeRzlF":{"name":"getField(_:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8RawValuea":{"name":"RawValue","abstract":"
Undocumented
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO11transactionyA2DmF":{"name":"transaction","abstract":"
The tag for transaction
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO4useryA2DmF":{"name":"user","abstract":"
The tag for user
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO12accountProofyA2DmF":{"name":"accountProof","abstract":"
The tag for account proof
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO6customyADSScADmF":{"name":"custom(_:)","abstract":"
Custom domain tag
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8rawValueSSvp":{"name":"rawValue","abstract":"
The rawValue for domain tag
","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO8rawValueADSgSS_tcfc":{"name":"init(rawValue:)","abstract":"
Init a domain tag by string","parent_name":"DomainTag"},"Classes/Flow/DomainTag.html#/s:4FlowAAC9DomainTagO9normalize10Foundation4DataVvp":{"name":"normalize","abstract":"
Convert tag string into data with .uft8 format","parent_name":"DomainTag"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV12collectionIdAB2IDVvp":{"name":"collectionId","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV9signerIdsSayAB2IDVGvp":{"name":"signerIds","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/CollectionGuarantee.html#/s:4FlowAAC19CollectionGuaranteeV12collectionId9signerIdsAdB2IDV_SayAHGtcfc":{"name":"init(collectionId:signerIds:)","abstract":"
Undocumented
","parent_name":"CollectionGuarantee"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV2idAB2IDVvp":{"name":"id","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV14transactionIdsSayAB2IDVGvp":{"name":"transactionIds","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/Collection.html#/s:4FlowAAC10CollectionV2id14transactionIdsAdB2IDV_SayAHGtcfc":{"name":"init(id:transactionIds:)","abstract":"
Undocumented
","parent_name":"Collection"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7unknownyA2DmF":{"name":"unknown","abstract":"
Unknown environment as a fallback.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7mainnetyA2DmF":{"name":"mainnet","abstract":"
Mainnet environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO7testnetyA2DmF":{"name":"testnet","abstract":"
Testnet environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO8emulatoryA2DmF":{"name":"emulator","abstract":"
Emulator environment.","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO6customyADSS_AB9TransportOtcADmF":{"name":"custom(name:transport:)","abstract":"
Custom ChainID with custom Transport.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO8allCasesSayADGvpZ":{"name":"allCases","abstract":"
List of non-custom chain ids.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO4nameSSvp":{"name":"name","abstract":"
Name of the chain id.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO5valueSSvp":{"name":"value","abstract":"
Value from the access API","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO15defaultHTTPNodeAB9TransportOvp":{"name":"defaultHTTPNode","abstract":"
Default HTTP endpoint for this chain.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO11defaultNodeAB9TransportOvp":{"name":"defaultNode","abstract":"
Default node for .mainnet, .testnet, .emulator.
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO20defaultWebSocketNodeAB9TransportOSgvp":{"name":"defaultWebSocketNode","abstract":"
Undocumented
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:4FlowAAC7ChainIDO4nameADSS_tcfc":{"name":"init(name:)","abstract":"
Undocumented
","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"ChainID"},"Classes/Flow/ChainID.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"ChainID"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4voidyA2FmF":{"name":"void","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8optionalyA2FSgcAFmF":{"name":"optional(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4boolyAFSbcAFmF":{"name":"bool(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6stringyAFSScAFmF":{"name":"string(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO9characteryAFSScAFmF":{"name":"character(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO3intyAFSicAFmF":{"name":"int(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4uintyAFSucAFmF":{"name":"uint(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4int8yAFs4Int8VcAFmF":{"name":"int8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5uint8yAFs5UInt8VcAFmF":{"name":"uint8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int16yAFs5Int16VcAFmF":{"name":"int16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint16yAFs6UInt16VcAFmF":{"name":"uint16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int32yAFs5Int32VcAFmF":{"name":"int32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint32yAFs6UInt32VcAFmF":{"name":"uint32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5int64yAFs5Int64VcAFmF":{"name":"int64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6uint64yAFs6UInt64VcAFmF":{"name":"uint64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6int128yAF6BigIntAHVcAFmF":{"name":"int128(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7uint128yAF6BigInt0E4UIntVcAFmF":{"name":"uint128(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6int256yAF6BigIntAHVcAFmF":{"name":"int256(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7uint256yAF6BigInt0E4UIntVcAFmF":{"name":"uint256(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5word8yAFs5UInt8VcAFmF":{"name":"word8(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word16yAFs6UInt16VcAFmF":{"name":"word16(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word32yAFs6UInt32VcAFmF":{"name":"word32(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6word64yAFs6UInt64VcAFmF":{"name":"word64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5fix64yAFSo9NSDecimalacAFmF":{"name":"fix64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6ufix64yAFSo9NSDecimalacAFmF":{"name":"ufix64(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5arrayyAFSayAFGcAFmF":{"name":"array(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO7addressyAfB7AddressVcAFmF":{"name":"address(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4pathyAfB8ArgumentV4PathVcAFmF":{"name":"path(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO9referenceyAfB8ArgumentV9ReferenceVcAFmF":{"name":"reference(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO10capabilityyAfB8ArgumentV10CapabilityVcAFmF":{"name":"capability(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4typeyAfB8ArgumentV10StaticTypeVcAFmF":{"name":"type(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO10dictionaryyAFSayAB8ArgumentV10DictionaryVGcAFmF":{"name":"dictionary(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO6structyAfB8ArgumentV5EventVcAFmF":{"name":"struct(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8resourceyAfB8ArgumentV5EventVcAFmF":{"name":"resource(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5eventyAfB8ArgumentV5EventVcAFmF":{"name":"event(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO8contractyAfB8ArgumentV5EventVcAFmF":{"name":"contract(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO4enumyAfB8ArgumentV5EventVcAFmF":{"name":"enum(_:)","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO11unsupportedyA2FmF":{"name":"unsupported","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:4FlowAAC7CadenceC6FValueO5erroryA2FmF":{"name":"error","abstract":"
Undocumented
","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"FValue"},"Classes/Flow/Cadence/FValue.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"FValue"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4voidyA2FmF":{"name":"void","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8optionalyA2FmF":{"name":"optional","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4boolyA2FmF":{"name":"bool","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6stringyA2FmF":{"name":"string","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO3intyA2FmF":{"name":"int","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4uintyA2FmF":{"name":"uint","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4int8yA2FmF":{"name":"int8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5uint8yA2FmF":{"name":"uint8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int16yA2FmF":{"name":"int16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint16yA2FmF":{"name":"uint16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int32yA2FmF":{"name":"int32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint32yA2FmF":{"name":"uint32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5int64yA2FmF":{"name":"int64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6uint64yA2FmF":{"name":"uint64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6int128yA2FmF":{"name":"int128","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7uint128yA2FmF":{"name":"uint128","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6int256yA2FmF":{"name":"int256","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7uint256yA2FmF":{"name":"uint256","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5word8yA2FmF":{"name":"word8","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word16yA2FmF":{"name":"word16","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word32yA2FmF":{"name":"word32","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6word64yA2FmF":{"name":"word64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5fix64yA2FmF":{"name":"fix64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6ufix64yA2FmF":{"name":"ufix64","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5arrayyA2FmF":{"name":"array","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO10dictionaryyA2FmF":{"name":"dictionary","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO7addressyA2FmF":{"name":"address","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4pathyA2FmF":{"name":"path","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO6structyA2FmF":{"name":"struct","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8resourceyA2FmF":{"name":"resource","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO5eventyA2FmF":{"name":"event","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9characteryA2FmF":{"name":"character","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9referenceyA2FmF":{"name":"reference","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO10capabilityyA2FmF":{"name":"capability","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4typeyA2FmF":{"name":"type","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO8contractyA2FmF":{"name":"contract","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO4enumyA2FmF":{"name":"enum","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:4FlowAAC7CadenceC5FTypeO9undefinedyA2FmF":{"name":"undefined","abstract":"
Undocumented
","parent_name":"FType"},"Classes/Flow/Cadence/FType.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"FType"},"Classes/Flow/Cadence/FType.html":{"name":"FType","abstract":"
All the type in Cadence","parent_name":"Cadence"},"Classes/Flow/Cadence/FValue.html":{"name":"FValue","abstract":"
Cadence runtime value.","parent_name":"Cadence"},"Classes/Flow/Cadence.html#/s:4FlowAAC7CadenceC4KindV":{"name":"Kind","abstract":"
Undocumented
","parent_name":"Cadence"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV2idAB2IDVvp":{"name":"id","abstract":"
The identification of block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV8parentIdAB2IDVvp":{"name":"parentId","abstract":"
The identification of previous block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV6heights6UInt64Vvp":{"name":"height","abstract":"
The height of block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
The time when the block is created.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV20collectionGuaranteesSayAB19CollectionGuaranteeVGvp":{"name":"collectionGuarantees","abstract":"
Collection guarantees included in the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV10blockSealsSayAB0B4SealVGvp":{"name":"blockSeals","abstract":"
Seals associated with the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV10signaturesSayAB9SignatureVGSgvp":{"name":"signatures","abstract":"
The list of signatures of the block.
","parent_name":"Block"},"Classes/Flow/Block.html#/s:4FlowAAC5BlockV2id8parentId6height9timestamp20collectionGuarantees10blockSeals10signaturesAdB2IDV_AMs6UInt64V10Foundation4DateVSayAB19CollectionGuaranteeVGSayAB0B4SealVGSayAB9SignatureVGSgtcfc":{"name":"init(id:parentId:height:timestamp:collectionGuarantees:blockSeals:signatures:)","abstract":"
Undocumented
","parent_name":"Block"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV7blockIdAB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV18executionReceiptIdAB2IDVvp":{"name":"executionReceiptId","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV26executionReceiptSignaturesSayAB9SignatureVGSgvp":{"name":"executionReceiptSignatures","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV24resultApprovalSignaturesSayAB9SignatureVGSgvp":{"name":"resultApprovalSignatures","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:4FlowAAC9BlockSealV7blockId016executionReceiptE00fG10Signatures014resultApprovalH0AdB2IDV_AJSayAB9SignatureVGSgANtcfc":{"name":"init(blockId:executionReceiptId:executionReceiptSignatures:resultApprovalSignatures:)","abstract":"
Undocumented
","parent_name":"BlockSeal"},"Classes/Flow/BlockSeal.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"BlockSeal"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV2idAB2IDVvp":{"name":"id","abstract":"
The identification of block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV8parentIdAB2IDVvp":{"name":"parentId","abstract":"
The identification of previous block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV6heights6UInt64Vvp":{"name":"height","abstract":"
The height of block.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV9timestamp10Foundation4DateVvp":{"name":"timestamp","abstract":"
The time when the block is created.
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:4FlowAAC11BlockHeaderV2id8parentId6height9timestampAdB2IDV_AJs6UInt64V10Foundation4DateVtcfc":{"name":"init(id:parentId:height:timestamp:)","abstract":"
Undocumented
","parent_name":"BlockHeader"},"Classes/Flow/BlockHeader.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"BlockHeader"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO7unknownyA2DmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA2_256yA2DmF":{"name":"SHA2_256","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA2_384yA2DmF":{"name":"SHA2_384","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA3_256yA2DmF":{"name":"SHA3_256","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO8SHA3_384yA2DmF":{"name":"SHA3_384","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO9algorithmSSvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO10outputSizeSivp":{"name":"outputSize","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO4codeADSi_tcfc":{"name":"init(code:)","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/HashAlgorithm.html#/s:4FlowAAC13HashAlgorithmO7cadenceADSi_tcfc":{"name":"init(cadence:)","abstract":"
Undocumented
","parent_name":"HashAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO7unknownyA2DmF":{"name":"unknown","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO10ECDSA_P256yA2DmF":{"name":"ECDSA_P256","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO15ECDSA_SECP256k1yA2DmF":{"name":"ECDSA_SECP256k1","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO9algorithmSSvp":{"name":"algorithm","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO4codeSivp":{"name":"code","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO5curveSSvp":{"name":"curve","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO4codeADSi_tcfc":{"name":"init(code:)","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/SignatureAlgorithm.html#/s:4FlowAAC18SignatureAlgorithmO5indexADSi_tcfc":{"name":"init(index:)","abstract":"
Undocumented
","parent_name":"SignatureAlgorithm"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV06publicC0AB06PublicC0Vvp":{"name":"publicKey","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV8signAlgoAB18SignatureAlgorithmOvp":{"name":"signAlgo","abstract":"
Use Flow’s crypto enums, not NIO TLS ones.
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV8hashAlgoAB13HashAlgorithmOvp":{"name":"hashAlgo","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV6weightSivp":{"name":"weight","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV14sequenceNumbers5Int64Vvp":{"name":"sequenceNumber","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV7revokedSbvp":{"name":"revoked","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV5index06publicC08signAlgo04hashG06weight14sequenceNumber7revokedADSi_AB06PublicC0VAB18SignatureAlgorithmOAB04HashO0OSis5Int64VSbtcfc":{"name":"init(index:publicKey:signAlgo:hashAlgo:weight:sequenceNumber:revoked:)","abstract":"
Undocumented
","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"AccountKey"},"Classes/Flow/AccountKey.html#/s:4FlowAAC10AccountKeyV7encoded10Foundation4DataVSgvp":{"name":"encoded","abstract":"
Encode the account key with RLP encoding
","parent_name":"AccountKey"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7balance6BigIntAFVSgvp":{"name":"balance","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV4keysSayAB0B3KeyVGvp":{"name":"keys","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV9contractsSDySSAB4CodeVGSgvp":{"name":"contracts","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:4FlowAAC7AccountV7address7balance4keys9contractsAdB7AddressV_6BigIntAKVSgSayAB0B3KeyVGSDySSAB4CodeVGSgtcfc":{"name":"init(address:balance:keys:contracts:)","abstract":"
Undocumented
","parent_name":"Account"},"Classes/Flow/Account.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Account"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO7genericyA2DmF":{"name":"generic","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO8urlEmptyyA2DmF":{"name":"urlEmpty","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO10urlInvaildyA2DmF":{"name":"urlInvaild","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO8declinedyA2DmF":{"name":"declined","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13encodeFailureyA2DmF":{"name":"encodeFailure","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13decodeFailureyA2DmF":{"name":"decodeFailure","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15unauthenticatedyA2DmF":{"name":"unauthenticated","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13emptyProposeryA2DmF":{"name":"emptyProposer","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildPlayloadyA2DmF":{"name":"invaildPlayload","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildEnvelopeyA2DmF":{"name":"invaildEnvelope","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO18invaildAccountInfoyA2DmF":{"name":"invaildAccountInfo","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13missingSigneryA2DmF":{"name":"missingSigner","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO26preparingTransactionFailedyA2DmF":{"name":"preparingTransactionFailed","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO7timeoutyA2DmF":{"name":"timeout","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO15invaildResponseyA2DmF":{"name":"invaildResponse","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO13invalidScriptyA2DmF":{"name":"invalidScript","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO14scriptNotFoundyADSS_SStcADmF":{"name":"scriptNotFound(name:directory:)","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO11customErroryADSS_tcADmF":{"name":"customError(msg:)","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:4FlowAAC6FErrorO21createWebSocketFailedyA2DmF":{"name":"createWebSocketFailed","abstract":"
Undocumented
","parent_name":"FError"},"Classes/Flow/FError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"FError"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV10byteLengthSivpZ":{"name":"byteLength","abstract":"
Flow address size in bytes.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV4data10Foundation4DataVvp":{"name":"data","abstract":"
Raw address bytes.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV3hexSSvp":{"name":"hex","abstract":"
Hexadecimal string representation with 0x prefix.
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV3hexADSS_tcfc":{"name":"init(hex:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressVyADSScfc":{"name":"init(_:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV4dataAD10Foundation4DataV_tcfc":{"name":"init(data:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:4FlowAAC7AddressV5bytesADSays5UInt8VG_tcfc":{"name":"init(bytes:)","abstract":"
Undocumented
","parent_name":"Address"},"Classes/Flow/Address.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"Address"},"Classes/Flow/Address.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Address"},"Classes/Flow/Address.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Address"},"Classes/Flow/Argument/StaticType.html#/s:4FlowAAC8ArgumentV10StaticTypeV06staticD0AB7CadenceC4KindVvp":{"name":"staticType","abstract":"
Undocumented
","parent_name":"StaticType"},"Classes/Flow/Argument/StaticType.html#/s:4FlowAAC8ArgumentV10StaticTypeV06staticD0AfB7CadenceC4KindV_tcfc":{"name":"init(staticType:)","abstract":"
Undocumented
","parent_name":"StaticType"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV4pathSSvp":{"name":"path","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV7addressSSvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV10borrowTypeSSvp":{"name":"borrowType","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Capability.html#/s:4FlowAAC8ArgumentV10CapabilityV4path7address10borrowTypeAFSS_S2Stcfc":{"name":"init(path:address:borrowType:)","abstract":"
Undocumented
","parent_name":"Capability"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3keyADvp":{"name":"key","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV5valueADvp":{"name":"value","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3key5valueAfB7CadenceC6FValueO_ALtcfc":{"name":"init(key:value:)","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Dictionary.html#/s:4FlowAAC8ArgumentV10DictionaryV3key5valueAfD_ADtcfc":{"name":"init(key:value:)","abstract":"
Undocumented
","parent_name":"Dictionary"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV7addressSSvp":{"name":"address","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Reference.html#/s:4FlowAAC8ArgumentV9ReferenceV7address4typeAFSS_SStcfc":{"name":"init(address:type:)","abstract":"
Undocumented
","parent_name":"Reference"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4nameSSvp":{"name":"name","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV5valueADvp":{"name":"value","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4name5valueAHSS_AB7CadenceC6FValueOtcfc":{"name":"init(name:value:)","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event/Name.html#/s:4FlowAAC8ArgumentV5EventV4NameV4name5valueAHSS_ADtcfc":{"name":"init(name:value:)","abstract":"
Undocumented
","parent_name":"Name"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV2idSSvp":{"name":"id","abstract":"
The identification of the event.
","parent_name":"Event"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV6fieldsSayAF4NameVGvp":{"name":"fields","abstract":"
The list of value in Flow.Argument.Event.Name type.
","parent_name":"Event"},"Classes/Flow/Argument/Event.html#/s:4FlowAAC8ArgumentV5EventV2id6fieldsAFSS_SayAF4NameVGtcfc":{"name":"init(id:fields:)","abstract":"
Undocumented
","parent_name":"Event"},"Classes/Flow/Argument/Event/Name.html":{"name":"Name","abstract":"
The data structure for the fields in Flow.Argument.Event.
","parent_name":"Event"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV6domainSSvp":{"name":"domain","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV10identifierSSvp":{"name":"identifier","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/Path.html#/s:4FlowAAC8ArgumentV4PathV6domain10identifierAFSS_SStcfc":{"name":"init(domain:identifier:)","abstract":"
Undocumented
","parent_name":"Path"},"Classes/Flow/Argument/CodingKeys.html#/s:4FlowAAC8ArgumentV10CodingKeysO4typeyA2FmF":{"name":"type","abstract":"
Undocumented
","parent_name":"CodingKeys"},"Classes/Flow/Argument/CodingKeys.html#/s:4FlowAAC8ArgumentV10CodingKeysO5valueyA2FmF":{"name":"value","abstract":"
Undocumented
","parent_name":"CodingKeys"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4typeAB7CadenceC5FTypeOvp":{"name":"type","abstract":"
The type of the argument in Flow.Cadence.FType.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV5valueAB7CadenceC6FValueOvp":{"name":"value","abstract":"
The value of the argument in Flow.Cadence.FValue.
","parent_name":"Argument"},"Classes/Flow/Argument/CodingKeys.html":{"name":"CodingKeys","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV8jsonData10Foundation0D0VSgvp":{"name":"jsonData","abstract":"
Encode argument into JSON data.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV10jsonStringSSSgvp":{"name":"jsonString","abstract":"
Encode argument into JSON string.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4type5valueAdB7CadenceC5FTypeO_AH6FValueOtcfc":{"name":"init(type:value:)","abstract":"
Initial argument with type and value.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV5valueAdB7CadenceC6FValueO_tcfc":{"name":"init(value:)","abstract":"
Initial argument with value in Flow.Cadence.FValue type.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV8jsonDataADSg10Foundation0D0V_tcfc":{"name":"init(jsonData:)","abstract":"
Initialize from JSON data.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV10jsonStringADSgSS_tcfc":{"name":"init(jsonString:)","abstract":"
Initialize from JSON string.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV4fromADs7Decoder_p_tKcfc":{"name":"init(from:)","abstract":"
Decode argument from JSON.
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodexyKSeRzlF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodeyxxmKSeRzlF":{"name":"decode(_:)","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:4FlowAAC8ArgumentV6decodeypSgyF":{"name":"decode()","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"Argument"},"Classes/Flow/Argument/Path.html":{"name":"Path","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Event.html":{"name":"Event","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Reference.html":{"name":"Reference","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Dictionary.html":{"name":"Dictionary","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/Capability.html":{"name":"Capability","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument/StaticType.html":{"name":"StaticType","abstract":"
Undocumented
","parent_name":"Argument"},"Classes/Flow/Argument.html#/Event":{"name":"Event","parent_name":"Argument"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO6scriptyAdB6ScriptVcADmF":{"name":"script(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8argumentyADSayAB8ArgumentVGcADmF":{"name":"argument(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO5payeryAdB7AddressVcADmF":{"name":"payer(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO11authorizersyADSayAB7AddressVGcADmF":{"name":"authorizers(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8proposeryAdB0B11ProposalKeyVcADmF":{"name":"proposer(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8gasLimityAD6BigInt0F4UIntVcADmF":{"name":"gasLimit(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO8refBlockyAdB2IDVSgcADmF":{"name":"refBlock(_:)","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/TransactionBuild.html#/s:4FlowAAC16TransactionBuildO5erroryA2DmF":{"name":"error","abstract":"
Undocumented
","parent_name":"TransactionBuild"},"Classes/Flow/WebSocketError.html#/s:4FlowAAC14WebSocketErrorO06serverD0yAdB17SubscribeResponseV0D4BodyVcADmF":{"name":"serverError(_:)","abstract":"
Undocumented
","parent_name":"WebSocketError"},"Classes/Flow/SubscribeResponse/ErrorBody.html#/s:4FlowAAC17SubscribeResponseV9ErrorBodyV7messageSSvp":{"name":"message","abstract":"
Undocumented
","parent_name":"ErrorBody"},"Classes/Flow/SubscribeResponse/ErrorBody.html#/s:4FlowAAC17SubscribeResponseV9ErrorBodyV4codeSiSgvp":{"name":"code","abstract":"
Undocumented
","parent_name":"ErrorBody"},"Classes/Flow/SubscribeResponse/ErrorBody.html":{"name":"ErrorBody","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/SubscribeResponse.html#/s:4FlowAAC17SubscribeResponseV2idSSvp":{"name":"id","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/SubscribeResponse.html#/s:4FlowAAC17SubscribeResponseV5errorAD9ErrorBodyVSgvp":{"name":"error","abstract":"
Undocumented
","parent_name":"SubscribeResponse"},"Classes/Flow/TopicResponse.html#/s:4FlowAAC13TopicResponseV14subscriptionIdSSvp":{"name":"subscriptionId","abstract":"
Undocumented
","parent_name":"TopicResponse"},"Classes/Flow/TopicResponse.html#/s:4FlowAAC13TopicResponseV7payloadxSgvp":{"name":"payload","abstract":"
Undocumented
","parent_name":"TopicResponse"},"Classes/Flow/Topic.html#/s:SY8rawValue03RawB0Qzvp":{"name":"rawValue","parent_name":"Topic"},"Classes/Flow/Topic.html#/s:SY8rawValuexSg03RawB0Qz_tcfc":{"name":"init(rawValue:)","parent_name":"Topic"},"Classes/Flow/Topic.html#/s:4FlowAAC5TopicV17transactionStatus4txIdAdB2IDV_tFZ":{"name":"transactionStatus(txId:)","abstract":"
Undocumented
","parent_name":"Topic"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketCADycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC7connect2toy10Foundation3URLV_tF":{"name":"connect(to:)","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC10disconnectyyF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC28subscribeToTransactionStatus4txIdScsyAB13TopicResponseVy_AB013WSTransactionJ0VGs5Error_pGAB2IDV_tYaKF":{"name":"subscribeToTransactionStatus(txId:)","abstract":"
Async stream of raw topic responses for a given transaction ID.","parent_name":"Websocket"},"Classes/Flow/Websocket.html#/s:4FlowAAC9WebsocketC34subscribeToManyTransactionStatuses5txIdsSDyAB2IDVScsyAB13TopicResponseVy_AB013WSTransactionL0VGs5Error_pGGSayAHG_tYaKFZ":{"name":"subscribeToManyTransactionStatuses(txIds:)","abstract":"
Convenience helper to build streams for multiple transaction IDs.
","parent_name":"Websocket"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV3idsShyAB2IDVGvp":{"name":"ids","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForBlockIdsRequest.html#/s:4FlowAAC24EventsForBlockIdsRequestV4type3idsADSS_ShyAB2IDVGtcfc":{"name":"init(type:ids:)","abstract":"
Undocumented
","parent_name":"EventsForBlockIdsRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV4typeSSvp":{"name":"type","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV5rangeSNys6UInt64VGvp":{"name":"range","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/EventsForHeightRangeRequest.html#/s:4FlowAAC27EventsForHeightRangeRequestV4type5rangeADSS_SNys6UInt64VGtcfc":{"name":"init(type:range:)","abstract":"
Undocumented
","parent_name":"EventsForHeightRangeRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6heights6UInt64Vvp":{"name":"height","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html#/s:4FlowAAC33ExecuteScriptAtBlockHeightRequestV6script6height9argumentsAdB0C0V_s6UInt64VSayAB8ArgumentVGtcfc":{"name":"init(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockHeightRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV05blockF0AB2IDVvp":{"name":"blockId","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html#/s:4FlowAAC29ExecuteScriptAtBlockIdRequestV6script05blockF09argumentsAdB0C0V_AB2IDVSayAB8ArgumentVGtcfc":{"name":"init(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtBlockIdRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV6scriptAB0C0Vvp":{"name":"script","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV9argumentsSayAB8ArgumentVGvp":{"name":"arguments","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV11blockStatusAB0fI0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html#/s:4FlowAAC33ExecuteScriptAtLatestBlockRequestV6script9arguments11blockStatusAdB0C0V_SayAB8ArgumentVGAB0fK0Otcfc":{"name":"init(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"ExecuteScriptAtLatestBlockRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV6heights6UInt64Vvp":{"name":"height","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountByBlockHeightRequest.html#/s:4FlowAAC27AccountByBlockHeightRequestV7address6heightAdB7AddressV_s6UInt64Vtcfc":{"name":"init(address:height:)","abstract":"
Undocumented
","parent_name":"AccountByBlockHeightRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV7addressAB7AddressVvp":{"name":"address","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV11blockStatusAB0eH0Ovp":{"name":"blockStatus","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/AccountAtLatestBlockRequest.html#/s:4FlowAAC27AccountAtLatestBlockRequestV7address11blockStatusAdB7AddressV_AB0eI0Otcfc":{"name":"init(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"AccountAtLatestBlockRequest"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4nodeSSvp":{"name":"node","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4portSiSgvp":{"name":"port","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport/Endpoint.html#/s:4FlowAAC9TransportO8EndpointV4node4portAFSS_SiSgtcfc":{"name":"init(node:port:)","abstract":"
Undocumented
","parent_name":"Endpoint"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO4HTTPyAD10Foundation3URLVcADmF":{"name":"HTTP(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO4gRPCyA2D8EndpointVcADmF":{"name":"gRPC(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO9websocketyAD10Foundation3URLVcADmF":{"name":"websocket(_:)","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO3url10Foundation3URLVSgvp":{"name":"url","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:4FlowAAC9TransportO12gRPCEndpointAD8EndpointVSgvp":{"name":"gRPCEndpoint","abstract":"
Undocumented
","parent_name":"Transport"},"Classes/Flow/Transport.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Transport"},"Classes/Flow/Transport/Endpoint.html":{"name":"Endpoint","abstract":"
Endpoint information for a gRPC node.
","parent_name":"Transport"},"Classes/Flow.html#/s:4FlowAAC6sharedABvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16defaultUserAgentSSvp":{"name":"defaultUserAgent","abstract":"
The user agent for the SDK client, used in access API header.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15addressRegisterAA015ContractAddressC0Cvp":{"name":"addressRegister","abstract":"
Contract address registry (value type, safe to share).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7decoder10Foundation11JSONDecoderCvp":{"name":"decoder","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAACABycfc":{"name":"init()","abstract":"
Private init; use Flow.shared.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7chainIDAB05ChainC0Ovp":{"name":"chainID","abstract":"
Current chain ID (reads from FlowConfigActor).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9configure7chainIDyAB05ChainD0O_tYaF":{"name":"configure(chainID:)","abstract":"
Configure chainID; will recreate the HTTP access client by default.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9configure7chainID9accessAPIyAB05ChainD0O_AA0A14AccessProtocol_ptYaF":{"name":"configure(chainID:accessAPI:)","abstract":"
Configure chainID and a custom accessAPI implementation.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC19createHTTPAccessAPI7chainIDAA0A14AccessProtocol_pAB05ChainF0O_tF":{"name":"createHTTPAccessAPI(chainID:)","abstract":"
Create an HTTP access API client by chainID (non-cached).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9accessAPIAA0A14AccessProtocol_pvp":{"name":"accessAPI","abstract":"
Current FlowAccessProtocol client (from actor).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17TransactionStatusa":{"name":"TransactionStatus","abstract":"
Backwards compatibility bridge: use Flow.Transaction.Status everywhere,","parent_name":"Flow"},"Classes/Flow/Transport.html":{"name":"Transport","abstract":"
Endpoint / transport description for Flow access nodes.
","parent_name":"Flow"},"Classes/Flow/AccountAtLatestBlockRequest.html":{"name":"AccountAtLatestBlockRequest","abstract":"
Request for getAccountAtLatestBlock.
","parent_name":"Flow"},"Classes/Flow/AccountByBlockHeightRequest.html":{"name":"AccountByBlockHeightRequest","abstract":"
Request for getAccountByBlockHeight.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtLatestBlockRequest.html":{"name":"ExecuteScriptAtLatestBlockRequest","abstract":"
Request for executeScriptAtLatestBlock.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtBlockIdRequest.html":{"name":"ExecuteScriptAtBlockIdRequest","abstract":"
Request for executeScriptAtBlockId.
","parent_name":"Flow"},"Classes/Flow/ExecuteScriptAtBlockHeightRequest.html":{"name":"ExecuteScriptAtBlockHeightRequest","abstract":"
Request for executeScriptAtBlockHeight.
","parent_name":"Flow"},"Classes/Flow/EventsForHeightRangeRequest.html":{"name":"EventsForHeightRangeRequest","abstract":"
Request for getEventsForHeightRange.
","parent_name":"Flow"},"Classes/Flow/EventsForBlockIdsRequest.html":{"name":"EventsForBlockIdsRequest","abstract":"
Request for getEventsForBlockIds.
","parent_name":"Flow"},"Classes/Flow/Websocket.html":{"name":"Websocket","abstract":"
Websocket façade that delegates to FlowWebSocketCenter + NIO","parent_name":"Flow"},"Classes/Flow/Topic.html":{"name":"Topic","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TopicResponse.html":{"name":"TopicResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/SubscribeResponse.html":{"name":"SubscribeResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/WebSocketError.html":{"name":"WebSocketError","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TransactionBuild.html":{"name":"TransactionBuild","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction7chainID14skipEmptyCheck7builderAB0C0VAB05ChainE0O_SbSayAB0C5BuildOGyXEtYaKF":{"name":"buildTransaction(chainID:skipEmptyCheck:builder:)","abstract":"
Core builder with explicit chainID (no default using self/await).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction14skipEmptyCheck7builderAB0C0VSb_SayAB0C5BuildOGyXEtYaKF":{"name":"buildTransaction(skipEmptyCheck:builder:)","abstract":"
Convenience overload: uses current Flow.chainID.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction7chainID6script8agrument10authorizer12payerAddress11proposerKey5limit05blockE0AB0C0VAB05ChainE0O_SSSayAB8ArgumentVGSayAB0J0VGAtB0c8ProposalL0V6BigInt0R4UIntVAB0E0VSgtYaKF":{"name":"buildTransaction(chainID:script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16buildTransaction6script8agrument10authorizer12payerAddress11proposerKey5limit7blockIDAB0C0VSS_SayAB8ArgumentVGSayAB0H0VGAqB0c8ProposalJ0V6BigInt0P4UIntVAB0M0VSgtYaKF":{"name":"buildTransaction(script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7chainID06signedC0AB0E0VAB05ChainE0O_AB0C0VtYaKF":{"name":"sendTransaction(chainID:signedTransaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction06signedC0AB2IDVAB0C0V_tYaKF":{"name":"sendTransaction(signedTransaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7chainID7signers7builderAB0E0VAB05ChainE0O_SayAA0A6Signer_pGSayAB0C5BuildOGyXEtYaKF":{"name":"sendTransaction(chainID:signers:builder:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction7signers7builderAB2IDVSayAA0A6Signer_pG_SayAB0C5BuildOGyXEtYaKF":{"name":"sendTransaction(signers:builder:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15getChildAddress7addressSayAB0D0VGAF_tYaKF":{"name":"getChildAddress(address:)","abstract":"
Fetch child account addresses with Swift 6 concurrency
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16getChildMetadata7addressSDySSAA13CadenceLoaderC8CategoryO0C0O0D0VGAB7AddressV_tYaKF":{"name":"getChildMetadata(address:)","abstract":"
Fetch child account metadata concurrently
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13getEVMAddress7addressSSSgAB7AddressV_tYaKF":{"name":"getEVMAddress(address:)","abstract":"
Get EVM address for Flow account
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9createCOA7chainID8proposer5payer6amount7signersAB0E0VAB05ChainE0O_AB7AddressVANSo9NSDecimalaSayAA0A6Signer_pGtYaKF":{"name":"createCOA(chainID:proposer:payer:amount:signers:)","abstract":"
Create Cadence Object Account (COA) with gas fee
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17runEVMTransaction7chainID8proposer5payer21rlpEncodedTransaction15coinbaseAddress7signersAB0E0VAB05ChainE0O_AB0L0VAOSays5UInt8VGSSSayAA0A6Signer_pGtYaKF":{"name":"runEVMTransaction(chainID:proposer:payer:rlpEncodedTransaction:coinbaseAddress:signers:)","abstract":"
Execute EVM transaction through Flow
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC14getStakingInfo7addressSayAA13CadenceLoaderC8CategoryO0C0O0C4NodeVGAB7AddressV_tYaKF":{"name":"getStakingInfo(address:)","abstract":"
Get staking info for delegator
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15getTokenBalance7addressSDySSSo9NSDecimalaGAB7AddressV_tYaKF":{"name":"getTokenBalance(address:)","abstract":"
Get all token balances for an account using the Cadence script","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC5query_7chainIDxAA17CadenceTargetType_p_AB05ChainD0OtYaKSeRzlF":{"name":"query(_:chainID:)","abstract":"
Query with generic return type
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction_7signers7chainIDAB0F0Vx_SayAA0A6Signer_pGAB05ChainF0OtYaKAA17CadenceTargetTypeRzlF":{"name":"sendTransaction(_:signers:chainID:)","abstract":"
Transaction with generic argument building
","parent_name":"Flow"},"Classes/Flow/Argument.html":{"name":"Argument","abstract":"
The argument for Cadence code for encoding and decoding.
","parent_name":"Flow"},"Classes/Flow/Address.html":{"name":"Address","abstract":"
Flow Address Model
","parent_name":"Flow"},"Classes/Flow/FError.html":{"name":"FError","abstract":"
List of common error in Flow Swift SDK
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC4once_6status7timeoutAB17TransactionResultVAB2IDV_AB0E0V6StatusOSdtYaKF":{"name":"once(_:status:timeout:)","abstract":"
Get notified when transaction’s status changed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13onceFinalizedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceFinalized(_:)","abstract":"
Get notified when transaction’s status change to .finalized.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC12onceExecutedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceExecuted(_:)","abstract":"
Get notified when transaction’s status change to .executed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC10onceSealedyAB17TransactionResultVAB2IDVYaKF":{"name":"onceSealed(_:)","abstract":"
Get notified when transaction’s status change to .sealed.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17isAddressVaildate7address7networkSbAB0C0V_AB7ChainIDOtYaF":{"name":"isAddressVaildate(address:network:)","abstract":"
Validate whether an address exists on a given network using an HTTP client.
","parent_name":"Flow"},"Classes/Flow/Account.html":{"name":"Account","abstract":"
The data structure of account in Flow blockchain
","parent_name":"Flow"},"Classes/Flow/AccountKey.html":{"name":"AccountKey","abstract":"
The data structure of account key in flow account
","parent_name":"Flow"},"Classes/Flow/SignatureAlgorithm.html":{"name":"SignatureAlgorithm","abstract":"
Public key signing algorithm (ECDSA P-256, ECDSA secp256k1, etc).
","parent_name":"Flow"},"Classes/Flow/HashAlgorithm.html":{"name":"HashAlgorithm","abstract":"
Message-digest algorithm for signing (SHA2-256, SHA3-256, etc).
","parent_name":"Flow"},"Classes/Flow/BlockHeader.html":{"name":"BlockHeader","abstract":"
Brief information of Flow.Block.
","parent_name":"Flow"},"Classes/Flow/BlockSeal.html":{"name":"BlockSeal","abstract":"
The data structure of Flow.Block which is sealed.
","parent_name":"Flow"},"Classes/Flow/Block.html":{"name":"Block","abstract":"
The data structure for the block in the Flow blockchain.
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC7decimalSivpZ":{"name":"decimal","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24accountCreationEventTypeSSvpZ":{"name":"accountCreationEventType","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24accountCreationFieldNameSSvpZ":{"name":"accountCreationFieldName","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/Cadence.html":{"name":"Cadence","abstract":"
Cadence namespace container.","parent_name":"Flow"},"Classes/Flow/ChainID.html":{"name":"ChainID","abstract":"
Identification of the Flow environment.
","parent_name":"Flow"},"Classes/Flow/Collection.html":{"name":"Collection","abstract":"
A batch of transactions that have been included in the same block.
","parent_name":"Flow"},"Classes/Flow/CollectionGuarantee.html":{"name":"CollectionGuarantee","abstract":"
Lightweight collection guarantee with signer IDs, used in blocks.
","parent_name":"Flow"},"Classes/Flow/DomainTag.html":{"name":"DomainTag","abstract":"
The prefix when encoding transaction and user with RLP
","parent_name":"Flow"},"Classes/Flow/Event.html":{"name":"Event","abstract":"
Flow blockchain event.
","parent_name":"Flow"},"Classes/Flow/Snapshot.html":{"name":"Snapshot","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/TransactionResult.html":{"name":"TransactionResult","abstract":"
The transaction result in the chain
","parent_name":"Flow"},"Classes/Flow/ID.html":{"name":"ID","abstract":"
The ID in Flow chain, which can represent a transaction id, block id,","parent_name":"Flow"},"Classes/Flow/Script.html":{"name":"Script","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/ScriptResponse.html":{"name":"ScriptResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/Signature.html":{"name":"Signature","abstract":"
The model to handle the signature data, which can present as a hex string
","parent_name":"Flow"},"Classes/Flow/Transaction.html":{"name":"Transaction","abstract":"
The data structure of Transaction
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15signTransaction08unsignedC07signersAB0C0VAG_SayAA0A6Signer_pGtYaKF":{"name":"signTransaction(unsignedTransaction:signers:)","abstract":"
Sign the unsigned transaction with a list of FlowSigner
","parent_name":"Flow"},"Classes/Flow/TransactionProposalKey.html":{"name":"TransactionProposalKey","abstract":"
The class to represent the proposer key information in the transaction
","parent_name":"Flow"},"Classes/Flow/TransactionSignature.html":{"name":"TransactionSignature","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublicKey.html":{"name":"PublicKey","abstract":"
Public key used for Flow accounts and signers.","parent_name":"Flow"},"Classes/Flow/Code.html":{"name":"Code","abstract":"
On‑chain code blob (e.g. smart contract or script) encoded as Data.
","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","parent_name":"Flow"},"Classes/Flow.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC22getBlockHeaderByHeight6heightAB0cD0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC14getLatestBlock11blockStatusAB0D0VAB0dF0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC12getBlockById2idAB0C0VAB2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16getBlockByHeight6heightAB0C0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC17getCollectionById2idAB0C0VAB2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15sendTransaction11transactionAB2IDVAB0C0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC18getTransactionById2idAB0C0VAB2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC24getTransactionResultById2idAB0cD0VAB2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getAccountAtLatestBlock7address11blockStatusAB0C0VAB7AddressV_AB0fI0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getAccountByBlockHeight7address6heightAB0C0VAB7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC23getEventsForHeightRange4type5rangeSayAB5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20getEventsForBlockIds4type3idsSayAB5EventV6ResultVGSS_ShyAB2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC26executeScriptAtLatestBlock6script9arguments11blockStatusAB0C8ResponseVAB0C0V_SayAB8ArgumentVGAB0fJ0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20getNetworkParametersAB7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/BlockStatus.html":{"name":"BlockStatus","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13ErrorResponseV":{"name":"ErrorResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC19BlockHeaderResponseV":{"name":"BlockHeaderResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC15NetworkResponseV":{"name":"NetworkResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13BlockResponseV":{"name":"BlockResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC20BlockPayloadResponseV":{"name":"BlockPayloadResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC13ScriptRequestV":{"name":"ScriptRequest","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC21TransactionIdResponseV":{"name":"TransactionIdResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublisherEvent.html":{"name":"PublisherEvent","abstract":"
Represents different types of events that can be published.
","parent_name":"Flow"},"Classes/Flow/Publisher.html":{"name":"Publisher","abstract":"
Central publisher manager for Flow events (AsyncStream-based).
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC9publisherAB9PublisherCvp":{"name":"publisher","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/WalletResponse.html":{"name":"WalletResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow/PublisherCenter.html":{"name":"PublisherCenter","abstract":"
Async/await-friendly event hub for tests and modern consumers.","parent_name":"Flow"},"Classes/Flow/WSTransactionResponse.html":{"name":"WSTransactionResponse","abstract":"
Undocumented
","parent_name":"Flow"},"Classes/Flow.html#/s:4FlowAAC16WebSocketRequestO":{"name":"WebSocketRequest","abstract":"
Convenience namespace for WebSocket-specific helpers.
","parent_name":"Flow"},"Classes/Flow/WebSocketBlockStatus.html":{"name":"WebSocketBlockStatus","abstract":"
Block status used in websocket arguments.
","parent_name":"Flow"},"Classes/Flow/WebSocketTransactionStatusRequest.html":{"name":"WebSocketTransactionStatusRequest","abstract":"
Transaction status request arguments (transaction_statuses topic).
","parent_name":"Flow"},"Classes/Flow/WebSocketBlockDigestArguments.html":{"name":"WebSocketBlockDigestArguments","abstract":"
Block digests arguments (for blocks / block_digests topics).
","parent_name":"Flow"},"Classes/Flow/WebSocketAccountStatusResponse.html":{"name":"WebSocketAccountStatusResponse","abstract":"
Account status response for account-specific streaming topics.
","parent_name":"Flow"},"Classes/Flow/WebSocketAccountStatusEvent.html":{"name":"WebSocketAccountStatusEvent","abstract":"
Single account status event, matching the WebSocket event shape.
","parent_name":"Flow"},"Classes/Flow/WebSocketTopic.html":{"name":"WebSocketTopic","abstract":"
High-level websocket topics used by the Flow access node.
","parent_name":"Flow"},"Classes/Flow/WebSocketAction.html":{"name":"WebSocketAction","abstract":"
Websocket action verbs.
","parent_name":"Flow"},"Classes/Flow/WebSocketSubscribeRequest.html":{"name":"WebSocketSubscribeRequest","abstract":"
Generic subscribe request for Flow websocket.
","parent_name":"Flow"},"Classes/Flow/WebSocketSubscribeResponse.html":{"name":"WebSocketSubscribeResponse","abstract":"
Response to a subscribe/unsubscribe/list request.
","parent_name":"Flow"},"Classes/Flow/WebSocketSocketError.html":{"name":"WebSocketSocketError","abstract":"
Error payload from websocket.
","parent_name":"Flow"},"Classes/Flow/WebSocketTopicResponse.html":{"name":"WebSocketTopicResponse","abstract":"
Topic response carrying typed payload T.
","parent_name":"Flow"},"Classes/Flow.html":{"name":"Flow","abstract":"
Namespace and main entrypoint for Flow SDK."},"Classes/CadenceLoader.html":{"name":"CadenceLoader","abstract":"
Utility type for loading Cadence scripts from resources
"},"Classes/ContractAddressRegister.html":{"name":"ContractAddressRegister","abstract":"
Contract Address Register manages the mapping of contract names to their addresses"},"Classes/FlowLogger.html":{"name":"FlowLogger","abstract":"
Undocumented
"},"Classes/FlowNIOWebSocketClient.html":{"name":"FlowNIOWebSocketClient","abstract":"
NIO-based websocket client for Flow transaction status and topics.
"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC9nioClientAcA0a6NIOWebcF0CSg_tcfc":{"name":"init(nioClient:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC15connectIfNeededyyYaKF":{"name":"connectIfNeeded()","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC10disconnectyyYaF":{"name":"disconnect()","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC23transactionStatusStream3forScsyA2AC0bC13TopicResponseVy_AF013WSTransactionJ0VGs5Error_pGAF2IDV_tYaKF":{"name":"transactionStatusStream(for:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC30handleTransactionStatusMessageyyA2AC0bC13TopicResponseVy_AE013WSTransactionJ0VGYaF":{"name":"handleTransactionStatusMessage(_:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowWebSocketCenter.html#/s:4Flow0A15WebSocketCenterC23finishTransactionStatus2id5erroryA2AC2IDV_s5Error_pSgtF":{"name":"finishTransactionStatus(id:error:)","abstract":"
Undocumented
","parent_name":"FlowWebSocketCenter"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC6clientACvpZ":{"name":"client","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC7chainIDA2AC05ChainD0Ovp":{"name":"chainID","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC7chainIDAc2AC05ChainD0O_tcfc":{"name":"init(chainID:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC6decode_8responsex10Foundation4DataV_So13NSURLResponseCSgtKSeRzlFZ":{"name":"decode(_:response:)","abstract":"
Decode helper with Flow’s JSON settings and 400-error mapping.
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP4pingSbyYaKF":{"name":"ping()","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC20getNetworkParametersA2AC7ChainIDOyYaKF":{"name":"getNetworkParameters()","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP20getLatestBlockHeader11blockStatusA2AC0fG0VAF0fI0O_tYaKF":{"name":"getLatestBlockHeader(blockStatus:)","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A14AccessProtocolP18getBlockHeaderById2idA2AC0eF0VAF2IDV_tYaKF":{"name":"getBlockHeaderById(id:)","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC22getBlockHeaderByHeight6heightA2AC0dE0Vs6UInt64V_tYaKF":{"name":"getBlockHeaderByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC14getLatestBlock11blockStatusA2AC0E0VAF0eG0O_tYaKF":{"name":"getLatestBlock(blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC12getBlockById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getBlockById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC16getBlockByHeight6heightA2AC0D0Vs6UInt64V_tYaKF":{"name":"getBlockByHeight(height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC17getCollectionById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getCollectionById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC15sendTransaction11transactionA2AC2IDVAF0D0V_tYaKF":{"name":"sendTransaction(transaction:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC18getTransactionById2idA2AC0D0VAF2IDV_tYaKF":{"name":"getTransactionById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC24getTransactionResultById2idA2AC0dE0VAF2IDV_tYaKF":{"name":"getTransactionResultById(id:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getAccountAtLatestBlock7address11blockStatusA2AC0D0VAG7AddressV_AG0gJ0OtYaKF":{"name":"getAccountAtLatestBlock(address:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getAccountByBlockHeight7address6heightA2AC0D0VAG7AddressV_s6UInt64VtYaKF":{"name":"getAccountByBlockHeight(address:height:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC26executeScriptAtLatestBlock6script9arguments11blockStatusA2AC0D8ResponseVAH0D0V_SayAH8ArgumentVGAH0gK0OtYaKF":{"name":"executeScriptAtLatestBlock(script:arguments:blockStatus:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC22executeScriptAtBlockId6script05blockG09argumentsA2AC0D8ResponseVAH0D0V_AH2IDVSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockId(script:blockId:arguments:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC26executeScriptAtBlockHeight6script6height9argumentsA2AC0D8ResponseVAH0D0V_s6UInt64VSayAH8ArgumentVGtYaKF":{"name":"executeScriptAtBlockHeight(script:height:arguments:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC23getEventsForHeightRange4type5rangeSayA2AC5EventV6ResultVGSS_SNys6UInt64VGtYaKF":{"name":"getEventsForHeightRange(type:range:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowHTTPAPI.html#/s:4Flow0A7HTTPAPIC20getEventsForBlockIds4type3idsSayA2AC5EventV6ResultVGSS_ShyAG2IDVGtYaKF":{"name":"getEventsForBlockIds(type:ids:)","abstract":"
Undocumented
","parent_name":"FlowHTTPAPI"},"Actors/FlowLogActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowLogActor"},"Actors/CadenceLoaderActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"CadenceLoaderActor"},"Actors/FlowWebsocketActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowWebsocketActor"},"Actors/FlowWebsocketActor.html#/s:4Flow0A14WebsocketActorC9websocketA2AC0B0Cvp":{"name":"websocket","abstract":"
Undocumented
","parent_name":"FlowWebsocketActor"},"Actors/FlowWebsocketActor.html#/s:4Flow0A14WebsocketActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowWebsocketActor"},"Actors/FlowCryptoActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowCryptoActor"},"Actors/FlowCryptoActor.html#/s:4Flow0A11CryptoActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowCryptoActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC6sharedACvpZ":{"name":"shared","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC7chainIDA2AC05ChainE0Ovp":{"name":"chainID","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorCACycfc":{"name":"init()","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowConfigActor.html#/s:4Flow0A11ConfigActorC13updateChainIDyyA2AC0eF0OF":{"name":"updateChainID(_:)","abstract":"
Undocumented
","parent_name":"FlowConfigActor"},"Actors/FlowActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowActor"},"Actors/FlowActor.html#/s:4Flow0A5ActorC4flowA2ACvp":{"name":"flow","abstract":"
Undocumented
","parent_name":"FlowActor"},"Actors/FlowActor.html#/s:4Flow0A5ActorC4flowAc2AC_tcfc":{"name":"init(flow:)","abstract":"
Default to Flow.shared but allow injection for tests.
","parent_name":"FlowActor"},"Actors/FlowAccessActor.html#/s:12_Concurrency11GlobalActorP6shared0C4TypeQzvpZ":{"name":"shared","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC14initialChainIDAc2AC0eF0O_tcfc":{"name":"init(initialChainID:)","abstract":"
Undocumented
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC9configure7chainID9accessAPIyA2AC05ChainF0O_AA0aB8Protocol_pSgtYaF":{"name":"configure(chainID:accessAPI:)","abstract":"
Reconfigure access endpoint and chain ID in a single isolated place.
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html#/s:4Flow0A11AccessActorC13currentClientAA0aB8Protocol_pyF":{"name":"currentClient()","abstract":"
Get the current access client.
","parent_name":"FlowAccessActor"},"Actors/FlowAccessActor.html":{"name":"FlowAccessActor","abstract":"
Global actor that owns the FlowAccessProtocol client (HTTP/gRPC).
"},"Actors/FlowActor.html":{"name":"FlowActor","abstract":"
Global actor used to isolate high-level Flow façade APIs.
"},"Actors/FlowConfigActor.html":{"name":"FlowConfigActor","abstract":"
Actor owning Flow configuration (chainID, endpoints, QoS).
"},"Actors/FlowCryptoActor.html":{"name":"FlowCryptoActor","abstract":"
Undocumented
"},"Actors/FlowWebsocketActor.html":{"name":"FlowWebsocketActor","abstract":"
Undocumented
"},"Actors/CadenceLoaderActor.html":{"name":"CadenceLoaderActor","abstract":"
Undocumented
"},"Actors/FlowLogActor.html":{"name":"FlowLogActor","abstract":"
Undocumented
"},"Actors/FlowHTTPAPI.html":{"name":"FlowHTTPAPI","abstract":"
HTTP implementation of the Flow access API, using URLSession."},"Actors/FlowWebSocketCenter.html":{"name":"FlowWebSocketCenter","abstract":"
Central NIO-based websocket coordination actor.
"},"Actors.html":{"name":"Actors","abstract":"
The following actors are available globally.
"},"Classes.html":{"name":"Classes","abstract":"
The following classes are available globally.
"},"Enums.html":{"name":"Enumerations","abstract":"
The following enumerations are available globally.
"},"Extensions.html":{"name":"Extensions","abstract":"
The following extensions are available globally.
"},"Functions.html":{"name":"Functions","abstract":"
The following functions are available globally.
"},"Protocols.html":{"name":"Protocols","abstract":"
The following protocols are available globally.
"},"Structs.html":{"name":"Structures","abstract":"
The following structures are available globally.
"},"Typealiases.html":{"name":"Type Aliases","abstract":"
The following type aliases are available globally.
"}}
\ No newline at end of file
diff --git a/docs/undocumented.json b/docs/undocumented.json
new file mode 100644
index 0000000..6bd7ee7
--- /dev/null
+++ b/docs/undocumented.json
@@ -0,0 +1,5052 @@
+{
+ "warnings": [
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowAccessActor.swift",
+ "line": 17,
+ "symbol": "FlowAccessActor.init(initialChainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowActor.swift",
+ "line": 15,
+ "symbol": "FlowActor.flow",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 17,
+ "symbol": "FlowConfigActor.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 19,
+ "symbol": "FlowConfigActor.chainID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 21,
+ "symbol": "FlowConfigActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowConfigActor.swift",
+ "line": 23,
+ "symbol": "FlowConfigActor.updateChainID(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowCryptoActor.swift",
+ "line": 11,
+ "symbol": "FlowCryptoActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowCryptoActor.swift",
+ "line": 14,
+ "symbol": "FlowCryptoActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 28,
+ "symbol": "Flow.Transport.HTTP(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 29,
+ "symbol": "Flow.Transport.gRPC(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 30,
+ "symbol": "Flow.Transport.websocket(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 32,
+ "symbol": "Flow.Transport.url",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 43,
+ "symbol": "Flow.Transport.gRPCEndpoint",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 67,
+ "symbol": "Flow.Transport.Endpoint.node",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 68,
+ "symbol": "Flow.Transport.Endpoint.port",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 70,
+ "symbol": "Flow.Transport.Endpoint.init(node:port:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 84,
+ "symbol": "Flow.AccountAtLatestBlockRequest.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 85,
+ "symbol": "Flow.AccountAtLatestBlockRequest.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 87,
+ "symbol": "Flow.AccountAtLatestBlockRequest.init(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 95,
+ "symbol": "Flow.AccountByBlockHeightRequest.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 96,
+ "symbol": "Flow.AccountByBlockHeightRequest.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 98,
+ "symbol": "Flow.AccountByBlockHeightRequest.init(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 106,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 107,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 108,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 110,
+ "symbol": "Flow.ExecuteScriptAtLatestBlockRequest.init(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 123,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 124,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 125,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 127,
+ "symbol": "Flow.ExecuteScriptAtBlockIdRequest.init(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 140,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.script",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 141,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 142,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 144,
+ "symbol": "Flow.ExecuteScriptAtBlockHeightRequest.init(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 157,
+ "symbol": "Flow.EventsForHeightRangeRequest.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 158,
+ "symbol": "Flow.EventsForHeightRangeRequest.range",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 160,
+ "symbol": "Flow.EventsForHeightRangeRequest.init(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 168,
+ "symbol": "Flow.EventsForBlockIdsRequest.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 169,
+ "symbol": "Flow.EventsForBlockIdsRequest.ids",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 171,
+ "symbol": "Flow.EventsForBlockIdsRequest.init(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 183,
+ "symbol": "FlowRPCMethod.ping",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 184,
+ "symbol": "FlowRPCMethod.getLatestBlockHeader",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 185,
+ "symbol": "FlowRPCMethod.getBlockHeaderById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 186,
+ "symbol": "FlowRPCMethod.getBlockHeaderByHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 187,
+ "symbol": "FlowRPCMethod.getLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 188,
+ "symbol": "FlowRPCMethod.getBlockById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 189,
+ "symbol": "FlowRPCMethod.getBlockByHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 190,
+ "symbol": "FlowRPCMethod.getCollectionById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 191,
+ "symbol": "FlowRPCMethod.sendTransaction",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 192,
+ "symbol": "FlowRPCMethod.getTransactionById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 193,
+ "symbol": "FlowRPCMethod.getTransactionResultById",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 194,
+ "symbol": "FlowRPCMethod.getAccountAtLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 195,
+ "symbol": "FlowRPCMethod.getAccountByBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 196,
+ "symbol": "FlowRPCMethod.executeScriptAtLatestBlock",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 197,
+ "symbol": "FlowRPCMethod.executeScriptAtBlockId",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 198,
+ "symbol": "FlowRPCMethod.executeScriptAtBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 199,
+ "symbol": "FlowRPCMethod.getEventsForHeightRange",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 200,
+ "symbol": "FlowRPCMethod.getEventsForBlockIds",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 201,
+ "symbol": "FlowRPCMethod.getNetworkParameters",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 209,
+ "symbol": "FlowTransport.executeRPC(_:request:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 225,
+ "symbol": "NIOTransport.init(chainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowTransport.swift",
+ "line": 229,
+ "symbol": "NIOTransport.executeRPC(_:request:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 15,
+ "symbol": "FlowWebsocketActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 18,
+ "symbol": "FlowWebsocketActor.websocket",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 20,
+ "symbol": "FlowWebsocketActor.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 37,
+ "symbol": "Flow.Websocket.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 41,
+ "symbol": "Flow.Websocket.connect(to:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 53,
+ "symbol": "Flow.Websocket.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 136,
+ "symbol": "Flow.Topic",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 143,
+ "symbol": "Flow.Topic.transactionStatus(txId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 148,
+ "symbol": "Flow.TopicResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 149,
+ "symbol": "Flow.TopicResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 150,
+ "symbol": "Flow.TopicResponse.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 153,
+ "symbol": "Flow.SubscribeResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 154,
+ "symbol": "Flow.SubscribeResponse.ErrorBody",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 155,
+ "symbol": "Flow.SubscribeResponse.ErrorBody.message",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 156,
+ "symbol": "Flow.SubscribeResponse.ErrorBody.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 159,
+ "symbol": "Flow.SubscribeResponse.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 160,
+ "symbol": "Flow.SubscribeResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 163,
+ "symbol": "Flow.WebSocketError",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Actors/FlowWebsocketActor.swift",
+ "line": 164,
+ "symbol": "Flow.WebSocketError.serverError(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 26,
+ "symbol": "cadence(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 30,
+ "symbol": "cadence(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 34,
+ "symbol": "arguments(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 38,
+ "symbol": "arguments(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 42,
+ "symbol": "payer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 46,
+ "symbol": "payer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 50,
+ "symbol": "authorizers(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 54,
+ "symbol": "authorizers(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 58,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 63,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 67,
+ "symbol": "proposer(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 71,
+ "symbol": "gasLimit(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 75,
+ "symbol": "gasLimit(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 79,
+ "symbol": "refBlock(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 86,
+ "symbol": "refBlock(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 94,
+ "symbol": "Flow.TransactionBuild",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 95,
+ "symbol": "Flow.TransactionBuild.script(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 96,
+ "symbol": "Flow.TransactionBuild.argument(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 97,
+ "symbol": "Flow.TransactionBuild.payer(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 98,
+ "symbol": "Flow.TransactionBuild.authorizers(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 99,
+ "symbol": "Flow.TransactionBuild.proposer(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 100,
+ "symbol": "Flow.TransactionBuild.gasLimit(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 101,
+ "symbol": "Flow.TransactionBuild.refBlock(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 102,
+ "symbol": "Flow.TransactionBuild.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 294,
+ "symbol": "Flow.buildTransaction(chainID:script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 316,
+ "symbol": "Flow.buildTransaction(script:agrument:authorizer:payerAddress:proposerKey:limit:blockID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 338,
+ "symbol": "Flow.sendTransaction(chainID:signedTransaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 346,
+ "symbol": "Flow.sendTransaction(signedTransaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 352,
+ "symbol": "Flow.sendTransaction(chainID:signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Build/TransactionBuild.swift",
+ "line": 366,
+ "symbol": "Flow.sendTransaction(signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/BatchProcessor.swift",
+ "line": 11,
+ "symbol": "FlowData",
+ "symbol_kind": "source.lang.swift.decl.typealias",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 11,
+ "symbol": "CadenceLoader.Category.Child",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category.Child.getChildAddress",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Child.getChildAccountMeta",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.Child.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 20,
+ "symbol": "CadenceLoader.Category.Child",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 21,
+ "symbol": "CadenceLoader.Category.Child.Metadata",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 22,
+ "symbol": "CadenceLoader.Category.Child.Metadata.name",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 23,
+ "symbol": "CadenceLoader.Category.Child.Metadata.description",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 24,
+ "symbol": "CadenceLoader.Category.Child.Metadata.thumbnail",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 26,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 27,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail.urlString",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Child.swift",
+ "line": 29,
+ "symbol": "CadenceLoader.Category.Child.Metadata.Thumbnail.url",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.EVM",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 14,
+ "symbol": "CadenceLoader.Category.EVM.getAddress",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.EVM.createCOA",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 16,
+ "symbol": "CadenceLoader.Category.EVM.evmRun",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+EVM.swift",
+ "line": 18,
+ "symbol": "CadenceLoader.Category.EVM.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category.Staking",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Staking.getDelegatorInfo",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 15,
+ "symbol": "CadenceLoader.Category.Staking.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 19,
+ "symbol": "CadenceLoader.Category.Staking",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 20,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 21,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 22,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.nodeID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 23,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensCommitted",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 24,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensStaked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 25,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensUnstaking",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 26,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensRewarded",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 27,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensUnstaked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 28,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.tokensRequestedToUnstake",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 30,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.stakingCount",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Staking.swift",
+ "line": 34,
+ "symbol": "CadenceLoader.Category.Staking.StakingNode.unstakingCount",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 13,
+ "symbol": "CadenceLoader.Category.Token",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 14,
+ "symbol": "CadenceLoader.Category.Token.getTokenBalanceStorage",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/Cadence+Token.swift",
+ "line": 16,
+ "symbol": "CadenceLoader.Category.Token.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 10,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 11,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 12,
+ "symbol": "CadenceLoaderActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 18,
+ "symbol": "CadenceLoaderProtocol",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 19,
+ "symbol": "CadenceLoaderProtocol.directory",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 20,
+ "symbol": "CadenceLoaderProtocol.filename",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 23,
+ "symbol": "CadenceLoaderProtocol",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 24,
+ "symbol": "CadenceLoaderProtocol.directory",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 35,
+ "symbol": "CadenceLoader.Category",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 37,
+ "symbol": "CadenceLoader.subdirectory",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceLoader.swift",
+ "line": 63,
+ "symbol": "CadenceLoader.load(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 3,
+ "symbol": "CadenceType",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 4,
+ "symbol": "CadenceType.query",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 5,
+ "symbol": "CadenceType.transaction",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/CadenceTargetType.swift",
+ "line": 8,
+ "symbol": "CadenceTargetType",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 19,
+ "symbol": "ContractAddressRegister.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 23,
+ "symbol": "ContractAddressRegister.setAddress(_:for:on:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Cadence/ContractAddress.swift",
+ "line": 33,
+ "symbol": "ContractAddressRegister.address(for:on:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 35,
+ "symbol": "Flow.Argument.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 61,
+ "symbol": "Flow.Argument.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Codeable/FlowArgument+Decode.swift",
+ "line": 66,
+ "symbol": "Flow.Argument.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 11,
+ "symbol": "FvmErrorCode",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 14,
+ "symbol": "FvmErrorCode.unknownError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 18,
+ "symbol": "FvmErrorCode.txValidationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 20,
+ "symbol": "FvmErrorCode.invalidTxByteSizeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 22,
+ "symbol": "FvmErrorCode.invalidReferenceBlockError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 24,
+ "symbol": "FvmErrorCode.expiredTransactionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 26,
+ "symbol": "FvmErrorCode.invalidScriptError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 28,
+ "symbol": "FvmErrorCode.invalidGasLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 29,
+ "symbol": "FvmErrorCode.invalidProposalSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 30,
+ "symbol": "FvmErrorCode.invalidProposalSeqNumberError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 31,
+ "symbol": "FvmErrorCode.invalidPayloadSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 32,
+ "symbol": "FvmErrorCode.invalidEnvelopeSignatureError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 36,
+ "symbol": "FvmErrorCode.fvmInternalError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 37,
+ "symbol": "FvmErrorCode.valueError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 38,
+ "symbol": "FvmErrorCode.invalidArgumentError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 39,
+ "symbol": "FvmErrorCode.invalidAddressError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 40,
+ "symbol": "FvmErrorCode.invalidLocationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 41,
+ "symbol": "FvmErrorCode.accountAuthorizationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 42,
+ "symbol": "FvmErrorCode.operationAuthorizationError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 43,
+ "symbol": "FvmErrorCode.operationNotSupportedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 44,
+ "symbol": "FvmErrorCode.blockHeightOutOfRangeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 48,
+ "symbol": "FvmErrorCode.executionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 49,
+ "symbol": "FvmErrorCode.cadenceRuntimeError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 51,
+ "symbol": "FvmErrorCode.encodingUnsupportedValue",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 52,
+ "symbol": "FvmErrorCode.storageCapacityExceeded",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 54,
+ "symbol": "FvmErrorCode.gasLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 55,
+ "symbol": "FvmErrorCode.eventLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 56,
+ "symbol": "FvmErrorCode.ledgerInteractionLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 57,
+ "symbol": "FvmErrorCode.stateKeySizeLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 58,
+ "symbol": "FvmErrorCode.stateValueSizeLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 59,
+ "symbol": "FvmErrorCode.transactionFeeDeductionFailedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 60,
+ "symbol": "FvmErrorCode.computationLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 61,
+ "symbol": "FvmErrorCode.memoryLimitExceededError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 62,
+ "symbol": "FvmErrorCode.couldNotDecodeExecutionParameterFromState",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 63,
+ "symbol": "FvmErrorCode.scriptExecutionTimedOutError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 64,
+ "symbol": "FvmErrorCode.scriptExecutionCancelledError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 65,
+ "symbol": "FvmErrorCode.eventEncodingError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 66,
+ "symbol": "FvmErrorCode.invalidInternalStateAccessError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 68,
+ "symbol": "FvmErrorCode.insufficientPayerBalance",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 72,
+ "symbol": "FvmErrorCode.accountError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 73,
+ "symbol": "FvmErrorCode.accountNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 74,
+ "symbol": "FvmErrorCode.accountPublicKeyNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 75,
+ "symbol": "FvmErrorCode.accountAlreadyExistsError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 77,
+ "symbol": "FvmErrorCode.frozenAccountError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 79,
+ "symbol": "FvmErrorCode.accountStorageNotInitializedError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 80,
+ "symbol": "FvmErrorCode.accountPublicKeyLimitError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 84,
+ "symbol": "FvmErrorCode.contractError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 85,
+ "symbol": "FvmErrorCode.contractNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 87,
+ "symbol": "FvmErrorCode.contractNamesNotFoundError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FVMError.swift",
+ "line": 90,
+ "symbol": "FvmErrorCode.evmExecutionError",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 26,
+ "symbol": "Flow.FError.generic",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 27,
+ "symbol": "Flow.FError.urlEmpty",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 28,
+ "symbol": "Flow.FError.urlInvaild",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 29,
+ "symbol": "Flow.FError.declined",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 30,
+ "symbol": "Flow.FError.encodeFailure",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 31,
+ "symbol": "Flow.FError.decodeFailure",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 32,
+ "symbol": "Flow.FError.unauthenticated",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 33,
+ "symbol": "Flow.FError.emptyProposer",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 34,
+ "symbol": "Flow.FError.invaildPlayload",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 35,
+ "symbol": "Flow.FError.invaildEnvelope",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 36,
+ "symbol": "Flow.FError.invaildAccountInfo",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 37,
+ "symbol": "Flow.FError.missingSigner",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 38,
+ "symbol": "Flow.FError.preparingTransactionFailed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 39,
+ "symbol": "Flow.FError.timeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 40,
+ "symbol": "Flow.FError.invaildResponse",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 41,
+ "symbol": "Flow.FError.invalidScript",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 42,
+ "symbol": "Flow.FError.scriptNotFound(name:directory:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 43,
+ "symbol": "Flow.FError.customError(msg:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Error/FlowError.swift",
+ "line": 44,
+ "symbol": "Flow.FError.createWebSocketFailed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Double.swift",
+ "line": 23,
+ "symbol": "Double.roundToDecimal(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Double.swift",
+ "line": 30,
+ "symbol": "Decimal.tokenFormat(maximumFractionDigits:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 4,
+ "symbol": "TimeoutError",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 5,
+ "symbol": "TimeoutError.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 9,
+ "symbol": "FinishedWithoutValueError",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 10,
+ "symbol": "FinishedWithoutValueError.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 14,
+ "symbol": "TimeoutPolicy",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 15,
+ "symbol": "TimeoutPolicy.throwOnTimeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 16,
+ "symbol": "TimeoutPolicy.finishOnTimeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 19,
+ "symbol": "TimeoutEvent",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 20,
+ "symbol": "TimeoutEvent.element(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 21,
+ "symbol": "TimeoutEvent.timeout",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 24,
+ "symbol": "TimeoutAsyncSequence",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 35,
+ "symbol": "TimeoutAsyncSequence.init(base:after:tolerance:clock:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 49,
+ "symbol": "TimeoutAsyncSequence.Iterator",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 102,
+ "symbol": "AsyncSequence.timeout(after:tolerance:clock:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 117,
+ "symbol": "AsyncSequence.timeout(after:tolerance:policy:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 138,
+ "symbol": "awaitFirst(_:timeoutSeconds:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/Publisher+Async.swift",
+ "line": 153,
+ "symbol": "awaitFirstOrNil(_:timeoutSeconds:)",
+ "symbol_kind": "source.lang.swift.decl.function.free",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 61,
+ "symbol": "String.replace(by:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 69,
+ "symbol": "String.replace(from:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/String.swift",
+ "line": 77,
+ "symbol": "String.replaceExactMatch(target:replacement:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Extension/URLSession+Async.swift",
+ "line": 56,
+ "symbol": "URLSession.data(from:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 9,
+ "symbol": "FCLFlow",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 11,
+ "symbol": "FCLFlow.buildTransaction(chainID:skipEmptyCheck:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/FCLFlow.swift",
+ "line": 30,
+ "symbol": "FCLFlow.send(chainID:signers:builder:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 24,
+ "symbol": "FlowActors",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 38,
+ "symbol": "Flow.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 46,
+ "symbol": "Flow.encoder",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Flow.swift",
+ "line": 52,
+ "symbol": "Flow.decoder",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 13,
+ "symbol": "FlowLogActor",
+ "symbol_kind": "source.lang.swift.decl.actor",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 19,
+ "symbol": "FlowLogLevel",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 20,
+ "symbol": "FlowLogLevel.debug",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 21,
+ "symbol": "FlowLogLevel.info",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 22,
+ "symbol": "FlowLogLevel.warning",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 23,
+ "symbol": "FlowLogLevel.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 35,
+ "symbol": "FlowLoggerProtocol",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 36,
+ "symbol": "FlowLoggerProtocol.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 48,
+ "symbol": "FlowLogger",
+ "symbol_kind": "source.lang.swift.decl.class",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 50,
+ "symbol": "FlowLogger.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 53,
+ "symbol": "FlowLogger.minimumLogLevel",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 60,
+ "symbol": "FlowLogger.addLogger(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 64,
+ "symbol": "FlowLogger.removeAllLoggers()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 68,
+ "symbol": "FlowLogger.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 83,
+ "symbol": "FlowLogger.logAsync(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 104,
+ "symbol": "ConsoleLogger",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 105,
+ "symbol": "ConsoleLogger.init()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Log/FlowLogger.swift",
+ "line": 107,
+ "symbol": "ConsoleLogger.log(_:message:function:file:line:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 9,
+ "symbol": "Flow.Account.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 10,
+ "symbol": "Flow.Account.balance",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 11,
+ "symbol": "Flow.Account.keys",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 12,
+ "symbol": "Flow.Account.contracts",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 14,
+ "symbol": "Flow.Account.init(address:balance:keys:contracts:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 48,
+ "symbol": "Flow.AccountKey.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 49,
+ "symbol": "Flow.AccountKey.publicKey",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 53,
+ "symbol": "Flow.AccountKey.hashAlgo",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 55,
+ "symbol": "Flow.AccountKey.weight",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 56,
+ "symbol": "Flow.AccountKey.sequenceNumber",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 57,
+ "symbol": "Flow.AccountKey.revoked",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAccount.swift",
+ "line": 92,
+ "symbol": "Flow.AccountKey.init(index:publicKey:signAlgo:hashAlgo:weight:sequenceNumber:revoked:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 61,
+ "symbol": "Flow.Address.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 65,
+ "symbol": "Flow.Address.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 69,
+ "symbol": "Flow.Address.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAddress.swift",
+ "line": 79,
+ "symbol": "Flow.Address.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 28,
+ "symbol": "Flow.SignatureAlgorithm.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 29,
+ "symbol": "Flow.SignatureAlgorithm.ECDSA_P256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 30,
+ "symbol": "Flow.SignatureAlgorithm.ECDSA_SECP256k1",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 32,
+ "symbol": "Flow.SignatureAlgorithm.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 41,
+ "symbol": "Flow.SignatureAlgorithm.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 52,
+ "symbol": "Flow.SignatureAlgorithm.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 63,
+ "symbol": "Flow.SignatureAlgorithm.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 74,
+ "symbol": "Flow.SignatureAlgorithm.curve",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 85,
+ "symbol": "Flow.SignatureAlgorithm.init(code:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 89,
+ "symbol": "Flow.SignatureAlgorithm.init(index:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 96,
+ "symbol": "Flow.HashAlgorithm.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 97,
+ "symbol": "Flow.HashAlgorithm.SHA2_256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 98,
+ "symbol": "Flow.HashAlgorithm.SHA2_384",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 99,
+ "symbol": "Flow.HashAlgorithm.SHA3_256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 100,
+ "symbol": "Flow.HashAlgorithm.SHA3_384",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 102,
+ "symbol": "Flow.HashAlgorithm.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 117,
+ "symbol": "Flow.HashAlgorithm.outputSize",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 128,
+ "symbol": "Flow.HashAlgorithm.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 143,
+ "symbol": "Flow.HashAlgorithm.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 154,
+ "symbol": "Flow.HashAlgorithm.index",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 169,
+ "symbol": "Flow.HashAlgorithm.init(code:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowAlgorithm.swift",
+ "line": 173,
+ "symbol": "Flow.HashAlgorithm.init(cadence:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 20,
+ "symbol": "Flow.Argument.CodingKeys",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 21,
+ "symbol": "Flow.Argument.CodingKeys.type",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 22,
+ "symbol": "Flow.Argument.CodingKeys.value",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 308,
+ "symbol": "Flow.Argument.Path",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 309,
+ "symbol": "Flow.Argument.Path.domain",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 310,
+ "symbol": "Flow.Argument.Path.identifier",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 312,
+ "symbol": "Flow.Argument.Path.init(domain:identifier:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 318,
+ "symbol": "Flow.Argument.Event",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 325,
+ "symbol": "Flow.Argument.Event.init(id:fields:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 332,
+ "symbol": "Flow.Argument.Event.Name.name",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 333,
+ "symbol": "Flow.Argument.Event.Name.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 335,
+ "symbol": "Flow.Argument.Event.Name.init(name:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 340,
+ "symbol": "Flow.Argument.Event.Name.init(name:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 347,
+ "symbol": "Flow.Argument.Reference",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 348,
+ "symbol": "Flow.Argument.Reference.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 349,
+ "symbol": "Flow.Argument.Reference.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 351,
+ "symbol": "Flow.Argument.Reference.init(address:type:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 357,
+ "symbol": "Flow.Argument.Dictionary",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 358,
+ "symbol": "Flow.Argument.Dictionary.key",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 359,
+ "symbol": "Flow.Argument.Dictionary.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 361,
+ "symbol": "Flow.Argument.Dictionary.init(key:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 366,
+ "symbol": "Flow.Argument.Dictionary.init(key:value:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 372,
+ "symbol": "Flow.Argument.Capability",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 373,
+ "symbol": "Flow.Argument.Capability.path",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 374,
+ "symbol": "Flow.Argument.Capability.address",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 375,
+ "symbol": "Flow.Argument.Capability.borrowType",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 377,
+ "symbol": "Flow.Argument.Capability.init(path:address:borrowType:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 384,
+ "symbol": "Flow.Argument.StaticType",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 385,
+ "symbol": "Flow.Argument.StaticType.staticType",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 387,
+ "symbol": "Flow.Argument.StaticType.init(staticType:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 395,
+ "symbol": "Flow.Argument.Path",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 396,
+ "symbol": "Flow.Argument.Reference",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 397,
+ "symbol": "Flow.Argument.Capability",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 398,
+ "symbol": "Flow.Argument.Dictionary",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowArgument.swift",
+ "line": 399,
+ "symbol": "Flow.Argument.Event",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 55,
+ "symbol": "Flow.BlockHeader.init(id:parentId:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 81,
+ "symbol": "Flow.BlockSeal.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 82,
+ "symbol": "Flow.BlockSeal.executionReceiptId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 83,
+ "symbol": "Flow.BlockSeal.executionReceiptSignatures",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 84,
+ "symbol": "Flow.BlockSeal.resultApprovalSignatures",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 91,
+ "symbol": "Flow.BlockSeal.init(blockId:executionReceiptId:executionReceiptSignatures:resultApprovalSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowBlock.swift",
+ "line": 137,
+ "symbol": "Flow.Block.init(id:parentId:height:timestamp:collectionGuarantees:blockSeals:signatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 23,
+ "symbol": "Flow.decimal",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 24,
+ "symbol": "Flow.accountCreationEventType",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 25,
+ "symbol": "Flow.accountCreationFieldName",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 37,
+ "symbol": "Flow.Cadence.FType.void",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 38,
+ "symbol": "Flow.Cadence.FType.optional",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 39,
+ "symbol": "Flow.Cadence.FType.bool",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 40,
+ "symbol": "Flow.Cadence.FType.string",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 41,
+ "symbol": "Flow.Cadence.FType.int",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 42,
+ "symbol": "Flow.Cadence.FType.uint",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 43,
+ "symbol": "Flow.Cadence.FType.int8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 44,
+ "symbol": "Flow.Cadence.FType.uint8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 45,
+ "symbol": "Flow.Cadence.FType.int16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 46,
+ "symbol": "Flow.Cadence.FType.uint16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 47,
+ "symbol": "Flow.Cadence.FType.int32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 48,
+ "symbol": "Flow.Cadence.FType.uint32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 49,
+ "symbol": "Flow.Cadence.FType.int64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 50,
+ "symbol": "Flow.Cadence.FType.uint64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 51,
+ "symbol": "Flow.Cadence.FType.int128",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 52,
+ "symbol": "Flow.Cadence.FType.uint128",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 53,
+ "symbol": "Flow.Cadence.FType.int256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 54,
+ "symbol": "Flow.Cadence.FType.uint256",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 55,
+ "symbol": "Flow.Cadence.FType.word8",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 56,
+ "symbol": "Flow.Cadence.FType.word16",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 57,
+ "symbol": "Flow.Cadence.FType.word32",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 58,
+ "symbol": "Flow.Cadence.FType.word64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 59,
+ "symbol": "Flow.Cadence.FType.fix64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 60,
+ "symbol": "Flow.Cadence.FType.ufix64",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 61,
+ "symbol": "Flow.Cadence.FType.array",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 62,
+ "symbol": "Flow.Cadence.FType.dictionary",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 63,
+ "symbol": "Flow.Cadence.FType.address",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 64,
+ "symbol": "Flow.Cadence.FType.path",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 65,
+ "symbol": "Flow.Cadence.FType.struct",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 66,
+ "symbol": "Flow.Cadence.FType.resource",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 67,
+ "symbol": "Flow.Cadence.FType.event",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 68,
+ "symbol": "Flow.Cadence.FType.character",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 69,
+ "symbol": "Flow.Cadence.FType.reference",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 70,
+ "symbol": "Flow.Cadence.FType.capability",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 71,
+ "symbol": "Flow.Cadence.FType.type",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 72,
+ "symbol": "Flow.Cadence.FType.contract",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 73,
+ "symbol": "Flow.Cadence.FType.enum",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 74,
+ "symbol": "Flow.Cadence.FType.undefined",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 89,
+ "symbol": "Flow.Cadence.FValue.void",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 90,
+ "symbol": "Flow.Cadence.FValue.optional(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 91,
+ "symbol": "Flow.Cadence.FValue.bool(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 92,
+ "symbol": "Flow.Cadence.FValue.string(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 93,
+ "symbol": "Flow.Cadence.FValue.character(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 95,
+ "symbol": "Flow.Cadence.FValue.int(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 96,
+ "symbol": "Flow.Cadence.FValue.uint(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 97,
+ "symbol": "Flow.Cadence.FValue.int8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 98,
+ "symbol": "Flow.Cadence.FValue.uint8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 99,
+ "symbol": "Flow.Cadence.FValue.int16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 100,
+ "symbol": "Flow.Cadence.FValue.uint16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 101,
+ "symbol": "Flow.Cadence.FValue.int32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 102,
+ "symbol": "Flow.Cadence.FValue.uint32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 103,
+ "symbol": "Flow.Cadence.FValue.int64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 104,
+ "symbol": "Flow.Cadence.FValue.uint64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 105,
+ "symbol": "Flow.Cadence.FValue.int128(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 106,
+ "symbol": "Flow.Cadence.FValue.uint128(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 107,
+ "symbol": "Flow.Cadence.FValue.int256(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 108,
+ "symbol": "Flow.Cadence.FValue.uint256(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 111,
+ "symbol": "Flow.Cadence.FValue.word8(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 112,
+ "symbol": "Flow.Cadence.FValue.word16(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 113,
+ "symbol": "Flow.Cadence.FValue.word32(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 114,
+ "symbol": "Flow.Cadence.FValue.word64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 116,
+ "symbol": "Flow.Cadence.FValue.fix64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 117,
+ "symbol": "Flow.Cadence.FValue.ufix64(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 119,
+ "symbol": "Flow.Cadence.FValue.array(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 120,
+ "symbol": "Flow.Cadence.FValue.address(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 121,
+ "symbol": "Flow.Cadence.FValue.path(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 122,
+ "symbol": "Flow.Cadence.FValue.reference(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 123,
+ "symbol": "Flow.Cadence.FValue.capability(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 124,
+ "symbol": "Flow.Cadence.FValue.type(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 125,
+ "symbol": "Flow.Cadence.FValue.dictionary(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 126,
+ "symbol": "Flow.Cadence.FValue.struct(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 127,
+ "symbol": "Flow.Cadence.FValue.resource(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 128,
+ "symbol": "Flow.Cadence.FValue.event(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 129,
+ "symbol": "Flow.Cadence.FValue.contract(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 130,
+ "symbol": "Flow.Cadence.FValue.enum(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 132,
+ "symbol": "Flow.Cadence.FValue.unsupported",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCadence.swift",
+ "line": 133,
+ "symbol": "Flow.Cadence.FValue.error",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowChainId.swift",
+ "line": 105,
+ "symbol": "Flow.ChainID.defaultWebSocketNode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowChainId.swift",
+ "line": 116,
+ "symbol": "Flow.ChainID.init(name:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 27,
+ "symbol": "Flow.Collection.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 28,
+ "symbol": "Flow.Collection.transactionIds",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 30,
+ "symbol": "Flow.Collection.init(id:transactionIds:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 62,
+ "symbol": "Flow.CollectionGuarantee.collectionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 63,
+ "symbol": "Flow.CollectionGuarantee.signerIds",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowCollection.swift",
+ "line": 65,
+ "symbol": "Flow.CollectionGuarantee.init(collectionId:signerIds:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowDomainTag.swift",
+ "line": 25,
+ "symbol": "Flow.DomainTag.RawValue",
+ "symbol_kind": "source.lang.swift.decl.typealias",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 34,
+ "symbol": "Flow.Event.transactionIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 35,
+ "symbol": "Flow.Event.eventIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 36,
+ "symbol": "Flow.Event.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 38,
+ "symbol": "Flow.Event.init(type:transactionId:transactionIndex:eventIndex:payload:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 77,
+ "symbol": "Flow.Event.Result.init(blockId:blockHeight:events:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 101,
+ "symbol": "Flow.Event.Payload.fields",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 103,
+ "symbol": "Flow.Event.Payload.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 108,
+ "symbol": "Flow.Event.Payload.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 125,
+ "symbol": "Flow.Snapshot",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 128,
+ "symbol": "Flow.Snapshot.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 132,
+ "symbol": "Flow.Snapshot.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 138,
+ "symbol": "Flow.Snapshot",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 145,
+ "symbol": "Flow.Event.Payload.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 149,
+ "symbol": "Flow.Event.Payload.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 156,
+ "symbol": "Flow.Event.Payload.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 167,
+ "symbol": "Flow.Event.getField(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 181,
+ "symbol": "Flow.TransactionResult.getEvent(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowEvent.swift",
+ "line": 185,
+ "symbol": "Flow.TransactionResult.getCreatedAddress()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowId.swift",
+ "line": 64,
+ "symbol": "Flow.ID.once(status:timeout:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowKind.swift",
+ "line": 25,
+ "symbol": "Flow.Cadence.Kind",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 6,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 9,
+ "symbol": "Flow.Script.text",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 13,
+ "symbol": "Flow.Script.init(text:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 17,
+ "symbol": "Flow.Script.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 21,
+ "symbol": "Flow.Script.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 26,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 28,
+ "symbol": "Flow.ScriptResponse.fields",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 30,
+ "symbol": "Flow.ScriptResponse.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 44,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 45,
+ "symbol": "Flow.ScriptResponse.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 49,
+ "symbol": "Flow.ScriptResponse.decode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 56,
+ "symbol": "Flow.ScriptResponse.decode()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 64,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 68,
+ "symbol": "Flow.Script",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowScript.swift",
+ "line": 85,
+ "symbol": "Flow.ScriptResponse",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSignature.swift",
+ "line": 26,
+ "symbol": "Flow.Signature.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSignature.swift",
+ "line": 30,
+ "symbol": "Flow.Signature.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowSigner.swift",
+ "line": 40,
+ "symbol": "FlowSigner.sign(signableData:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 55,
+ "symbol": "Flow.Transaction.init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 77,
+ "symbol": "Flow.Transaction.init(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 99,
+ "symbol": "Flow.Transaction.buildUpOn(script:arguments:referenceBlockId:gasLimit:proposalKey:payer:authorizers:payloadSignatures:envelopeSignatures:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 200,
+ "symbol": "Flow.Transaction.updateScript(script:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 204,
+ "symbol": "Flow.Transaction.addPayloadSignature(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 209,
+ "symbol": "Flow.Transaction.addPayloadSignature(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 228,
+ "symbol": "Flow.Transaction.addEnvelopeSignature(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 247,
+ "symbol": "Flow.Transaction.addEnvelopeSignature(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 265,
+ "symbol": "Flow.Transaction.Status.unknown",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 266,
+ "symbol": "Flow.Transaction.Status.pending",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 267,
+ "symbol": "Flow.Transaction.Status.finalized",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 268,
+ "symbol": "Flow.Transaction.Status.executed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 269,
+ "symbol": "Flow.Transaction.Status.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 270,
+ "symbol": "Flow.Transaction.Status.expired",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 272,
+ "symbol": "Flow.Transaction.Status.stringValue",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 295,
+ "symbol": "Flow.Transaction.Status.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 299,
+ "symbol": "Flow.Transaction.Status.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 336,
+ "symbol": "Flow.Transaction.EnvelopeSignature",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 349,
+ "symbol": "Flow.Transaction.PaymentEnvelope",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 386,
+ "symbol": "Flow.TransactionResult.init(status:errorMessage:events:statusCode:blockId:computationUsed:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 422,
+ "symbol": "Flow.TransactionResult.errorCode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 441,
+ "symbol": "Flow.TransactionProposalKey.init(address:keyIndex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 447,
+ "symbol": "Flow.TransactionProposalKey.init(address:keyIndex:sequenceNumber:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 454,
+ "symbol": "Flow.TransactionSignature",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 467,
+ "symbol": "Flow.TransactionSignature.init(address:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 474,
+ "symbol": "Flow.TransactionSignature.init(address:signerIndex:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 488,
+ "symbol": "Flow.TransactionSignature.buildUpon(address:signerIndex:keyIndex:signature:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/FlowTransaction.swift",
+ "line": 528,
+ "symbol": "Flow.TransactionSignature",
+ "symbol_kind": "source.lang.swift.decl.extension",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 30,
+ "symbol": "Flow.PublicKey.init(hex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 34,
+ "symbol": "Flow.PublicKey.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 38,
+ "symbol": "Flow.PublicKey.init(bytes:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Models/Signer.swift",
+ "line": 82,
+ "symbol": "Flow.Code.init(data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 26,
+ "symbol": "Flow.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 30,
+ "symbol": "Flow.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 36,
+ "symbol": "Flow.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 40,
+ "symbol": "Flow.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 44,
+ "symbol": "Flow.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 48,
+ "symbol": "Flow.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 52,
+ "symbol": "Flow.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 56,
+ "symbol": "Flow.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 60,
+ "symbol": "Flow.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 70,
+ "symbol": "Flow.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 78,
+ "symbol": "Flow.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 85,
+ "symbol": "Flow.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 92,
+ "symbol": "Flow.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccess.swift",
+ "line": 104,
+ "symbol": "Flow.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 54,
+ "symbol": "FlowAccessProtocol.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 56,
+ "symbol": "FlowAccessProtocol.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 58,
+ "symbol": "FlowAccessProtocol.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 60,
+ "symbol": "FlowAccessProtocol.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 62,
+ "symbol": "FlowAccessProtocol.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 64,
+ "symbol": "FlowAccessProtocol.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 66,
+ "symbol": "FlowAccessProtocol.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 68,
+ "symbol": "FlowAccessProtocol.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 70,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 75,
+ "symbol": "FlowAccessProtocol.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 80,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 86,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 92,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 98,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 104,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 110,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 116,
+ "symbol": "FlowAccessProtocol.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 121,
+ "symbol": "FlowAccessProtocol.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 126,
+ "symbol": "FlowAccessProtocol.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 138,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 145,
+ "symbol": "FlowAccessProtocol.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 155,
+ "symbol": "FlowAccessProtocol.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 159,
+ "symbol": "FlowAccessProtocol.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 163,
+ "symbol": "FlowAccessProtocol.getLatestBlock(sealed:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 168,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(cadence:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 180,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(cadence:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 192,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 204,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 216,
+ "symbol": "FlowAccessProtocol.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 228,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 240,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 252,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowAccessProtocol.swift",
+ "line": 264,
+ "symbol": "FlowAccessProtocol.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 12,
+ "symbol": "Flow.BlockStatus",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 13,
+ "symbol": "Flow.BlockStatus.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/FlowBlockStatus.swift",
+ "line": 14,
+ "symbol": "Flow.BlockStatus.final",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 11,
+ "symbol": "AnyDecodable",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 12,
+ "symbol": "AnyDecodable.value",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/AnyDecodable.swift",
+ "line": 14,
+ "symbol": "AnyDecodable.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 15,
+ "symbol": "FlowHTTPAPI.client",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 17,
+ "symbol": "FlowHTTPAPI.chainID",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 19,
+ "symbol": "FlowHTTPAPI.init(chainID:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 136,
+ "symbol": "FlowHTTPAPI.getNetworkParameters()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 163,
+ "symbol": "FlowHTTPAPI.getBlockHeaderByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 173,
+ "symbol": "FlowHTTPAPI.getLatestBlock(blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 185,
+ "symbol": "FlowHTTPAPI.getBlockById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 195,
+ "symbol": "FlowHTTPAPI.getBlockByHeight(height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 205,
+ "symbol": "FlowHTTPAPI.getCollectionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 209,
+ "symbol": "FlowHTTPAPI.sendTransaction(transaction:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 218,
+ "symbol": "FlowHTTPAPI.getTransactionById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 222,
+ "symbol": "FlowHTTPAPI.getTransactionResultById(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 228,
+ "symbol": "FlowHTTPAPI.getAccountAtLatestBlock(address:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 240,
+ "symbol": "FlowHTTPAPI.getAccountByBlockHeight(address:height:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 249,
+ "symbol": "FlowHTTPAPI.executeScriptAtLatestBlock(script:arguments:blockStatus:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 265,
+ "symbol": "FlowHTTPAPI.executeScriptAtBlockId(script:blockId:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 281,
+ "symbol": "FlowHTTPAPI.executeScriptAtBlockHeight(script:height:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 297,
+ "symbol": "FlowHTTPAPI.getEventsForHeightRange(type:range:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPClient.swift",
+ "line": 306,
+ "symbol": "FlowHTTPAPI.getEventsForBlockIds(type:ids:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 26,
+ "symbol": "Flow.ErrorResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 31,
+ "symbol": "Flow.BlockHeaderResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 35,
+ "symbol": "Flow.NetworkResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 39,
+ "symbol": "Flow.BlockResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 56,
+ "symbol": "Flow.BlockPayloadResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 61,
+ "symbol": "Flow.ScriptRequest",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/FlowHTTPModel.swift",
+ "line": 73,
+ "symbol": "Flow.TransactionIdResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 24,
+ "symbol": "Method",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 25,
+ "symbol": "Method.GET",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 26,
+ "symbol": "Method.POST",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 29,
+ "symbol": "TargetType",
+ "symbol_kind": "source.lang.swift.decl.protocol",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 46,
+ "symbol": "Task",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 51,
+ "symbol": "AnyEncodable",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/HTTP/Target.swift",
+ "line": 54,
+ "symbol": "AnyEncodable.init(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 16,
+ "symbol": "Flow.PublisherEvent.transactionStatus(id:status:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 17,
+ "symbol": "Flow.PublisherEvent.accountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 18,
+ "symbol": "Flow.PublisherEvent.connectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 19,
+ "symbol": "Flow.PublisherEvent.walletResponse(approved:_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 20,
+ "symbol": "Flow.PublisherEvent.block(id:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 21,
+ "symbol": "Flow.PublisherEvent.error(_:)",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 53,
+ "symbol": "Flow.Publisher.WSBlockHeader",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 54,
+ "symbol": "Flow.Publisher.WSBlockHeader.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 55,
+ "symbol": "Flow.Publisher.WSBlockHeader.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 56,
+ "symbol": "Flow.Publisher.WSBlockHeader.timestamp",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 58,
+ "symbol": "Flow.Publisher.WSBlockHeader.init(blockId:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 74,
+ "symbol": "Flow.Publisher.transactionStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 88,
+ "symbol": "Flow.Publisher.accountStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 102,
+ "symbol": "Flow.Publisher.blockStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 116,
+ "symbol": "Flow.Publisher.connectionStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 131,
+ "symbol": "Flow.Publisher.walletResponseStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 163,
+ "symbol": "Flow.Publisher.errorStream()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 182,
+ "symbol": "Flow.Publisher.publishTransactionStatus(id:status:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 188,
+ "symbol": "Flow.Publisher.publishAccountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 194,
+ "symbol": "Flow.Publisher.publishConnectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 200,
+ "symbol": "Flow.Publisher.publishWalletResponse(approved:data:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 207,
+ "symbol": "Flow.Publisher.publishBlock(id:height:timestamp:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 214,
+ "symbol": "Flow.Publisher.publishError(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowPublisher.swift",
+ "line": 225,
+ "symbol": "Flow.publisher",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 12,
+ "symbol": "FlowWebSocketSubscriptionKey.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 13,
+ "symbol": "FlowWebSocketSubscriptionKey.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 15,
+ "symbol": "FlowWebSocketSubscriptionKey.init(topic:id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 23,
+ "symbol": "FlowWebSocketCenter.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 35,
+ "symbol": "FlowWebSocketCenter.init(nioClient:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 41,
+ "symbol": "FlowWebSocketCenter.connectIfNeeded()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 45,
+ "symbol": "FlowWebSocketCenter.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 51,
+ "symbol": "FlowWebSocketCenter.transactionStatusStream(for:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 91,
+ "symbol": "FlowWebSocketCenter.handleTransactionStatusMessage(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/FlowWebSocketCenter.swift",
+ "line": 104,
+ "symbol": "FlowWebSocketCenter.finishTransactionStatus(id:error:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 13,
+ "symbol": "FlowWebSocketUpgradeEvent",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 14,
+ "symbol": "FlowWebSocketUpgradeEvent.upgraded",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 25,
+ "symbol": "FlowNIOWebSocketClient.init(group:configActor:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 39,
+ "symbol": "FlowNIOWebSocketClient.connectIfNeeded()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 52,
+ "symbol": "FlowNIOWebSocketClient.disconnect()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 61,
+ "symbol": "FlowNIOWebSocketClient.sendTransactionStatusSubscribe(id:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/NIO/FlowNIOWebSocketClient.swift",
+ "line": 76,
+ "symbol": "FlowNIOWebSocketClient.sendSubscribeMessage(subscriptionId:topic:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 11,
+ "symbol": "Flow.WalletResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 12,
+ "symbol": "Flow.WalletResponse.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 13,
+ "symbol": "Flow.WalletResponse.jsonrpc",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 14,
+ "symbol": "Flow.WalletResponse.requestId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 15,
+ "symbol": "Flow.WalletResponse.approved",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 17,
+ "symbol": "Flow.WalletResponse.init(id:jsonrpc:requestId:approved:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 28,
+ "symbol": "Flow.PublisherCenter.shared",
+ "symbol_kind": "source.lang.swift.decl.var.static",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 41,
+ "symbol": "Flow.PublisherCenter.accountPublisher(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 57,
+ "symbol": "Flow.PublisherCenter.connectionPublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 73,
+ "symbol": "Flow.PublisherCenter.walletResponsePublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 89,
+ "symbol": "Flow.PublisherCenter.errorPublisher()",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 107,
+ "symbol": "Flow.PublisherCenter.publishAccountUpdate(address:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 117,
+ "symbol": "Flow.PublisherCenter.publishConnectionStatus(isConnected:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 127,
+ "symbol": "Flow.PublisherCenter.publishWalletResponse(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/PublisherCenter.swift",
+ "line": 137,
+ "symbol": "Flow.PublisherCenter.publishError(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 15,
+ "symbol": "Flow.WSTransactionResponse",
+ "symbol_kind": "source.lang.swift.decl.struct",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 16,
+ "symbol": "Flow.WSTransactionResponse.status",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 17,
+ "symbol": "Flow.WSTransactionResponse.statusCode",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 18,
+ "symbol": "Flow.WSTransactionResponse.errorMessage",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 19,
+ "symbol": "Flow.WSTransactionResponse.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 20,
+ "symbol": "Flow.WSTransactionResponse.computationUsed",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 21,
+ "symbol": "Flow.WSTransactionResponse.events",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 70,
+ "symbol": "Flow.WebSocketBlockStatus.finalized",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 71,
+ "symbol": "Flow.WebSocketBlockStatus.sealed",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 76,
+ "symbol": "Flow.WebSocketTransactionStatusRequest.txId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 82,
+ "symbol": "Flow.WebSocketTransactionStatusRequest.init(txId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 89,
+ "symbol": "Flow.WebSocketBlockDigestArguments.blockStatus",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 90,
+ "symbol": "Flow.WebSocketBlockDigestArguments.startBlockHeight",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 91,
+ "symbol": "Flow.WebSocketBlockDigestArguments.startBlockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 99,
+ "symbol": "Flow.WebSocketBlockDigestArguments.init(blockStatus:startBlockHeight:startBlockId:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 112,
+ "symbol": "Flow.WebSocketAccountStatusResponse.blockId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 113,
+ "symbol": "Flow.WebSocketAccountStatusResponse.height",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 114,
+ "symbol": "Flow.WebSocketAccountStatusResponse.accountEvents",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 122,
+ "symbol": "Flow.WebSocketAccountStatusResponse.init(blockId:height:accountEvents:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 135,
+ "symbol": "Flow.WebSocketAccountStatusEvent.type",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 136,
+ "symbol": "Flow.WebSocketAccountStatusEvent.transactionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 137,
+ "symbol": "Flow.WebSocketAccountStatusEvent.transactionIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 138,
+ "symbol": "Flow.WebSocketAccountStatusEvent.eventIndex",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 139,
+ "symbol": "Flow.WebSocketAccountStatusEvent.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebSocketRequest.swift",
+ "line": 149,
+ "symbol": "Flow.WebSocketAccountStatusEvent.init(type:transactionId:transactionIndex:eventIndex:payload:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 15,
+ "symbol": "Flow.WebSocketTopic.blockDigests",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 16,
+ "symbol": "Flow.WebSocketTopic.blockHeaders",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 17,
+ "symbol": "Flow.WebSocketTopic.blocks",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 18,
+ "symbol": "Flow.WebSocketTopic.events",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 19,
+ "symbol": "Flow.WebSocketTopic.accountStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 20,
+ "symbol": "Flow.WebSocketTopic.transactionStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 21,
+ "symbol": "Flow.WebSocketTopic.sendAndGetTransactionStatuses",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 26,
+ "symbol": "Flow.WebSocketAction.subscribe",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 27,
+ "symbol": "Flow.WebSocketAction.unsubscribe",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 28,
+ "symbol": "Flow.WebSocketAction.listSubscriptions",
+ "symbol_kind": "source.lang.swift.decl.enumelement",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 33,
+ "symbol": "Flow.WebSocketSubscribeRequest.id",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 34,
+ "symbol": "Flow.WebSocketSubscribeRequest.action",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 35,
+ "symbol": "Flow.WebSocketSubscribeRequest.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 36,
+ "symbol": "Flow.WebSocketSubscribeRequest.arguments",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 45,
+ "symbol": "Flow.WebSocketSubscribeRequest.init(id:action:topic:arguments:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 60,
+ "symbol": "Flow.WebSocketSubscribeResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 61,
+ "symbol": "Flow.WebSocketSubscribeResponse.action",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 62,
+ "symbol": "Flow.WebSocketSubscribeResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 67,
+ "symbol": "Flow.WebSocketSocketError.code",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 68,
+ "symbol": "Flow.WebSocketSocketError.message",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 73,
+ "symbol": "Flow.WebSocketTopicResponse.subscriptionId",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 74,
+ "symbol": "Flow.WebSocketTopicResponse.topic",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 75,
+ "symbol": "Flow.WebSocketTopicResponse.payload",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/Network/Websocket/WebsocketModels.swift",
+ "line": 76,
+ "symbol": "Flow.WebSocketTopicResponse.error",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/P256FlowSigner.swift",
+ "line": 26,
+ "symbol": "P256FlowSigner.algorithm",
+ "symbol_kind": "source.lang.swift.decl.var.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/P256FlowSigner.swift",
+ "line": 32,
+ "symbol": "P256FlowSigner.init(key:address:keyIndex:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.instance",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/RLP.swift",
+ "line": 13,
+ "symbol": "RLP",
+ "symbol_kind": "source.lang.swift.decl.enum",
+ "warning": "undocumented"
+ },
+ {
+ "file": "/Users/runner/work/flow-swift-macos/flow-swift-macos/Sources/RLP/RLP.swift",
+ "line": 14,
+ "symbol": "RLP.encode(_:)",
+ "symbol_kind": "source.lang.swift.decl.function.method.static",
+ "warning": "undocumented"
+ }
+ ],
+ "source_directory": "/Users/runner/work/flow-swift-macos/flow-swift-macos"
+}
\ No newline at end of file
diff --git a/setup_docs.sh b/setup_docs.sh
new file mode 100755
index 0000000..0eb5bff
--- /dev/null
+++ b/setup_docs.sh
@@ -0,0 +1,116 @@
+#!/usr/bin/env bash
+set -euo pipefail
+
+# Run from repo root
+cd "$(git rev-parse --show-toplevel)"
+
+echo "==> Creating directories"
+mkdir -p Scripts .github/workflows
+
+#######################################
+# Gemfile
+#######################################
+cat > Gemfile <<'EOF'
+source "https://rubygems.org"
+
+gem "jazzy"
+EOF
+
+#######################################
+# .jazzy.yaml
+#######################################
+cat > .jazzy.yaml <<'EOF'
+swift_build_tool: spm
+module: Flow
+min_acl: public
+output: docs
+EOF
+
+#######################################
+# Scripts/generate_docs.sh
+#######################################
+cat > Scripts/generate_docs.sh <<'EOF'
+#!/usr/bin/env bash
+set -euo pipefail
+
+# Run from the repository root (where Package.swift lives).
+cd "$(git rev-parse --show-toplevel)"
+
+# 1. Ensure dependencies are installed
+if [ -f "Gemfile" ]; then
+ echo "==> Installing Ruby gems via Bundler"
+ bundle install --quiet
+fi
+
+# 2. Extract Swift tools version from Package.swift
+if ! grep -q "swift-tools-version:" Package.swift; then
+ echo "Error: Could not find 'swift-tools-version:' in Package.swift" >&2
+ exit 1
+fi
+
+SWIFT_TOOLS_VERSION=$(
+ grep -Eo 'swift-tools-version:[0-9.]+' Package.swift | cut -d: -f2
+)
+
+echo "==> Using Swift version ${SWIFT_TOOLS_VERSION} from Package.swift"
+
+# 3. Build docs with Jazzy (config from .jazzy.yaml)
+JAZZY_CMD=(bundle exec jazzy --swift-version "${SWIFT_TOOLS_VERSION}")
+
+echo "==> Running: ${JAZZY_CMD[*]}"
+"${JAZZY_CMD[@]}"
+
+echo "==> Documentation generated in ./docs"
+EOF
+
+chmod +x Scripts/generate_docs.sh
+
+#######################################
+# .github/workflows/docs.yml
+#######################################
+cat > .github/workflows/docs.yml <<'EOF'
+name: Docs
+
+on:
+ push:
+ branches:
+ - dev
+ paths:
+ - 'Package.swift'
+ - '.jazzy.yaml'
+ - 'Sources/**'
+ workflow_dispatch:
+
+jobs:
+ generate-docs:
+ runs-on: macos-15
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '3.2'
+ bundler-cache: true
+
+ - name: Select Xcode
+ run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
+
+ - name: Generate docs
+ run: Scripts/generate_docs.sh
+
+ # Optional: commit docs back to dev
+ - name: Commit docs
+ if: github.ref == 'refs/heads/dev'
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git add docs
+ git commit -m "Update docs" || echo "No changes"
+ git push
+EOF
+
+echo "==> Scaffolding complete."
+echo "Run: bundle install && Scripts/generate_docs.sh"