diff --git a/CHANGELOG.md b/CHANGELOG.md index 66acca736..ee7dc160d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,15 @@ All notable changes to the Aptos TypeScript SDK will be captured in this file. T # Unreleased -- Update BigInt constants to be hardcoded rather than use Math.pow +# 1.3.0 (2024-01-03) + - [`Breaking`] Capitalize `TransactionPayloadMultiSig` type - Add support to Array value in digital asset property map - [`Breaking`] Change `maxGasAmount, gasUnitPrice and expireTimestamp` properties in `InputGenerateTransactionOptions` type to `number` type - Add `@aptos-labs/aptos-cli` npm package as a dev dependency - Implement a `LocalNode` module to run a local testnet with in the SDK environment - Use `LocalNode` module to spin up a local testnet pre running SDK tests +- Update BigInt constants to be hardcoded rather than use Math.pow # 1.2.0 (2023-12-14) diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/.nojekyll b/docs/@aptos-labs/ts-sdk-1.3.0/.nojekyll new file mode 100644 index 000000000..e2ac6616a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/assets/highlight.css b/docs/@aptos-labs/ts-sdk-1.3.0/assets/highlight.css new file mode 100644 index 000000000..2f868647c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/assets/highlight.css @@ -0,0 +1,141 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #800000; + --dark-hl-3: #808080; + --light-hl-4: #800000; + --dark-hl-4: #569CD6; + --light-hl-5: #000000FF; + --dark-hl-5: #D4D4D4; + --light-hl-6: #E50000; + --dark-hl-6: #9CDCFE; + --light-hl-7: #0000FF; + --dark-hl-7: #CE9178; + --light-hl-8: #CD3131; + --dark-hl-8: #F44747; + --light-hl-9: #008000; + --dark-hl-9: #6A9955; + --light-hl-10: #0000FF; + --dark-hl-10: #569CD6; + --light-hl-11: #0070C1; + --dark-hl-11: #4FC1FF; + --light-hl-12: #001080; + --dark-hl-12: #9CDCFE; + --light-hl-13: #AF00DB; + --dark-hl-13: #C586C0; + --light-hl-14: #267F99; + --dark-hl-14: #4EC9B0; + --light-hl-15: #098658; + --dark-hl-15: #B5CEA8; + --light-hl-16: #000000; + --dark-hl-16: #C8C8C8; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --hl-15: var(--light-hl-15); + --hl-16: var(--light-hl-16); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --hl-15: var(--dark-hl-15); + --hl-16: var(--dark-hl-16); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --hl-14: var(--light-hl-14); + --hl-15: var(--light-hl-15); + --hl-16: var(--light-hl-16); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --hl-14: var(--dark-hl-14); + --hl-15: var(--dark-hl-15); + --hl-16: var(--dark-hl-16); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +.hl-10 { color: var(--hl-10); } +.hl-11 { color: var(--hl-11); } +.hl-12 { color: var(--hl-12); } +.hl-13 { color: var(--hl-13); } +.hl-14 { color: var(--hl-14); } +.hl-15 { color: var(--hl-15); } +.hl-16 { color: var(--hl-16); } +pre, code { background: var(--code-background); } diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/assets/main.js b/docs/@aptos-labs/ts-sdk-1.3.0/assets/main.js new file mode 100644 index 000000000..d0aa8d5f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/assets/main.js @@ -0,0 +1,59 @@ +"use strict"; +"use strict";(()=>{var Pe=Object.create;var ne=Object.defineProperty;var Ie=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var _e=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Fe=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!Re.call(t,i)&&i!==n&&ne(t,i,{get:()=>e[i],enumerable:!(r=Ie(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Pe(_e(t)):{},Fe(e||!t||!t.__esModule?ne(n,"default",{value:t,enumerable:!0}):n,t));var ae=Me((se,oe)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var d=t.utils.clone(n)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),v=s.str.charAt(1),f;v in s.node.edges?f=s.node.edges[v]:(f=new t.TokenSet,s.node.edges[v]=f),s.str.length==1&&(f.final=!0),i.push({node:f,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],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()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof se=="object"?oe.exports=n():e.lunr=n()}(this,function(){return t})})()});var re=[];function G(t,e){re.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){re.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(n&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var de=De(ae());async function le(t,e){if(!window.searchData)return;let n=await fetch(window.searchData),r=new Blob([await n.arrayBuffer()]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();t.data=i,t.index=de.Index.load(i.index),e.classList.remove("loading"),e.classList.add("ready")}function he(){let t=document.getElementById("tsd-search");if(!t)return;let e={base:t.dataset.base+"/"},n=document.getElementById("tsd-search-script");t.classList.add("loading"),n&&(n.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),n.addEventListener("load",()=>{le(e,t)}),le(e,t));let r=document.querySelector("#tsd-search input"),i=document.querySelector("#tsd-search .results");if(!r||!i)throw new Error("The input field or the result list wrapper was not found");let s=!1;i.addEventListener("mousedown",()=>s=!0),i.addEventListener("mouseup",()=>{s=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{s||(s=!1,t.classList.remove("has-focus"))}),Ae(t,i,r,e)}function Ae(t,e,n,r){n.addEventListener("input",ie(()=>{Ne(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ne(t,e,n,r){if(!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s;if(i){let o=i.split(" ").map(a=>a.length?`*${a}*`:"").join(" ");s=r.index.search(o)}else s=[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o`,d=ce(l.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(d+=` (score: ${s[o].score.toFixed(2)})`),l.parent&&(d=` + ${ce(l.parent,i)}.${d}`);let v=document.createElement("li");v.classList.value=l.classes??"";let f=document.createElement("a");f.href=r.base+l.url,f.innerHTML=u+d,v.append(f),e.appendChild(v)}}function ue(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}function ce(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(K(t.substring(s,o)),`${K(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(K(t.substring(s))),i.join("")}var Be={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Be[e])}var C=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",pe="mousemove",B="mouseup",J={x:0,y:0},fe=!1,ee=!1,He=!1,D=!1,me=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(me?"is-mobile":"not-mobile");me&&"ontouchstart"in document.documentElement&&(He=!0,F="touchstart",pe="touchmove",B="touchend");document.addEventListener(F,t=>{ee=!0,D=!1;let e=F=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(pe,t=>{if(ee&&!D){let e=F=="touchstart"?t.targetTouches[0]:t,n=J.x-(e.pageX||0),r=J.y-(e.pageY||0);D=Math.sqrt(n*n+r*r)>10}});document.addEventListener(B,()=>{ee=!1});document.addEventListener("click",t=>{fe&&(t.preventDefault(),t.stopImmediatePropagation(),fe=!1)});var X=class extends C{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(B,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(B,r=>this.onDocumentPointerUp(r))}setActive(n){if(this.active==n)return;this.active=n,document.documentElement.classList.toggle("has-"+this.className,n),this.el.classList.toggle("active",n);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(n){D||(this.setActive(!0),n.preventDefault())}onDocumentPointerDown(n){if(this.active){if(n.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(n){if(!D&&this.active&&n.target.closest(".col-sidebar")){let r=n.target.closest("a");if(r){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),r.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var ve=document.head.appendChild(document.createElement("style"));ve.dataset.for="filters";var Y=class extends C{constructor(n){super(n);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),ve.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.checked}setLocalStorage(n){Q.setItem(this.key,n.toString()),this.value=n,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(n=>{n.style.display="block";let r=Array.from(n.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);n.style.display=r?"none":"block"})}};var Z=class extends C{constructor(n){super(n);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let r=Q.getItem(this.key);this.el.open=r?r==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let i=this.summary.querySelector("a");i&&i.addEventListener("click",()=>{location.assign(i.href)}),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ge(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}var Le;function be(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",xe),xe())}async function xe(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();Le=t.dataset.base+"/",t.innerHTML="";for(let s of i)we(s,t,[]);window.app.createComponents(t),window.app.ensureActivePageVisible()}function we(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-index-accordion`:"tsd-index-accordion",s.dataset.key=i.join("$");let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.innerHTML='',Ee(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)we(u,l,i)}else Ee(t,r,t.class)}function Ee(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=Le+t.path,n&&(r.className=n),location.href===r.href&&r.classList.add("current"),t.kind&&(r.innerHTML=``),r.appendChild(document.createElement("span")).textContent=t.text}else e.appendChild(document.createElement("span")).textContent=t.text}G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var Se=document.getElementById("tsd-theme");Se&&ge(Se);var je=new U;Object.defineProperty(window,"app",{value:je});he();be();})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/assets/navigation.js b/docs/@aptos-labs/ts-sdk-1.3.0/assets/navigation.js new file mode 100644 index 000000000..05ee1f1c0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/assets/navigation.js @@ -0,0 +1 @@ +window.navigationData = "data:application/octet-stream;base64,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" \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/assets/search.js b/docs/@aptos-labs/ts-sdk-1.3.0/assets/search.js new file mode 100644 index 000000000..889a07e5c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/assets/search.js @@ -0,0 +1 @@ +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/assets/style.css b/docs/@aptos-labs/ts-sdk-1.3.0/assets/style.css new file mode 100644 index 000000000..07a385b73 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/assets/style.css @@ -0,0 +1,1394 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-keyword: #056bd6; + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-keyword: #3399ff; + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h4, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} +.tsd-typography table { + border-collapse: collapse; + border: none; +} +.tsd-typography td, +.tsd-typography th { + padding: 6px 13px; + border: 1px solid var(--color-accent); +} +.tsd-typography thead, +.tsd-typography tr:nth-child(even) { + background-color: var(--color-background-secondary); +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + background-color: var(--color-background); + line-height: initial; + padding: 4px; +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current:not(.no-results), +#tsd-search .results li:hover:not(.no-results) { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: + opacity 0.1s, + background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through !important; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Account.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Account.html new file mode 100644 index 000000000..1653ca9c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Account.html @@ -0,0 +1,87 @@ +Account | @aptos-labs/ts-sdk - v1.3.0

Class for creating and managing account on Aptos network

+

Use this class to create accounts, sign transactions, and more. +Note: Creating an account instance does not create the account on-chain.

+

Since AIP-55 Aptos supports +Legacy and Unified authentications.

+

Legacy

includes ED25519 and MultiED25519

+

Unified

includes SingleSender and MultiSender, where currently +SingleSender supports ED25519 and Secp256k1, and MultiSender supports +MultiED25519.

+

In TypeScript SDK, we support all of these options:

+

Generate

default to generate Legacy Ed25519 keys, with an optional legacy boolean argument +that lets you generate new keys conforming to the Unified authentication.

+

From Private Key

derives an account by a provided private key and address, with an optional +legacy boolean argument that lets you generate new keys conforming to the Unified authentication.

+

From Derivation Path

derives an account with bip44 path and mnemonics,

+

Constructors

  • constructor for Account

    +

    Need to update this to use the new crypto library if new schemes are added.

    +

    Parameters

    • args: {
          address: AccountAddress;
          legacy?: boolean;
          privateKey: PrivateKey;
      }
      • address: AccountAddress

        AccountAddress - address of the account

        +
      • Optional legacy?: boolean

        optional. If set to false, the keypair authentication keys will be derived with a unified scheme. +Defaults to deriving an authentication key with the legacy scheme.

        +

        This method is private because it should only be called by the factory static methods.

        +
      • privateKey: PrivateKey

        PrivateKey - private key of the account

        +

    Returns Account

    Account

    +

Properties

accountAddress: AccountAddress

Account address associated with the account

+
privateKey: PrivateKey

Private key associated with the account

+
publicKey: PublicKey

Public key associated with the account

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+

Methods

  • Verify the given message and signature with the public key.

    +

    Parameters

    Returns boolean

  • Derives an account with bip44 path and mnemonics,

    +

    Parameters

    • args: {
          legacy?: boolean;
          mnemonic: string;
          path: string;
          scheme: SigningSchemeInput;
      }
      • Optional legacy?: boolean

        optional. If set to false, the keypair generated is a Unified keypair. Defaults +to generating a Legacy Ed25519 keypair

        +
      • mnemonic: string

        the mnemonic seed phrase of the account

        +
      • path: string

        the BIP44 derive hardened path (e.g. m/44'/637'/0'/0'/0') for Ed25519, +or non-hardened path (e.g. m/44'/637'/0'/0/0) for secp256k1 +Detailed description: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki

        +
      • scheme: SigningSchemeInput

        The signing scheme to derive with

        +

    Returns Account

    Account

    +
  • Instantiates an account given a private key.

    +

    This is used as a local calculation and therefore is used to instantiate an Account +that has not had its authentication key rotated.

    +

    Parameters

    • args: {
          legacy?: boolean;
          privateKey: PrivateKey;
      }
      • Optional legacy?: boolean

        optional. If set to false, the keypair generated is a Unified keypair. Defaults +to generating a Legacy Ed25519 keypair

        +
      • privateKey: PrivateKey

    Returns Account

    Account

    +
  • Instantiates an account given a private key and a specified account address. +This is primarily used to instantiate an Account that has had its authentication key rotated.

    +

    Parameters

    • args: {
          address: AccountAddress;
          legacy?: boolean;
          privateKey: PrivateKey;
      }
      • address: AccountAddress

        AccountAddress - The account address the Account will sign for

        +
      • Optional legacy?: boolean

        optional. If set to false, the keypair generated is a Unified keypair. Defaults +to generating a Legacy Ed25519 keypair

        +
      • privateKey: PrivateKey

        PrivateKey - the underlying private key for the account

        +

    Returns Account

    Account

    +
  • Derives an account with random private key and address.

    +

    Default generation is using the Legacy ED25519 key

    +

    Parameters

    • Optional args: GenerateAccount

      optional. Unify GenerateAccount type for Legacy and Unified keys

      +

      Account input type to generate an account using Legacy +Ed25519 or MultiEd25519 keys or without a specified scheme.

      +
      GenerateAccountWithLegacyKey = {
      scheme?: SigningSchemeInput.Ed25519 | SigningSchemeInput.MultiEd25519;
      legacy: true;
      }; +
      +

      Account input type to generate an account using Unified +Secp256k1Ecdsa key +In this case legacy is always false

      +
      GenerateAccountWithUnifiedKey = {
      scheme: SigningSchemeInput.Secp256k1Ecdsa;
      legacy?: false;
      }; +
      +

    Returns Account

    Account with the given signing scheme

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAddress.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAddress.html new file mode 100644 index 000000000..d5fc222c4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAddress.html @@ -0,0 +1,152 @@ +AccountAddress | @aptos-labs/ts-sdk - v1.3.0

NOTE: Only use this class for account addresses. For other hex data, e.g. transaction +hashes, use the Hex class.

+

AccountAddress is used for working with account addresses. Account addresses, when +represented as a string, generally look like these examples:

+
    +
  • 0x1
  • +
  • 0xaa86fe99004361f747f91342ca13c426ca0cccb0c1217677180c9493bad6ef0c
  • +
+

Proper formatting and parsing of account addresses is defined by AIP-40. +To learn more about the standard, read the AIP here: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

+

The comments in this class make frequent reference to the LONG and SHORT formats, +as well as "special" addresses. To learn what these refer to see AIP-40.

+

Hierarchy

Implements

Constructors

Properties

data: Uint8Array

This is the internal representation of an account address.

+
FOUR: AccountAddress = ...
LENGTH: number = 32

The number of bytes that make up an account address.

+
LONG_STRING_LENGTH: number = 64

The length of an address string in LONG form without a leading 0x.

+
ONE: AccountAddress = ...
THREE: AccountAddress = ...
TWO: AccountAddress = ...
ZERO: AccountAddress = ...

Methods

  • Return whether AccountAddresses are equal. AccountAddresses are considered equal +if their underlying byte data is identical.

    +

    Parameters

    Returns boolean

    true if the AccountAddresses are equal, false if not.

    +
  • Serialize the AccountAddress to a Serializer instance's data buffer.

    +

    Parameters

    • serializer: Serializer

      The serializer to serialize the AccountAddress to.

      +

    Returns void

    void

    +

    Example

    const serializer = new Serializer();
    const address = AccountAddress.fromString("0x1");
    address.serialize(serializer);
    const bytes = serializer.toUint8Array();
    // `bytes` is now the BCS-serialized address. +
    +
  • NOTE: Prefer to use toString where possible.

    +

    Whereas toString will format special addresses (as defined by isSpecial) using the +SHORT form (no leading 0s), this format the address in the LONG format +unconditionally.

    +

    This means it will be 0x + 64 hex characters.

    +

    Returns `0x${string}`

    AccountAddress as a string in LONG form.

    +
  • NOTE: Prefer to use toString where possible.

    +

    Whereas toString will format special addresses (as defined by isSpecial) using the +SHORT form (no leading 0s), this function will include leading zeroes. The string +will not have a leading zero.

    +

    This means it will be 64 hex characters without a leading 0x.

    +

    Returns string

    AccountAddress as a string in LONG form without a leading 0x.

    +
  • NOTE: Prefer to use toString where possible.

    +

    Return the AccountAddress as a string as per AIP-40 but without the leading 0x.

    +

    Learn more by reading the docstring of toString.

    +

    Returns string

    AccountAddress as a string conforming to AIP-40 but without the leading 0x.

    +
  • Get the inner hex data. The inner data is already a Uint8Array so no conversion +is taking place here, it just returns the inner data.

    +

    Returns Uint8Array

    Hex data as Uint8Array

    +
  • Deserialize an AccountAddress from the byte buffer in a Deserializer instance.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer to deserialize the AccountAddress from.

      +

    Returns AccountAddress

    An instance of AccountAddress.

    +

    Example

    const bytes = hexToBytes("0x0102030405060708091011121314151617181920212223242526272829303132");
    const deserializer = new Deserializer(bytes);
    const address = AccountAddress.deserialize(deserializer);
    // `address` is now an instance of AccountAddress. +
    +
  • NOTE: This function has relaxed parsing behavior. For strict behavior, please use +the fromStringStrict function. Where possible use fromStringStrict rather than this +function, fromString is only provided for backwards compatibility.

    +

    Creates an instance of AccountAddress from a hex string.

    +

    This function allows all formats defined by AIP-40. In short this means the +following formats are accepted:

    +
      +
    • LONG, with or without leading 0x
    • +
    • SHORT, with or without leading 0x
    • +
    +

    Where:

    +
      +
    • LONG is 64 hex characters.
    • +
    • SHORT is 1 to 63 hex characters inclusive.
    • +
    • Padding zeroes are allowed, e.g. 0x0123 is valid.
    • +
    +

    Learn more about the different address formats by reading AIP-40: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

    +

    Parameters

    • input: string

      A hex string representing an account address.

      +

    Returns AccountAddress

    An instance of AccountAddress.

    +
  • NOTE: This function has strict parsing behavior. For relaxed behavior, please use +the fromString function.

    +

    Creates an instance of AccountAddress from a hex string.

    +

    This function allows only the strictest formats defined by AIP-40. In short this +means only the following formats are accepted:

    +
      +
    • LONG
    • +
    • SHORT for special addresses
    • +
    +

    Where:

    +
      +
    • LONG is defined as 0x + 64 hex characters.
    • +
    • SHORT for special addresses is 0x0 to 0xf inclusive without padding zeroes.
    • +
    +

    This means the following are not accepted:

    +
      +
    • SHORT for non-special addresses.
    • +
    • Any address without a leading 0x.
    • +
    +

    Learn more about the different address formats by reading AIP-40: +https://github.com/aptos-foundation/AIPs/blob/main/aips/aip-40.md.

    +

    Parameters

    • input: string

      A hex string representing an account address.

      +

    Returns AccountAddress

    An instance of AccountAddress.

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticator.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticator.html new file mode 100644 index 000000000..8a945d754 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticator.html @@ -0,0 +1,15 @@ +AccountAuthenticator | @aptos-labs/ts-sdk - v1.3.0

Class AccountAuthenticatorAbstract

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorEd25519.html new file mode 100644 index 000000000..c36c6d20c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorEd25519.html @@ -0,0 +1,21 @@ +AccountAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.3.0

Class AccountAuthenticatorEd25519

Transaction authenticator Ed25519 for a multi signer transaction

+

Param: public_key

Account's Ed25519 public key.

+

Param: signature

Account's Ed25519 signature

+

Hierarchy

Constructors

Properties

public_key: Ed25519PublicKey
signature: Ed25519Signature

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..785c81978 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiEd25519.html @@ -0,0 +1,21 @@ +AccountAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.3.0

Class AccountAuthenticatorMultiEd25519

Transaction authenticator Multi Ed25519 for a multi signers transaction

+

Param: public_key

Account's MultiEd25519 public key.

+

Param: signature

Account's MultiEd25519 signature

+

Hierarchy

Constructors

Properties

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiKey.html new file mode 100644 index 000000000..dae6e0063 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorMultiKey.html @@ -0,0 +1,22 @@ +AccountAuthenticatorMultiKey | @aptos-labs/ts-sdk - v1.3.0

Class AccountAuthenticatorMultiKey

AccountAuthenticatorMultiKey for a multi signer

+

Param: public_keys

MultiKey

+

Param: signatures

Signature

+

Hierarchy

Constructors

Properties

public_keys: MultiKey
signatures: AnySignature[]
signatures_bitmap: Uint8Array

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorSingleKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorSingleKey.html new file mode 100644 index 000000000..820af322b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountAuthenticatorSingleKey.html @@ -0,0 +1,21 @@ +AccountAuthenticatorSingleKey | @aptos-labs/ts-sdk - v1.3.0

Class AccountAuthenticatorSingleKey

AccountAuthenticatorSingleKey for a single signer

+

Param: public_key

AnyPublicKey

+

Param: signature

AnySignature

+

Hierarchy

Constructors

Properties

public_key: AnyPublicKey
signature: AnySignature

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountSequenceNumber.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountSequenceNumber.html new file mode 100644 index 000000000..e8285d717 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AccountSequenceNumber.html @@ -0,0 +1,29 @@ +AccountSequenceNumber | @aptos-labs/ts-sdk - v1.3.0

Class AccountSequenceNumber

Constructors

Properties

account: Account
aptosConfig: AptosConfig
currentNumber: null | bigint = null
lastUncommintedNumber: null | bigint = null
lock: boolean = false

We want to guarantee that we preserve ordering of workers to requests.

+

lock is used to try to prevent multiple coroutines from accessing a shared resource at the same time, +which can result in race conditions and data inconsistency. +This code actually doesn't do it though, since we aren't giving out a slot, it is still somewhat a race condition.

+

The ideal solution is likely that each thread grabs the next number from a incremental integer. +When they complete, they increment that number and that entity is able to enter the lock. +That would guarantee ordering.

+
maxWaitTime: number
maximumInFlight: number
sleepTime: number

Methods

  • Synchronizes local sequence number with the seqeunce number on chain for this account.

    +

    Poll the network until all submitted transactions have either been committed or until +the maximum wait time has elapsed

    +

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnyPublicKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnyPublicKey.html new file mode 100644 index 000000000..30658e7e8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnyPublicKey.html @@ -0,0 +1,31 @@ +AnyPublicKey | @aptos-labs/ts-sdk - v1.3.0

Represents any public key supported by Aptos.

+

Since AIP-55 Aptos supports +Legacy and Unified authentication keys.

+

Any unified authentication key is represented in the SDK as AnyPublicKey.

+

Hierarchy

Constructors

Properties

publicKey: PublicKey

Reference to the inner public key

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnySignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnySignature.html new file mode 100644 index 000000000..c4023f498 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AnySignature.html @@ -0,0 +1,20 @@ +AnySignature | @aptos-labs/ts-sdk - v1.3.0

An abstract representation of a signature. This is the product of signing a +message and can be used with the PublicKey to verify the signature.

+

Hierarchy

Constructors

Properties

signature: Signature

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Aptos.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Aptos.html new file mode 100644 index 000000000..7ba3feee4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Aptos.html @@ -0,0 +1,570 @@ +Aptos | @aptos-labs/ts-sdk - v1.3.0

This class is the main entry point into Aptos's +APIs and separates functionality into different namespaces.

+

To use the SDK, create a new Aptos instance to get access +to all the sdk functionality.

+

Hierarchy

  • Account
  • ANS
  • Coin
  • DigitalAsset
  • Event
  • Faucet
  • FungibleAsset
  • General
  • Staking
  • Transaction
    • Aptos

Constructors

Properties

Methods

addDigitalAssetPropertyTransaction +addDigitalAssetTypedPropertyTransaction +batchTransactionsForSingleAccount +burnDigitalAssetTransaction +createCollectionTransaction +deriveAccountFromPrivateKey +freezeDigitalAssetTransaferTransaction +fundAccount +getAccountAPTAmount +getAccountCoinAmount +getAccountCoinsCount +getAccountCoinsData +getAccountCollectionsWithOwnedTokens +getAccountDomains +getAccountEventsByCreationNumber +getAccountEventsByEventType +getAccountInfo +getAccountModule +getAccountModules +getAccountNames +getAccountOwnedObjects +getAccountOwnedTokens +getAccountOwnedTokensFromCollectionAddress +getAccountResource +getAccountResources +getAccountSubdomains +getAccountTokensCount +getAccountTransactions +getAccountTransactionsCount +getBlockByHeight +getBlockByVersion +getChainId +getChainTopUserTransactions +getCollectionData +getCollectionId +getCurrentDigitalAssetOwnership +getCurrentFungibleAssetBalances +getDelegatedStakingActivities +getDigitalAssetActivity +getDigitalAssetData +getDomainSubdomains +getEvents +getExpiration +getFungibleAssetActivities +getFungibleAssetMetadata +getFungibleAssetMetadataByAssetType +getGasPriceEstimation +getIndexerLastSuccessVersion +getLedgerInfo +getName +getNumberOfDelegators +getNumberOfDelegatorsForAllPools +getOwnedDigitalAssets +getOwnerAddress +getPrimaryName +getProcessorStatus +getSigningMessage +getTableItem +getTargetAddress +getTransactionByHash +getTransactionByVersion +getTransactions +isPendingTransaction +lookupOriginalAccountAddress +mintDigitalAssetTransaction +mintSoulBoundTransaction +publishPackageTransaction +queryIndexer +registerName +removeDigitalAssetPropertyTransaction +renewDomain +rotateAuthKey +setDigitalAssetDescriptionTransaction +setDigitalAssetNameTransaction +setDigitalAssetURITransaction +setPrimaryName +setTargetAddress +sign +signAndSubmitTransaction +signAsFeePayer +transferCoinTransaction +transferDigitalAssetTransaction +transferFungibleAsset +unfreezeDigitalAssetTransaferTransaction +updateDigitalAssetPropertyTransaction +updateDigitalAssetTypedPropertyTransaction +view +waitForTransaction +

Constructors

Properties

account: Account
ans: ANS
build: Build
coin: Coin
config: AptosConfig
digitalAsset: DigitalAsset
event: Event
faucet: Faucet
fungibleAsset: FungibleAsset
general: General
simulate: Simulate
staking: Staking
submit: Submit
transaction: Transaction

Methods

  • Add a digital asset property

    +

    Parameters

    • args: {
          creator: Account;
          digitalAssetAddress: AccountAddressInput;
          digitalAssetType?: `${string}::${string}::${string}`;
          options?: InputGenerateTransactionOptions;
          propertyKey: string;
          propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY";
          propertyValue: PropertyValue;
      }
      • creator: Account
      • digitalAssetAddress: AccountAddressInput

        The digital asset address

        +
      • Optional digitalAssetType?: `${string}::${string}::${string}`
      • Optional options?: InputGenerateTransactionOptions
      • propertyKey: string

        The property key for storing on-chain properties

        +
      • propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY"

        The type of property value

        +
      • propertyValue: PropertyValue

        The property value to be stored on-chain

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Add a typed digital asset property

    +

    Parameters

    • args: {
          creator: Account;
          digitalAssetAddress: AccountAddressInput;
          digitalAssetType?: `${string}::${string}::${string}`;
          options?: InputGenerateTransactionOptions;
          propertyKey: string;
          propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY";
          propertyValue: PropertyValue;
      }
      • creator: Account
      • digitalAssetAddress: AccountAddressInput

        The digital asset address

        +
      • Optional digitalAssetType?: `${string}::${string}::${string}`
      • Optional options?: InputGenerateTransactionOptions
      • propertyKey: string

        The property key for storing on-chain properties

        +
      • propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY"

        The type of property value

        +
      • propertyValue: PropertyValue

        The property value to be stored on-chain

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Batch transactions for a single account.

    +

    This function uses a transaction worker that receives payloads to be processed +and submitted to chain. +Note that this process is best for submitting multiple transactions that +dont rely on each other, i.e batch funds, batch token mints, etc.

    +

    If any worker failure, the functions throws an error.

    +

    Parameters

    Returns Promise<void>

    void. Throws if any error

    +
  • Derives an account by providing a private key. +This functions resolves the provided private key type and derives the public key from it.

    +

    If the privateKey is a Secp256k1 type, it derives the account using the derived public key and +auth key using the SingleKey scheme locally.

    +

    If the privateKey is a ED25519 type, it looks up the authentication key on chain, and uses it to resolve +whether it is a Legacy ED25519 key or a Unified ED25519 key. It then derives the account based +on that.

    +

    Parameters

    Returns Promise<Account>

    Account type

    +
  • Queries the account's APT amount

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the total count for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<number>

    Current amount of account's APT

    +
  • Queries the account's coin amount by the coin type

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          coinType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the total count for

        +
      • coinType: `${string}::${string}::${string}`

        The coin type to query

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<number>

    Current amount of account's coin

    +
  • Queries the current count of an account's coins aggregated

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the total count for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<number>

    Current count of the aggregated count of all account's coins

    +
  • Queries an account's coins data

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              amount: any;
              asset_type: string;
              is_frozen: boolean;
              is_primary: boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              metadata?: null | {
                  asset_type: string;
                  creator_address: string;
                  decimals: number;
                  icon_uri?: null | string;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  name: string;
                  project_uri?: null | string;
                  supply_aggregator_table_handle_v1?: null | string;
                  supply_aggregator_table_key_v1?: null | string;
                  symbol: string;
                  token_standard: string;
              };
              owner_address: string;
              storage_id: string;
              token_standard: string;
          }> & WhereArg<CurrentFungibleAssetBalancesBoolExp>;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the coins data for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            amount: any;
            asset_type: string;
            is_frozen: boolean;
            is_primary: boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            metadata?: null | {
                asset_type: string;
                creator_address: string;
                decimals: number;
                icon_uri?: null | string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                name: string;
                project_uri?: null | string;
                supply_aggregator_table_handle_v1?: null | string;
                supply_aggregator_table_key_v1?: null | string;
                symbol: string;
                token_standard: string;
            };
            owner_address: string;
            storage_id: string;
            token_standard: string;
        }> & WhereArg<CurrentFungibleAssetBalancesBoolExp>

    Returns Promise<{
        amount: any;
        asset_type: string;
        is_frozen: boolean;
        is_primary: boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        metadata?: null | {
            asset_type: string;
            creator_address: string;
            decimals: number;
            icon_uri?: null | string;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            name: string;
            project_uri?: null | string;
            supply_aggregator_table_handle_v1?: null | string;
            supply_aggregator_table_key_v1?: null | string;
            symbol: string;
            token_standard: string;
        };
        owner_address: string;
        storage_id: string;
        token_standard: string;
    }[]>

    Array with the coins data

    +
  • Queries for all collections that an account currently has tokens for.

    +

    This query returns all tokens (v1 and v2 standards) an account owns, including NFTs, fungible, soulbound, etc. +If you want to get only the token from a specific standard, you can pass an optional tokenStandard param

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: TokenStandardArg & PaginationArgs & OrderByArg<{
              collection_id?: null | string;
              collection_name?: null | string;
              collection_uri?: null | string;
              creator_address?: null | string;
              current_collection?: null | {
                  collection_id: string;
                  collection_name: string;
                  creator_address: string;
                  current_supply: any;
                  description: string;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  max_supply?: any;
                  mutable_description?: null | boolean;
                  mutable_uri?: null | boolean;
                  table_handle_v1?: null | string;
                  token_standard: string;
                  total_minted_v2?: any;
                  uri: string;
              };
              distinct_tokens?: any;
              last_transaction_version?: any;
              owner_address?: null | string;
              single_token_uri?: null | string;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the collections for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: TokenStandardArg & PaginationArgs & OrderByArg<{
            collection_id?: null | string;
            collection_name?: null | string;
            collection_uri?: null | string;
            creator_address?: null | string;
            current_collection?: null | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any;
                mutable_description?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            distinct_tokens?: any;
            last_transaction_version?: any;
            owner_address?: null | string;
            single_token_uri?: null | string;
        }>

    Returns Promise<{
        collection_id?: null | string;
        collection_name?: null | string;
        collection_uri?: null | string;
        creator_address?: null | string;
        current_collection?: null | {
            collection_id: string;
            collection_name: string;
            creator_address: string;
            current_supply: any;
            description: string;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            max_supply?: any;
            mutable_description?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        distinct_tokens?: any;
        last_transaction_version?: any;
        owner_address?: null | string;
        single_token_uri?: null | string;
    }[]>

    Collections array with the collections data

    +
  • Fetches all top level domain names for an account

    +

    Parameters

    • args: GetAccountDomainsArgs

    Returns Promise<{
        domain?: null | string;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        token_standard?: null | string;
    }[]>

    a promise of an array of ANSName

    +
  • Get events by creation number and an account address

    +

    Parameters

    Returns Promise<{
        account_address: string;
        creation_number: any;
        data: any;
        event_index: any;
        indexed_type: string;
        sequence_number: any;
        transaction_block_height: any;
        transaction_version: any;
        type: string;
    }[]>

    Promise

    +
  • Get events by event type and an account address

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          eventType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              account_address: string;
              creation_number: any;
              data: any;
              event_index: any;
              indexed_type: string;
              sequence_number: any;
              transaction_block_height: any;
              transaction_version: any;
              type: string;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address

        +
      • eventType: `${string}::${string}::${string}`

        The event type

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            account_address: string;
            creation_number: any;
            data: any;
            event_index: any;
            indexed_type: string;
            sequence_number: any;
            transaction_block_height: any;
            transaction_version: any;
            type: string;
        }>

    Returns Promise<{
        account_address: string;
        creation_number: any;
        data: any;
        event_index: any;
        indexed_type: string;
        sequence_number: any;
        transaction_block_height: any;
        transaction_version: any;
        type: string;
    }[]>

    Promise

    +
  • Queries the current state for an Aptos account given its account address

    +

    Parameters

    Returns Promise<AccountData>

    The account data

    +

    Example: An example of the returned account

    {
    sequence_number: "1",
    authentication_key: "0x5307b5f4bc67829097a8ba9b43dba3b88261eeccd1f709d9bde240fc100fbb69"
    } +
    +
  • Fetches all names for an account (both top level domains and subdomains)

    +

    Parameters

    • args: GetAccountNamesArgs

    Returns Promise<{
        domain?: null | string;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        token_standard?: null | string;
    }[]>

    a promise of an array of ANSName

    +
  • Queries an account's owned objects

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              allow_ungated_transfer: boolean;
              is_deleted: boolean;
              last_guid_creation_num: any;
              last_transaction_version: any;
              object_address: string;
              owner_address: string;
              state_key_hash: string;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the objects for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            allow_ungated_transfer: boolean;
            is_deleted: boolean;
            last_guid_creation_num: any;
            last_transaction_version: any;
            object_address: string;
            owner_address: string;
            state_key_hash: string;
        }>

    Returns Promise<{
        allow_ungated_transfer: boolean;
        is_deleted: boolean;
        last_guid_creation_num: any;
        last_transaction_version: any;
        object_address: string;
        owner_address: string;
        state_key_hash: string;
    }[]>

    Objects array with the object data

    +
  • Queries the account's current owned tokens.

    +

    This query returns all tokens (v1 and v2 standards) an account owns, including NFTs, fungible, soulbound, etc. +If you want to get only the token from a specific standard, you can pass an optional tokenStandard param

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: TokenStandardArg & PaginationArgs & OrderByArg<{
              amount: any;
              current_token_data?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      collection_id: string;
                      collection_name: string;
                      creator_address: string;
                      current_supply: any;
                      description: string;
                      last_transaction_timestamp: any;
                      last_transaction_version: any;
                      max_supply?: any;
                      mutable_description?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  description: string;
                  is_fungible_v2?: null | boolean;
                  largest_property_version_v1?: any;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  maximum?: any;
                  supply: any;
                  token_data_id: string;
                  token_name: string;
                  token_properties: any;
                  token_standard: string;
                  token_uri: string;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              token_data_id: string;
              token_properties_mutated_v1?: any;
              token_standard: string;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the tokens for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: TokenStandardArg & PaginationArgs & OrderByArg<{
            amount: any;
            current_token_data?: null | {
                collection_id: string;
                current_collection?: null | {
                    collection_id: string;
                    collection_name: string;
                    creator_address: string;
                    current_supply: any;
                    description: string;
                    last_transaction_timestamp: any;
                    last_transaction_version: any;
                    max_supply?: any;
                    mutable_description?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                description: string;
                is_fungible_v2?: null | boolean;
                largest_property_version_v1?: any;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                maximum?: any;
                supply: any;
                token_data_id: string;
                token_name: string;
                token_properties: any;
                token_standard: string;
                token_uri: string;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any;
                mutable_description?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            description: string;
            is_fungible_v2?: null | boolean;
            largest_property_version_v1?: any;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            maximum?: any;
            supply: any;
            token_data_id: string;
            token_name: string;
            token_properties: any;
            token_standard: string;
            token_uri: string;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        token_data_id: string;
        token_properties_mutated_v1?: any;
        token_standard: string;
    }[]>

    Tokens array with the token data

    +
  • Queries all current tokens of a specific collection that an account owns by the collection address

    +

    This query returns all tokens (v1 and v2 standards) an account owns, including NFTs, fungible, soulbound, etc. +If you want to get only the token from a specific standard, you can pass an optional tokenStandard param

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          collectionAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: TokenStandardArg & PaginationArgs & OrderByArg<{
              amount: any;
              current_token_data?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      collection_id: string;
                      collection_name: string;
                      creator_address: string;
                      current_supply: any;
                      description: string;
                      last_transaction_timestamp: any;
                      last_transaction_version: any;
                      max_supply?: any;
                      mutable_description?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  description: string;
                  is_fungible_v2?: null | boolean;
                  largest_property_version_v1?: any;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  maximum?: any;
                  supply: any;
                  token_data_id: string;
                  token_name: string;
                  token_properties: any;
                  token_standard: string;
                  token_uri: string;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              token_data_id: string;
              token_properties_mutated_v1?: any;
              token_standard: string;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the tokens for

        +
      • collectionAddress: AccountAddressInput

        The address of the collection being queried

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: TokenStandardArg & PaginationArgs & OrderByArg<{
            amount: any;
            current_token_data?: null | {
                collection_id: string;
                current_collection?: null | {
                    collection_id: string;
                    collection_name: string;
                    creator_address: string;
                    current_supply: any;
                    description: string;
                    last_transaction_timestamp: any;
                    last_transaction_version: any;
                    max_supply?: any;
                    mutable_description?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                description: string;
                is_fungible_v2?: null | boolean;
                largest_property_version_v1?: any;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                maximum?: any;
                supply: any;
                token_data_id: string;
                token_name: string;
                token_properties: any;
                token_standard: string;
                token_uri: string;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any;
                mutable_description?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            description: string;
            is_fungible_v2?: null | boolean;
            largest_property_version_v1?: any;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            maximum?: any;
            supply: any;
            token_data_id: string;
            token_name: string;
            token_properties: any;
            token_standard: string;
            token_uri: string;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        token_data_id: string;
        token_properties_mutated_v1?: any;
        token_standard: string;
    }[]>

    Tokens array with the token data

    +
  • Queries a specific account resource given account address and resource type. Note that the default is any in order +to allow for ease of accessing properties of the object.

    +

    Type Parameters

    • T extends {} = any

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          options?: LedgerVersionArg;
          resourceType: `${string}::${string}::${string}`;
      }
      • accountAddress: AccountAddressInput

        Aptos account address

        +
      • Optional options?: LedgerVersionArg
      • resourceType: `${string}::${string}::${string}`

        String representation of an on-chain Move struct type, i.e "0x1::aptos_coin::AptosCoin"

        +

    Returns Promise<T>

    Account resource

    +

    Example: An example of an account resource

    {
    value: 6
    } +
    +
  • Fetches all subdomains names for an account

    +

    Parameters

    • args: GetAccountSubdomainsArgs

    Returns Promise<{
        domain?: null | string;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        token_standard?: null | string;
    }[]>

    a promise of an array of ANSName

    +
  • Queries the current count of tokens owned by an account

    +

    Parameters

    Returns Promise<number>

    Current count of tokens owned by the account

    +
  • Queries the current count of transactions submitted by an account

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
      }
      • accountAddress: AccountAddressInput

        The account address we want to get the total count for

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<number>

    Current count of transactions made by an account

    +
  • Get block by block height

    +

    Parameters

    • args: {
          blockHeight: AnyNumber;
          options?: {
              withTransactions?: boolean;
          };
      }
      • blockHeight: AnyNumber

        Block height to lookup. Starts at 0

        +
      • Optional options?: {
            withTransactions?: boolean;
        }
        • Optional withTransactions?: boolean

    Returns Promise<Block>

    Block with optional transactions

    +
  • Queries for block by transaction version

    +

    Parameters

    • args: {
          ledgerVersion: AnyNumber;
          options?: {
              withTransactions?: boolean;
          };
      }
      • ledgerVersion: AnyNumber

        Ledger version to lookup block information for

        +
      • Optional options?: {
            withTransactions?: boolean;
        }
        • Optional withTransactions?: boolean

    Returns Promise<Block>

    Block information with optional transactions

    +
  • Queries for the chain id

    +

    Returns Promise<number>

    The chain id

    +
  • Queries top user transactions

    +

    Parameters

    • args: {
          limit: number;
      }
      • limit: number

        The number of transactions to return

        +

    Returns Promise<{
        version: any;
    }[]>

    GetChainTopUserTransactionsResponse

    +
  • Queries data of a specific collection by the collection creator address and the collection name.

    +

    If, for some reason, a creator account has 2 collections with the same name in v1 and v2, +can pass an optional tokenStandard parameter to query a specific standard

    +

    Parameters

    Returns Promise<{
        collection_id: string;
        collection_name: string;
        creator_address: string;
        current_supply: any;
        description: string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        max_supply?: any;
        mutable_description?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        token_standard: string;
        total_minted_v2?: any;
        uri: string;
    }>

    GetCollectionDataResponse response type

    +
  • Queries a collection's ID.

    +

    This is the same as the collection's object address in V2, but V1 does +not use objects, and does not have an address

    +

    Parameters

    Returns Promise<string>

    the collection id

    +
  • Gets digital asset ownership data given the address of a digital asset.

    +

    Parameters

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any;
                mutable_description?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            description: string;
            is_fungible_v2?: null | boolean;
            largest_property_version_v1?: any;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            maximum?: any;
            supply: any;
            token_data_id: string;
            token_name: string;
            token_properties: any;
            token_standard: string;
            token_uri: string;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        token_data_id: string;
        token_properties_mutated_v1?: any;
        token_standard: string;
    }>

    GetCurrentTokenOwnershipResponse containing relevant ownership data of the digital asset.

    +
  • Queries all fungible asset balances

    +

    Parameters

    • Optional args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & WhereArg<CurrentFungibleAssetBalancesBoolExp>;
      }
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & WhereArg<CurrentFungibleAssetBalancesBoolExp>

    Returns Promise<{
        amount: any;
        asset_type: string;
        is_frozen: boolean;
        is_primary: boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        storage_id: string;
        token_standard: string;
    }[]>

    A list of fungible asset metadata

    +
  • Queries delegated staking activities

    +

    Parameters

    Returns Promise<{
        amount: any;
        delegator_address: string;
        event_index: any;
        event_type: string;
        pool_address: string;
        transaction_version: any;
    }[]>

    GetDelegatedStakingActivitiesResponse response type

    +
  • Gets the activity data given the address of a digital asset.

    +

    Parameters

    • args: {
          digitalAssetAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              after_value?: null | string;
              before_value?: null | string;
              entry_function_id_str?: null | string;
              event_account_address: string;
              event_index: any;
              from_address?: null | string;
              is_fungible_v2?: null | boolean;
              property_version_v1: any;
              to_address?: null | string;
              token_amount: any;
              token_data_id: string;
              token_standard: string;
              transaction_timestamp: any;
              transaction_version: any;
              type: string;
          }>;
      }
      • digitalAssetAddress: AccountAddressInput
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            after_value?: null | string;
            before_value?: null | string;
            entry_function_id_str?: null | string;
            event_account_address: string;
            event_index: any;
            from_address?: null | string;
            is_fungible_v2?: null | boolean;
            property_version_v1: any;
            to_address?: null | string;
            token_amount: any;
            token_data_id: string;
            token_standard: string;
            transaction_timestamp: any;
            transaction_version: any;
            type: string;
        }>

    Returns Promise<{
        after_value?: null | string;
        before_value?: null | string;
        entry_function_id_str?: null | string;
        event_account_address: string;
        event_index: any;
        from_address?: null | string;
        is_fungible_v2?: null | boolean;
        property_version_v1: any;
        to_address?: null | string;
        token_amount: any;
        token_data_id: string;
        token_standard: string;
        transaction_timestamp: any;
        transaction_version: any;
        type: string;
    }[]>

    GetTokenActivityResponse containing relevant activity data to the digital asset.

    +
  • Gets digital asset data given the address of a digital asset.

    +

    Parameters

    Returns Promise<{
        collection_id: string;
        current_collection?: null | {
            collection_id: string;
            collection_name: string;
            creator_address: string;
            current_supply: any;
            description: string;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            max_supply?: any;
            mutable_description?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        description: string;
        is_fungible_v2?: null | boolean;
        largest_property_version_v1?: any;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum?: any;
        supply: any;
        token_data_id: string;
        token_name: string;
        token_properties: any;
        token_standard: string;
        token_uri: string;
    }>

    GetTokenDataResponse containing relevant data to the digital asset.

    +
  • Fetches all subdomains names for a given domain. Note, this will not return the domain itself.

    +

    Parameters

    • args: GetDomainSubdomainsArgs

    Returns Promise<{
        domain?: null | string;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        token_standard?: null | string;
    }[]>

    a promise of an array of ANSName

    +
  • Get all events

    +

    An optional where can be passed in to filter out the response.

    +

    Parameters

    • Optional args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              account_address: string;
              creation_number: any;
              data: any;
              event_index: any;
              indexed_type: string;
              sequence_number: any;
              transaction_block_height: any;
              transaction_version: any;
              type: string;
          }> & WhereArg<EventsBoolExp>;
      }
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            account_address: string;
            creation_number: any;
            data: any;
            event_index: any;
            indexed_type: string;
            sequence_number: any;
            transaction_block_height: any;
            transaction_version: any;
            type: string;
        }> & WhereArg<EventsBoolExp>

    Returns Promise<{
        account_address: string;
        creation_number: any;
        data: any;
        event_index: any;
        indexed_type: string;
        sequence_number: any;
        transaction_block_height: any;
        transaction_version: any;
        type: string;
    }[]>

    GetEventsQuery response type

    +

    Example

    { where:
    {
    transaction_version: { _eq: 123456 },
    }
    } +
    +
  • Retrieve the expiration time of a domain name or subdomain name from the contract.

    +
    // Will return the expiration of "test.aptos.apt" or undefined
    const exp = await aptos.getExpiration({name: "test.aptos"})
    // new Date(exp) would give you the date in question: 2021-01-01T00:00:00.000Z +
    +

    Parameters

    • args: {
          name: string;
      }
      • name: string

        A string of the name to retrieve

        +

    Returns Promise<undefined | number>

    number as a unix timestamp in milliseconds.

    +
  • Queries all fungible asset activities

    +

    Parameters

    • Optional args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & WhereArg<FungibleAssetActivitiesBoolExp>;
      }
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & WhereArg<FungibleAssetActivitiesBoolExp>

    Returns Promise<{
        amount?: any;
        asset_type: string;
        block_height: any;
        entry_function_id_str?: null | string;
        event_index: any;
        gas_fee_payer_address?: null | string;
        is_frozen?: null | boolean;
        is_gas_fee: boolean;
        is_transaction_success: boolean;
        owner_address: string;
        storage_id: string;
        storage_refund_amount: any;
        token_standard: string;
        transaction_timestamp: any;
        transaction_version: any;
        type: string;
    }[]>

    A list of fungible asset metadata

    +
  • Queries all fungible asset metadata.

    +

    Parameters

    Returns Promise<{
        asset_type: string;
        creator_address: string;
        decimals: number;
        icon_uri?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        symbol: string;
        token_standard: string;
    }[]>

    A list of fungible asset metadata

    +
  • Queries a fungible asset metadata

    +

    This query returns the fungible asset metadata for a specific fungible asset.

    +

    Parameters

    • args: {
          assetType: string;
          minimumLedgerVersion?: AnyNumber;
      }
      • assetType: string

        The asset type of the fungible asset. +e.g +"0x1::aptos_coin::AptosCoin" for Aptos Coin +"0xc2948283c2ce03aafbb294821de7ee684b06116bb378ab614fa2de07a99355a8" - address format if this is fungible asset

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<{
        asset_type: string;
        creator_address: string;
        decimals: number;
        icon_uri?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        symbol: string;
        token_standard: string;
    }>

    A fungible asset metadata item

    +
  • Queries for the last successful indexer version

    +

    This is useful to tell what ledger version the indexer is updated to, as it can be behind the full nodes.

    +

    Returns Promise<bigint>

  • Queries for the Aptos ledger info

    +

    Returns Promise<LedgerInfo>

    Aptos Ledger Info

    +

    Example: An example of the returned data

    {
    "chain_id": 4,
    "epoch": "8",
    "ledger_version": "714",
    "oldest_ledger_version": "0",
    "ledger_timestamp": "1694695496521775",
    "node_role": "validator",
    "oldest_block_height": "0",
    "block_height": "359",
    "git_hash": "c82193f36f4e185fed9f68c4ad21f6c6dd390c6e"
    } +
    +
  • Fetches a single name from the indexer

    +

    Parameters

    • args: {
          name: string;
      }
      • name: string

        A string of the name to retrieve, e.g. "test.aptos.apt" +or "test.apt" or "test". Can be inclusive or exclusive of the .apt suffix. +Can be a subdomain.

        +

    Returns Promise<undefined | {
        domain?: null | string;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        token_standard?: null | string;
    }>

    A promise of an ANSName or undefined

    +
  • Queries current number of delegators in a pool. Throws an error if the pool is not found.

    +

    Parameters

    Returns Promise<number>

    The number of delegators for the given pool

    +
  • Queries current number of delegators in a pool. Throws an error if the pool is not found.

    +

    Parameters

    • Optional args: {
          minimumLedgerVersion?: AnyNumber;
          options?: OrderByArg<{
              num_active_delegator?: any;
              pool_address?: null | string;
          }>;
      }
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: OrderByArg<{
            num_active_delegator?: any;
            pool_address?: null | string;
        }>

    Returns Promise<{
        num_active_delegator?: any;
        pool_address?: null | string;
    }[]>

    GetNumberOfDelegatorsForAllPoolsResponse response type

    +
  • Gets the digital assets that the given address owns.

    +

    Parameters

    • args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              amount: any;
              current_token_data?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      collection_id: string;
                      collection_name: string;
                      creator_address: string;
                      current_supply: any;
                      description: string;
                      last_transaction_timestamp: any;
                      last_transaction_version: any;
                      max_supply?: any;
                      mutable_description?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  description: string;
                  is_fungible_v2?: null | boolean;
                  largest_property_version_v1?: any;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  maximum?: any;
                  supply: any;
                  token_data_id: string;
                  token_name: string;
                  token_properties: any;
                  token_standard: string;
                  token_uri: string;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              token_data_id: string;
              token_properties_mutated_v1?: any;
              token_standard: string;
          }>;
          ownerAddress: AccountAddressInput;
      }
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +
      • Optional options?: PaginationArgs & OrderByArg<{
            amount: any;
            current_token_data?: null | {
                collection_id: string;
                current_collection?: null | {
                    collection_id: string;
                    collection_name: string;
                    creator_address: string;
                    current_supply: any;
                    description: string;
                    last_transaction_timestamp: any;
                    last_transaction_version: any;
                    max_supply?: any;
                    mutable_description?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                description: string;
                is_fungible_v2?: null | boolean;
                largest_property_version_v1?: any;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                maximum?: any;
                supply: any;
                token_data_id: string;
                token_name: string;
                token_properties: any;
                token_standard: string;
                token_uri: string;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>
      • ownerAddress: AccountAddressInput

        The address of the owner

        +

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                collection_id: string;
                collection_name: string;
                creator_address: string;
                current_supply: any;
                description: string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                max_supply?: any;
                mutable_description?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            description: string;
            is_fungible_v2?: null | boolean;
            largest_property_version_v1?: any;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            maximum?: any;
            supply: any;
            token_data_id: string;
            token_name: string;
            token_properties: any;
            token_standard: string;
            token_uri: string;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        token_data_id: string;
        token_properties_mutated_v1?: any;
        token_standard: string;
    }[]>

    GetOwnedTokensResponse containing ownership data of the digital assets belonging to the ownerAddresss.

    +
  • Retrieve the owner address of a domain name or subdomain name from the contract.

    +
    // Will return the owner address of "test.aptos.apt" or undefined
    const owner = await aptos.getOwnerAddress({name: "test.aptos"})
    // owner = 0x123... +
    +

    Parameters

    • args: {
          name: string;
      }
      • name: string

        A string of the name to retrieve

        +

    Returns Promise<undefined | string>

    MoveAddressType if the name is owned, undefined otherwise

    +
  • Retrieve the primary name for an account. An account can have +multiple names that target it, but only a single name that is primary. An +account also may not have a primary name.

    +
    const name = await aptos.getPrimaryName({address: alice.accountAddress})
    // name = test.aptos +
    +

    Parameters

    Returns Promise<undefined | string>

    a string if the account has a primary name, undefined otherwise

    +
  • Query the processor status for a specific processor type.

    +

    Parameters

    Returns Promise<{
        last_success_version: any;
        last_updated: any;
        processor: string;
    }>

  • Returns a signing message for a transaction.

    +

    This allows a user to sign a transaction using their own preferred signing method, and +then submit it to the network.

    +

    Parameters

    Returns Uint8Array

  • Queries for a table item for a table identified by the handle and the key for the item. +Key and value types need to be passed in to help with key serialization and value deserialization.

    +

    Type Parameters

    • T

    Parameters

    Returns Promise<T>

    Table item value rendered in JSON

    +

    Example

    https://fullnode.devnet.aptoslabs.com/v1/accounts/0x1/resource/0x1::coin::CoinInfo%3C0x1::aptos_coin::AptosCoin%3E
    {
    data.key_type = "address" // Move type of table key
    data.value_type = "u128" // Move type of table value
    data.key = "0x619dc29a0aac8fa146714058e8dd6d2d0f3bdf5f6331907bf91f3acd81e6935" // Value of table key
    } +
    +
  • Retrieve the target address of a domain or subdomain name. This is the +address the name points to for use on chain. Note, the target address can +point to addresses that are not the owner of the name

    +
    const targetAddr = await aptos.getTargetAddress({name: "test.aptos"})
    // targetAddr = 0x123... +
    +

    Parameters

    • args: {
          name: string;
      }
      • name: string

        A string of the name: primary, primary.apt, secondary.primary, secondary.primary.apt, etc.

        +

    Returns Promise<undefined | string>

    MoveAddressType if the name has a target, undefined otherwise

    +
  • Queries on-chain transaction by transaction hash. This function will return pending transactions.

    +

    Parameters

    • args: {
          transactionHash: HexInput;
      }
      • transactionHash: HexInput

        Transaction hash should be hex-encoded bytes string with 0x prefix.

        +

    Returns Promise<TransactionResponse>

    Transaction from mempool (pending) or on-chain (committed) transaction

    +
  • Queries on-chain transaction by version. This function will not return pending transactions.

    +

    Parameters

    • args: {
          ledgerVersion: AnyNumber;
      }
      • ledgerVersion: AnyNumber

        Transaction version is an unsigned 64-bit number.

        +

    Returns Promise<TransactionResponse>

    On-chain transaction. Only on-chain transactions have versions, so this +function cannot be used to query pending transactions.

    +
  • Defines if specified transaction is currently in pending state

    +

    To create a transaction hash:

    +
      +
    1. Create a hash message from the bytes: "Aptos::Transaction" bytes + the BCS-serialized Transaction bytes.
    2. +
    3. Apply hash algorithm SHA3-256 to the hash message bytes.
    4. +
    5. Hex-encode the hash bytes with 0x prefix.
    6. +
    +

    Parameters

    • args: {
          transactionHash: HexInput;
      }
      • transactionHash: HexInput

        A hash of transaction

        +

    Returns Promise<boolean>

    true if transaction is in pending state and false otherwise

    +
  • Create a transaction to mint a digital asset into the creators account within an existing collection.

    +

    Parameters

    • args: {
          collection: string;
          creator: Account;
          description: string;
          name: string;
          options?: InputGenerateTransactionOptions;
          propertyKeys?: string[];
          propertyTypes?: ("U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY")[];
          propertyValues?: PropertyValue[];
          uri: string;
      }
      • collection: string

        the name of the collection the digital asset belongs to

        +
      • creator: Account

        the creator of the collection

        +
      • description: string

        the description of the digital asset

        +
      • name: string

        the name of the digital asset

        +
      • Optional options?: InputGenerateTransactionOptions
      • Optional propertyKeys?: string[]
      • Optional propertyTypes?: ("U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY")[]
      • Optional propertyValues?: PropertyValue[]
      • uri: string

        the URI to additional info about the digital asset

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Mint a soul bound digital asset into a recipient's account

    +

    Parameters

    • args: {
          account: Account;
          collection: string;
          description: string;
          name: string;
          options?: InputGenerateTransactionOptions;
          propertyKeys?: string[];
          propertyTypes?: ("U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY")[];
          propertyValues?: PropertyValue[];
          recipient: AccountAddress;
          uri: string;
      }
      • account: Account

        The account that mints the digital asset

        +
      • collection: string

        The collection name that the digital asset belongs to

        +
      • description: string

        The digital asset description

        +
      • name: string

        The digital asset name

        +
      • Optional options?: InputGenerateTransactionOptions
      • Optional propertyKeys?: string[]

        The property keys for storing on-chain properties

        +
      • Optional propertyTypes?: ("U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY")[]

        The type of property values

        +
      • Optional propertyValues?: PropertyValue[]

        The property values to be stored on-chain

        +
      • recipient: AccountAddress

        The account address where the digital asset will be created

        +
      • uri: string

        The digital asset URL

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Registers a new name

    +
    // An example of registering a subdomain name assuming def.apt is already registered
    // and belongs to the sender alice.
    const txn = aptos.registerName({
    sender: alice,
    name: "test.aptos.apt",
    expiration: {
    policy: "subdomain:independent",
    expirationDate: Date.now() + 30 * 24 * 60 * 60 * 1000,
    },
    }); +
    +

    Parameters

    • args: Omit<RegisterNameParameters, "aptosConfig">

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +
  • Remove a digital asset property

    +

    Parameters

    • args: {
          creator: Account;
          digitalAssetAddress: AccountAddressInput;
          digitalAssetType?: `${string}::${string}::${string}`;
          options?: InputGenerateTransactionOptions;
          propertyKey: string;
          propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY";
          propertyValue: PropertyValue;
      }
      • creator: Account
      • digitalAssetAddress: AccountAddressInput

        The digital asset address

        +
      • Optional digitalAssetType?: `${string}::${string}::${string}`
      • Optional options?: InputGenerateTransactionOptions
      • propertyKey: string

        The property key for storing on-chain properties

        +
      • propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY"

        The type of property value

        +
      • propertyValue: PropertyValue

        The property value to be stored on-chain

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Renews a domain name

    +

    Note: If a domain name was minted with V1 of the contract, it will automatically be upgraded to V2 via this transaction.

    +
    await aptos.renewDomain({sender: alice, name: "test"})
    // test.apt will be renewed for one year +
    +

    Parameters

    • args: {
          name: string;
          options?: InputGenerateTransactionOptions;
          sender: Account;
          years?: 1;
      }
      • name: string

        A string of the domain the subdomain will be under. The signer must be the domain owner. +Subdomains cannot be renewed.

        +
      • Optional options?: InputGenerateTransactionOptions
      • sender: Account

        The sender account

        +
      • Optional years?: 1

        The number of years to renew the name. Currently only one year is permitted.

        +

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +
  • Sets the primary name for the sender. An account can have +multiple names that target it, but only a single name that is primary. An +account also may not have a primary name.

    +
    await aptos.setPrimaryName({sender: alice, name: "test.aptos"})
    const primaryName = await aptos.getPrimaryName({address: alice.accountAddress})
    // primaryName = test.aptos +
    +

    Parameters

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +
  • Sets the target address of a domain or subdomain name. This is the +address the name points to for use on chain. Note, the target address can +point to addresses that are not the owner of the name

    +
    await aptos.setTargetAddress({sender: alice, name: "test.aptos", address: bob.accountAddress})
    const address = await aptos.getTargetAddress({name: "test.aptos"})
    // address = bob.accountAddress +
    +

    Parameters

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +
  • Transfer a digital asset (non fungible digital asset) ownership.

    +

    We can transfer a digital asset only when the digital asset is not frozen +(i.e. owner transfer is not disabled such as for soul bound digital assets)

    +

    Parameters

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Update a digital asset property

    +

    Parameters

    • args: {
          creator: Account;
          digitalAssetAddress: AccountAddressInput;
          digitalAssetType?: `${string}::${string}::${string}`;
          options?: InputGenerateTransactionOptions;
          propertyKey: string;
          propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY";
          propertyValue: PropertyValue;
      }
      • creator: Account
      • digitalAssetAddress: AccountAddressInput

        The digital asset address

        +
      • Optional digitalAssetType?: `${string}::${string}::${string}`
      • Optional options?: InputGenerateTransactionOptions
      • propertyKey: string

        The property key for storing on-chain properties

        +
      • propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY"

        The type of property value

        +
      • propertyValue: PropertyValue

        The property value to be stored on-chain

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Update a typed digital asset property

    +

    Parameters

    • args: {
          creator: Account;
          digitalAssetAddress: AccountAddressInput;
          digitalAssetType?: `${string}::${string}::${string}`;
          options?: InputGenerateTransactionOptions;
          propertyKey: string;
          propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY";
          propertyValue: PropertyValue;
      }
      • creator: Account
      • digitalAssetAddress: AccountAddressInput

        The digital asset address

        +
      • Optional digitalAssetType?: `${string}::${string}::${string}`
      • Optional options?: InputGenerateTransactionOptions
      • propertyKey: string

        The property key for storing on-chain properties

        +
      • propertyType: "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "BOOLEAN" | "ADDRESS" | "STRING" | "ARRAY"

        The type of property value

        +
      • propertyValue: PropertyValue

        The property value to be stored on-chain

        +

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +
  • Queries for a Move view function

    +

    Type Parameters

    Parameters

    Returns Promise<T>

    an array of Move values

    +

    Example

    `
    const payload: ViewRequest = {
    function: "0x1::coin::balance",
    typeArguments: ["0x1::aptos_coin::AptosCoin"],
    functionArguments: [accountAddress],
    };
    ` +
    +
  • Waits for a transaction to move past the pending state.

    +

    There are 4 cases.

    +
      +
    1. Transaction is successfully processed and committed to the chain.
        +
      • The function will resolve with the transaction response from the API.
      • +
      +
    2. +
    3. Transaction is rejected for some reason, and is therefore not committed to the blockchain.
        +
      • The function will throw an AptosApiError with an HTTP status code indicating some problem with the request.
      • +
      +
    4. +
    5. Transaction is committed but execution failed, meaning no changes were +written to the blockchain state.
        +
      • If checkSuccess is true, the function will throw a FailedTransactionError +If checkSuccess is false, the function will resolve with the transaction response where the success field is false.
      • +
      +
    6. +
    7. Transaction does not move past the pending state within args.options.timeoutSecs seconds.
        +
      • The function will throw a WaitForTransactionError
      • +
      +
    8. +
    +

    Parameters

    Returns Promise<CommittedTransactionResponse>

    The transaction on-chain. See above for more details.

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosApiError.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosApiError.html new file mode 100644 index 000000000..09d17bcab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosApiError.html @@ -0,0 +1,23 @@ +AptosApiError | @aptos-labs/ts-sdk - v1.3.0

The type returned from an API error

+

Param: name

the error name "AptosApiError"

+

Param: url

the url the request was made to

+

Param: status

the response status. i.e. 400

+

Param: statusText

the response message

+

Param: data

the response data

+

Param: request

the AptosRequest

+

Hierarchy

  • Error
    • AptosApiError

Constructors

Properties

data: any
message: string
name: string
request: AptosRequest
stack?: string
status: number
statusText: string
url: string
prepareStackTrace?: ((err, stackTraces) => any)

Type declaration

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosConfig.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosConfig.html new file mode 100644 index 000000000..9af3974c1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AptosConfig.html @@ -0,0 +1,14 @@ +AptosConfig | @aptos-labs/ts-sdk - v1.3.0

This class holds the config information for the SDK client instance.

+

Constructors

Properties

client: Client

The client instance the SDK uses. Defaults to `@aptos-labs/aptos-client

+
clientConfig?: ClientConfig
faucet?: string

The optional hardcoded faucet URL to send requests to instead of using the network

+
fullnode?: string

The optional hardcoded fullnode URL to send requests to instead of using the network

+
indexer?: string

The optional hardcoded indexer URL to send requests to instead of using the network

+
network: Network

The Network that this SDK is associated with. Defaults to DEVNET

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/AuthenticationKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AuthenticationKey.html new file mode 100644 index 000000000..e6298221c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/AuthenticationKey.html @@ -0,0 +1,37 @@ +AuthenticationKey | @aptos-labs/ts-sdk - v1.3.0

Each account stores an authentication key. Authentication key enables account owners to rotate +their private key(s) associated with the account without changing the address that hosts their account.

+

See

Account Basics

+

Account addresses can be derived from AuthenticationKey

+

Hierarchy

Constructors

Properties

data: Hex

The raw bytes of the authentication key.

+
LENGTH: number = 32

An authentication key is always a SHA3-256 hash of data, and is always 32 bytes.

+

The data to hash depends on the underlying public key type and the derivation scheme.

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Bool.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Bool.html new file mode 100644 index 000000000..b5c08e546 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Bool.html @@ -0,0 +1,20 @@ +Bool | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: boolean

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/ChainId.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ChainId.html new file mode 100644 index 000000000..0ebf41dd8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ChainId.html @@ -0,0 +1,13 @@ +ChainId | @aptos-labs/ts-sdk - v1.3.0

Representation of a ChainId that can serialized and deserialized

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

chainId: number

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Deserializer.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Deserializer.html new file mode 100644 index 000000000..5a617b366 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Deserializer.html @@ -0,0 +1,63 @@ +Deserializer | @aptos-labs/ts-sdk - v1.3.0

Constructors

Properties

buffer: ArrayBuffer
offset: number

Methods

  • Helper function that primarily exists to support alternative syntax for deserialization. +That is, if we have a const deserializer: new Deserializer(...), instead of having to use +MyClass.deserialize(deserializer), we can call deserializer.deserialize(MyClass).

    +

    Type Parameters

    • T

    Parameters

    • cls: Deserializable<T>

      The BCS-deserializable class to deserialize the buffered bytes into.

      +

    Returns T

    the deserialized value of class type T

    +

    Example

    const deserializer = new Deserializer(new Uint8Array([1, 2, 3]));
    const value = deserializer.deserialize(MyClass); // where MyClass has a `deserialize` function
    // value is now an instance of MyClass
    // equivalent to `const value = MyClass.deserialize(deserializer)` +
    +
  • Deserializes a boolean value.

    +

    BCS layout for "boolean": One byte. "0x01" for true and "0x00" for false.

    +

    Returns boolean

  • Deserializes an array of bytes.

    +

    BCS layout for "bytes": bytes_length | bytes +where bytes_length is a u32 integer encoded as a uleb128 integer, equal to the length of the bytes array.

    +

    Returns Uint8Array

  • Deserializes an array of bytes. The number of bytes to read is already known.

    +

    Parameters

    • len: number

    Returns Uint8Array

  • Deserializes a string. UTF8 string is supported. Reads the string's bytes length "l" first, +and then reads "l" bytes of content. Decodes the byte array into a string.

    +

    BCS layout for "string": string_length | string_content +where string_length is a u32 integer encoded as a uleb128 integer, equal to the number of bytes in string_content.

    +

    Returns string

    Example

    const deserializer = new Deserializer(new Uint8Array([8, 49, 50, 51, 52, 97, 98, 99, 100]));
    assert(deserializer.deserializeStr() === "1234abcd"); +
    +
  • Deserializes a uint128 number.

    +

    BCS layout for "uint128": Sixteen bytes. Binary format in little-endian representation.

    +

    Returns bigint

  • Deserializes a uint16 number.

    +

    BCS layout for "uint16": Two bytes. Binary format in little-endian representation.

    +

    Returns number

    Example

    const deserializer = new Deserializer(new Uint8Array([0x34, 0x12]));
    assert(deserializer.deserializeU16() === 4660); +
    +
  • Deserializes a uint256 number.

    +

    BCS layout for "uint256": Thirty-two bytes. Binary format in little-endian representation.

    +

    Returns bigint

  • Deserializes a uint32 number.

    +

    BCS layout for "uint32": Four bytes. Binary format in little-endian representation.

    +

    Returns number

    Example

    const deserializer = new Deserializer(new Uint8Array([0x78, 0x56, 0x34, 0x12]));
    assert(deserializer.deserializeU32() === 305419896); +
    +
  • Deserializes a uint64 number.

    +

    BCS layout for "uint64": Eight bytes. Binary format in little-endian representation.

    +

    Returns bigint

    Example

    const deserializer = new Deserializer(new Uint8Array([0x00, 0xEF, 0xCD, 0xAB, 0x78, 0x56, 0x34, 0x12]));
    assert(deserializer.deserializeU64() === 1311768467750121216); +
    +
  • Deserializes a uint8 number.

    +

    BCS layout for "uint8": One byte. Binary format in little-endian representation.

    +

    Returns number

  • Deserializes a uleb128 encoded uint32 number.

    +

    BCS use uleb128 encoding in two cases: (1) lengths of variable-length sequences and (2) tags of enum values

    +

    Returns number

  • Deserializes an array of BCS Deserializable values given an existing Deserializer +instance with a loaded byte buffer.

    +

    Type Parameters

    • T

    Parameters

    • cls: Deserializable<T>

      The BCS-deserializable class to deserialize the buffered bytes into.

      +

    Returns T[]

    an array of deserialized values of type T

    +

    Example

    // serialize a vector of addresses
    const addresses = new Array<AccountAddress>(
    AccountAddress.from("0x1"),
    AccountAddress.from("0x2"),
    AccountAddress.from("0xa"),
    AccountAddress.from("0xb"),
    );
    const serializer = new Serializer();
    serializer.serializeVector(addresses);
    const serializedBytes = serializer.toUint8Array();

    // deserialize the bytes into an array of addresses
    const deserializer = new Deserializer(serializedBytes);
    const deserializedAddresses = deserializer.deserializeVector(AccountAddress);
    // deserializedAddresses is now an array of AccountAddress instances +
    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PrivateKey.html new file mode 100644 index 000000000..bf4aea1e2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PrivateKey.html @@ -0,0 +1,51 @@ +Ed25519PrivateKey | @aptos-labs/ts-sdk - v1.3.0

Represents the private key of an Ed25519 key pair.

+

Hierarchy

Constructors

Properties

signingKeyPair: SignKeyPair

The Ed25519 signing key

+
LENGTH: number = 32

Length of an Ed25519 private key

+
SLIP_0010_SEED: "ed25519 seed" = "ed25519 seed"

The Ed25519 key seed to use for BIP-32 compatibility +See more https://github.com/satoshilabs/slips/blob/master/slip-0010.md

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +
  • Derives a private key from a mnemonic seed phrase.

    +

    To derive multiple keys from the same phrase, change the path

    +

    IMPORTANT: Ed25519 supports hardened derivation only (since it lacks a key homomorphism, +so non-hardened derivation cannot work)

    +

    Parameters

    • path: string

      the BIP44 path

      +
    • mnemonics: string

      the mnemonic seed phrase

      +

    Returns Ed25519PrivateKey

  • A private inner function so we can separate from the main fromDerivationPath() method +to add tests to verify we create the keys correctly.

    +

    Parameters

    • path: string

      the BIP44 path

      +
    • seed: Uint8Array

      the seed phrase created by the mnemonics

      +
    • offset: number = HARDENED_OFFSET

      the offset used for key derivation, defaults to 0x80000000

      +

    Returns Ed25519PrivateKey

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PublicKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PublicKey.html new file mode 100644 index 000000000..e20f64de0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519PublicKey.html @@ -0,0 +1,34 @@ +Ed25519PublicKey | @aptos-labs/ts-sdk - v1.3.0

Represents the public key of an Ed25519 key pair.

+

Since AIP-55 Aptos supports +Legacy and Unified authentication keys.

+

Ed25519 scheme is represented in the SDK as Legacy authentication key and also +as AnyPublicKey that represents any Unified authentication key

+

Hierarchy

Constructors

Properties

key: Hex

Bytes of the public key

+
LENGTH: number = 32

Length of an Ed25519 public key

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519Signature.html new file mode 100644 index 000000000..546a60822 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Ed25519Signature.html @@ -0,0 +1,24 @@ +Ed25519Signature | @aptos-labs/ts-sdk - v1.3.0

A signature of a message signed using an Ed25519 private key

+

Hierarchy

Constructors

Properties

data: Hex

The signature bytes

+
LENGTH: 64 = 64

Length of an Ed25519 signature

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunction.html new file mode 100644 index 000000000..5129d70e2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunction.html @@ -0,0 +1,43 @@ +EntryFunction | @aptos-labs/ts-sdk - v1.3.0

Representation of a EntryFunction that can serialized and deserialized

+

Constructors

  • Contains the payload to run a function within a module.

    +

    Parameters

    • module_name: ModuleId

      Fully qualified module name in format "account_address::module_name" e.g. "0x1::coin"

      +
    • function_name: Identifier

      The function name. e.g "transfer"

      +
    • type_args: TypeTag[]

      Type arguments that move function requires.

      +
    • args: EntryFunctionArgument[]

      arguments to the move function.

      +

    Returns EntryFunction

    Example

    A coin transfer function has one type argument "CoinType".

    +
    public entry fun transfer<CoinType>(from: &signer, to: address, amount: u64)
    +
    +

    Example

    A coin transfer function has three arguments "from", "to" and "amount".

    +
    public entry fun transfer<CoinType>(from: &signer, to: address, amount: u64)
    +
    +

Properties

function_name: Identifier
module_name: ModuleId
type_args: TypeTag[]

Methods

  • A helper function to build a EntryFunction payload from raw primitive values

    +

    Parameters

    • module_id: `${string}::${string}`

      Fully qualified module name in format "AccountAddress::module_id" e.g. "0x1::coin"

      +
    • function_name: string

      Function name

      +
    • type_args: TypeTag[]

      Type arguments that move function requires.

      +
    • args: EntryFunctionArgument[]

      Arguments to the move function.

      +

    Returns EntryFunction

    EntryFunction

    +

    Example

    A coin transfer function has one type argument "CoinType".

    +
    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64,)
    +
    +

    Example

    A coin transfer function has three arguments "from", "to" and "amount".

    +
    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64,)
    +
    +
  • Deserializes an entry function payload with the arguments represented as EntryFunctionBytes instances.

    +

    Parameters

    Returns EntryFunction

    A deserialized EntryFunction payload for a transaction.

    +

    See

    EntryFunctionBytes

    +

    NOTE: When you deserialize an EntryFunction payload with this method, the entry function +arguments are populated into the deserialized instance as type-agnostic, raw fixed bytes +in the form of the EntryFunctionBytes class.

    +

    In order to correctly deserialize these arguments as their actual type representations, you +must know the types of the arguments beforehand and deserialize them yourself individually.

    +

    One way you could achieve this is by using the ABIs for an entry function and deserializing each +argument as its given, corresponding type.

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunctionBytes.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunctionBytes.html new file mode 100644 index 000000000..077f91989 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/EntryFunctionBytes.html @@ -0,0 +1,28 @@ +EntryFunctionBytes | @aptos-labs/ts-sdk - v1.3.0

Class EntryFunctionBytes

This class exists solely to represent a sequence of fixed bytes as a serialized entry function, because +serializing an entry function appends a prefix that's only used for entry function arguments.

+

NOTE: Attempting to use this class for a serialized script function will result in erroneous +and unexpected behavior.

+

If you wish to convert this class back to a TransactionArgument, you must know the type +of the argument beforehand, and use the appropriate class to deserialize the bytes within +an instance of this class.

+

Hierarchy

Implements

Constructors

Properties

value: FixedBytes

Methods

  • The only way to create an instance of this class is to use this static method.

    +

    This function should only be used when deserializing a sequence of EntryFunctionPayload arguments.

    +

    Parameters

    • deserializer: Deserializer

      the deserializer instance with the buffered bytes

      +
    • length: number

      the length of the bytes to deserialize

      +

    Returns EntryFunctionBytes

    an instance of this class, which will now only be usable as an EntryFunctionArgument

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/FeePayerRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/FeePayerRawTransaction.html new file mode 100644 index 000000000..55d65acd6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/FeePayerRawTransaction.html @@ -0,0 +1,21 @@ +FeePayerRawTransaction | @aptos-labs/ts-sdk - v1.3.0

Class FeePayerRawTransaction

Representation of a Fee Payer Transaction that can serialized and deserialized

+

Hierarchy

Constructors

Properties

fee_payer_address: AccountAddress

The fee payer account address

+

The raw transaction

+
secondary_signer_addresses: AccountAddress[]

The secondary signers on this transaction - optional and can be empty

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/FixedBytes.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/FixedBytes.html new file mode 100644 index 000000000..2cabf6b9c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/FixedBytes.html @@ -0,0 +1,33 @@ +FixedBytes | @aptos-labs/ts-sdk - v1.3.0

This class exists to represent a contiguous sequence of already serialized BCS-bytes.

+

It differs from most other Serializable classes in that its internal byte buffer is serialized to BCS + bytes exactly as-is, without prepending the length of the bytes.

+

If you want to write your own serialization function and pass the bytes as a transaction argument, + you should use this class.

+

This class is also more generally used to represent type-agnostic BCS bytes as a vector.

+

An example of this is the bytes resulting from entry function arguments that have been serialized + for an entry function.

+

Example

const yourCustomSerializedBytes = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
const fixedBytes = new FixedBytes(yourCustomSerializedBytes);
const payload = await generateTransactionPayload({
function: "0xbeefcafe::your_module::your_function_that_requires_custom_serialization",
functionArguments: [yourCustomBytes],
});

For example, if you store each of the 32 bytes for an address as a U8 in a MoveVector<U8>, when you
serialize that MoveVector<U8>, it will be serialized to 33 bytes. If you solely want to pass around
the 32 bytes as a Serializable class that *does not* prepend the length to the BCS-serialized representation,
use this class. +
+

Params

value: HexInput representing a sequence of Uint8 bytes

+

Returns

a Serializable FixedBytes instance, which when serialized, does not prepend the length of the bytes

+

See

EntryFunctionBytes

+

Hierarchy

Implements

Constructors

Properties

value: Uint8Array

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Hex.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Hex.html new file mode 100644 index 000000000..98705e4ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Hex.html @@ -0,0 +1,50 @@ +Hex | @aptos-labs/ts-sdk - v1.3.0

NOTE: Do not use this class when working with account addresses, use AccountAddress.

+

NOTE: When accepting hex data as input to a function, prefer to accept HexInput and +then use the static helper methods of this class to convert it into the desired +format. This enables the greatest flexibility for the developer.

+

Hex is a helper class for working with hex data. Hex data, when represented as a +string, generally looks like this, for example: 0xaabbcc, 45cd32, etc.

+

You might use this class like this:

+
getTransactionByHash(txnHash: HexInput): Promise<Transaction> {
const txnHashString = Hex.fromHexInput(txnHash).toString();
return await getTransactionByHashInner(txnHashString);
} +
+

This call to Hex.fromHexInput().toString() converts the HexInput to a hex string +with a leading 0x prefix, regardless of what the input format was.

+

These are some other ways to chain the functions together:

+
    +
  • Hex.fromString({ hexInput: "0x1f" }).toUint8Array()
  • +
  • new Hex([1, 3]).toStringWithoutPrefix()
  • +
+

Constructors

  • Create a new Hex instance from a Uint8Array.

    +

    Parameters

    • data: Uint8Array

      Uint8Array

      +

    Returns Hex

Properties

data: Uint8Array

Methods

  • Return whether Hex instances are equal. Hex instances are considered equal if +their underlying byte data is identical.

    +

    Parameters

    • other: Hex

      The Hex instance to compare to.

      +

    Returns boolean

    true if the Hex instances are equal, false if not.

    +
  • Get the hex data as a string with the 0x prefix.

    +

    Returns string

    Hex string with 0x prefix

    +
  • Get the hex data as a string without the 0x prefix.

    +

    Returns string

    Hex string without 0x prefix

    +
  • Get the inner hex data. The inner data is already a Uint8Array so no conversion +is taking place here, it just returns the inner data.

    +

    Returns Uint8Array

    Hex data as Uint8Array

    +
  • Static method to convert an instance of HexInput to Hex

    +

    Parameters

    • hexInput: HexInput

      A HexInput (string or Uint8Array)

      +

    Returns Hex

    Hex

    +
  • Static method to convert a hex string to Hex

    +

    Parameters

    • str: string

      A hex string, with or without the 0x prefix

      +

    Returns Hex

    Hex

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Identifier.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Identifier.html new file mode 100644 index 000000000..cb2577bfb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Identifier.html @@ -0,0 +1,15 @@ +Identifier | @aptos-labs/ts-sdk - v1.3.0

Representation of an Identifier that can serialized and deserialized. +We use Identifier to represent the module "name" in "ModuleId" and +the "function name" in "EntryFunction"

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

identifier: string

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/ModuleId.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ModuleId.html new file mode 100644 index 000000000..f0f3f197a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ModuleId.html @@ -0,0 +1,22 @@ +ModuleId | @aptos-labs/ts-sdk - v1.3.0

Representation of a ModuleId that can serialized and deserialized +ModuleId means the module address (e.g "0x1") and the module name (e.g "coin")

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveOption.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveOption.html new file mode 100644 index 000000000..25c45bd37 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveOption.html @@ -0,0 +1,83 @@ +MoveOption | @aptos-labs/ts-sdk - v1.3.0

Class MoveOption<T>

Type Parameters

Hierarchy

Implements

Constructors

Properties

value?: T
vec: MoveVector<T>

Methods

  • Retrieves the inner value of the MoveOption.

    +

    This method is inspired by Rust's Option<T>.unwrap(). +In Rust, attempting to unwrap a None value results in a panic.

    +

    Similarly, this method will throw an error if the value is not present.

    +

    Returns T

    The contained value if present.

    +

    Example

    const option = new MoveOption<Bool>(new Bool(true));
    const value = option.unwrap(); // Returns the Bool instance +
    +

    Throws

    Throws an error if the MoveOption does not contain a value.

    +
  • Factory method to generate a MoveOption from a boolean or undefined.

    +

    Parameters

    • Optional value: null | boolean

    Returns MoveOption<Bool>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.Bool(true).isSome() === true;
    MoveOption.Bool().isSome() === false;
    MoveOption.Bool(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a string or undefined.

    +

    Parameters

    • Optional value: null | string

    Returns MoveOption<MoveString>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.MoveString("hello").isSome() === true;
    MoveOption.MoveString("").isSome() === true;
    MoveOption.MoveString().isSome() === false;
    MoveOption.MoveString(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or a bigint or undefined.

    +

    Parameters

    Returns MoveOption<U128>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U128(1).isSome() === true;
    MoveOption.U128().isSome() === false;
    MoveOption.U128(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or undefined.

    +

    Parameters

    • Optional value: null | number

    Returns MoveOption<U16>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U16(1).isSome() === true;
    MoveOption.U16().isSome() === false;
    MoveOption.U16(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or a bigint or undefined.

    +

    Parameters

    Returns MoveOption<U256>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U256(1).isSome() === true;
    MoveOption.U256().isSome() === false;
    MoveOption.U256(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or undefined.

    +

    Parameters

    • Optional value: null | number

    Returns MoveOption<U32>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U32(1).isSome() === true;
    MoveOption.U32().isSome() === false;
    MoveOption.U32(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or a bigint or undefined.

    +

    Parameters

    Returns MoveOption<U64>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U64(1).isSome() === true;
    MoveOption.U64().isSome() === false;
    MoveOption.U64(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +
  • Factory method to generate a MoveOption from a number or undefined.

    +

    Parameters

    • Optional value: null | number

    Returns MoveOption<U8>

    a MoveOption with an inner value value

    +

    Example

    MoveOption.U8(1).isSome() === true;
    MoveOption.U8().isSome() === false;
    MoveOption.U8(undefined).isSome() === false; +
    +

    Params

    value: the value used to fill the MoveOption. If value is undefined +the resulting MoveOption's .isSome() method will return false.

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveString.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveString.html new file mode 100644 index 000000000..8b537823b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveString.html @@ -0,0 +1,20 @@ +MoveString | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: string

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveVector.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveVector.html new file mode 100644 index 000000000..002d3e38c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MoveVector.html @@ -0,0 +1,88 @@ +MoveVector | @aptos-labs/ts-sdk - v1.3.0

Class MoveVector<T>

This class is the Aptos Typescript SDK representation of a Move vector<T>, +where T represents either a primitive type (bool, u8, u64, ...) +or a BCS-serializable struct itself.

+

It is a BCS-serializable, array-like type that contains an array of values of type T, +where T is a class that implements Serializable.

+

The purpose of this class is to facilitate easy construction of BCS-serializable +Move vector<T> types.

+

Example

// in Move: `vector<u8> [1, 2, 3, 4];`
const vecOfU8s = new MoveVector<U8>([new U8(1), new U8(2), new U8(3), new U8(4)]);
// in Move: `std::bcs::to_bytes(vector<u8> [1, 2, 3, 4]);`
const bcsBytes = vecOfU8s.toUint8Array();

// vector<vector<u8>> [ vector<u8> [1], vector<u8> [1, 2, 3, 4], vector<u8> [5, 6, 7, 8] ];
const vecOfVecs = new MoveVector<MoveVector<U8>>([
new MoveVector<U8>([new U8(1)]),
MoveVector.U8([1, 2, 3, 4]),
MoveVector.U8([5, 6, 7, 8]),
]);

// vector<Option<u8>> [ std::option::some<u8>(1), std::option::some<u8>(2) ];
const vecOfOptionU8s = new MoveVector<MoveOption<U8>>([
MoveOption.U8(1),
MoveOption.U8(2),
]);

// vector<MoveString> [ std::string::utf8(b"hello"), std::string::utf8(b"world") ];
const vecOfStrings = new MoveVector([new MoveString("hello"), new MoveString("world")]);
const vecOfStrings2 = MoveVector.MoveString(["hello", "world"]); +
+

Params

values: an Array of values where T is a class that implements Serializable

+

Returns

a MoveVector<T> with the values values

+

Type Parameters

Hierarchy

Implements

Constructors

Properties

values: T[]

Methods

  • Factory method to generate a MoveVector of Bools from an array of booleans.

    +

    Parameters

    • values: boolean[]

    Returns MoveVector<Bool>

    a MoveVector<Bool>

    +

    Example

    const v = MoveVector.Bool([true, false, true, false]);
    +
    +

    Params

    values: an array of bools to convert to Bools

    +
  • Factory method to generate a MoveVector of U16s from an array of numbers.

    +

    Parameters

    • values: number[]

    Returns MoveVector<U16>

    a MoveVector<U16>

    +

    Example

    const v = MoveVector.U16([1, 2, 3, 4]);
    +
    +

    Params

    values: an array of numbers to convert to U16s

    +
  • Factory method to generate a MoveVector of U32s from an array of numbers.

    +

    Parameters

    • values: number[]

    Returns MoveVector<U32>

    a MoveVector<U32>

    +

    Example

    const v = MoveVector.U32([1, 2, 3, 4]);
    +
    +

    Params

    values: an array of numbers to convert to U32s

    +
  • Deserialize a MoveVector of type T, specifically where T is a Serializable and Deserializable type.

    +

    NOTE: This only works with a depth of one. Generics will not work.

    +

    NOTE: This will not work with types that aren't of the Serializable class.

    +

    If you're looking for a more flexible deserialization function, you can use the deserializeVector function +in the Deserializer class.

    +

    Type Parameters

    Parameters

    Returns MoveVector<T>

    a MoveVector of the corresponding class T +*

    +

    Example

    const vec = MoveVector.deserialize(deserializer, U64);
    +
    +

    Params

    deserializer: the Deserializer instance to use, with bytes loaded into it already. +cls: the class to typecast the input values to, must be a Serializable and Deserializable type.

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiAgentRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiAgentRawTransaction.html new file mode 100644 index 000000000..a9753bd2e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiAgentRawTransaction.html @@ -0,0 +1,19 @@ +MultiAgentRawTransaction | @aptos-labs/ts-sdk - v1.3.0

Class MultiAgentRawTransaction

Representation of a Multi Agent Transaction that can serialized and deserialized

+

Hierarchy

Constructors

Properties

The raw transaction

+
secondary_signer_addresses: AccountAddress[]

The secondary signers on this transaction

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519PublicKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519PublicKey.html new file mode 100644 index 000000000..1a60319d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519PublicKey.html @@ -0,0 +1,34 @@ +MultiEd25519PublicKey | @aptos-labs/ts-sdk - v1.3.0

Class MultiEd25519PublicKey

Represents the public key of a K-of-N Ed25519 multi-sig transaction.

+

Hierarchy

Constructors

Properties

publicKeys: Ed25519PublicKey[]

List of Ed25519 public keys for this MultiEd25519PublicKey

+
threshold: number

The minimum number of valid signatures required, for the number of public keys specified

+
MAX_KEYS: 32 = 32

Maximum number of public keys supported

+
MIN_KEYS: 2 = 2

Minimum number of public keys needed

+
MIN_THRESHOLD: 1 = 1

Minimum threshold for the number of valid signatures required

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519Signature.html new file mode 100644 index 000000000..d67723900 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiEd25519Signature.html @@ -0,0 +1,40 @@ +MultiEd25519Signature | @aptos-labs/ts-sdk - v1.3.0

Class MultiEd25519Signature

Represents the signature of a K-of-N Ed25519 multi-sig transaction.

+

Hierarchy

Constructors

Properties

bitmap: Uint8Array

32-bit Bitmap representing who signed the transaction

+

This is represented where each public key can be masked to determine whether the message was signed by that key.

+
signatures: Ed25519Signature[]

The list of underlying Ed25519 signatures

+
BITMAP_LEN: number = 4

Number of bytes in the bitmap representing who signed the transaction (32-bits)

+
MAX_SIGNATURES_SUPPORTED: number = 32

Maximum number of Ed25519 signatures supported

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +
  • Helper method to create a bitmap out of the specified bit positions

    +

    Parameters

    • args: {
          bits: number[];
      }
      • bits: number[]

        The bitmap positions that should be set. A position starts at index 0. +Valid position should range between 0 and 31.

        +

    Returns Uint8Array

    bitmap that is 32bit long

    +

    Example

    Here's an example of valid bits

    +
    [0, 2, 31]
    +
    +

    [0, 2, 31] means the 1st, 3rd and 32nd bits should be set in the bitmap. +The result bitmap should be 0b1010000000000000000000000000001

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiKey.html new file mode 100644 index 000000000..38a19d1b1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiKey.html @@ -0,0 +1,29 @@ +MultiKey | @aptos-labs/ts-sdk - v1.3.0

An abstract representation of a public key. All Asymmetric key pairs will use this to +verify signatures and for authentication keys.

+

Hierarchy

Constructors

Properties

publicKeys: AnyPublicKey[]

List of any public keys

+
signaturesRequired: number

The minimum number of valid signatures required, for the number of public keys specified

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +
  • Create a bitmap that holds the mapping from the original public keys +to the signatures passed in

    +

    Parameters

    • args: {
          bits: number[];
      }
      • bits: number[]

        array of the index mapping to the matching public keys

        +

    Returns Uint8Array

    Uint8array bit map

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSig.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSig.html new file mode 100644 index 000000000..ed44a0c6f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSig.html @@ -0,0 +1,11 @@ +MultiSig | @aptos-labs/ts-sdk - v1.3.0

Representation of a MultiSig that can serialized and deserialized

+

Constructors

Properties

multisig_address: AccountAddress
transaction_payload?: MultiSigTransactionPayload

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSigTransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSigTransactionPayload.html new file mode 100644 index 000000000..5b1bce455 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/MultiSigTransactionPayload.html @@ -0,0 +1,21 @@ +MultiSigTransactionPayload | @aptos-labs/ts-sdk - v1.3.0

Class MultiSigTransactionPayload

Representation of a MultiSig Transaction Payload from multisig_account.move +that can be serialized and deserialized

+

This class exists right now to represent an extensible transaction payload class for +transactions used in multisig_account.move. Eventually, this class will be able to +support script payloads when the multisig_account.move module supports them.

+

Hierarchy

Constructors

Properties

transaction_payload: EntryFunction

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/ParsingError.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ParsingError.html new file mode 100644 index 000000000..479a8617f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/ParsingError.html @@ -0,0 +1,16 @@ +ParsingError | @aptos-labs/ts-sdk - v1.3.0

Class ParsingError<T>

This error is used to explain why parsing failed.

+

Type Parameters

  • T

Hierarchy

  • Error
    • ParsingError

Constructors

Properties

invalidReason: T

This provides a programmatic way to access why parsing failed. Downstream devs +might want to use this to build their own error messages if the default error +messages are not suitable for their use case. This should be an enum.

+
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Type declaration

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/PrivateKey.html new file mode 100644 index 000000000..89890eee5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/PrivateKey.html @@ -0,0 +1,21 @@ +PrivateKey | @aptos-labs/ts-sdk - v1.3.0

Class PrivateKeyAbstract

An abstract representation of a private key. This is used to sign transactions and +derive the public key associated.

+

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/PublicKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/PublicKey.html new file mode 100644 index 000000000..f5b2c4c6a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/PublicKey.html @@ -0,0 +1,20 @@ +PublicKey | @aptos-labs/ts-sdk - v1.3.0

Class PublicKeyAbstract

An abstract representation of a public key. All Asymmetric key pairs will use this to +verify signatures and for authentication keys.

+

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +
  • Verifies that the private key associated with this public key signed the message with the given signature.

    +

    Parameters

    Returns boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransaction.html new file mode 100644 index 000000000..1fbc2bc98 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransaction.html @@ -0,0 +1,31 @@ +RawTransaction | @aptos-labs/ts-sdk - v1.3.0

Representation of a Raw Transaction that can serialized and deserialized

+

Hierarchy

Constructors

  • RawTransactions contain the metadata and payloads that can be submitted to Aptos chain for execution. +RawTransactions must be signed before Aptos chain can execute them.

    +

    Parameters

    • sender: AccountAddress

      The sender Account Address

      +
    • sequence_number: bigint

      Sequence number of this transaction. This must match the sequence number stored in + the sender's account at the time the transaction executes.

      +
    • payload: TransactionPayload

      Instructions for the Aptos Blockchain, including publishing a module, + execute an entry function or execute a script payload.

      +
    • max_gas_amount: bigint

      Maximum total gas to spend for this transaction. The account must have more + than this gas or the transaction will be discarded during validation.

      +
    • gas_unit_price: bigint

      Price to be paid per gas unit.

      +
    • expiration_timestamp_secs: bigint

      The blockchain timestamp at which the blockchain would discard this transaction.

      +
    • chain_id: ChainId

      The chain ID of the blockchain that this transaction is intended to be run on.

      +

    Returns RawTransaction

Properties

chain_id: ChainId
expiration_timestamp_secs: bigint
gas_unit_price: bigint
max_gas_amount: bigint
sequence_number: bigint

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransactionWithData.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransactionWithData.html new file mode 100644 index 000000000..fb7bdda0a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RawTransactionWithData.html @@ -0,0 +1,14 @@ +RawTransactionWithData | @aptos-labs/ts-sdk - v1.3.0

Class RawTransactionWithDataAbstract

Representation of a Raw Transaction With Data that can serialized and deserialized

+

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/RotationProofChallenge.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RotationProofChallenge.html new file mode 100644 index 000000000..f848daa9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/RotationProofChallenge.html @@ -0,0 +1,19 @@ +RotationProofChallenge | @aptos-labs/ts-sdk - v1.3.0

Class RotationProofChallenge

Representation of the challenge which is needed to sign by owner of the account +to rotate the authentication key.

+

Hierarchy

Constructors

Properties

accountAddress: AccountAddress = AccountAddress.ONE
currentAuthKey: AccountAddress
moduleName: MoveString = ...
newPublicKey: MoveVector<U8>
originator: AccountAddress
sequenceNumber: U64
structName: MoveString = ...

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Script.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Script.html new file mode 100644 index 000000000..9a2bdf2ef --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Script.html @@ -0,0 +1,21 @@ +Script | @aptos-labs/ts-sdk - v1.3.0

Representation of a Script that can serialized and deserialized

+

Constructors

Properties

Methods

Constructors

  • Scripts contain the Move bytecodes payload that can be submitted to Aptos chain for execution.

    +

    Parameters

    • bytecode: Uint8Array

      The move module bytecode

      +
    • type_args: TypeTag[]

      The type arguments that the bytecode function requires.

      +
    • args: ScriptFunctionArgument[]

      The arguments that the bytecode function requires.

      +

    Returns Script

    Example

    A coin transfer function has one type argument "CoinType".

    +
    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64,)
    +
    +

    Example

    A coin transfer function has three arguments "from", "to" and "amount".

    +
    public(script) fun transfer<CoinType>(from: &signer, to: address, amount: u64,)
    +
    +

Properties

The arguments that the bytecode function requires.

+
bytecode: Uint8Array

The move module bytecode

+
type_args: TypeTag[]

The type arguments that the bytecode function requires.

+

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PrivateKey.html new file mode 100644 index 000000000..cdc68350b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PrivateKey.html @@ -0,0 +1,45 @@ +Secp256k1PrivateKey | @aptos-labs/ts-sdk - v1.3.0

Class Secp256k1PrivateKey

A Secp256k1 ecdsa private key

+

Hierarchy

Constructors

Properties

key: Hex

The private key bytes

+
LENGTH: number = 32

Length of Secp256k1 ecdsa private key

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +
  • A private inner function so we can separate from the main fromDerivationPath() method +to add tests to verify we create the keys correctly.

    +

    Parameters

    • path: string

      the BIP44 path

      +
    • seed: Uint8Array

      the seed phrase created by the mnemonics

      +

    Returns Secp256k1PrivateKey

    The generated key

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PublicKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PublicKey.html new file mode 100644 index 000000000..bbbd0331b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1PublicKey.html @@ -0,0 +1,30 @@ +Secp256k1PublicKey | @aptos-labs/ts-sdk - v1.3.0

Class Secp256k1PublicKey

Represents the Secp256k1 ecdsa public key

+

Secp256k1 authentication key is represented in the SDK as AnyPublicKey.

+

Hierarchy

Constructors

Properties

key: Hex
LENGTH: number = 65

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1Signature.html new file mode 100644 index 000000000..4682aca22 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Secp256k1Signature.html @@ -0,0 +1,26 @@ +Secp256k1Signature | @aptos-labs/ts-sdk - v1.3.0

Class Secp256k1Signature

A signature of a message signed using an Secp256k1 ecdsa private key

+

Hierarchy

Constructors

Properties

data: Hex

The signature bytes

+
LENGTH: 64 = 64

Secp256k1 ecdsa signatures are 256-bit.

+

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializable.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializable.html new file mode 100644 index 000000000..2ec206f60 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializable.html @@ -0,0 +1,10 @@ +Serializable | @aptos-labs/ts-sdk - v1.3.0

Class SerializableAbstract

Hierarchy

Constructors

Methods

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializer.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializer.html new file mode 100644 index 000000000..28cb9701c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Serializer.html @@ -0,0 +1,67 @@ +Serializer | @aptos-labs/ts-sdk - v1.3.0

Constructors

Properties

buffer: ArrayBuffer
offset: number

Methods

  • Serializes a Serializable value, facilitating composable serialization.

    +

    Type Parameters

    Parameters

    • value: T

      The Serializable value to serialize

      +

    Returns void

    the serializer instance

    +

    Example

    // Define the MoveStruct class that implements the Serializable interface
    class MoveStruct extends Serializable {
    constructor(
    public creatorAddress: AccountAddress, // where AccountAddress extends Serializable
    public collectionName: string,
    public tokenName: string
    ) {}

    serialize(serializer: Serializer): void {
    serializer.serialize(this.creatorAddress); // Composable serialization of another Serializable object
    serializer.serializeStr(this.collectionName);
    serializer.serializeStr(this.tokenName);
    }
    }

    // Construct a MoveStruct
    const moveStruct = new MoveStruct(new AccountAddress(...), "MyCollection", "TokenA");

    // Serialize a string, a u64 number, and a MoveStruct instance.
    const serializer = new Serializer();
    serializer.serializeStr("ExampleString");
    serializer.serializeU64(12345678);
    serializer.serialize(moveStruct);

    // Get the bytes from the Serializer instance
    const serializedBytes = serializer.toUint8Array(); +
    +
  • Serializes a boolean value.

    +

    BCS layout for "boolean": One byte. "0x01" for true and "0x00" for false.

    +

    Parameters

    • value: boolean

    Returns void

  • Serializes an array of bytes.

    +

    BCS layout for "bytes": bytes_length | bytes +where bytes_length is a u32 integer encoded as a uleb128 integer, equal to the length of the bytes array.

    +

    Parameters

    • value: Uint8Array

    Returns void

  • Serializes an array of bytes with known length. Therefore, length doesn't need to be +serialized to help deserialization.

    +

    When deserializing, the number of bytes to deserialize needs to be passed in.

    +

    Parameters

    • value: Uint8Array

    Returns void

  • Serializes a string. UTF8 string is supported.

    +

    The number of bytes in the string content is serialized first, as a uleb128-encoded u32 integer. +Then the string content is serialized as UTF8 encoded bytes.

    +

    BCS layout for "string": string_length | string_content +where string_length is a u32 integer encoded as a uleb128 integer, equal to the number of bytes in string_content.

    +

    Parameters

    • value: string

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeStr("1234abcd");
    assert(serializer.toUint8Array() === new Uint8Array([8, 49, 50, 51, 52, 97, 98, 99, 100])); +
    +
  • Serializes a uint128 number.

    +

    BCS layout for "uint128": Sixteen bytes. Binary format in little-endian representation.

    +

    Parameters

    Returns void

  • Serializes a uint16 number.

    +

    BCS layout for "uint16": Two bytes. Binary format in little-endian representation.

    +

    Parameters

    • value: number

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeU16(4660);
    assert(serializer.toUint8Array() === new Uint8Array([0x34, 0x12])); +
    +
  • Serializes a uint256 number.

    +

    BCS layout for "uint256": Sixteen bytes. Binary format in little-endian representation.

    +

    Parameters

    Returns void

  • Serializes a uint32 number.

    +

    BCS layout for "uint32": Four bytes. Binary format in little-endian representation.

    +

    Parameters

    • value: number

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeU32(305419896);
    assert(serializer.toUint8Array() === new Uint8Array([0x78, 0x56, 0x34, 0x12])); +
    +
  • Serializes a uint32 number with uleb128.

    +

    BCS uses uleb128 encoding in two cases: (1) lengths of variable-length sequences and (2) tags of enum values

    +

    Parameters

    • val: number

    Returns void

  • Serializes a uint64 number.

    +

    BCS layout for "uint64": Eight bytes. Binary format in little-endian representation.

    +

    Parameters

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeU64(1311768467750121216);
    assert(serializer.toUint8Array() === new Uint8Array([0x00, 0xEF, 0xCD, 0xAB, 0x78, 0x56, 0x34, 0x12])); +
    +
  • Serializes a uint8 number.

    +

    BCS layout for "uint8": One byte. Binary format in little-endian representation.

    +

    Parameters

    • value: number

    Returns void

  • Serializes an array of BCS Serializable values to a serializer instance. +Note that this does not return anything. The bytes are added to the serializer instance's byte buffer.

    +

    Type Parameters

    Parameters

    • values: T[]

      The array of BCS Serializable values

      +

    Returns void

    Example

    const addresses = new Array<AccountAddress>(
    AccountAddress.from("0x1"),
    AccountAddress.from("0x2"),
    AccountAddress.from("0xa"),
    AccountAddress.from("0xb"),
    );
    const serializer = new Serializer();
    serializer.serializeVector(addresses);
    const serializedBytes = serializer.toUint8Array();
    // serializedBytes is now the BCS-serialized bytes
    // The equivalent value in Move would be:
    // `bcs::to_bytes(&vector<address> [@0x1, @0x2, @0xa, @0xb])`; +
    +
  • Parameters

    • fn: ((byteOffset, value, littleEndian?) => void)
        • (byteOffset, value, littleEndian?): void
        • Parameters

          • byteOffset: number
          • value: number
          • Optional littleEndian: boolean

          Returns void

    • bytesLength: number
    • value: number

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Signature.html new file mode 100644 index 000000000..79c5c04a8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/Signature.html @@ -0,0 +1,16 @@ +Signature | @aptos-labs/ts-sdk - v1.3.0

Class SignatureAbstract

An abstract representation of a signature. This is the product of signing a +message and can be used with the PublicKey to verify the signature.

+

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/SignedTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/SignedTransaction.html new file mode 100644 index 000000000..5c759650c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/SignedTransaction.html @@ -0,0 +1,21 @@ +SignedTransaction | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Properties

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/StructTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/StructTag.html new file mode 100644 index 000000000..23c081d49 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/StructTag.html @@ -0,0 +1,15 @@ +StructTag | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Properties

moduleName: Identifier
typeArgs: TypeTag[]

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticator.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticator.html new file mode 100644 index 000000000..8037cc69d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticator.html @@ -0,0 +1,11 @@ +TransactionAuthenticator | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorAbstract

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorEd25519.html new file mode 100644 index 000000000..568697832 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorEd25519.html @@ -0,0 +1,19 @@ +TransactionAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorEd25519

Transaction authenticator Ed25519 for a single signer transaction

+

Param: public_key

Client's public key.

+

Param: signature

Ed25519 signature of a raw transaction.

+

See

Creating a Signed Transaction +for details about generating a signature.

+

Hierarchy

Constructors

Properties

public_key: Ed25519PublicKey
signature: Ed25519Signature

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorFeePayer.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorFeePayer.html new file mode 100644 index 000000000..0be2c92a5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorFeePayer.html @@ -0,0 +1,21 @@ +TransactionAuthenticatorFeePayer | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorFeePayer

Transaction authenticator for a fee payer transaction

+

Param: sender

Sender account authenticator

+

Param: secondary_signer_addresses

Secondary signers address

+

Param: secondary_signers

Secondary signers account authenticators

+

Param: fee_payer

Object of the fee payer account address and the fee payer authentication

+

Hierarchy

Constructors

Properties

fee_payer: {
    address: AccountAddress;
    authenticator: AccountAuthenticator;
}

Type declaration

secondary_signer_addresses: AccountAddress[]
secondary_signers: AccountAuthenticator[]

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiAgent.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiAgent.html new file mode 100644 index 000000000..01d149c6e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiAgent.html @@ -0,0 +1,19 @@ +TransactionAuthenticatorMultiAgent | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorMultiAgent

Transaction authenticator for a multi-agent transaction

+

Param: sender

Sender account authenticator

+

Param: secondary_signer_addresses

Secondary signers address

+

Param: secondary_signers

Secondary signers account authenticators

+

Hierarchy

Constructors

Properties

secondary_signer_addresses: AccountAddress[]
secondary_signers: AccountAuthenticator[]

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..a44794631 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorMultiEd25519.html @@ -0,0 +1,17 @@ +TransactionAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorMultiEd25519

Transaction authenticator Ed25519 for a multi signers transaction

+

Param: public_key

Client's public key.

+

Param: signature

Multi Ed25519 signature of a raw transaction.

+

Hierarchy

Constructors

Properties

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorSingleSender.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorSingleSender.html new file mode 100644 index 000000000..9595f221f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionAuthenticatorSingleSender.html @@ -0,0 +1,15 @@ +TransactionAuthenticatorSingleSender | @aptos-labs/ts-sdk - v1.3.0

Class TransactionAuthenticatorSingleSender

Single Sender authenticator for a single signer transaction

+

Param: sender

AccountAuthenticator

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayload.html new file mode 100644 index 000000000..5440c13e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayload.html @@ -0,0 +1,15 @@ +TransactionPayload | @aptos-labs/ts-sdk - v1.3.0

Class TransactionPayloadAbstract

Representation of the supported Transaction Payload +that can serialized and deserialized

+

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadEntryFunction.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadEntryFunction.html new file mode 100644 index 000000000..50f4a97ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadEntryFunction.html @@ -0,0 +1,16 @@ +TransactionPayloadEntryFunction | @aptos-labs/ts-sdk - v1.3.0

Class TransactionPayloadEntryFunction

Representation of a Transaction Payload Entry Function that can serialized and deserialized

+

Hierarchy

Constructors

Properties

entryFunction: EntryFunction

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadMultiSig.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadMultiSig.html new file mode 100644 index 000000000..ada946196 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadMultiSig.html @@ -0,0 +1,16 @@ +TransactionPayloadMultiSig | @aptos-labs/ts-sdk - v1.3.0

Class TransactionPayloadMultiSig

Representation of a Transaction Payload Multi-sig that can serialized and deserialized

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

multiSig: MultiSig

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadScript.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadScript.html new file mode 100644 index 000000000..4739ff171 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionPayloadScript.html @@ -0,0 +1,16 @@ +TransactionPayloadScript | @aptos-labs/ts-sdk - v1.3.0

Class TransactionPayloadScript

Representation of a Transaction Payload Script that can serialized and deserialized

+

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

script: Script

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionWorker.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionWorker.html new file mode 100644 index 000000000..27464afba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TransactionWorker.html @@ -0,0 +1,50 @@ +TransactionWorker | @aptos-labs/ts-sdk - v1.3.0

Constructors

  • Provides a simple framework for receiving payloads to be processed.

    +

    Parameters

    • aptosConfig: AptosConfig

      a config object

      +
    • account: Account
    • maxWaitTime: number = 30

      the max wait time to wait before resyncing the sequence number +to the current on-chain state, default to 30

      +
    • maximumInFlight: number = 100

      submit up to maximumInFlight transactions per account. +Mempool limits the number of transactions per account to 100, hence why we default to 100.

      +
    • sleepTime: number = 10

      If maximumInFlight are in flight, wait sleepTime seconds before re-evaluating, default to 10

      +

    Returns TransactionWorker

Properties

account: Account
accountSequnceNumber: AccountSequenceNumber
aptosConfig: AptosConfig
executedTransactions: [string, bigint, any][] = []

transactions that have been committed to chain

+
outstandingTransactions: AsyncQueue<[Promise<PendingTransactionResponse>, bigint]> = ...

signed transactions waiting to be submitted

+
sentTransactions: [string, bigint, any][] = []

transactions that have been submitted to chain

+
started: boolean
taskQueue: AsyncQueue<(() => Promise<void>)> = ...

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

transactionsQueue: AsyncQueue<[InputGenerateTransactionPayloadData, undefined | InputGenerateTransactionOptions]> = ...

transactions payloads waiting to be generated and signed

+

TODO support entry function payload from ABI builder

+

Methods

  • Once transaction has been sent to chain, we check for its execution status.

    +

    Parameters

    • sentTransaction: PromiseFulfilledResult<PendingTransactionResponse>

      transactions that were sent to chain and are now waiting to be executed

      +
    • sequenceNumber: bigint

      the account's sequence number that was sent with the transaction

      +

    Returns Promise<void>

  • Reads the outstanding transaction queue and submits the transaction to chain.

    +

    If the transaction has fulfilled, it pushes the transaction to the processed +transactions queue and fires a transactionsFulfilled event.

    +

    If the transaction has failed, it pushes the transaction to the processed +transactions queue with the failure reason and fires a transactionsFailed event.

    +

    Returns Promise<void>

  • Gets the current account sequence number, +generates the transaction with the account sequence number, +adds the transaction to the outstanding transaction queue +to be processed later.

    +

    Returns Promise<void>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTag.html new file mode 100644 index 000000000..3b6792b30 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTag.html @@ -0,0 +1,24 @@ +TypeTag | @aptos-labs/ts-sdk - v1.3.0

Class TypeTagAbstract

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagAddress.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagAddress.html new file mode 100644 index 000000000..c04fe4d79 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagAddress.html @@ -0,0 +1,25 @@ +TypeTagAddress | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagBool.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagBool.html new file mode 100644 index 000000000..0d3abf571 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagBool.html @@ -0,0 +1,25 @@ +TypeTagBool | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagGeneric.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagGeneric.html new file mode 100644 index 000000000..e3a632ec9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagGeneric.html @@ -0,0 +1,29 @@ +TypeTagGeneric | @aptos-labs/ts-sdk - v1.3.0

Generics are used for type parameters in entry functions. However, +they are not actually serialized into a real type, so they cannot be +used as a type directly.

+

Hierarchy

Constructors

Properties

value: number

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagParserError.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagParserError.html new file mode 100644 index 000000000..50580dbcc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagParserError.html @@ -0,0 +1,11 @@ +TypeTagParserError | @aptos-labs/ts-sdk - v1.3.0

Class TypeTagParserError

Hierarchy

  • Error
    • TypeTagParserError

Constructors

Properties

message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Type declaration

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagReference.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagReference.html new file mode 100644 index 000000000..fb90464a5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagReference.html @@ -0,0 +1,26 @@ +TypeTagReference | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Properties

value: TypeTag

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagSigner.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagSigner.html new file mode 100644 index 000000000..7fad9894f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagSigner.html @@ -0,0 +1,25 @@ +TypeTagSigner | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagStruct.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagStruct.html new file mode 100644 index 000000000..3f9397a58 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagStruct.html @@ -0,0 +1,30 @@ +TypeTagStruct | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Properties

value: StructTag

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU128.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU128.html new file mode 100644 index 000000000..439f1a2a2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU128.html @@ -0,0 +1,25 @@ +TypeTagU128 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU16.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU16.html new file mode 100644 index 000000000..93a7e6f20 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU16.html @@ -0,0 +1,25 @@ +TypeTagU16 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU256.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU256.html new file mode 100644 index 000000000..0ed330d61 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU256.html @@ -0,0 +1,25 @@ +TypeTagU256 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU32.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU32.html new file mode 100644 index 000000000..18cee6dd8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU32.html @@ -0,0 +1,25 @@ +TypeTagU32 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU64.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU64.html new file mode 100644 index 000000000..4dcb2ce2f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU64.html @@ -0,0 +1,25 @@ +TypeTagU64 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU8.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU8.html new file mode 100644 index 000000000..c9752c9fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagU8.html @@ -0,0 +1,25 @@ +TypeTagU8 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagVector.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagVector.html new file mode 100644 index 000000000..cf9eeaf3c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/TypeTagVector.html @@ -0,0 +1,26 @@ +TypeTagVector | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Constructors

Properties

value: TypeTag

Methods

  • Serializes a Serializable value to its BCS representation. +This function is the Typescript SDK equivalent of bcs::to_bytes in Move.

    +

    Returns Uint8Array

    the BCS representation of the Serializable instance as a byte buffer

    +
  • Helper function to get a value's BCS-serialized bytes as a Hex instance.

    +

    Returns Hex

    a Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U128.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U128.html new file mode 100644 index 000000000..251080e84 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U128.html @@ -0,0 +1,20 @@ +U128 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: bigint

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U16.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U16.html new file mode 100644 index 000000000..f1f75d021 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U16.html @@ -0,0 +1,20 @@ +U16 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: number

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U256.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U256.html new file mode 100644 index 000000000..c9a327870 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U256.html @@ -0,0 +1,20 @@ +U256 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: bigint

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U32.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U32.html new file mode 100644 index 000000000..fe9128c36 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U32.html @@ -0,0 +1,20 @@ +U32 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: number

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U64.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U64.html new file mode 100644 index 000000000..e824468c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U64.html @@ -0,0 +1,20 @@ +U64 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: bigint

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/classes/U8.html b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U8.html new file mode 100644 index 000000000..0f3306766 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/classes/U8.html @@ -0,0 +1,20 @@ +U8 | @aptos-labs/ts-sdk - v1.3.0

Hierarchy

Implements

Constructors

Properties

value: number

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/AccountAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AccountAuthenticatorVariant.html new file mode 100644 index 000000000..12775ab7e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AccountAuthenticatorVariant.html @@ -0,0 +1,7 @@ +AccountAuthenticatorVariant | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/AddressInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AddressInvalidReason.html new file mode 100644 index 000000000..af4e4c146 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AddressInvalidReason.html @@ -0,0 +1,9 @@ +AddressInvalidReason | @aptos-labs/ts-sdk - v1.3.0

Enumeration AddressInvalidReason

This enum is used to explain why an address was invalid.

+

Enumeration Members

INCORRECT_NUMBER_OF_BYTES: "incorrect_number_of_bytes"
INVALID_HEX_CHARS: "invalid_hex_chars"
INVALID_PADDING_ZEROES: "INVALID_PADDING_ZEROES"
LEADING_ZERO_X_REQUIRED: "leading_zero_x_required"
LONG_FORM_REQUIRED_UNLESS_SPECIAL: "long_form_required_unless_special"
TOO_LONG: "too_long"
TOO_SHORT: "too_short"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnyPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnyPublicKeyVariant.html new file mode 100644 index 000000000..e142f6427 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnyPublicKeyVariant.html @@ -0,0 +1,3 @@ +AnyPublicKeyVariant | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnySignatureVariant.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnySignatureVariant.html new file mode 100644 index 000000000..c22afe75b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AnySignatureVariant.html @@ -0,0 +1,3 @@ +AnySignatureVariant | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/AptosApiType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AptosApiType.html new file mode 100644 index 000000000..96f6f6eed --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/AptosApiType.html @@ -0,0 +1,5 @@ +AptosApiType | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/DeriveScheme.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/DeriveScheme.html new file mode 100644 index 000000000..7d901a6b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/DeriveScheme.html @@ -0,0 +1,12 @@ +DeriveScheme | @aptos-labs/ts-sdk - v1.3.0

Enumeration DeriveScheme

Scheme used for deriving account addresses from other data

+

Enumeration Members

DeriveAuid: 251

Derives an address using an AUID, used for objects

+
DeriveObjectAddressFromGuid: 253

Derives an address from a GUID, used for objects

+
DeriveObjectAddressFromObject: 252

Derives an address from another object address

+
DeriveObjectAddressFromSeed: 254

Derives an address from seed bytes, used for named objects

+
DeriveResourceAccountAddress: 255

Derives an address from seed bytes, used for resource accounts

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/HexInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/HexInvalidReason.html new file mode 100644 index 000000000..4ad829c28 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/HexInvalidReason.html @@ -0,0 +1,5 @@ +HexInvalidReason | @aptos-labs/ts-sdk - v1.3.0

Enumeration HexInvalidReason

This enum is used to explain why parsing might have failed.

+

Enumeration Members

INVALID_HEX_CHARS: "invalid_hex_chars"
INVALID_LENGTH: "invalid_length"
TOO_SHORT: "too_short"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/KeyType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/KeyType.html new file mode 100644 index 000000000..d8f9752f1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/KeyType.html @@ -0,0 +1,3 @@ +KeyType | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/MimeType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MimeType.html new file mode 100644 index 000000000..7b7409b63 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MimeType.html @@ -0,0 +1,7 @@ +MimeType | @aptos-labs/ts-sdk - v1.3.0

Enumeration MimeType

Enumeration Members

Enumeration Members

BCS: "application/x-bcs"

BCS representation, used for accept type BCS output

+
BCS_SIGNED_TRANSACTION: "application/x.aptos.signed_transaction+bcs"

BCS representation, used for transaction submission in BCS input

+
JSON: "application/json"

JSON representation, used for transaction submission and accept type JSON output

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveAbility.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveAbility.html new file mode 100644 index 000000000..c2dc9ba90 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveAbility.html @@ -0,0 +1,6 @@ +MoveAbility | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveFunctionVisibility.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveFunctionVisibility.html new file mode 100644 index 000000000..d97e7098b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/MoveFunctionVisibility.html @@ -0,0 +1,5 @@ +MoveFunctionVisibility | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/Network.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/Network.html new file mode 100644 index 000000000..e14d86385 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/Network.html @@ -0,0 +1,6 @@ +Network | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/ProcessorType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/ProcessorType.html new file mode 100644 index 000000000..22e5beae7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/ProcessorType.html @@ -0,0 +1,11 @@ +ProcessorType | @aptos-labs/ts-sdk - v1.3.0

Enumeration ProcessorType

The list of supported Processor types for our indexer api.

+

These can be found from the processor_status table in the indexer database. +https://cloud.hasura.io/public/graphiql?endpoint=https://indexer.mainnet.aptoslabs.com/v1/graphql

+

Enumeration Members

ACCOUNT_TRANSACTION_PROCESSOR: "account_transactions_processor"
DEFAULT: "default_processor"
EVENTS_PROCESSOR: "events_processor"
FUNGIBLE_ASSET_PROCESSOR: "fungible_asset_processor"
STAKE_PROCESSOR: "stake_processor"
TOKEN_V2_PROCESSOR: "token_v2_processor"
USER_TRANSACTION_PROCESSOR: "user_transaction_processor"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/RoleType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/RoleType.html new file mode 100644 index 000000000..de60a0750 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/RoleType.html @@ -0,0 +1,3 @@ +RoleType | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/ScriptTransactionArgumentVariants.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/ScriptTransactionArgumentVariants.html new file mode 100644 index 000000000..7f80f52c1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/ScriptTransactionArgumentVariants.html @@ -0,0 +1,12 @@ +ScriptTransactionArgumentVariants | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningScheme.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningScheme.html new file mode 100644 index 000000000..5de86f590 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningScheme.html @@ -0,0 +1,8 @@ +SigningScheme | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningSchemeInput.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningSchemeInput.html new file mode 100644 index 000000000..3774a8673 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/SigningSchemeInput.html @@ -0,0 +1,5 @@ +SigningSchemeInput | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionAuthenticatorVariant.html new file mode 100644 index 000000000..3919e74fc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionAuthenticatorVariant.html @@ -0,0 +1,8 @@ +TransactionAuthenticatorVariant | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionPayloadVariants.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionPayloadVariants.html new file mode 100644 index 000000000..f3366c395 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionPayloadVariants.html @@ -0,0 +1,6 @@ +TransactionPayloadVariants | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionResponseType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionResponseType.html new file mode 100644 index 000000000..ddb183412 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionResponseType.html @@ -0,0 +1,7 @@ +TransactionResponseType | @aptos-labs/ts-sdk - v1.3.0

Enumeration TransactionResponseType

TRANSACTION TYPES

+

Enumeration Members

BlockMetadata: "block_metadata_transaction"
Genesis: "genesis_transaction"
Pending: "pending_transaction"
StateCheckpoint: "state_checkpoint_transaction"
User: "user_transaction"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionVariants.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionVariants.html new file mode 100644 index 000000000..af1c0cdfe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TransactionVariants.html @@ -0,0 +1,5 @@ +TransactionVariants | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagParserErrorType.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagParserErrorType.html new file mode 100644 index 000000000..0326700cd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagParserErrorType.html @@ -0,0 +1,13 @@ +TypeTagParserErrorType | @aptos-labs/ts-sdk - v1.3.0

Enumeration TypeTagParserErrorType

Enumeration Members

InvalidModuleNameCharacter: "module name must only contain alphanumeric or '_' characters"
InvalidStructNameCharacter: "struct name must only contain alphanumeric or '_' characters"
InvalidTypeTag: "unknown type"
MissingTypeArgumentClose: "no matching '>' for '<'"
TypeArgumentCountMismatch: "type argument count doesn't match expected amount"
UnexpectedComma: "unexpected ','"
UnexpectedGenericType: "unexpected generic type"
UnexpectedPrimitiveTypeArguments: "primitive types not expected to have type arguments"
UnexpectedStructFormat: "unexpected struct format, must be of the form 0xaddress::module_name::struct_name"
UnexpectedTypeArgumentClose: "unexpected '>'"
UnexpectedVectorTypeArgumentCount: "vector type expected to have exactly one type argument"
UnexpectedWhitespaceCharacter: "unexpected whitespace character"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagVariants.html b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagVariants.html new file mode 100644 index 000000000..252724f80 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/enums/TypeTagVariants.html @@ -0,0 +1,16 @@ +TypeTagVariants | @aptos-labs/ts-sdk - v1.3.0

Enumeration TypeTagVariants

Enumeration Members

Enumeration Members

Address: 4
Bool: 0
Generic: 255
Reference: 254
Signer: 5
Struct: 7
U128: 3
U16: 8
U256: 10
U32: 9
U64: 2
U8: 1
Vector: 6

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/CKDPriv.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/CKDPriv.html new file mode 100644 index 000000000..b88a5c2fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/CKDPriv.html @@ -0,0 +1,2 @@ +CKDPriv | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosCoinStructTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosCoinStructTag.html new file mode 100644 index 000000000..a0241ba36 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosCoinStructTag.html @@ -0,0 +1 @@ +aptosCoinStructTag | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosRequest-1.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosRequest-1.html new file mode 100644 index 000000000..1b725d0d8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/aptosRequest-1.html @@ -0,0 +1,5 @@ +aptosRequest | @aptos-labs/ts-sdk - v1.3.0

Function aptosRequest

  • The main function to use when doing an API request.

    +

    Type Parameters

    • Req extends {}

    • Res extends {}

    Parameters

    Returns Promise<AptosResponse<Req, Res>>

    the response or AptosApiError

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/buildTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/buildTransaction.html new file mode 100644 index 000000000..5d3a83b03 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/buildTransaction.html @@ -0,0 +1,11 @@ +buildTransaction | @aptos-labs/ts-sdk - v1.3.0

Function buildTransaction

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/checkOrConvertArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/checkOrConvertArgument.html new file mode 100644 index 000000000..578027799 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/checkOrConvertArgument.html @@ -0,0 +1 @@ +checkOrConvertArgument | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/convertArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/convertArgument.html new file mode 100644 index 000000000..0b8bde301 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/convertArgument.html @@ -0,0 +1,2 @@ +convertArgument | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveKey.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveKey.html new file mode 100644 index 000000000..f8bad5f97 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveKey.html @@ -0,0 +1 @@ +deriveKey | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveTransactionType.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveTransactionType.html new file mode 100644 index 000000000..78b7c2251 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deriveTransactionType.html @@ -0,0 +1,4 @@ +deriveTransactionType | @aptos-labs/ts-sdk - v1.3.0

Function deriveTransactionType

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/deserializeFromScriptArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deserializeFromScriptArgument.html new file mode 100644 index 000000000..3d23b90ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/deserializeFromScriptArgument.html @@ -0,0 +1,2 @@ +deserializeFromScriptArgument | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/ensureBoolean.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/ensureBoolean.html new file mode 100644 index 000000000..af2badeb7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/ensureBoolean.html @@ -0,0 +1 @@ +ensureBoolean | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/fetchEntryFunctionAbi.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/fetchEntryFunctionAbi.html new file mode 100644 index 000000000..cbb8edc10 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/fetchEntryFunctionAbi.html @@ -0,0 +1,2 @@ +fetchEntryFunctionAbi | @aptos-labs/ts-sdk - v1.3.0

Function fetchEntryFunctionAbi

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/findFirstNonSignerArg.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/findFirstNonSignerArg.html new file mode 100644 index 000000000..7e7a57b90 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/findFirstNonSignerArg.html @@ -0,0 +1,4 @@ +findFirstNonSignerArg | @aptos-labs/ts-sdk - v1.3.0

Function findFirstNonSignerArg

  • Finds first non-signer arg.

    +

    A function is often defined with a signer or &signer arguments at the start, which are filled in +by signatures, and not by the caller.

    +

    Parameters

    Returns number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateMultiSignersSignedTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateMultiSignersSignedTransaction.html new file mode 100644 index 000000000..c84768d95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateMultiSignersSignedTransaction.html @@ -0,0 +1,5 @@ +generateMultiSignersSignedTransaction | @aptos-labs/ts-sdk - v1.3.0

Function generateMultiSignersSignedTransaction

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateRawTransaction.html new file mode 100644 index 000000000..da4ec34c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateRawTransaction.html @@ -0,0 +1,6 @@ +generateRawTransaction | @aptos-labs/ts-sdk - v1.3.0

Function generateRawTransaction

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransaction.html new file mode 100644 index 000000000..c68e43324 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransaction.html @@ -0,0 +1,3 @@ +generateSignedTransaction | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransactionForSimulation.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransactionForSimulation.html new file mode 100644 index 000000000..920fbbb85 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSignedTransactionForSimulation.html @@ -0,0 +1,3 @@ +generateSignedTransactionForSimulation | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSigningMessage.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSigningMessage.html new file mode 100644 index 000000000..b5e3947a4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateSigningMessage.html @@ -0,0 +1 @@ +generateSigningMessage | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayload.html new file mode 100644 index 000000000..4b054c5fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayload.html @@ -0,0 +1,13 @@ +generateTransactionPayload | @aptos-labs/ts-sdk - v1.3.0

Function generateTransactionPayload

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayloadWithABI.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayloadWithABI.html new file mode 100644 index 000000000..cc80a53cf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/generateTransactionPayloadWithABI.html @@ -0,0 +1 @@ +generateTransactionPayloadWithABI | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/get.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/get.html new file mode 100644 index 000000000..0909c3a4b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/get.html @@ -0,0 +1,3 @@ +get | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAptosFullNode.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAptosFullNode.html new file mode 100644 index 000000000..b1586401a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAptosFullNode.html @@ -0,0 +1 @@ +getAptosFullNode | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAuthenticatorForSimulation.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAuthenticatorForSimulation.html new file mode 100644 index 000000000..96fca197c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getAuthenticatorForSimulation.html @@ -0,0 +1 @@ +getAuthenticatorForSimulation | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/getFunctionParts.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getFunctionParts.html new file mode 100644 index 000000000..c674026f3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/getFunctionParts.html @@ -0,0 +1 @@ +getFunctionParts | @aptos-labs/ts-sdk - v1.3.0

Function getFunctionParts

  • Parameters

    • functionArg: `${string}::${string}::${string}`

    Returns {
        functionName: string;
        moduleAddress: string;
        moduleName: string;
    }

    • functionName: string
    • moduleAddress: string
    • moduleName: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsAddress.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsAddress.html new file mode 100644 index 000000000..9c15ade42 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsAddress.html @@ -0,0 +1 @@ +isBcsAddress | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsBool.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsBool.html new file mode 100644 index 000000000..13b8e7340 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsBool.html @@ -0,0 +1 @@ +isBcsBool | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsFixedBytes.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsFixedBytes.html new file mode 100644 index 000000000..ffbee506b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsFixedBytes.html @@ -0,0 +1 @@ +isBcsFixedBytes | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsString.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsString.html new file mode 100644 index 000000000..a9ce59ae4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsString.html @@ -0,0 +1 @@ +isBcsString | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU128.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU128.html new file mode 100644 index 000000000..6abdeacae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU128.html @@ -0,0 +1 @@ +isBcsU128 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU16.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU16.html new file mode 100644 index 000000000..9c64c13ea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU16.html @@ -0,0 +1 @@ +isBcsU16 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU256.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU256.html new file mode 100644 index 000000000..548b2372c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU256.html @@ -0,0 +1 @@ +isBcsU256 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU32.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU32.html new file mode 100644 index 000000000..8ecd9760e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU32.html @@ -0,0 +1 @@ +isBcsU32 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU64.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU64.html new file mode 100644 index 000000000..798235ee1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU64.html @@ -0,0 +1 @@ +isBcsU64 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU8.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU8.html new file mode 100644 index 000000000..0d0bf35f2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBcsU8.html @@ -0,0 +1 @@ +isBcsU8 | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBlockMetadataTransactionResponse.html new file mode 100644 index 000000000..203fa60df --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBlockMetadataTransactionResponse.html @@ -0,0 +1 @@ +isBlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBool.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBool.html new file mode 100644 index 000000000..3e804614e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isBool.html @@ -0,0 +1 @@ +isBool | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEd25519Signature.html new file mode 100644 index 000000000..70ecbd12f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEd25519Signature.html @@ -0,0 +1 @@ +isEd25519Signature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEncodedEntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEncodedEntryFunctionArgument.html new file mode 100644 index 000000000..d33d194f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isEncodedEntryFunctionArgument.html @@ -0,0 +1 @@ +isEncodedEntryFunctionArgument | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isFeePayerSignature.html new file mode 100644 index 000000000..20a09374a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isFeePayerSignature.html @@ -0,0 +1 @@ +isFeePayerSignature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isGenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isGenesisTransactionResponse.html new file mode 100644 index 000000000..f9dd53719 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isGenesisTransactionResponse.html @@ -0,0 +1 @@ +isGenesisTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isLargeNumber.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isLargeNumber.html new file mode 100644 index 000000000..70f72f963 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isLargeNumber.html @@ -0,0 +1 @@ +isLargeNumber | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiAgentSignature.html new file mode 100644 index 000000000..460fdd6c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiAgentSignature.html @@ -0,0 +1 @@ +isMultiAgentSignature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiEd25519Signature.html new file mode 100644 index 000000000..69e443169 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isMultiEd25519Signature.html @@ -0,0 +1 @@ +isMultiEd25519Signature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNull.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNull.html new file mode 100644 index 000000000..c2e82809a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNull.html @@ -0,0 +1 @@ +isNull | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNumber.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNumber.html new file mode 100644 index 000000000..463fa9787 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isNumber.html @@ -0,0 +1 @@ +isNumber | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isPendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isPendingTransactionResponse.html new file mode 100644 index 000000000..d1a54aa43 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isPendingTransactionResponse.html @@ -0,0 +1 @@ +isPendingTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isScriptDataInput.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isScriptDataInput.html new file mode 100644 index 000000000..76fc1d05e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isScriptDataInput.html @@ -0,0 +1 @@ +isScriptDataInput | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isSecp256k1Signature.html new file mode 100644 index 000000000..4136a7650 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isSecp256k1Signature.html @@ -0,0 +1 @@ +isSecp256k1Signature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isStateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isStateCheckpointTransactionResponse.html new file mode 100644 index 000000000..5c3b30060 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isStateCheckpointTransactionResponse.html @@ -0,0 +1 @@ +isStateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isString.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isString.html new file mode 100644 index 000000000..5d8239bef --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isString.html @@ -0,0 +1 @@ +isString | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isUserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isUserTransactionResponse.html new file mode 100644 index 000000000..9771e9cce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isUserTransactionResponse.html @@ -0,0 +1 @@ +isUserTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidBIP44Path.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidBIP44Path.html new file mode 100644 index 000000000..b39f7fae4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidBIP44Path.html @@ -0,0 +1,6 @@ +isValidBIP44Path | @aptos-labs/ts-sdk - v1.3.0

Function isValidBIP44Path

  • Aptos derive path is 637

    +

    Parse and validate a path that is compliant to BIP-44 in form m/44'/637'/{account_index}'/{change_index}/{address_index} +for Secp256k1

    +

    Note that for secp256k1, last two components must be non-hardened.

    +

    Parameters

    • path: string

      path string (e.g. m/44'/637'/0'/0/0).

      +

    Returns boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidHardenedPath.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidHardenedPath.html new file mode 100644 index 000000000..d295a1dba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/isValidHardenedPath.html @@ -0,0 +1,12 @@ +isValidHardenedPath | @aptos-labs/ts-sdk - v1.3.0

Function isValidHardenedPath

  • Aptos derive path is 637

    +

    Parse and validate a path that is compliant to SLIP-0010 and BIP-44 +in form m/44'/637'/{account_index}'/{change_index}'/{address_index}'. +See SLIP-0010 https://github.com/satoshilabs/slips/blob/master/slip-0044.md +See BIP-44 https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki

    +

    Note that for Ed25519, all components must be hardened. +This is because non-hardened [PK] derivation would not work due to Ed25519's lack of a key homomorphism. +Specifically, you cannot derive the PK associated with derivation path a/b/c given the PK of a/b. +This is because the PK in Ed25519 is, more or less, computed as 𝑔𝐻(𝑠𝑘), +with the hash function breaking the homomorphism.

    +

    Parameters

    • path: string

      path string (e.g. m/44'/637'/0'/0'/0').

      +

    Returns boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/mnemonicToSeed.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/mnemonicToSeed.html new file mode 100644 index 000000000..5e74c867f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/mnemonicToSeed.html @@ -0,0 +1,3 @@ +mnemonicToSeed | @aptos-labs/ts-sdk - v1.3.0

Function mnemonicToSeed

  • Normalizes the mnemonic by removing extra whitespace and making it lowercase

    +

    Parameters

    • mnemonic: string

      the mnemonic seed phrase

      +

    Returns Uint8Array

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/objectStructTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/objectStructTag.html new file mode 100644 index 000000000..cf2c0e157 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/objectStructTag.html @@ -0,0 +1 @@ +objectStructTag | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/optionStructTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/optionStructTag.html new file mode 100644 index 000000000..f0619c863 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/optionStructTag.html @@ -0,0 +1 @@ +optionStructTag | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/outOfRangeErrorMessage.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/outOfRangeErrorMessage.html new file mode 100644 index 000000000..6907cdfcb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/outOfRangeErrorMessage.html @@ -0,0 +1 @@ +outOfRangeErrorMessage | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/paginateWithCursor.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/paginateWithCursor.html new file mode 100644 index 000000000..4460fc44e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/paginateWithCursor.html @@ -0,0 +1 @@ +paginateWithCursor | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/parseTypeTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/parseTypeTag.html new file mode 100644 index 000000000..5b13b2ab8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/parseTypeTag.html @@ -0,0 +1,14 @@ +parseTypeTag | @aptos-labs/ts-sdk - v1.3.0

Function parseTypeTag

  • All types are made of a few parts they're either:

    +
      +
    1. A simple type e.g. u8
    2. +
    3. A standalone struct e.g. 0x1::account::Account
    4. +
    5. A nested struct e.g. 0x1::coin::Coin<0x1234::coin::MyCoin>
    6. +
    +

    There are a few more special cases that need to be handled, however.

    +
      +
    1. Multiple generics e.g 0x1::pair::Pair<u8, u16>
    2. +
    3. Spacing in the generics e.g. 0x1::pair::Pair< u8 , u16>
    4. +
    5. Nested generics of different depths e.g. 0x1::pair::Pair<0x1::coin::Coin<0x1234::coin::MyCoin>, u8>
    6. +
    7. Generics for types in ABIs are filled in with placeholders e.g T1, T2, T3
    8. +
    +

    Parameters

    • typeStr: string
    • Optional options: {
          allowGenerics?: boolean;
      }
      • Optional allowGenerics?: boolean

    Returns TypeTag

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/post.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/post.html new file mode 100644 index 000000000..10e06f942 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/post.html @@ -0,0 +1,3 @@ +post | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFaucet.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFaucet.html new file mode 100644 index 000000000..cf4b2a07c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFaucet.html @@ -0,0 +1 @@ +postAptosFaucet | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFullNode.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFullNode.html new file mode 100644 index 000000000..4c7bb7671 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosFullNode.html @@ -0,0 +1 @@ +postAptosFullNode | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosIndexer.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosIndexer.html new file mode 100644 index 000000000..ad9644dcd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/postAptosIndexer.html @@ -0,0 +1 @@ +postAptosIndexer | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/request.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/request.html new file mode 100644 index 000000000..12f7c4900 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/request.html @@ -0,0 +1,3 @@ +request | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/sign.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/sign.html new file mode 100644 index 000000000..e3f873adc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/sign.html @@ -0,0 +1,5 @@ +sign | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/splitPath.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/splitPath.html new file mode 100644 index 000000000..872ba2124 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/splitPath.html @@ -0,0 +1,2 @@ +splitPath | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/standardizeTypeTags.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/standardizeTypeTags.html new file mode 100644 index 000000000..d33f566ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/standardizeTypeTags.html @@ -0,0 +1,2 @@ +standardizeTypeTags | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/stringStructTag.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/stringStructTag.html new file mode 100644 index 000000000..a38c3fa12 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/stringStructTag.html @@ -0,0 +1 @@ +stringStructTag | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/throwTypeMismatch.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/throwTypeMismatch.html new file mode 100644 index 000000000..27fadffaa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/throwTypeMismatch.html @@ -0,0 +1 @@ +throwTypeMismatch | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/functions/validateNumberInRange.html b/docs/@aptos-labs/ts-sdk-1.3.0/functions/validateNumberInRange.html new file mode 100644 index 000000000..02485a4ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/functions/validateNumberInRange.html @@ -0,0 +1 @@ +validateNumberInRange | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/index.html b/docs/@aptos-labs/ts-sdk-1.3.0/index.html new file mode 100644 index 000000000..ee2454bcc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/index.html @@ -0,0 +1,66 @@ +@aptos-labs/ts-sdk - v1.3.0

@aptos-labs/ts-sdk - v1.3.0

Typescript SDK for Aptos

License +Discord +NPM Package Downloads

+

Latest Version

NPM Package Version +Node Version +NPM bundle size

+

Experimental Development Version

NPM Experimental Version +Experimental Node Version +Experimental bundle size

+

The Aptos TypeScript SDK provides a convenient way to interact with the Aptos blockchain using TypeScript. It offers a +set of utility functions, classes, and types to simplify the integration process and enhance developer productivity.

+

This repository supports version >= 0.0.0 of the Aptos SDK npm package.

+

Installation

For use in Node.js or a web application

Install with your favorite package manager such as npm, yarn, or pnpm:

+
pnpm install @aptos-labs/ts-sdk
+
+
For use in a browser

You can add the SDK to your web application using a script tag:

+
<script src="https://unpkg.com/@aptos-labs/ts-sdk/dist/browser/index.global.js" />
+
+

Then, the SDK can be accessed through window.aptosSDK.

+

Usage

Initialize Aptos to access the SDK API.

+
// initiate the main entry point into Aptos SDK
const aptos = new Aptos(); +
+

If you want to pass in a custom config

+
// an optional config information for the SDK client instance.
const config = new AptosConfig({ network: Network.LOCAL }); // default network is devnet
const aptos = new Aptos(config); +
+

Read data from chain


+
const modules = await aptos.getAccountModules({ accountAddress: "0x123" });
+
+

Account management (default to Ed25519)

+

Note: We introduce a Single Sender authentication (as introduced in AIP-55). Generating an account defaults to Legacy Ed25519 authentication with the option to use the Single Sender unified authentication

+
+
+

Generate new keys

const account = Account.generate(); // defaults to Legacy Ed25519
const account = Account.generate({ scheme: SingingSchemeInput.Secp256k1 }); // Single Sender Secp256k1
const account = Account.generate({ scheme: SingingSchemeInput.Ed25519, legacy: false }); // Single Sender Ed25519 +
+

Derive from private key

// Create a private key instance for Ed25519 scheme
const privateKey = new Ed25519PrivateKey("myEd25519privatekeystring");
// Or for Secp256k1 scheme
const privateKey = new Secp256k1PrivateKey("mySecp256k1privatekeystring");

// Derive an account from private key

// This is used as a local calculation and therefore is used to instantiate an `Account`
// that has not had its authentication key rotated
const account = await Account.fromPrivateKey({ privateKey });

// Also, can use this function that resolves the provided private key type and derives the public key from it
// to support key rotation and differentiation between Legacy Ed25519 and Unified authentications
// Read more https://github.com/aptos-labs/aptos-ts-sdk/blob/main/src/api/account.ts#L364
const aptos = new Aptos();
const account = await aptos.deriveAccountFromPrivateKey({ privateKey }); +
+

Derive from private key and address

// Create a private key instance for Ed25519 scheme
const privateKey = new Ed25519PrivateKey("myEd25519privatekeystring");
// Or for Secp256k1 scheme
const privateKey = new Secp256k1PrivateKey("mySecp256k1privatekeystring");

// Derive an account from private key and address

// create an AccountAddress instance from the account address string
const address = AccountAddress.from("myaccountaddressstring");
// Derieve an account from private key and address
const account = await Account.fromPrivateKeyAndAddress({ privateKey, address }); +
+

Derive from path

const path = "m/44'/637'/0'/0'/1";
const mnemonic = "various float stumble...";
const account = Account.fromDerivationPath({ path, mnemonic }); +
+

Submit transaction


+

Single Signer transaction

Using transaction submission api

+
const alice: Account = Account.generate();
const bobAddress = "0xb0b";
// build transaction
const transaction = await aptos.transaction.build.simple({
sender: alice.accountAddress,
data: {
function: "0x1::coin::transfer",
typeArguments: ["0x1::aptos_coin::AptosCoin"],
functionArguments: [bobAddress, 100],
},
});

// using sign and submit separately
const senderAuthenticator = aptos.transaction.sign({ signer: alice, transaction });
const committedTransaction = await aptos.transaction.submit.simple({ transaction, senderAuthenticator });

// using signAndSubmit combined
const committedTransaction = await aptos.signAndSubmitTransaction({ signer: alice, transaction }); +
+

Using built in transferCoinTransaction

+
const alice: Account = Account.generate();
const bobAddress = "0xb0b";
// build transaction
const transaction = await aptos.transferCoinTransaction({
sender: alice,
recipient: bobAddress,
amount: 100,
});

const pendingTransaction = await aptos.signAndSubmitTransaction({ signer: alice, transaction }); +
+

Documentation and examples

+

Testing

To run the SDK tests, simply run from the root of this repository:

+
+

Note: for a better experience, make sure there is no aptos local node process up and running (can check if there is a process running on port 8080).

+
+
pnpm i
pnpm test +
+

Troubleshooting

If you see import error when you do this

+
import { Aptos, AptosConfig, Network } from "@aptos-labs/ts-sdk";
+
+

It could be your tsconfig.json is not incompatible, make sure your moduleResolution is set to node instead of bundler.

+

Contributing

If you found a bug or would like to request a feature, please file an issue. +If, based on the discussion on an issue you would like to offer a code change, please make a pull request. +If neither of these describes what you would like to contribute, checkout out the contributing guide.

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/AptosResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/AptosResponse.html new file mode 100644 index 000000000..da7d14417 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/AptosResponse.html @@ -0,0 +1,16 @@ +AptosResponse | @aptos-labs/ts-sdk - v1.3.0

Interface AptosResponse<Req, Res>

The API response type

+

Param: status

the response status. i.e. 200

+

Param: statusText

the response message

+

Param: data

the response data

+

Param: url

the url the request was made to

+

Param: headers

the response headers

+

Param: config

(optional) - the request object

+

Param: request

(optional) - the request object

+
interface AptosResponse {
    config?: any;
    data: Res;
    headers: any;
    request?: Req;
    status: number;
    statusText: string;
    url: string;
}

Type Parameters

  • Req

  • Res

Properties

config?: any
data: Res
headers: any
request?: Req
status: number
statusText: string
url: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Client.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Client.html new file mode 100644 index 000000000..0b90d3969 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Client.html @@ -0,0 +1,2 @@ +Client | @aptos-labs/ts-sdk - v1.3.0

Interface Client

interface Client {
    provider<Req, Res>(requestOptions): Promise<ClientResponse<Res>>;
}

Methods

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientRequest.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientRequest.html new file mode 100644 index 000000000..8803f9ca0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientRequest.html @@ -0,0 +1,8 @@ +ClientRequest | @aptos-labs/ts-sdk - v1.3.0

Interface ClientRequest<Req>

interface ClientRequest {
    body?: Req;
    contentType?: string;
    headers?: Record<string, any>;
    method: "GET" | "POST";
    overrides?: ClientConfig;
    params?: any;
    url: string;
}

Type Parameters

  • Req

Properties

body?: Req
contentType?: string
headers?: Record<string, any>
method: "GET" | "POST"
overrides?: ClientConfig
params?: any
url: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientResponse.html new file mode 100644 index 000000000..2a20dd994 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ClientResponse.html @@ -0,0 +1,8 @@ +ClientResponse | @aptos-labs/ts-sdk - v1.3.0

Interface ClientResponse<Res>

interface ClientResponse {
    config?: any;
    data: Res;
    headers?: any;
    request?: any;
    response?: any;
    status: number;
    statusText: string;
}

Type Parameters

  • Res

Properties

config?: any
data: Res
headers?: any
request?: any
response?: any
status: number
statusText: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Deserializable.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Deserializable.html new file mode 100644 index 000000000..25f1a38f3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/Deserializable.html @@ -0,0 +1,6 @@ +Deserializable | @aptos-labs/ts-sdk - v1.3.0

Interface Deserializable<T>

This interface exists to define Deserializable inputs for functions that +deserialize a byte buffer into a type T. +It is not intended to be implemented or extended, because Typescript has no support +for static methods in interfaces.

+
interface Deserializable {
    deserialize(deserializer): T;
}

Type Parameters

  • T

Methods

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/EntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/EntryFunctionArgument.html new file mode 100644 index 000000000..f81da713b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/EntryFunctionArgument.html @@ -0,0 +1,8 @@ +EntryFunctionArgument | @aptos-labs/ts-sdk - v1.3.0

Interface EntryFunctionArgument

interface EntryFunctionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForEntryFunction(serializer): void;
}

Hierarchy

Implemented by

Methods

  • Serialize an argument as a type-agnostic, fixed byte sequence. The byte sequence contains +the number of the following bytes followed by the BCS-serialized bytes for a typed argument.

    +

    Parameters

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html new file mode 100644 index 000000000..5e20e2904 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html @@ -0,0 +1,9 @@ +InputGenerateMultiAgentRawTransactionArgs | @aptos-labs/ts-sdk - v1.3.0

Interface InputGenerateMultiAgentRawTransactionArgs

Interface of the arguments to generate a multi-agent transaction. +Used to provide to generateTransaction() method in the transaction builder flow

+

Properties

aptosConfig: AptosConfig
feePayerAddress?: AccountAddressInput
secondarySignerAddresses: AccountAddressInput[]

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionData.html new file mode 100644 index 000000000..bce98aca4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateMultiAgentRawTransactionData.html @@ -0,0 +1,7 @@ +InputGenerateMultiAgentRawTransactionData | @aptos-labs/ts-sdk - v1.3.0

Interface InputGenerateMultiAgentRawTransactionData

Interface that holds the user data input when generating a multi-agent transaction

+
interface InputGenerateMultiAgentRawTransactionData {
    data: InputGenerateTransactionPayloadData;
    options?: InputGenerateTransactionOptions;
    secondarySignerAddresses: AccountAddressInput[];
    sender: AccountAddressInput;
    withFeePayer?: boolean;
}

Properties

secondarySignerAddresses: AccountAddressInput[]
withFeePayer?: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html new file mode 100644 index 000000000..b9b7f69d6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html @@ -0,0 +1,8 @@ +InputGenerateSingleSignerRawTransactionArgs | @aptos-labs/ts-sdk - v1.3.0

Interface InputGenerateSingleSignerRawTransactionArgs

Interface of the arguments to generate a single signer transaction. +Used to provide to generateTransaction() method in the transaction builder flow

+
interface InputGenerateSingleSignerRawTransactionArgs {
    aptosConfig: AptosConfig;
    feePayerAddress?: AccountAddressInput;
    options?: InputGenerateTransactionOptions;
    payload: AnyTransactionPayloadInstance;
    sender: AccountAddressInput;
}

Properties

aptosConfig: AptosConfig
feePayerAddress?: AccountAddressInput

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionData.html new file mode 100644 index 000000000..8162dc80f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputGenerateSingleSignerRawTransactionData.html @@ -0,0 +1,7 @@ +InputGenerateSingleSignerRawTransactionData | @aptos-labs/ts-sdk - v1.3.0

Interface InputGenerateSingleSignerRawTransactionData

Interface that holds the user data input when generating a single signer transaction

+
interface InputGenerateSingleSignerRawTransactionData {
    data: InputGenerateTransactionPayloadData;
    options?: InputGenerateTransactionOptions;
    secondarySignerAddresses?: undefined;
    sender: AccountAddressInput;
    withFeePayer?: boolean;
}

Properties

secondarySignerAddresses?: undefined
withFeePayer?: boolean

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputSubmitTransactionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputSubmitTransactionData.html new file mode 100644 index 000000000..ba12b0e96 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/InputSubmitTransactionData.html @@ -0,0 +1,6 @@ +InputSubmitTransactionData | @aptos-labs/ts-sdk - v1.3.0

Interface InputSubmitTransactionData

Interface that holds the user data input when submitting a transaction

+

Properties

additionalSignersAuthenticators?: AccountAuthenticator[]
feePayerAuthenticator?: AccountAuthenticator
senderAuthenticator: AccountAuthenticator
transaction: AnyRawTransaction

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/MultiAgentTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/MultiAgentTransaction.html new file mode 100644 index 000000000..9528672e9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/MultiAgentTransaction.html @@ -0,0 +1,7 @@ +MultiAgentTransaction | @aptos-labs/ts-sdk - v1.3.0

Interface MultiAgentTransaction

Interface that holds the return data when generating a multi-agent transaction.

+

Param: rawTransaction

a bcs serialized raw transaction

+

Param: secondarySignerAddresses

secondary signer addresses for multi-agent transaction

+
interface MultiAgentTransaction {
    feePayerAddress?: AccountAddress;
    rawTransaction: RawTransaction;
    secondarySignerAddresses: AccountAddress[];
}

Properties

feePayerAddress?: AccountAddress
rawTransaction: RawTransaction
secondarySignerAddresses: AccountAddress[]

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/OrderByArg.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/OrderByArg.html new file mode 100644 index 000000000..e15ef77f4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/OrderByArg.html @@ -0,0 +1,2 @@ +OrderByArg | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/PaginationArgs.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/PaginationArgs.html new file mode 100644 index 000000000..9e53cf9af --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/PaginationArgs.html @@ -0,0 +1,6 @@ +PaginationArgs | @aptos-labs/ts-sdk - v1.3.0

Interface PaginationArgs

Controls the number of results that are returned and the starting position of those results.

+

Param: offset

parameter specifies the starting position of the query result within the set of data. Default is 0.

+

Param: limit

specifies the maximum number of items or records to return in a query result. Default is 25.

+
interface PaginationArgs {
    limit?: number;
    offset?: AnyNumber;
}

Properties

Properties

limit?: number
offset?: AnyNumber

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ScriptFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ScriptFunctionArgument.html new file mode 100644 index 000000000..3cce01c42 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/ScriptFunctionArgument.html @@ -0,0 +1,9 @@ +ScriptFunctionArgument | @aptos-labs/ts-sdk - v1.3.0

Interface ScriptFunctionArgument

interface ScriptFunctionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForScriptFunction(serializer): void;
}

Hierarchy

Methods

  • Serialize an argument to BCS-serialized bytes as a type aware byte sequence. +The byte sequence contains an enum variant index followed by the BCS-serialized +bytes for a typed argument.

    +

    Parameters

    Returns void

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/SimpleTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/SimpleTransaction.html new file mode 100644 index 000000000..59692447a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/SimpleTransaction.html @@ -0,0 +1,6 @@ +SimpleTransaction | @aptos-labs/ts-sdk - v1.3.0

Interface SimpleTransaction

Interface that holds the return data when generating a single signer transaction

+

Param: rawTransaction

a bcs serialized raw transaction

+
interface SimpleTransaction {
    feePayerAddress?: AccountAddress;
    rawTransaction: RawTransaction;
    secondarySignerAddresses?: undefined;
}

Properties

feePayerAddress?: AccountAddress
rawTransaction: RawTransaction
secondarySignerAddresses?: undefined

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TokenStandardArg.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TokenStandardArg.html new file mode 100644 index 000000000..01df495ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TokenStandardArg.html @@ -0,0 +1,2 @@ +TokenStandardArg | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TransactionArgument.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TransactionArgument.html new file mode 100644 index 000000000..e3494bfa7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/TransactionArgument.html @@ -0,0 +1,12 @@ +TransactionArgument | @aptos-labs/ts-sdk - v1.3.0

Interface TransactionArgument

interface TransactionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForEntryFunction(serializer): void;
    serializeForScriptFunction(serializer): void;
}

Hierarchy

Implemented by

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/WhereArg.html b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/WhereArg.html new file mode 100644 index 000000000..355aa52c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/interfaces/WhereArg.html @@ -0,0 +1,2 @@ +WhereArg | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/modules.html b/docs/@aptos-labs/ts-sdk-1.3.0/modules.html new file mode 100644 index 000000000..6d9ddd3fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/modules.html @@ -0,0 +1,339 @@ +@aptos-labs/ts-sdk - v1.3.0

@aptos-labs/ts-sdk - v1.3.0

Index

Enumerations

Classes

Interfaces

Type Aliases

AccountAddressInput +AccountData +AccountSignature +AnyNumber +AnyRawTransaction +AnyRawTransactionInstance +AnyTransactionPayloadInstance +AptosRequest +AptosSettings +AuthenticationKeyScheme +Block +BlockMetadataTransactionResponse +ClientConfig +CommittedTransactionResponse +DecodedTableData +DeletedTableData +DerivedKeys +DirectWriteSet +EntryFunctionABI +EntryFunctionArgumentTypes +EntryFunctionPayloadResponse +Event +EventGuid +GasEstimation +GenerateAccount +GenerateAccountWithEd25519 +GenerateAccountWithSingleSignerSecp256k1Key +GenesisPayload +GenesisTransactionResponse +GetANSNameResponse +GetAccountCoinsDataResponse +GetAccountCollectionsWithOwnedTokenResponse +GetAccountOwnedObjectsResponse +GetAccountOwnedTokensFromCollectionResponse +GetAccountOwnedTokensQueryResponse +GetAptosRequestOptions +GetChainTopUserTransactionsResponse +GetCollectionDataResponse +GetCurrentFungibleAssetBalancesResponse +GetCurrentTokenOwnershipResponse +GetDelegatedStakingActivitiesResponse +GetEventsResponse +GetFungibleAssetActivitiesResponse +GetFungibleAssetMetadataResponse +GetNumberOfDelegatorsResponse +GetOwnedTokensResponse +GetProcessorStatusResponse +GetRequestOptions +GetTokenActivityResponse +GetTokenDataResponse +GraphqlQuery +HexInput +InputEntryFunctionData +InputEntryFunctionDataWithRemoteABI +InputGenerateRawTransactionArgs +InputGenerateTransactionData +InputGenerateTransactionOptions +InputGenerateTransactionPayloadData +InputGenerateTransactionPayloadDataWithRemoteABI +InputMultiSigData +InputMultiSigDataWithRemoteABI +InputScriptData +InputSimulateTransactionData +InputSimulateTransactionOptions +InputViewRequestData +LedgerInfo +LedgerVersionArg +MoveAddressType +MoveFunction +MoveFunctionGenericTypeParam +MoveFunctionId +MoveModule +MoveModuleBytecode +MoveModuleId +MoveObjectType +MoveOptionType +MoveResource +MoveScriptBytecode +MoveStruct +MoveStructField +MoveStructId +MoveStructType +MoveType +MoveUint128Type +MoveUint16Type +MoveUint256Type +MoveUint32Type +MoveUint64Type +MoveUint8Type +MoveValue +MultisigPayloadResponse +OrderBy +OrderByValue +ParsingResult +PendingTransactionResponse +PostAptosRequestOptions +PostRequestOptions +ScriptFunctionArgumentTypes +ScriptPayloadResponse +ScriptWriteSet +SimpleEntryFunctionArgumentTypes +StateCheckpointTransactionResponse +TableItemRequest +TokenStandard +TransactionEd25519Signature +TransactionFeePayerSignature +TransactionMultiAgentSignature +TransactionMultiEd25519Signature +TransactionPayloadResponse +TransactionResponse +TransactionSecp256k1Signature +TransactionSignature +Uint128 +Uint16 +Uint256 +Uint32 +Uint64 +Uint8 +UserTransactionResponse +ViewRequest +WaitForTransactionOptions +WriteSet +WriteSetChange +WriteSetChangeDeleteModule +WriteSetChangeDeleteResource +WriteSetChangeDeleteTableItem +WriteSetChangeWriteModule +WriteSetChangeWriteResource +WriteSetChangeWriteTableItem +

Variables

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountAddressInput.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountAddressInput.html new file mode 100644 index 000000000..4a1157498 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountAddressInput.html @@ -0,0 +1 @@ +AccountAddressInput | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountData.html new file mode 100644 index 000000000..446f555ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountData.html @@ -0,0 +1 @@ +AccountData | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountSignature.html new file mode 100644 index 000000000..46a2bc2bb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AccountSignature.html @@ -0,0 +1,2 @@ +AccountSignature | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyNumber.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyNumber.html new file mode 100644 index 000000000..1d597f0f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyNumber.html @@ -0,0 +1 @@ +AnyNumber | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransaction.html new file mode 100644 index 000000000..7b21b979d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransaction.html @@ -0,0 +1,2 @@ +AnyRawTransaction | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransactionInstance.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransactionInstance.html new file mode 100644 index 000000000..b03187fb0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyRawTransactionInstance.html @@ -0,0 +1,2 @@ +AnyRawTransactionInstance | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyTransactionPayloadInstance.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyTransactionPayloadInstance.html new file mode 100644 index 000000000..f07f383ee --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AnyTransactionPayloadInstance.html @@ -0,0 +1,2 @@ +AnyTransactionPayloadInstance | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosRequest.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosRequest.html new file mode 100644 index 000000000..4b7c4d3d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosRequest.html @@ -0,0 +1,11 @@ +AptosRequest | @aptos-labs/ts-sdk - v1.3.0

Type alias AptosRequest

AptosRequest: {
    acceptType?: string;
    body?: any;
    contentType?: string;
    method: "GET" | "POST";
    originMethod?: string;
    overrides?: ClientConfig;
    params?: Record<string, string | AnyNumber | boolean | undefined>;
    path?: string;
    url: string;
}

The API request type

+

Type declaration

  • Optional acceptType?: string
  • Optional body?: any
  • Optional contentType?: string
  • method: "GET" | "POST"
  • Optional originMethod?: string
  • Optional overrides?: ClientConfig
  • Optional params?: Record<string, string | AnyNumber | boolean | undefined>
  • Optional path?: string
  • url: string

Param: url

the url to make the request to, i.e https://fullnode.aptoslabs.devnet.com/v1

+

Param: method

the request method "GET" | "POST"

+

Param: endpoint

(optional) - the endpoint to make the request to, i.e transactions

+

Param: body

(optional) - the body of the request

+

Param: contentType

(optional) - the content type to set the content-type header to, +by default is set to application/json

+

Param: params

(optional) - query params to add to the request

+

Param: originMethod

(optional) - the local method the request came from

+

Param: overrides

(optional) - a ClientConfig object type to override request data

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosSettings.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosSettings.html new file mode 100644 index 000000000..5d2fe96d5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AptosSettings.html @@ -0,0 +1,4 @@ +AptosSettings | @aptos-labs/ts-sdk - v1.3.0

Type alias AptosSettings

AptosSettings: {
    client?: Client;
    clientConfig?: ClientConfig;
    faucet?: string;
    fullnode?: string;
    indexer?: string;
    network?: Network;
}

Set of configuration options that can be provided when initializing the SDK. +The purpose of these options is to configure various aspects of the SDK's +behavior and interaction with the Aptos network

+

Type declaration

  • Optional Readonly client?: Client
  • Optional Readonly clientConfig?: ClientConfig
  • Optional Readonly faucet?: string
  • Optional Readonly fullnode?: string
  • Optional Readonly indexer?: string
  • Optional Readonly network?: Network

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/AuthenticationKeyScheme.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/AuthenticationKeyScheme.html new file mode 100644 index 000000000..78f222b6f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/AuthenticationKeyScheme.html @@ -0,0 +1,3 @@ +AuthenticationKeyScheme | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Block.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Block.html new file mode 100644 index 000000000..e80d05b08 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Block.html @@ -0,0 +1,3 @@ +Block | @aptos-labs/ts-sdk - v1.3.0

Type alias Block

Block: {
    block_hash: string;
    block_height: string;
    block_timestamp: string;
    first_version: string;
    last_version: string;
    transactions?: TransactionResponse[];
}

A Block type

+

Type declaration

  • block_hash: string
  • block_height: string
  • block_timestamp: string
  • first_version: string
  • last_version: string
  • Optional transactions?: TransactionResponse[]

    The transactions in the block in sequential order

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/BlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/BlockMetadataTransactionResponse.html new file mode 100644 index 000000000..a30d1e0fa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/BlockMetadataTransactionResponse.html @@ -0,0 +1,7 @@ +BlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Type alias BlockMetadataTransactionResponse

BlockMetadataTransactionResponse: {
    accumulator_root_hash: string;
    changes: WriteSetChange[];
    epoch: string;
    event_root_hash: string;
    events: Event[];
    failed_proposer_indices: number[];
    gas_used: string;
    hash: string;
    id: string;
    previous_block_votes_bitvec: number[];
    proposer: string;
    round: string;
    state_change_hash: string;
    state_checkpoint_hash?: string;
    success: boolean;
    timestamp: string;
    type: BlockMetadata;
    version: string;
    vm_status: string;
}

Type declaration

  • accumulator_root_hash: string
  • changes: WriteSetChange[]

    Final state of resources changed by the transaction

    +
  • epoch: string
  • event_root_hash: string
  • events: Event[]

    The events emitted at the block creation

    +
  • failed_proposer_indices: number[]

    The indices of the proposers who failed to propose

    +
  • gas_used: string
  • hash: string
  • id: string
  • previous_block_votes_bitvec: number[]

    Previous block votes

    +
  • proposer: string
  • round: string
  • state_change_hash: string
  • Optional state_checkpoint_hash?: string
  • success: boolean

    Whether the transaction was successful

    +
  • timestamp: string
  • type: BlockMetadata
  • version: string
  • vm_status: string

    The VM status of the transaction, can tell useful information in a failure

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ClientConfig.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ClientConfig.html new file mode 100644 index 000000000..4533ad984 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ClientConfig.html @@ -0,0 +1,6 @@ +ClientConfig | @aptos-labs/ts-sdk - v1.3.0

Type alias ClientConfig

ClientConfig: {
    API_KEY?: string;
    AUTH_TOKEN?: string;
    HEADERS?: Record<string, string | number | boolean>;
    WITH_CREDENTIALS?: boolean;
}

A configuration object we can pass with the request to the server.

+

Type declaration

  • Optional API_KEY?: string
  • Optional AUTH_TOKEN?: string
  • Optional HEADERS?: Record<string, string | number | boolean>
  • Optional WITH_CREDENTIALS?: boolean

Param: AUTH_TOKEN

an auth token to send with a faucet request

+

Param: API_KEY

api key generated from developer portal https://developers.aptoslabs.com/manage/api-keys}

+

Param: HEADERS

extra headers we want to send with the request

+

Param: WITH_CREDENTIALS

whether to carry cookies. By default, it is set to true and cookies will be sent

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/CommittedTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/CommittedTransactionResponse.html new file mode 100644 index 000000000..5e5b073e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/CommittedTransactionResponse.html @@ -0,0 +1 @@ +CommittedTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/DecodedTableData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/DecodedTableData.html new file mode 100644 index 000000000..3fa2f20b3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/DecodedTableData.html @@ -0,0 +1,5 @@ +DecodedTableData | @aptos-labs/ts-sdk - v1.3.0

Type alias DecodedTableData

DecodedTableData: {
    key: any;
    key_type: string;
    value: any;
    value_type: string;
}

Type declaration

  • key: any

    Key of table in JSON

    +
  • key_type: string

    Type of key

    +
  • value: any

    Value of table in JSON

    +
  • value_type: string

    Type of value

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/DeletedTableData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/DeletedTableData.html new file mode 100644 index 000000000..6d4fca05d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/DeletedTableData.html @@ -0,0 +1,4 @@ +DeletedTableData | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/DerivedKeys.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/DerivedKeys.html new file mode 100644 index 000000000..022916d6e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/DerivedKeys.html @@ -0,0 +1 @@ +DerivedKeys | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/DirectWriteSet.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/DirectWriteSet.html new file mode 100644 index 000000000..a16983675 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/DirectWriteSet.html @@ -0,0 +1 @@ +DirectWriteSet | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionABI.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionABI.html new file mode 100644 index 000000000..492d8679f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionABI.html @@ -0,0 +1,3 @@ +EntryFunctionABI | @aptos-labs/ts-sdk - v1.3.0

Type alias EntryFunctionABI

EntryFunctionABI: {
    parameters: TypeTag[];
    typeParameters: MoveFunctionGenericTypeParam[];
}

Interface of an Entry function's ABI.

+

This is used to provide type checking and simple input conversion on ABI based transaction submission.

+

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionArgumentTypes.html new file mode 100644 index 000000000..5d7d19a48 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +EntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionPayloadResponse.html new file mode 100644 index 000000000..f31beddf0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/EntryFunctionPayloadResponse.html @@ -0,0 +1,3 @@ +EntryFunctionPayloadResponse | @aptos-labs/ts-sdk - v1.3.0

Type alias EntryFunctionPayloadResponse

EntryFunctionPayloadResponse: {
    arguments: any[];
    function: MoveFunctionId;
    type: string;
    type_arguments: string[];
}

Type declaration

  • arguments: any[]

    Arguments of the function

    +
  • function: MoveFunctionId
  • type: string
  • type_arguments: string[]

    Type arguments of the function

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Event.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Event.html new file mode 100644 index 000000000..9833a5cb1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Event.html @@ -0,0 +1,2 @@ +Event | @aptos-labs/ts-sdk - v1.3.0

Type alias Event

Event: {
    data: any;
    guid: EventGuid;
    sequence_number: string;
    type: string;
}

Type declaration

  • data: any

    The JSON representation of the event

    +
  • guid: EventGuid
  • sequence_number: string
  • type: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/EventGuid.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/EventGuid.html new file mode 100644 index 000000000..9fd7ba675 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/EventGuid.html @@ -0,0 +1 @@ +EventGuid | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GasEstimation.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GasEstimation.html new file mode 100644 index 000000000..000736fe5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GasEstimation.html @@ -0,0 +1,5 @@ +GasEstimation | @aptos-labs/ts-sdk - v1.3.0

Type alias GasEstimation

GasEstimation: {
    deprioritized_gas_estimate?: number;
    gas_estimate: number;
    prioritized_gas_estimate?: number;
}

Type holding the outputs of the estimate gas API

+

Type declaration

  • Optional deprioritized_gas_estimate?: number

    The deprioritized estimate for the gas unit price

    +
  • gas_estimate: number

    The current estimate for the gas unit price

    +
  • Optional prioritized_gas_estimate?: number

    The prioritized estimate for the gas unit price

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccount.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccount.html new file mode 100644 index 000000000..929706e94 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccount.html @@ -0,0 +1 @@ +GenerateAccount | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithEd25519.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithEd25519.html new file mode 100644 index 000000000..12df3762a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithEd25519.html @@ -0,0 +1,3 @@ +GenerateAccountWithEd25519 | @aptos-labs/ts-sdk - v1.3.0

Type alias GenerateAccountWithEd25519

GenerateAccountWithEd25519: {
    legacy: boolean;
    scheme: Ed25519;
}

Input type to generate an account using Single Signer +Ed25519 or Legacy Ed25519

+

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html new file mode 100644 index 000000000..8e12157c4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html @@ -0,0 +1,3 @@ +GenerateAccountWithSingleSignerSecp256k1Key | @aptos-labs/ts-sdk - v1.3.0

Type alias GenerateAccountWithSingleSignerSecp256k1Key

GenerateAccountWithSingleSignerSecp256k1Key: {
    legacy?: false;
    scheme: Secp256k1Ecdsa;
}

Input type to generate an account using Single Signer +Secp256k1

+

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisPayload.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisPayload.html new file mode 100644 index 000000000..11a6e6b99 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisPayload.html @@ -0,0 +1 @@ +GenesisPayload | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisTransactionResponse.html new file mode 100644 index 000000000..ded634263 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GenesisTransactionResponse.html @@ -0,0 +1,5 @@ +GenesisTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

Type alias GenesisTransactionResponse

GenesisTransactionResponse: {
    accumulator_root_hash: string;
    changes: WriteSetChange[];
    event_root_hash: string;
    events: Event[];
    gas_used: string;
    hash: string;
    payload: GenesisPayload;
    state_change_hash: string;
    state_checkpoint_hash?: string;
    success: boolean;
    type: Genesis;
    version: string;
    vm_status: string;
}

Type declaration

  • accumulator_root_hash: string
  • changes: WriteSetChange[]

    Final state of resources changed by the transaction

    +
  • event_root_hash: string
  • events: Event[]

    Events emitted during genesis

    +
  • gas_used: string
  • hash: string
  • payload: GenesisPayload
  • state_change_hash: string
  • Optional state_checkpoint_hash?: string
  • success: boolean

    Whether the transaction was successful

    +
  • type: Genesis
  • version: string
  • vm_status: string

    The VM status of the transaction, can tell useful information in a failure

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetANSNameResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetANSNameResponse.html new file mode 100644 index 000000000..41d6a0895 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetANSNameResponse.html @@ -0,0 +1 @@ +GetANSNameResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCoinsDataResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCoinsDataResponse.html new file mode 100644 index 000000000..f512267ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCoinsDataResponse.html @@ -0,0 +1 @@ +GetAccountCoinsDataResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCollectionsWithOwnedTokenResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCollectionsWithOwnedTokenResponse.html new file mode 100644 index 000000000..fdd37266c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountCollectionsWithOwnedTokenResponse.html @@ -0,0 +1 @@ +GetAccountCollectionsWithOwnedTokenResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedObjectsResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedObjectsResponse.html new file mode 100644 index 000000000..23afd194e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedObjectsResponse.html @@ -0,0 +1,7 @@ +GetAccountOwnedObjectsResponse | @aptos-labs/ts-sdk - v1.3.0

Type alias GetAccountOwnedObjectsResponse

GetAccountOwnedObjectsResponse: GetAccountOwnedObjectsQuery["current_objects"]

CUSTOM RESPONSE TYPES FOR THE END USER

+

To provide a good dev exp, we build custom types derived from the +query types to be the response type the end developer/user will +work with.

+

These types are used as the return type when calling a sdk api function +that calls the function that queries the server (usually under the /api/ folder)

+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensFromCollectionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensFromCollectionResponse.html new file mode 100644 index 000000000..599acf925 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensFromCollectionResponse.html @@ -0,0 +1 @@ +GetAccountOwnedTokensFromCollectionResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensQueryResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensQueryResponse.html new file mode 100644 index 000000000..0f94ba448 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAccountOwnedTokensQueryResponse.html @@ -0,0 +1 @@ +GetAccountOwnedTokensQueryResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAptosRequestOptions.html new file mode 100644 index 000000000..4d6e0f47f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetAptosRequestOptions.html @@ -0,0 +1 @@ +GetAptosRequestOptions | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetChainTopUserTransactionsResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetChainTopUserTransactionsResponse.html new file mode 100644 index 000000000..4b203cd7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetChainTopUserTransactionsResponse.html @@ -0,0 +1 @@ +GetChainTopUserTransactionsResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCollectionDataResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCollectionDataResponse.html new file mode 100644 index 000000000..d67cdb6af --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCollectionDataResponse.html @@ -0,0 +1 @@ +GetCollectionDataResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentFungibleAssetBalancesResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentFungibleAssetBalancesResponse.html new file mode 100644 index 000000000..a5aca96ff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentFungibleAssetBalancesResponse.html @@ -0,0 +1 @@ +GetCurrentFungibleAssetBalancesResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentTokenOwnershipResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentTokenOwnershipResponse.html new file mode 100644 index 000000000..cca465661 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetCurrentTokenOwnershipResponse.html @@ -0,0 +1 @@ +GetCurrentTokenOwnershipResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetDelegatedStakingActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetDelegatedStakingActivitiesResponse.html new file mode 100644 index 000000000..506fe6630 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetDelegatedStakingActivitiesResponse.html @@ -0,0 +1 @@ +GetDelegatedStakingActivitiesResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetEventsResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetEventsResponse.html new file mode 100644 index 000000000..6917004e9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetEventsResponse.html @@ -0,0 +1 @@ +GetEventsResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetActivitiesResponse.html new file mode 100644 index 000000000..5f5c546ee --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetActivitiesResponse.html @@ -0,0 +1 @@ +GetFungibleAssetActivitiesResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetMetadataResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetMetadataResponse.html new file mode 100644 index 000000000..7ba8e7554 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetFungibleAssetMetadataResponse.html @@ -0,0 +1 @@ +GetFungibleAssetMetadataResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetNumberOfDelegatorsResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetNumberOfDelegatorsResponse.html new file mode 100644 index 000000000..81dc0df5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetNumberOfDelegatorsResponse.html @@ -0,0 +1 @@ +GetNumberOfDelegatorsResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetOwnedTokensResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetOwnedTokensResponse.html new file mode 100644 index 000000000..18a446f96 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetOwnedTokensResponse.html @@ -0,0 +1 @@ +GetOwnedTokensResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetProcessorStatusResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetProcessorStatusResponse.html new file mode 100644 index 000000000..90419c3b7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetProcessorStatusResponse.html @@ -0,0 +1 @@ +GetProcessorStatusResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetRequestOptions.html new file mode 100644 index 000000000..f0a50ecb0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetRequestOptions.html @@ -0,0 +1,9 @@ +GetRequestOptions | @aptos-labs/ts-sdk - v1.3.0

Type alias GetRequestOptions

GetRequestOptions: {
    acceptType?: MimeType;
    aptosConfig: AptosConfig;
    contentType?: MimeType;
    originMethod: string;
    overrides?: ClientConfig;
    params?: Record<string, string | AnyNumber | boolean | undefined>;
    path: string;
    type: AptosApiType;
}

Type declaration

  • Optional acceptType?: MimeType

    The accepted content type of the response of the API

    +
  • aptosConfig: AptosConfig

    The config for the API client

    +
  • Optional contentType?: MimeType

    The content type of the request body

    +
  • originMethod: string

    The name of the API method

    +
  • Optional overrides?: ClientConfig

    Specific client overrides for this request to override aptosConfig

    +
  • Optional params?: Record<string, string | AnyNumber | boolean | undefined>

    The query parameters for the request

    +
  • path: string

    The URL path to the API method

    +
  • type: AptosApiType

    The type of API endpoint to call e.g. fullnode, indexer, etc

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenActivityResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenActivityResponse.html new file mode 100644 index 000000000..0307241c1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenActivityResponse.html @@ -0,0 +1 @@ +GetTokenActivityResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenDataResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenDataResponse.html new file mode 100644 index 000000000..0c54b5713 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GetTokenDataResponse.html @@ -0,0 +1 @@ +GetTokenDataResponse | @aptos-labs/ts-sdk - v1.3.0

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/GraphqlQuery.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/GraphqlQuery.html new file mode 100644 index 000000000..09ff5d6fa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/GraphqlQuery.html @@ -0,0 +1,2 @@ +GraphqlQuery | @aptos-labs/ts-sdk - v1.3.0

Type alias GraphqlQuery

GraphqlQuery: {
    query: string;
    variables?: {};
}

The graphql query type to pass into the queryIndexer function

+

Type declaration

  • query: string
  • Optional variables?: {}

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/HexInput.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/HexInput.html new file mode 100644 index 000000000..81fce2208 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/HexInput.html @@ -0,0 +1,2 @@ +HexInput | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionData.html new file mode 100644 index 000000000..0168beb86 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionData.html @@ -0,0 +1,2 @@ +InputEntryFunctionData | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..19e16681e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputEntryFunctionDataWithRemoteABI.html @@ -0,0 +1 @@ +InputEntryFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateRawTransactionArgs.html new file mode 100644 index 000000000..890b4cfdd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateRawTransactionArgs.html @@ -0,0 +1,2 @@ +InputGenerateRawTransactionArgs | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionData.html new file mode 100644 index 000000000..c30f7cbfc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionData | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionOptions.html new file mode 100644 index 000000000..8b7730b89 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionOptions.html @@ -0,0 +1,2 @@ +InputGenerateTransactionOptions | @aptos-labs/ts-sdk - v1.3.0

    Type alias InputGenerateTransactionOptions

    InputGenerateTransactionOptions: {
        accountSequenceNumber?: AnyNumber;
        expireTimestamp?: number;
        gasUnitPrice?: number;
        maxGasAmount?: number;
    }

    Optional options to set when generating a transaction

    +

    Type declaration

    • Optional accountSequenceNumber?: AnyNumber
    • Optional expireTimestamp?: number
    • Optional gasUnitPrice?: number
    • Optional maxGasAmount?: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadData.html new file mode 100644 index 000000000..6d6be700a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadData.html @@ -0,0 +1,3 @@ +InputGenerateTransactionPayloadData | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html new file mode 100644 index 000000000..23b11f054 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html @@ -0,0 +1 @@ +InputGenerateTransactionPayloadDataWithRemoteABI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigData.html new file mode 100644 index 000000000..ab6798ca6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigData.html @@ -0,0 +1,2 @@ +InputMultiSigData | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigDataWithRemoteABI.html new file mode 100644 index 000000000..8a9510176 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputMultiSigDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithRemoteABI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputScriptData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputScriptData.html new file mode 100644 index 000000000..c0f31a519 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputScriptData.html @@ -0,0 +1,2 @@ +InputScriptData | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionData.html new file mode 100644 index 000000000..3f95fd625 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionData.html @@ -0,0 +1,5 @@ +InputSimulateTransactionData | @aptos-labs/ts-sdk - v1.3.0

    Type alias InputSimulateTransactionData

    InputSimulateTransactionData: {
        feePayerPublicKey?: PublicKey;
        options?: InputSimulateTransactionOptions;
        secondarySignersPublicKeys?: PublicKey[];
        signerPublicKey: PublicKey;
        transaction: AnyRawTransaction;
    }

    Type declaration

    • Optional feePayerPublicKey?: PublicKey

      For a fee payer transaction (aka Sponsored Transaction)

      +
    • Optional options?: InputSimulateTransactionOptions
    • Optional secondarySignersPublicKeys?: PublicKey[]

      For a fee payer or multi-agent transaction that requires additional signers in

      +
    • signerPublicKey: PublicKey

      For a single signer transaction

      +
    • transaction: AnyRawTransaction

      The transaction to simulate, probably generated by generateTransaction()

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionOptions.html new file mode 100644 index 000000000..a958c09f7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputSimulateTransactionOptions.html @@ -0,0 +1 @@ +InputSimulateTransactionOptions | @aptos-labs/ts-sdk - v1.3.0

    Type alias InputSimulateTransactionOptions

    InputSimulateTransactionOptions: {
        estimateGasUnitPrice?: boolean;
        estimateMaxGasAmount?: boolean;
        estimatePrioritizedGasUnitPrice?: boolean;
    }

    Type declaration

    • Optional estimateGasUnitPrice?: boolean
    • Optional estimateMaxGasAmount?: boolean
    • Optional estimatePrioritizedGasUnitPrice?: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/InputViewRequestData.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputViewRequestData.html new file mode 100644 index 000000000..2fd28ba05 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/InputViewRequestData.html @@ -0,0 +1,2 @@ +InputViewRequestData | @aptos-labs/ts-sdk - v1.3.0

    Type alias InputViewRequestData

    InputViewRequestData: {
        function: MoveFunctionId;
        functionArguments?: MoveValue[];
        typeArguments?: MoveStructId[];
    }

    The data needed to generate a View Request payload

    +

    Type declaration

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerInfo.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerInfo.html new file mode 100644 index 000000000..89df1b5d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerInfo.html @@ -0,0 +1,4 @@ +LedgerInfo | @aptos-labs/ts-sdk - v1.3.0

    Type alias LedgerInfo

    LedgerInfo: {
        block_height: string;
        chain_id: number;
        epoch: string;
        git_hash?: string;
        ledger_timestamp: string;
        ledger_version: string;
        node_role: RoleType;
        oldest_block_height: string;
        oldest_ledger_version: string;
    }

    Type declaration

    • block_height: string
    • chain_id: number

      Chain ID of the current chain

      +
    • epoch: string
    • Optional git_hash?: string

      Git hash of the build of the API endpoint. Can be used to determine the exact +software version used by the API endpoint.

      +
    • ledger_timestamp: string
    • ledger_version: string
    • node_role: RoleType
    • oldest_block_height: string
    • oldest_ledger_version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerVersionArg.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerVersionArg.html new file mode 100644 index 000000000..a30768eb1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/LedgerVersionArg.html @@ -0,0 +1,2 @@ +LedgerVersionArg | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveAddressType.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveAddressType.html new file mode 100644 index 000000000..412e663ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveAddressType.html @@ -0,0 +1 @@ +MoveAddressType | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunction.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunction.html new file mode 100644 index 000000000..593ebd611 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunction.html @@ -0,0 +1,7 @@ +MoveFunction | @aptos-labs/ts-sdk - v1.3.0

    Type alias MoveFunction

    MoveFunction: {
        generic_type_params: MoveFunctionGenericTypeParam[];
        is_entry: boolean;
        is_view: boolean;
        name: string;
        params: string[];
        return: string[];
        visibility: MoveFunctionVisibility;
    }

    Move function

    +

    Type declaration

    • generic_type_params: MoveFunctionGenericTypeParam[]

      Generic type params associated with the Move function

      +
    • is_entry: boolean

      Whether the function can be called as an entry function directly in a transaction

      +
    • is_view: boolean

      Whether the function is a view function or not

      +
    • name: string
    • params: string[]

      Parameters associated with the move function

      +
    • return: string[]

      Return type of the function

      +
    • visibility: MoveFunctionVisibility

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionGenericTypeParam.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionGenericTypeParam.html new file mode 100644 index 000000000..f1b55a167 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionGenericTypeParam.html @@ -0,0 +1,2 @@ +MoveFunctionGenericTypeParam | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionId.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionId.html new file mode 100644 index 000000000..74419587e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveFunctionId.html @@ -0,0 +1 @@ +MoveFunctionId | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModule.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModule.html new file mode 100644 index 000000000..f2094b4c5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModule.html @@ -0,0 +1,5 @@ +MoveModule | @aptos-labs/ts-sdk - v1.3.0

    Type alias MoveModule

    MoveModule: {
        address: string;
        exposed_functions: MoveFunction[];
        friends: MoveModuleId[];
        name: string;
        structs: MoveStruct[];
    }

    A Move module

    +

    Type declaration

    • address: string
    • exposed_functions: MoveFunction[]

      Public functions of the module

      +
    • friends: MoveModuleId[]

      Friends of the module

      +
    • name: string
    • structs: MoveStruct[]

      Structs of the module

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleBytecode.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleBytecode.html new file mode 100644 index 000000000..c79feae3d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleBytecode.html @@ -0,0 +1 @@ +MoveModuleBytecode | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleId.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleId.html new file mode 100644 index 000000000..d8144600c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveModuleId.html @@ -0,0 +1,3 @@ +MoveModuleId | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveObjectType.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveObjectType.html new file mode 100644 index 000000000..5aaba1ffa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveObjectType.html @@ -0,0 +1 @@ +MoveObjectType | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveOptionType.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveOptionType.html new file mode 100644 index 000000000..540c75383 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveOptionType.html @@ -0,0 +1 @@ +MoveOptionType | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveResource.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveResource.html new file mode 100644 index 000000000..57664a338 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveResource.html @@ -0,0 +1 @@ +MoveResource | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveScriptBytecode.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveScriptBytecode.html new file mode 100644 index 000000000..98cf0cbcb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveScriptBytecode.html @@ -0,0 +1,2 @@ +MoveScriptBytecode | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStruct.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStruct.html new file mode 100644 index 000000000..b1679f442 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStruct.html @@ -0,0 +1,6 @@ +MoveStruct | @aptos-labs/ts-sdk - v1.3.0

    Type alias MoveStruct

    MoveStruct: {
        abilities: MoveAbility[];
        fields: MoveStructField[];
        generic_type_params: MoveFunctionGenericTypeParam[];
        is_native: boolean;
        name: string;
    }

    A move struct

    +

    Type declaration

    • abilities: MoveAbility[]

      Abilities associated with the struct

      +
    • fields: MoveStructField[]

      Fields associated with the struct

      +
    • generic_type_params: MoveFunctionGenericTypeParam[]

      Generic types associated with the struct

      +
    • is_native: boolean

      Whether the struct is a native struct of Move

      +
    • name: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructField.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructField.html new file mode 100644 index 000000000..dbf56a68d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructField.html @@ -0,0 +1,2 @@ +MoveStructField | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructId.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructId.html new file mode 100644 index 000000000..23bfa2f74 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructId.html @@ -0,0 +1,2 @@ +MoveStructId | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructType.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructType.html new file mode 100644 index 000000000..7dfb3a2b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveStructType.html @@ -0,0 +1 @@ +MoveStructType | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveType.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveType.html new file mode 100644 index 000000000..8726d63b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveType.html @@ -0,0 +1 @@ +MoveType | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint128Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint128Type.html new file mode 100644 index 000000000..4a224e68c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint128Type.html @@ -0,0 +1 @@ +MoveUint128Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint16Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint16Type.html new file mode 100644 index 000000000..4cfb578ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint16Type.html @@ -0,0 +1 @@ +MoveUint16Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint256Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint256Type.html new file mode 100644 index 000000000..7620647a4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint256Type.html @@ -0,0 +1 @@ +MoveUint256Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint32Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint32Type.html new file mode 100644 index 000000000..7409c8026 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint32Type.html @@ -0,0 +1 @@ +MoveUint32Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint64Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint64Type.html new file mode 100644 index 000000000..e6711e12a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint64Type.html @@ -0,0 +1 @@ +MoveUint64Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint8Type.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint8Type.html new file mode 100644 index 000000000..9251f2021 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveUint8Type.html @@ -0,0 +1,2 @@ +MoveUint8Type | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveValue.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveValue.html new file mode 100644 index 000000000..f67913102 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MoveValue.html @@ -0,0 +1,12 @@ +MoveValue | @aptos-labs/ts-sdk - v1.3.0

    Type alias MoveValue

    Possible Move values acceptable by move functions (entry, view)

    +

    Map of a Move value to the corresponding TypeScript value

    +

    Bool -> boolean

    +

    u8, u16, u32 -> number

    +

    u64, u128, u256 -> string

    +

    String -> string

    +

    Address -> 0x${string}

    +

    Struct - 0x${string}::${string}::${string}

    +

    Object -> 0x${string}

    +

    Vector -> Array<MoveValue>

    +

    Option -> MoveValue | null | undefined

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/MultisigPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/MultisigPayloadResponse.html new file mode 100644 index 000000000..fb2be5398 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/MultisigPayloadResponse.html @@ -0,0 +1 @@ +MultisigPayloadResponse | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderBy.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderBy.html new file mode 100644 index 000000000..fa6635ae9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderBy.html @@ -0,0 +1,3 @@ +OrderBy | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderByValue.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderByValue.html new file mode 100644 index 000000000..755d94ef9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/OrderByValue.html @@ -0,0 +1 @@ +OrderByValue | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ParsingResult.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ParsingResult.html new file mode 100644 index 000000000..85f888a9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ParsingResult.html @@ -0,0 +1,6 @@ +ParsingResult | @aptos-labs/ts-sdk - v1.3.0

    Type alias ParsingResult<T>

    ParsingResult<T>: {
        invalidReason?: T;
        invalidReasonMessage?: string;
        valid: boolean;
    }

    Whereas ParsingError is thrown when parsing fails, e.g. in a fromString function, +this type is returned from "defensive" functions like isValid.

    +

    Type Parameters

    • T

    Type declaration

    • Optional invalidReason?: T

      If valid is false, this will be a code explaining why parsing failed.

      +
    • Optional invalidReasonMessage?: string

      If valid is false, this will be a string explaining why parsing failed.

      +
    • valid: boolean

      True if valid, false otherwise.

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/PendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/PendingTransactionResponse.html new file mode 100644 index 000000000..6f9bde214 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/PendingTransactionResponse.html @@ -0,0 +1 @@ +PendingTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

    Type alias PendingTransactionResponse

    PendingTransactionResponse: {
        expiration_timestamp_secs: string;
        gas_unit_price: string;
        hash: string;
        max_gas_amount: string;
        payload: TransactionPayloadResponse;
        sender: string;
        sequence_number: string;
        signature?: TransactionSignature;
        type: Pending;
    }

    Type declaration

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/PostAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/PostAptosRequestOptions.html new file mode 100644 index 000000000..2dd9944bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/PostAptosRequestOptions.html @@ -0,0 +1 @@ +PostAptosRequestOptions | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/PostRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/PostRequestOptions.html new file mode 100644 index 000000000..a41b079e5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/PostRequestOptions.html @@ -0,0 +1,10 @@ +PostRequestOptions | @aptos-labs/ts-sdk - v1.3.0

    Type alias PostRequestOptions

    PostRequestOptions: {
        acceptType?: MimeType;
        aptosConfig: AptosConfig;
        body?: any;
        contentType?: MimeType;
        originMethod: string;
        overrides?: ClientConfig;
        params?: Record<string, string | AnyNumber | boolean | undefined>;
        path: string;
        type: AptosApiType;
    }

    Type declaration

    • Optional acceptType?: MimeType

      The accepted content type of the response of the API

      +
    • aptosConfig: AptosConfig

      The config for the API client

      +
    • Optional body?: any

      The body of the request, should match the content type of the request

      +
    • Optional contentType?: MimeType

      The content type of the request body

      +
    • originMethod: string

      The name of the API method

      +
    • Optional overrides?: ClientConfig

      Specific client overrides for this request to override aptosConfig

      +
    • Optional params?: Record<string, string | AnyNumber | boolean | undefined>

      The query parameters for the request

      +
    • path: string

      The URL path to the API method

      +
    • type: AptosApiType

      The type of API endpoint to call e.g. fullnode, indexer, etc

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptFunctionArgumentTypes.html new file mode 100644 index 000000000..ccc313ad7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +ScriptFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptPayloadResponse.html new file mode 100644 index 000000000..d37af10b3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptPayloadResponse.html @@ -0,0 +1,3 @@ +ScriptPayloadResponse | @aptos-labs/ts-sdk - v1.3.0

    Type alias ScriptPayloadResponse

    ScriptPayloadResponse: {
        arguments: any[];
        code: MoveScriptBytecode;
        type: string;
        type_arguments: string[];
    }

    Type declaration

    • arguments: any[]

      Arguments of the function

      +
    • code: MoveScriptBytecode
    • type: string
    • type_arguments: string[]

      Type arguments of the function

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptWriteSet.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptWriteSet.html new file mode 100644 index 000000000..62f1e32ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ScriptWriteSet.html @@ -0,0 +1 @@ +ScriptWriteSet | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/SimpleEntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/SimpleEntryFunctionArgumentTypes.html new file mode 100644 index 000000000..0627955cd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/SimpleEntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +SimpleEntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/StateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/StateCheckpointTransactionResponse.html new file mode 100644 index 000000000..d58f119c8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/StateCheckpointTransactionResponse.html @@ -0,0 +1,4 @@ +StateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

    Type alias StateCheckpointTransactionResponse

    StateCheckpointTransactionResponse: {
        accumulator_root_hash: string;
        changes: WriteSetChange[];
        event_root_hash: string;
        gas_used: string;
        hash: string;
        state_change_hash: string;
        state_checkpoint_hash?: string;
        success: boolean;
        timestamp: string;
        type: StateCheckpoint;
        version: string;
        vm_status: string;
    }

    Type declaration

    • accumulator_root_hash: string
    • changes: WriteSetChange[]

      Final state of resources changed by the transaction

      +
    • event_root_hash: string
    • gas_used: string
    • hash: string
    • state_change_hash: string
    • Optional state_checkpoint_hash?: string
    • success: boolean

      Whether the transaction was successful

      +
    • timestamp: string
    • type: StateCheckpoint
    • version: string
    • vm_status: string

      The VM status of the transaction, can tell useful information in a failure

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TableItemRequest.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TableItemRequest.html new file mode 100644 index 000000000..e652ea656 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TableItemRequest.html @@ -0,0 +1,3 @@ +TableItemRequest | @aptos-labs/ts-sdk - v1.3.0

    Type alias TableItemRequest

    TableItemRequest: {
        key: any;
        key_type: MoveValue;
        value_type: MoveValue;
    }

    Table Item request for the GetTableItem API

    +

    Type declaration

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TokenStandard.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TokenStandard.html new file mode 100644 index 000000000..e29109631 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TokenStandard.html @@ -0,0 +1,2 @@ +TokenStandard | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionEd25519Signature.html new file mode 100644 index 000000000..03ecedcf8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionEd25519Signature.html @@ -0,0 +1 @@ +TransactionEd25519Signature | @aptos-labs/ts-sdk - v1.3.0

    Type alias TransactionEd25519Signature

    TransactionEd25519Signature: {
        public_key: string;
        signature: "ed25519_signature";
        type: string;
    }

    Type declaration

    • public_key: string
    • signature: "ed25519_signature"
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionFeePayerSignature.html new file mode 100644 index 000000000..f55c3212f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionFeePayerSignature.html @@ -0,0 +1,3 @@ +TransactionFeePayerSignature | @aptos-labs/ts-sdk - v1.3.0

    Type alias TransactionFeePayerSignature

    TransactionFeePayerSignature: {
        fee_payer_address: string;
        fee_payer_signer: AccountSignature;
        secondary_signer_addresses: string[];
        secondary_signers: AccountSignature[];
        sender: AccountSignature;
        type: "fee_payer_signature";
    }

    Type declaration

    • fee_payer_address: string
    • fee_payer_signer: AccountSignature
    • secondary_signer_addresses: string[]

      The other involved parties' addresses

      +
    • secondary_signers: AccountSignature[]

      The associated signatures, in the same order as the secondary addresses

      +
    • sender: AccountSignature
    • type: "fee_payer_signature"

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiAgentSignature.html new file mode 100644 index 000000000..1499ff769 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiAgentSignature.html @@ -0,0 +1,3 @@ +TransactionMultiAgentSignature | @aptos-labs/ts-sdk - v1.3.0

    Type alias TransactionMultiAgentSignature

    TransactionMultiAgentSignature: {
        secondary_signer_addresses: string[];
        secondary_signers: AccountSignature[];
        sender: AccountSignature;
        type: "multi_agent_signature";
    }

    Type declaration

    • secondary_signer_addresses: string[]

      The other involved parties' addresses

      +
    • secondary_signers: AccountSignature[]

      The associated signatures, in the same order as the secondary addresses

      +
    • sender: AccountSignature
    • type: "multi_agent_signature"

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiEd25519Signature.html new file mode 100644 index 000000000..4106c8c5a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionMultiEd25519Signature.html @@ -0,0 +1,4 @@ +TransactionMultiEd25519Signature | @aptos-labs/ts-sdk - v1.3.0

    Type alias TransactionMultiEd25519Signature

    TransactionMultiEd25519Signature: {
        bitmap: string;
        public_keys: string[];
        signatures: string[];
        threshold: number;
        type: "multi_ed25519_signature";
    }

    Type declaration

    • bitmap: string
    • public_keys: string[]

      The public keys for the Ed25519 signature

      +
    • signatures: string[]

      Signature associated with the public keys in the same order

      +
    • threshold: number

      The number of signatures required for a successful transaction

      +
    • type: "multi_ed25519_signature"

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionPayloadResponse.html new file mode 100644 index 000000000..eee75ca0a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionPayloadResponse.html @@ -0,0 +1 @@ +TransactionPayloadResponse | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionResponse.html new file mode 100644 index 000000000..cde2a7a5d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionResponse.html @@ -0,0 +1 @@ +TransactionResponse | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSecp256k1Signature.html new file mode 100644 index 000000000..0b52db0d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSecp256k1Signature.html @@ -0,0 +1 @@ +TransactionSecp256k1Signature | @aptos-labs/ts-sdk - v1.3.0

    Type alias TransactionSecp256k1Signature

    TransactionSecp256k1Signature: {
        public_key: string;
        signature: "secp256k1_ecdsa_signature";
        type: string;
    }

    Type declaration

    • public_key: string
    • signature: "secp256k1_ecdsa_signature"
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSignature.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSignature.html new file mode 100644 index 000000000..28ca33913 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/TransactionSignature.html @@ -0,0 +1,2 @@ +TransactionSignature | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint128.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint128.html new file mode 100644 index 000000000..f5427b126 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint128.html @@ -0,0 +1 @@ +Uint128 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint16.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint16.html new file mode 100644 index 000000000..c47e0a889 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint16.html @@ -0,0 +1 @@ +Uint16 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint256.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint256.html new file mode 100644 index 000000000..1ffe9bb99 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint256.html @@ -0,0 +1 @@ +Uint256 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint32.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint32.html new file mode 100644 index 000000000..01da74468 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint32.html @@ -0,0 +1 @@ +Uint32 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint64.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint64.html new file mode 100644 index 000000000..4741fdf82 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint64.html @@ -0,0 +1 @@ +Uint64 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint8.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint8.html new file mode 100644 index 000000000..99ce154e1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/Uint8.html @@ -0,0 +1,2 @@ +Uint8 | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/UserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/UserTransactionResponse.html new file mode 100644 index 000000000..28ff996bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/UserTransactionResponse.html @@ -0,0 +1,5 @@ +UserTransactionResponse | @aptos-labs/ts-sdk - v1.3.0

    Type alias UserTransactionResponse

    UserTransactionResponse: {
        accumulator_root_hash: string;
        changes: WriteSetChange[];
        event_root_hash: string;
        events: Event[];
        expiration_timestamp_secs: string;
        gas_unit_price: string;
        gas_used: string;
        hash: string;
        max_gas_amount: string;
        payload: TransactionPayloadResponse;
        sender: string;
        sequence_number: string;
        signature?: TransactionSignature;
        state_change_hash: string;
        state_checkpoint_hash?: string;
        success: boolean;
        timestamp: string;
        type: User;
        version: string;
        vm_status: string;
    }

    Type declaration

    • accumulator_root_hash: string
    • changes: WriteSetChange[]

      Final state of resources changed by the transaction

      +
    • event_root_hash: string
    • events: Event[]

      Events generated by the transaction

      +
    • expiration_timestamp_secs: string
    • gas_unit_price: string
    • gas_used: string
    • hash: string
    • max_gas_amount: string
    • payload: TransactionPayloadResponse
    • sender: string
    • sequence_number: string
    • Optional signature?: TransactionSignature
    • state_change_hash: string
    • Optional state_checkpoint_hash?: string
    • success: boolean

      Whether the transaction was successful

      +
    • timestamp: string
    • type: User
    • version: string
    • vm_status: string

      The VM status of the transaction, can tell useful information in a failure

      +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/ViewRequest.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/ViewRequest.html new file mode 100644 index 000000000..fe70b721d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/ViewRequest.html @@ -0,0 +1,5 @@ +ViewRequest | @aptos-labs/ts-sdk - v1.3.0

    Type alias ViewRequest

    ViewRequest: {
        function: MoveFunctionId;
        functionArguments: MoveValue[];
        typeArguments: MoveStructId[];
    }

    View request for the Move view function API

    +

    type MoveFunctionId = ${string}::${string}::${string};

    +

    Type declaration

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WaitForTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WaitForTransactionOptions.html new file mode 100644 index 000000000..6d548c73c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WaitForTransactionOptions.html @@ -0,0 +1,2 @@ +WaitForTransactionOptions | @aptos-labs/ts-sdk - v1.3.0

    Type alias WaitForTransactionOptions

    WaitForTransactionOptions: {
        checkSuccess?: boolean;
        timeoutSecs?: number;
        waitForIndexer?: boolean;
    }

    Option properties to pass for waitForTransaction() function

    +

    Type declaration

    • Optional checkSuccess?: boolean
    • Optional timeoutSecs?: number
    • Optional waitForIndexer?: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSet.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSet.html new file mode 100644 index 000000000..2e93dbf5c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSet.html @@ -0,0 +1 @@ +WriteSet | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChange.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChange.html new file mode 100644 index 000000000..5240036de --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChange.html @@ -0,0 +1,2 @@ +WriteSetChange | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteModule.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteModule.html new file mode 100644 index 000000000..23cd0d680 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteModule.html @@ -0,0 +1,2 @@ +WriteSetChangeDeleteModule | @aptos-labs/ts-sdk - v1.3.0

    Type alias WriteSetChangeDeleteModule

    WriteSetChangeDeleteModule: {
        address: string;
        module: MoveModuleId;
        state_key_hash: string;
        type: string;
    }

    Type declaration

    • address: string
    • module: MoveModuleId
    • state_key_hash: string

      State key hash

      +
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteResource.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteResource.html new file mode 100644 index 000000000..c15cb5305 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteResource.html @@ -0,0 +1 @@ +WriteSetChangeDeleteResource | @aptos-labs/ts-sdk - v1.3.0

    Type alias WriteSetChangeDeleteResource

    WriteSetChangeDeleteResource: {
        address: string;
        resource: string;
        state_key_hash: string;
        type: string;
    }

    Type declaration

    • address: string
    • resource: string
    • state_key_hash: string
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteTableItem.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteTableItem.html new file mode 100644 index 000000000..d644c6d01 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeDeleteTableItem.html @@ -0,0 +1 @@ +WriteSetChangeDeleteTableItem | @aptos-labs/ts-sdk - v1.3.0

    Type alias WriteSetChangeDeleteTableItem

    WriteSetChangeDeleteTableItem: {
        data?: DeletedTableData;
        handle: string;
        key: string;
        state_key_hash: string;
        type: string;
    }

    Type declaration

    • Optional data?: DeletedTableData
    • handle: string
    • key: string
    • state_key_hash: string
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteModule.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteModule.html new file mode 100644 index 000000000..0b8cd4110 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteModule.html @@ -0,0 +1 @@ +WriteSetChangeWriteModule | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteResource.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteResource.html new file mode 100644 index 000000000..cea746e71 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteResource.html @@ -0,0 +1 @@ +WriteSetChangeWriteResource | @aptos-labs/ts-sdk - v1.3.0

    Type alias WriteSetChangeWriteResource

    WriteSetChangeWriteResource: {
        address: string;
        data: MoveResource;
        state_key_hash: string;
        type: string;
    }

    Type declaration

    • address: string
    • data: MoveResource
    • state_key_hash: string
    • type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteTableItem.html b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteTableItem.html new file mode 100644 index 000000000..668ea637b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/types/WriteSetChangeWriteTableItem.html @@ -0,0 +1 @@ +WriteSetChangeWriteTableItem | @aptos-labs/ts-sdk - v1.3.0

    Type alias WriteSetChangeWriteTableItem

    WriteSetChangeWriteTableItem: {
        data?: DecodedTableData;
        handle: string;
        key: string;
        state_key_hash: string;
        type: string;
        value: string;
    }

    Type declaration

    • Optional data?: DecodedTableData
    • handle: string
    • key: string
    • state_key_hash: string
    • type: string
    • value: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_BIP44_REGEX.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_BIP44_REGEX.html new file mode 100644 index 000000000..523c0e71c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_BIP44_REGEX.html @@ -0,0 +1 @@ +APTOS_BIP44_REGEX | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_COIN.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_COIN.html new file mode 100644 index 000000000..99608b09c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_COIN.html @@ -0,0 +1,2 @@ +APTOS_COIN | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_HARDENED_REGEX.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_HARDENED_REGEX.html new file mode 100644 index 000000000..3404fb17b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/APTOS_HARDENED_REGEX.html @@ -0,0 +1,2 @@ +APTOS_HARDENED_REGEX | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_MAX_GAS_AMOUNT.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_MAX_GAS_AMOUNT.html new file mode 100644 index 000000000..5dd898bc1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_MAX_GAS_AMOUNT.html @@ -0,0 +1,5 @@ +DEFAULT_MAX_GAS_AMOUNT | @aptos-labs/ts-sdk - v1.3.0

    Variable DEFAULT_MAX_GAS_AMOUNTConst

    DEFAULT_MAX_GAS_AMOUNT: 200000 = 200000

    The default max gas amount when none is given.

    +

    This is the maximum number of gas units that will be used by a transaction before being rejected.

    +

    Note that max gas amount varies based on the transaction. A larger transaction will go over this +default gas amount, and the value will need to be changed for the specific transaction.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_NETWORK.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_NETWORK.html new file mode 100644 index 000000000..474d5b2c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_NETWORK.html @@ -0,0 +1 @@ +DEFAULT_NETWORK | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html new file mode 100644 index 000000000..dda5bdfd1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html @@ -0,0 +1,5 @@ +DEFAULT_TXN_EXP_SEC_FROM_NOW | @aptos-labs/ts-sdk - v1.3.0

    Variable DEFAULT_TXN_EXP_SEC_FROM_NOWConst

    DEFAULT_TXN_EXP_SEC_FROM_NOW: 20 = 20

    The default transaction expiration seconds from now.

    +

    This time is how long until the blockchain nodes will reject the transaction.

    +

    Note that the transaction expiration time varies based on network connection and network load. It may need to be +increased for the transaction to be processed.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html new file mode 100644 index 000000000..a3cfb3270 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html @@ -0,0 +1,4 @@ +DEFAULT_TXN_TIMEOUT_SEC | @aptos-labs/ts-sdk - v1.3.0

    Variable DEFAULT_TXN_TIMEOUT_SECConst

    DEFAULT_TXN_TIMEOUT_SEC: 20 = 20

    The default number of seconds to wait for a transaction to be processed.

    +

    This time is the amount of time that the SDK will wait for a transaction to be processed when waiting for +the results of the transaction. It may take longer based on network connection and network load.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/HARDENED_OFFSET.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/HARDENED_OFFSET.html new file mode 100644 index 000000000..b7dcf4d61 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/HARDENED_OFFSET.html @@ -0,0 +1 @@ +HARDENED_OFFSET | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToChainId.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToChainId.html new file mode 100644 index 000000000..645968c74 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToChainId.html @@ -0,0 +1 @@ +NetworkToChainId | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToFaucetAPI.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToFaucetAPI.html new file mode 100644 index 000000000..77bca3860 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToFaucetAPI.html @@ -0,0 +1 @@ +NetworkToFaucetAPI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToIndexerAPI.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToIndexerAPI.html new file mode 100644 index 000000000..d14099bd7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToIndexerAPI.html @@ -0,0 +1 @@ +NetworkToIndexerAPI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNetworkName.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNetworkName.html new file mode 100644 index 000000000..f61f7c8a4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNetworkName.html @@ -0,0 +1 @@ +NetworkToNetworkName | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNodeAPI.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNodeAPI.html new file mode 100644 index 000000000..68b6e94ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/NetworkToNodeAPI.html @@ -0,0 +1 @@ +NetworkToNodeAPI | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_SALT.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_SALT.html new file mode 100644 index 000000000..d3ad367e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_SALT | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html b/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html new file mode 100644 index 000000000..b0c0ad150 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.3.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_WITH_DATA_SALT | @aptos-labs/ts-sdk - v1.3.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index 4b15d2360..d651b0c29 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,6 +5,7 @@ This is a repository of all Aptos TypeScript SDK documentation by version. +- [Stable - @aptos-labs/ts-sdk-1.3.0](@aptos-labs/ts-sdk-1.3.0) - [Stable - @aptos-labs/ts-sdk-1.2.0](@aptos-labs/ts-sdk-1.2.0) - [Stable - @aptos-labs/ts-sdk-1.1.0](@aptos-labs/ts-sdk-1.1.0) - [Stable - @aptos-labs/ts-sdk-1.0.0](@aptos-labs/ts-sdk-1.0.0) diff --git a/package.json b/package.json index 64a0c2431..1bae4bbb1 100644 --- a/package.json +++ b/package.json @@ -83,5 +83,5 @@ "typedoc": "^0.25.4", "typescript": "^5.3.3" }, - "version": "1.2.0" + "version": "1.3.0" } diff --git a/src/version.ts b/src/version.ts index 8d6a14fe2..a5e83213a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -6,4 +6,4 @@ * * hardcoded for now, we would want to have it injected dynamically */ -export const VERSION = "1.2.0"; +export const VERSION = "1.3.0";