diff --git a/CHANGELOG.md b/CHANGELOG.md index a04c4398b..0ba0c8c24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to the Aptos TypeScript SDK will be captured in this file. T # Unreleased +# 1.28.0 (2024-09-19) + - Support `Serialized Type` to Script txn. Now can use vector for example. - Add optional address parameter to MultiKeyAccount constructor. - Populate `coinType` for `getAccountCoinAmount` if only `faMetadataAddress` is provided. diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/.nojekyll b/docs/@aptos-labs/ts-sdk-1.28.0/.nojekyll new file mode 100644 index 000000000..e2ac6616a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.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.28.0/assets/highlight.css b/docs/@aptos-labs/ts-sdk-1.28.0/assets/highlight.css new file mode 100644 index 000000000..2f868647c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.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.28.0/assets/icons.js b/docs/@aptos-labs/ts-sdk-1.28.0/assets/icons.js new file mode 100644 index 000000000..b79c9e89f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/assets/icons.js @@ -0,0 +1,15 @@ +(function(svg) { + svg.innerHTML = ``; + svg.style.display = 'none'; + if (location.protocol === 'file:') { + if (document.readyState === 'loading') document.addEventListener('DOMContentLoaded', updateUseElements); + else updateUseElements() + function updateUseElements() { + document.querySelectorAll('use').forEach(el => { + if (el.getAttribute('href').includes('#icon-')) { + el.setAttribute('href', el.getAttribute('href').replace(/.*#/, '#')); + } + }); + } + } +})(document.body.appendChild(document.createElementNS('http://www.w3.org/2000/svg', 'svg'))) \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/assets/icons.svg b/docs/@aptos-labs/ts-sdk-1.28.0/assets/icons.svg new file mode 100644 index 000000000..7dead6118 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/assets/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/assets/main.js b/docs/@aptos-labs/ts-sdk-1.28.0/assets/main.js new file mode 100644 index 000000000..d6f138860 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/assets/main.js @@ -0,0 +1,59 @@ +"use strict"; +"use strict";(()=>{var Ce=Object.create;var ne=Object.defineProperty;var Pe=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=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Ce(_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),y=s.str.charAt(1),p;y in s.node.edges?p=s.node.edges[y]:(p=new t.TokenSet,s.node.edges[y]=p),s.str.length==1&&(p.final=!0),i.push({node:p,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.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}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()}showPage(){document.body.style.display&&(console.log("Show page"),document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){console.log("Scorlling");let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}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&&!e.checkVisibility()){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}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(()=>{Ve(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(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 Ve(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 y=document.createElement("li");y.classList.value=l.classes??"";let p=document.createElement("a");p.href=r.base+l.url,p.innerHTML=u+d,y.append(p),e.appendChild(y)}}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 Ne(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 He={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>He[e])}var I=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",fe="mousemove",H="mouseup",J={x:0,y:0},pe=!1,ee=!1,Be=!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&&(Be=!0,F="touchstart",fe="touchmove",H="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(fe,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(H,()=>{ee=!1});document.addEventListener("click",t=>{pe&&(t.preventDefault(),t.stopImmediatePropagation(),pe=!1)});var X=class extends I{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(H,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(F,n=>this.onDocumentPointerDown(n)),document.addEventListener(H,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){D||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!D&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var ye=document.head.appendChild(document.createElement("style"));ye.dataset.for="filters";var Y=class extends I{constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),ye.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.app.updateIndexVisibility()}};var Z=class extends I{constructor(e){super(e),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 n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.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,ve(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ve(t.value)})}function ve(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.showPage(),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.pathname===r.pathname&&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.28.0/assets/navigation.js b/docs/@aptos-labs/ts-sdk-1.28.0/assets/navigation.js new file mode 100644 index 000000000..004c7e1df --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.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.28.0/assets/search.js b/docs/@aptos-labs/ts-sdk-1.28.0/assets/search.js new file mode 100644 index 000000000..badd6ed7c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.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.28.0/assets/style.css b/docs/@aptos-labs/ts-sdk-1.28.0/assets/style.css new file mode 100644 index 000000000..778b94927 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/assets/style.css @@ -0,0 +1,1412 @@ +: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: #a55c0e; + --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: #e07d13; + --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:not(.link), +h2 > a:not(.link), +h3 > a:not(.link), +h4 > a:not(.link), +h5 > a:not(.link), +h6 > a:not(.link) { + 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 */ +footer { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} +.tsd-generator { + margin: 0 1em; +} + +.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: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + 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-full-hierarchy:not(:last-child) { + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid var(--color-accent); +} +.tsd-full-hierarchy, +.tsd-full-hierarchy ul { + list-style: none; + margin: 0; + padding: 0; +} +.tsd-full-hierarchy ul { + padding-left: 1.5rem; +} +.tsd-full-hierarchy a { + padding: 0.25rem 0 !important; + font-size: 1rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} + +.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.25rem); + display: flex; + align-items: center; +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: flex; + width: calc(100% - 0.25rem); + 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-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.28.0/classes/Account.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Account.html new file mode 100644 index 000000000..f1cea0b27 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Account.html @@ -0,0 +1,51 @@ +Account | @aptos-labs/ts-sdk - v1.28.0

Class AccountAbstract

Interface for a generic Aptos account.

+

The interface is defined as abstract class to provide a single entrypoint for account generation, +either through Account.generate() or Account.fromDerivationPath. +Despite this being an abstract class, it should be treated as an interface and enforced using +the implements keyword.

+

Note: Generating an account instance does not create the account on-chain.

+

Implemented by

Constructors

Properties

accountAddress: AccountAddress

Account address associated with the account

+
publicKey: AccountPublicKey

Public key associated with the account

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+

Methods

  • Returns Account

    Account

    +

    Deprecated

    use fromPrivateKey instead. +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.

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAddress.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAddress.html new file mode 100644 index 000000000..367d73b46 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAddress.html @@ -0,0 +1,153 @@ +AccountAddress | @aptos-labs/ts-sdk - v1.28.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 (view full)

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.

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

Class AccountAuthenticatorAbstract

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorEd25519.html new file mode 100644 index 000000000..1bbedc5b0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorEd25519.html @@ -0,0 +1,21 @@ +AccountAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..3765a8ba3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountAuthenticatorMultiEd25519.html @@ -0,0 +1,21 @@ +AccountAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Class AccountAuthenticatorMultiKey

AccountAuthenticatorMultiKey for a multi signer

+

Param: public_keys

MultiKey

+

Param: signatures

Signature

+

Hierarchy (view full)

Constructors

Properties

public_keys: MultiKey
signatures: MultiKeySignature

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

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

Class AccountAuthenticatorSingleKey

AccountAuthenticatorSingleKey for a single signer

+

Param: public_key

AnyPublicKey

+

Param: signature

AnySignature

+

Hierarchy (view full)

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

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

Class AccountPublicKeyAbstract

An abstract representation of an account public key.

+

Provides a common interface for deriving an authentication key.

+

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountSequenceNumber.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountSequenceNumber.html new file mode 100644 index 000000000..6becb023a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AccountSequenceNumber.html @@ -0,0 +1,29 @@ +AccountSequenceNumber | @aptos-labs/ts-sdk - v1.28.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>

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AnyPublicKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AnyPublicKey.html new file mode 100644 index 000000000..37e8ac12c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AnyPublicKey.html @@ -0,0 +1,34 @@ +AnyPublicKey | @aptos-labs/ts-sdk - v1.28.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 (view full)

Constructors

Properties

publicKey: PublicKey

Reference to the inner public key

+

Index of the underlying enum variant

+

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

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

Instance of signature that uses the SingleKey authentication scheme. +This signature can only be generated by a SingleKeySigner, since it uses the +same authentication scheme.

+

Hierarchy (view full)

Constructors

Properties

signature: Signature

Index of the underlying enum variant

+

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Aptos.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Aptos.html new file mode 100644 index 000000000..36baebf27 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Aptos.html @@ -0,0 +1,805 @@ +Aptos | @aptos-labs/ts-sdk - v1.28.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.

+

Example

const aptos = new Aptos();
+
+

Hierarchy

  • Account
  • ANS
  • Coin
  • DigitalAsset
  • Event
  • Faucet
  • FungibleAsset
  • General
  • Keyless
  • Staking
  • Table
  • AptosObject
  • Omit<Transaction, "build" | "simulate" | "submit" | "batch">
    • Aptos

Constructors

Properties

Methods

addDigitalAssetPropertyTransaction +addDigitalAssetTypedPropertyTransaction +batchTransactionsForSingleAccount +burnDigitalAssetTransaction +createCollectionTransaction +deriveAccountFromPrivateKey +deriveKeylessAccount +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 +getCollectionDataByCollectionId +getCollectionDataByCreatorAddress +getCollectionDataByCreatorAddressAndCollectionName +getCollectionId +getCurrentDigitalAssetOwnership +getCurrentFungibleAssetBalances +getDelegatedStakingActivities +getDigitalAssetActivity +getDigitalAssetData +getDomainSubdomains +getEvents +getExpiration +getFungibleAssetActivities +getFungibleAssetMetadata +getFungibleAssetMetadataByAssetType +getFungibleAssetMetadataByCreatorAddress +getGasPriceEstimation +getIndexerLastSuccessVersion +getLedgerInfo +getModuleEventsByEventType +getName +getNumberOfDelegators +getNumberOfDelegatorsForAllPools +getObjectDataByObjectAddress +getOwnedDigitalAssets +getOwnerAddress +getPepper +getPrimaryName +getProcessorStatus +getProof +getSigningMessage +getTableItem +getTableItemsData +getTableItemsMetadata +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 +viewJson +waitForTransaction +

Constructors

Properties

account: Account
ans: ANS
coin: Coin
config: AptosConfig
digitalAsset: DigitalAsset
event: Event
faucet: Faucet
fungibleAsset: FungibleAsset
general: General
keyless: Keyless
object: AptosObject
staking: Staking
table: Table
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

    +

    Example

    const transaction = await aptos.addDigitalAssetPropertyTransaction({
    creator: alice,
    propertyKey: "newKey",
    propertyType: "BOOLEAN",
    propertyValue: true,
    digitalAssetAddress: "0x123",
    }); +
    +
  • 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

    +

    Example

    const transaction = await aptos.addDigitalAssetTypedPropertyTransaction({
    creator: alice,
    propertyKey: "typedKey",
    propertyType: "STRING",
    propertyValue: "hello",
    digitalAssetAddress: "0x123",
    }); +
    +
  • Parameters

    Returns Promise<void>

    void. Throws if any error

    +

    Deprecated

    Prefer to use aptos.transaction.batch.forSingleAccount()

    +

    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.

    +
  • Creates a new collection within the specified account

    +

    Parameters

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that when submitted will create the collection.

    +

    Example

    const transaction = await aptos.createCollectionTransaction({
    creator: alice,
    description: "collectionDescription",
    name: "collectionName",
    uri: "collection-uri.com",
    }); +
    +
  • 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

    +

    Example

    const account = await aptos.deriveAccountFromPrivateKey({privateKey:new Ed25519PrivateKey("0x123")})
    +
    +
  • Derives the Keyless Account from the JWT token and corresponding EphemeralKeyPair. It will lookup the pepper from +the pepper service if not explicitly provided. It will compute the proof via the proving service. It will ch

    +

    Parameters

    • args: {
          ephemeralKeyPair: EphemeralKeyPair;
          jwt: string;
          pepper?: HexInput;
          proofFetchCallback?: ProofFetchCallback;
          uidKey?: string;
      }
      • ephemeralKeyPair: EphemeralKeyPair

        the EphemeralKeyPair used to generate the nonce in the JWT token

        +
      • jwt: string

        JWT token

        +
      • Optional pepper?: HexInput

        the pepper

        +
      • Optional proofFetchCallback?: ProofFetchCallback

        a callback function that if set, the fetch of the proof will be done in the background. Once +fetching finishes the callback function will be called. This should be used to provide a more responsive user experience as now +they are not blocked on fetching the proof. Thus the function will return much more quickly.

        +
      • Optional uidKey?: string

        a key in the JWT token to use to set the uidVal in the IdCommitment

        +

    Returns Promise<KeylessAccount>

    A KeylessAccount that can be used to sign transactions

    +
  • 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

    +

    Example

    const accountAPTAmount = await aptos.getAccountAPTAmount({accountAddress:"0x123"})
    +
    +
  • Queries the account's coin amount by the coin type

    +

    Parameters

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

        The account address we want to get the total count for

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

        The coin type to query. + Note: faMetadataAddress will automatically fill this in if not provided when migrated to fungible assets

        +
      • Optional faMetadataAddress?: AccountAddressInput

        The fungible asset metadata address to query. + Note: coinType will automatically fill this in if not provided when migrated to fungible assets

        +
      • Optional minimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to, before querying

        +

    Returns Promise<number>

    Current amount of account's coin

    +

    Example

    const accountCoinAmount = await aptos.getAccountCoinAmount({accountAddress:"0x123", coinType:"0x1::aptos_coin::AptosCoin"})
    +
    +
  • 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

    +

    Example

    const accountCoinsCount = await aptos.getAccountCoinsCount({accountAddress:"0x123"})
    +
    +
  • Queries an account's coins data

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              amount?: any;
              asset_type?: null | string;
              is_frozen: boolean;
              is_primary?: null | 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?: null | 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?: null | string;
            is_frozen: boolean;
            is_primary?: null | 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?: null | string;
        }> & WhereArg<CurrentFungibleAssetBalancesBoolExp>

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        is_frozen: boolean;
        is_primary?: null | 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?: null | string;
    }[]>

    Array with the coins data

    +

    Example

    const accountCoinsData = await aptos.getAccountCoinsData({accountAddress:"0x123"})
    +
    +
  • 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

    +

    Example

    const accountCollectionsWithOwnedTokens = await aptos.getAccountCollectionsWithOwnedTokens({accountAddress:"0x123"})
    +
    +
  • Fetches all top level domain names for an account

    +

    Parameters

    • args: GetAccountDomainsArgs

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        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

    +

    Example

    const events = await aptos.getAccountEventsByCreationNumber({accountAddress:"0x123",creationNumber: 0})
    +
    +
  • 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

    +

    Example

    const events = await aptos.getAccountEventsByEventType({accountAddress:"0x123",eventType: "0x1::transaction_fee::FeeStatement"})
    +
    +
  • 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"
    } +
    +
  • Queries for a specific account module given account address and module name

    +

    Parameters

    Returns Promise<MoveModuleBytecode>

    Account module

    +

    Example

    const module = await aptos.getAccountModule({accountAddress:"0x456"}) +// An example of an account module response

    +
    {
    bytecode: "0xa11ceb0b0600000006010002030206050807070f0d081c200",
    abi: { address: "0x1" }
    } +
    +
  • Fetches all names for an account (both top level domains and subdomains)

    +

    Parameters

    • args: GetAccountNamesArgs

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        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

    +

    Example

    const accountOwnedObjects = await aptos.getAccountOwnedObjects({accountAddress:"0x123"})
    +
    +
  • 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;
                  };
                  decimals?: any;
                  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;
                };
                decimals?: any;
                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;
            };
            decimals?: any;
            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

    +

    Example

    const accountOwnedTokens = await aptos.getAccountOwnedTokens({accountAddress:"0x456"})
    +
    +
  • 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;
                  };
                  decimals?: any;
                  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;
                };
                decimals?: any;
                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;
            };
            decimals?: any;
            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

    +

    Example

    const accountOwnedTokens = await aptos.getAccountOwnedTokensFromCollectionAddress({accountAddress:"0x123", collectionAddress:"0x456"})
    +
    +
  • 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

    const resource = await aptos.getAccountResource({accountAddress:"0x456"})
    +
    +
  • Fetches all subdomains names for an account

    +

    Parameters

    • args: GetAccountSubdomainsArgs

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        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

    +

    Example

    const tokensCount = await aptos.getAccountTokensCount({accountAddress:"0x456"})
    +
    +
  • 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

    +

    Example

    const accountTransactionsCount = await aptos.getAccountTransactionsCount({accountAddress:"0x123"})
    +
    +
  • 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

    +

    Example

    const block = await aptos.getBlockByVersion({blockHeight:5})
    +
    +
  • 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

    +

    Example

    const block = await aptos.getBlockByVersion({ledgerVersion:5})
    +
    +
  • Queries for the chain id

    +

    Returns Promise<number>

    The chain id

    +

    Example

    const chainId = await aptos.getChainId()
    +
    +
  • Queries top user transactions

    +

    Parameters

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

        The number of transactions to return

        +

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

    GetChainTopUserTransactionsResponse

    +

    Example

    const topUserTransactions = await aptos.getChainTopUserTransactions({limit:5})
    +
    +
  • Parameters

    Returns Promise<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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

    +

    Deprecated

    use getCollectionDataByCreatorAddressAndCollectionName - this function +will be removed in the next major release

    +

    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

    +

    Example

    const collection = await aptos.getCollectionData({creatorAddress:"0x123",collectionName:"myCollection"})
    +
    +
  • Queries data of a specific collection by the collection ID.

    +

    Parameters

    Returns Promise<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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

    +

    Example

    const collection = await aptos.getCollectionDataByCollectionId({collectionId:"0x123"})
    +
    +
  • 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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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

    +

    Example

    const collection = await aptos.getCollectionDataByCreatorAddressAnd({creatorAddress:"0x123"})
    +
    +
  • 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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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

    +

    Example

    const collection = await aptos.getCollectionDataByCreatorAddressAndCollectionName({
    creatorAddress:"0x123",
    collectionName:"myCollection"
    }) +
    +
  • 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

    +

    Example

    const collection = await aptos.getCollectionId({creatorAddress:"0x123",collectionName:"myCollection"})
    +
    +
  • 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;
            };
            decimals?: any;
            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.

    +

    Example

    const digitalAssetOwner = await aptos.getCurrentDigitalAssetOwnership({digitalAssetAddress:"0x123"})
    +
    +
  • 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>

        Optional configuration for pagination and filtering

        +

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

    A list of fungible asset metadata

    +

    Example

    const fungibleAssetBalances = await aptos.getCurrentFungibleAssetBalances()
    +
    +
  • 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

    +

    Example

    const delegators = await aptos.getDelegatedStakingActivities({delegatorAddress:"0x123",poolAddress:"0x456"})
    +
    +
  • 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.

    +

    Example

    const digitalAssetActivity = await aptos.getDigitalAssetActivity({digitalAssetAddress:"0x123"})
    +
    +
  • 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;
        };
        decimals?: any;
        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.

    +

    Example

    const digitalAsset = await aptos.getDigitalAssetData({digitalAssetAddress:"0x123"})
    +
    +
  • Fetches all subdomains names for a given domain. Note, this will not return the domain itself.

    +

    Parameters

    • args: GetDomainSubdomainsArgs

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        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

    const events = await aptos.getEvents()
    // with filtering
    const events = await aptos.getEvents({options: { where: { account_address: { _eq: "0x123" } } }}); +
    +
  • Retrieve the expiration time of a domain name or subdomain name from the contract.

    +

    Parameters

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

        A string of the name to retrieve

        +

    Returns Promise<undefined | number>

    number as a unix timestamp in milliseconds.

    +

    Example

    // 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 +
    +
  • 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>

        Optional configuration for pagination and filtering

        +

    Returns Promise<{
        amount?: any;
        asset_type?: null | 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?: null | 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

    +

    Example

    const fungibleAssetActivities = await aptos.getFungibleAssetActivities()
    +
    +
  • Queries all fungible asset metadata.

    +

    Parameters

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

        Optional ledger version to sync up to, before querying

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

        Optional configuration for pagination and filtering

        +

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

    A list of fungible asset metadata

    +

    Example

    const fungibleAsset = await aptos.getFungibleAssetMetadata()
    +
    +
  • Queries a fungible asset metadata by the asset type

    +

    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;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        supply_v2?: any;
        symbol: string;
        token_standard: string;
    }>

    A fungible asset metadata item

    +

    Example

    const fungibleAsset = await aptos.getFungibleAssetMetadataByAssetType({assetType:"0x123::test_coin::TestCoin"})
    +
    +
  • Queries a fungible asset metadata by the creator address

    +

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

    +

    Parameters

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

    A fungible asset metadata item

    +

    Example

    const fungibleAsset = await aptos.getFungibleAssetMetadataByCreatorAddress({creatorAddress:"0x123"})
    +
    +
  • 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>

    Example

    const version = await aptos.getIndexerLastSuccessVersion()
    +
    +
  • Queries for the Aptos ledger info

    +

    Returns Promise<LedgerInfo>

    Aptos Ledger Info

    +

    Example

    const ledgerInfo = await aptos.getLedgerInfo() +// 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"
    } +
    +
  • Get module events by event type

    +

    Parameters

    • args: {
          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;
          }>;
      }
      • 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

    +

    Example

    const events = await aptos.getModuleEventsByEventType({eventType:"0x1::transaction_fee::FeeStatement"})
    +
    +
  • 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;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        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

    +

    Example

    const delegators = await aptos.getNumberOfDelegators({poolAddress:"0x123"})
    +
    +
  • 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

    +

    Example

    const delegators = await aptos.getNumberOfDelegatorsForAllPools()
    +
    +
  • Fetch the object data based on the oabject address

    +

    Parameters

    • args: {
          minimumLedgerVersion?: AnyNumber;
          objectAddress: AccountAddressInput;
          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;
          }>;
      }
      • Optional minimumLedgerVersion?: AnyNumber
      • objectAddress: AccountAddressInput

        The object address

        +
      • 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;
        }>

        Configuration options for waitForTransaction

        +

    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;
    }>

    The object data

    +

    Example

    const object = await aptos.getObjectDataByObjectAddress({objectAddress:"0x123"})
    +
    +
  • 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;
                  };
                  decimals?: any;
                  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;
                };
                decimals?: any;
                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;
            };
            decimals?: any;
            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.

    +

    Example

    const digitalAssets = await aptos.getOwnedDigitalAssets({ownerAddress:"0x123"})
    +
    +
  • Retrieve the owner address of a domain name or subdomain name from the contract.

    +

    Parameters

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

        A string of the name to retrieve

        +

    Returns Promise<undefined | AccountAddress>

    AccountAddress if the name is owned, undefined otherwise

    +

    Example

    // Will return the owner address of "test.aptos.apt" or undefined
    const owner = await aptos.getOwnerAddress({name: "test.aptos"})
    // owner = 0x123... +
    +
  • Fetches the pepper from the Aptos pepper service API.

    +

    Parameters

    • args: {
          derivationPath?: string;
          ephemeralKeyPair: EphemeralKeyPair;
          jwt: string;
      }
      • Optional derivationPath?: string

        a derivation path used for creating multiple accounts per user via the BIP-44 standard. Defaults +to "m/44'/637'/0'/0'/0".

        +
      • ephemeralKeyPair: EphemeralKeyPair

        the EphemeralKeyPair used to generate the nonce in the JWT token

        +
      • jwt: string

        JWT token

        +

    Returns Promise<Uint8Array>

    The pepper which is a Uint8Array of length 31.

    +
  • 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.

    +

    Parameters

    Returns Promise<undefined | string>

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

    +

    Example

    const name = await aptos.getPrimaryName({address: alice.accountAddress})
    // name = test.aptos +
    +
  • Query the processor status for a specific processor type.

    +

    Parameters

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

    Example

    const status = await aptos.getProcessorStatus({processorType:"account_transactions_processor"})
    +
    +
  • Fetches a proof from the Aptos prover service API.

    +

    Parameters

    • args: {
          ephemeralKeyPair: EphemeralKeyPair;
          jwt: string;
          pepper?: HexInput;
          uidKey?: string;
      }
      • ephemeralKeyPair: EphemeralKeyPair

        the EphemeralKeyPair used to generate the nonce in the JWT token

        +
      • jwt: string

        JWT token

        +
      • Optional pepper?: HexInput

        the pepper used for the account. If not provided it will be fetched from the Aptos pepper service

        +
      • Optional uidKey?: string

        a key in the JWT token to use to set the uidVal in the IdCommitment

        +

    Returns Promise<ZeroKnowledgeSig>

    The proof which is represented by a ZeroKnowledgeSig.

    +
  • 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

    Example

    const transaction = await aptos.transaction.build.simple({...})
    const message = await aptos.getSigningMessage({transaction}) +
    +
  • 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.

    +

    Note, this query calls the fullnode server

    +

    Type Parameters

    • T

    Parameters

    Returns Promise<T>

    Table item value rendered in JSON

    +

    Example

    https://api.devnet.aptoslabs.com/v1/accounts/0x1/resource/0x1::coin::CoinInfo%3C0x1::aptos_coin::AptosCoin%3E
    const tableItem = await aptos.getTableItem({
    handle: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca",
    data: {
    key_type: "address", // Move type of table key
    value_type: "u128", // Move type of table value
    key: "0x619dc29a0aac8fa146714058e8dd6d2d0f3bdf5f6331907bf91f3acd81e6935" // Value of table key
    },
    }) +
    +
  • Queries for a table items data.

    +

    Optional options.where param can be passed to filter the response.

    +

    Note, this query calls the indexer server

    +

    Parameters

    • args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<{
              decoded_key: any;
              decoded_value?: any;
              key: string;
              table_handle: string;
              transaction_version: any;
              write_set_change_index: any;
          }>;
      }
      • Optional minimumLedgerVersion?: AnyNumber
      • Optional options?: PaginationArgs & WhereArg<TableItemsBoolExp> & OrderByArg<{
            decoded_key: any;
            decoded_value?: any;
            key: string;
            table_handle: string;
            transaction_version: any;
            write_set_change_index: any;
        }>

    Returns Promise<{
        decoded_key: any;
        decoded_value?: any;
        key: string;
        table_handle: string;
        transaction_version: any;
        write_set_change_index: any;
    }[]>

    GetTableItemsDataResponse

    +

    Example

    const data = await aptos.getTableItemsData({
    options: { where: {
    table_handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" },
    transaction_version: { _eq: "0" }
    }
    },
    }); +
    +
  • Queries for a table items metadata.

    +

    Optional options.where param can be passed to filter the response.

    +

    Note, this query calls the indexer server

    +

    Parameters

    • args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & WhereArg<TableMetadatasBoolExp> & OrderByArg<{
              handle: string;
              key_type: string;
              value_type: string;
          }>;
      }

    Returns Promise<{
        handle: string;
        key_type: string;
        value_type: string;
    }[]>

    GetTableItemsMetadataResponse

    +

    Example

    const data = await aptos.getTableItemsMetadata({
    options: { where: { handle: { _eq: "0x1b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca" } } },
    }); +
    +
  • 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

    +

    Parameters

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

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

        +

    Returns Promise<undefined | AccountAddress>

    AccountAddress if the name has a target, undefined otherwise

    +

    Example

    const targetAddr = await aptos.getTargetAddress({name: "test.aptos"})
    // targetAddr = 0x123... +
    +
  • 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

    +

    Example

    const transaction = await aptos.getTransactionByHash({transactionHash:"0x123"})
    +
    +
  • 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.

    +

    Example

    const transaction = await aptos.getTransactions({ledgerVersion:1})
    +
    +
  • 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

    +

    Example

    const isPendingTransaction = await aptos.isPendingTransaction({transactionHash:"0x123"})
    +
    +
  • Looks up the account address for a given authentication key

    +

    This handles both if the account's authentication key has been rotated or not.

    +

    Parameters

    Returns Promise<AccountAddress>

    Promise The accountAddress associated with the authentication key

    +

    Example

    const accountAddress = await aptos.lookupOriginalAccountAddress({authenticationKey:account.accountAddress})
    +
    +
  • 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

    +

    Example

    const transaction = await aptos.mintDigitalAssetTransaction({
    creator: alice,
    description: "collectionDescription",
    collection: "collectionName",
    name: "digitalAssetName",
    uri: "digital-asset-uri.com",
    }); +
    +
  • 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: AccountAddressInput;
          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: AccountAddressInput

        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

    +

    Example

    const transaction = await aptos.mintSoulBoundTransaction({
    account: alice,
    collection: "collectionName",
    description: "collectionDescription",
    name: "digitalAssetName",
    uri: "digital-asset-uri.com",
    recipient: "0x123"
    }); +
    +
  • Registers a new name

    +

    Parameters

    • args: Omit<RegisterNameParameters, "aptosConfig">

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +

    Example

    // 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,
    },
    }); +
    +
  • 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

    +

    Example

    const transaction = await aptos.removeDigitalAssetPropertyTransaction({
    creator: alice,
    propertyKey: "newKey",
    propertyType: "BOOLEAN",
    propertyValue: true,
    digitalAssetAddress: "0x123",
    }); +
    +
  • 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.

    +

    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

    +

    Example

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

    +

    Parameters

    Returns Promise<SimpleTransaction>

    A SimpleTransaction that can be simulated or submitted to chain

    +

    Example

    const transaction = await aptos.setDigitalAssetDescriptionTransaction({
    creator: alice,
    description: "digitalAssetDescription",
    digitalAssetAddress: "0x123",
    }); +
    +
  • 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.

    +

    Parameters

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +

    Example

    await aptos.setPrimaryName({sender: alice, name: "test.aptos"})
    const primaryName = await aptos.getPrimaryName({address: alice.accountAddress})
    // primaryName = test.aptos +
    +
  • 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

    +

    Parameters

    Returns Promise<SimpleTransaction>

    SimpleTransaction

    +

    Example

    await aptos.setTargetAddress({sender: alice, name: "test.aptos", address: bob.accountAddress})
    const address = await aptos.getTargetAddress({name: "test.aptos"})
    // address = bob.accountAddress +
    +
  • Sign and submit a single signer transaction to chain

    +

    Parameters

    • args: {
          signer: Account;
          transaction: AnyRawTransaction;
      }
      • signer: Account

        The signer account to sign the transaction

        +
      • transaction: AnyRawTransaction

        An instance of a RawTransaction, plus optional secondary/fee payer addresses

        +

    Returns Promise<PendingTransactionResponse>

    PendingTransactionResponse

    +

    Example

    const transaction = await aptos.transaction.build.simple({...})
    const transaction = await aptos.signAndSubmitTransaction({
    signer: alice,
    transaction
    }) +
    +
  • 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

    +

    Example

    const transaction = await aptos.transferDigitalAssetTransaction({
    sender: alice,
    digitalAssetAddress: "0x123",
    recipient: "0x456",
    }); +
    +
  • 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

    +

    Example

    const transaction = await aptos.updateDigitalAssetPropertyTransaction({
    creator: alice,
    propertyKey: "newKey",
    propertyType: "BOOLEAN",
    propertyValue: false,
    digitalAssetAddress: "0x123",
    }); +
    +
  • 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

    +

    Example

    const transaction = await aptos.updateDigitalAssetTypedPropertyTransaction({
    creator: alice,
    propertyKey: "typedKey",
    propertyType: "U8",
    propertyValue: 2,
    digitalAssetAddress: "0x123",
    }); +
    +
  • Queries for a Move view function with JSON, this provides compatability with the old aptos package

    +

    Type Parameters

    Parameters

    Returns Promise<T>

    an array of Move values

    +

    Example

    const data = await aptos.view({
    payload: {
    function: "0x1::coin::balance",
    typeArguments: ["0x1::aptos_coin::AptosCoin"],
    functionArguments: [accountAddress.toString()],
    }
    }) +
    +
  • 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.

    +

    Example

    const transaction = await aptos.waitForTransaction({transactionHash:"0x123"})
    +
    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AptosApiError.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AptosApiError.html new file mode 100644 index 000000000..8c7ecc2b2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AptosApiError.html @@ -0,0 +1,22 @@ +AptosApiError | @aptos-labs/ts-sdk - v1.28.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

Properties

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

Optional override for formatting stack traces

+

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

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

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

+

Example

const aptosConfig = new AptosConfig({network:Network.TESTNET})
+
+

Constructors

Properties

client: Client

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

+
clientConfig?: ClientConfig

Optional client configurations

+
faucet?: string

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

+
faucetConfig?: FaucetConfig

Optional specific Faucet configurations

+
fullnode?: string

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

+
fullnodeConfig?: ClientHeadersType

Optional specific Fullnode configurations

+
indexer?: string

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

+
indexerConfig?: ClientHeadersType

Optional specific Indexer configurations

+
network: Network

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

+
pepper?: string

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

+
prover?: string

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

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/AuthenticationKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AuthenticationKey.html new file mode 100644 index 000000000..342829b39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/AuthenticationKey.html @@ -0,0 +1,39 @@ +AuthenticationKey | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Hierarchy (view full)

Implements

Constructors

Properties

value: boolean

Methods

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

Representation of a ChainId that can serialized and deserialized

+

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Deserializer.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Deserializer.html new file mode 100644 index 000000000..da84f49ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Deserializer.html @@ -0,0 +1,78 @@ +Deserializer | @aptos-labs/ts-sdk - v1.28.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 an optional deserializable class.

    +

    BCS layout for Optional: 0 if none, else 1 | bcs representation of class

    +

    Type Parameters

    • T

    Parameters

    • cls: Deserializable<T>

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

      +

    Returns undefined | T

    the deserialized value of class type T

    +

    Example

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

    const deserializer = new Deserializer(new Uint8Array([0]));
    const value = deserializer.deserializeOption(MyClass); // where MyClass has a `deserialize` function
    // value is undefined +
    +
  • Deserializes a an optional string.

    +

    BCS layout for Optional: 0 if none, else 1 | string_length | string_content

    +

    Returns undefined | string

    Example

    const deserializer = new Deserializer(new Uint8Array([0x00]));
    assert(deserializer.deserializeOptionStr() === undefined);
    const deserializer = new Deserializer(new Uint8Array([1, 8, 49, 50, 51, 52, 97, 98, 99, 100]));
    assert(deserializer.deserializeOptionStr() === "1234abcd"); +
    +
  • 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 +
    +
  • Returns the number of bytes remaining in the buffer.

    +

    Useful to tell if there's more data to be read.

    +

    Returns number

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519Account.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519Account.html new file mode 100644 index 000000000..d1b9f2926 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519Account.html @@ -0,0 +1,35 @@ +Ed25519Account | @aptos-labs/ts-sdk - v1.28.0

Signer implementation for the Ed25519 authentication scheme. +This extends an Ed25519Account by adding signing capabilities through an Ed25519PrivateKey.

+

Note: Generating a signer instance does not create the account on-chain.

+

Implements

Constructors

Properties

accountAddress: AccountAddress

Account address associated with the account

+
privateKey: Ed25519PrivateKey

Private key associated with the account

+
publicKey: Ed25519PublicKey

Public key associated with the account

+
signingScheme: Ed25519 = SigningScheme.Ed25519

Signing scheme used to sign transactions

+

Methods

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

Represents the private key of an Ed25519 key pair.

+

Hierarchy (view full)

Implements

Constructors

Properties

signingKey: Hex

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

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

    +

    Returns string

    string representation of the private key

    +
  • 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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519PublicKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519PublicKey.html new file mode 100644 index 000000000..dcd323614 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Ed25519PublicKey.html @@ -0,0 +1,34 @@ +Ed25519PublicKey | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

A signature of a message signed using an Ed25519 private key

+

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunction.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunction.html new file mode 100644 index 000000000..eeb445ab7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunction.html @@ -0,0 +1,43 @@ +EntryFunction | @aptos-labs/ts-sdk - v1.28.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.

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunctionBytes.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunctionBytes.html new file mode 100644 index 000000000..0610ad5bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EntryFunctionBytes.html @@ -0,0 +1,28 @@ +EntryFunctionBytes | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Class EphemeralCertificate

A container for a signature that is a ZeroKnowledgeSig. Can be expanded to support OpenIdSignature.

+

Hierarchy (view full)

Constructors

Properties

signature: Signature
variant: ZkProof

Index of the underlying enum variant

+

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralKeyPair.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralKeyPair.html new file mode 100644 index 000000000..7d07832b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralKeyPair.html @@ -0,0 +1,44 @@ +EphemeralKeyPair | @aptos-labs/ts-sdk - v1.28.0

A class which contains a key pair that is used in signing transactions via the Keyless authentication scheme. This key pair +is ephemeral and has an expiration time. For more details on how this class is used - +https://aptos.dev/guides/keyless-accounts/#1-present-the-user-with-a-sign-in-with-idp-button-on-the-ui

+

Hierarchy (view full)

Constructors

Properties

blinder: Uint8Array

A byte array of length BLINDER_LENGTH used to obfuscate the public key from the IdP. +Used in calculating the nonce passed to the IdP and as a secret witness in proof generation.

+
expiryDateSecs: number

A timestamp in seconds indicating when the ephemeral key pair is expired. After expiry, a new +EphemeralKeyPair must be generated and a new JWT needs to be created.

+
nonce: string

The value passed to the IdP when the user authenticates. It comprises of a hash of the +ephermeral public key, expiry date, and blinder.

+
privateKey: PrivateKey

A private key used to sign transactions. This private key is not tied to any account on the chain as it +is ephemeral (not permanent) in nature.

+

A public key used to verify transactions. This public key is not tied to any account on the chain as it +is ephemeral (not permanent) in nature.

+
BLINDER_LENGTH: number = 31

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralPublicKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralPublicKey.html new file mode 100644 index 000000000..6c4f96df9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/EphemeralPublicKey.html @@ -0,0 +1,28 @@ +EphemeralPublicKey | @aptos-labs/ts-sdk - v1.28.0

Class EphemeralPublicKey

Represents ephemeral public keys for Aptos Keyless accounts.

+

These are not public keys used as a public key on an account. They are only used ephemerally on Keyless accounts.

+

Hierarchy (view full)

Constructors

Properties

publicKey: PublicKey

The public key itself

+
variant: Ed25519

An enum indicating the scheme of the ephemeral 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

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

Class EphemeralSignature

Represents ephemeral signatures used in Aptos Keyless accounts.

+

These signatures are used inside of KeylessSignature

+

Hierarchy (view full)

Constructors

Properties

signature: Signature

The signature signed by the private key of an EphemeralKeyPair

+

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

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

Class FeePayerRawTransaction

Representation of a Fee Payer Transaction that can serialized and deserialized

+

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/FixedBytes.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/FixedBytes.html new file mode 100644 index 000000000..2a1195e34 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/FixedBytes.html @@ -0,0 +1,33 @@ +FixedBytes | @aptos-labs/ts-sdk - v1.28.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 (view full)

Implements

Constructors

Properties

value: Uint8Array

Methods

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

A representation of a Groth16 proof. The points are the compressed serialization of affine reprentation of the proof.

+

Hierarchy

  • Proof
    • Groth16Zkp

Constructors

Properties

a +b +c +

Methods

Constructors

Properties

a: G1Bytes

The bytes of G1 proof point a

+
b: G2Bytes

The bytes of G2 proof point b

+
c: G1Bytes

The bytes of G1 proof point c

+

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

    +
  • Get the proof as a hex string with a 0x prefix e.g. 0x123456...

    +

    Returns string

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Hex.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Hex.html new file mode 100644 index 000000000..155bbe990 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Hex.html @@ -0,0 +1,50 @@ +Hex | @aptos-labs/ts-sdk - v1.28.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.fromHexString({ 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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Identifier.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Identifier.html new file mode 100644 index 000000000..baa58805b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Identifier.html @@ -0,0 +1,15 @@ +Identifier | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessAccount.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessAccount.html new file mode 100644 index 000000000..d76920c54 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessAccount.html @@ -0,0 +1,76 @@ +KeylessAccount | @aptos-labs/ts-sdk - v1.28.0

Account implementation for the Keyless authentication scheme.

+

Used to represent a Keyless based account and sign transactions with it.

+

Use KeylessAccount.fromJWTAndProof to instantiate a KeylessAccount with a JWT, proof and EphemeralKeyPair.

+

When the proof expires or the JWT becomes invalid, the KeylessAccount must be instantiated again with a new JWT, +EphemeralKeyPair, and corresponding proof.

+

Hierarchy (view full)

Implements

Constructors

Properties

accountAddress: AccountAddress

Account address associated with the account

+
aud: string

The value of the 'aud' claim on the JWT, also known as client ID. This is the identifier for the dApp's +OIDC registration with the identity provider.

+
emitter: EventEmitter<ProofFetchEvents, any>

An event emitter used to assist in handling asycronous proof fetching.

+
ephemeralKeyPair: EphemeralKeyPair

The EphemeralKeyPair used to generate sign.

+
jwt: string

The JWT token used to derive the account

+
pepper: Uint8Array

A value contains 31 bytes of entropy that preserves privacy of the account. Typically fetched from a pepper provider.

+
proof: undefined | ZeroKnowledgeSig

The zero knowledge signature (if ready) which contains the proof used to validate the EphemeralKeyPair.

+
proofOrPromise: ZeroKnowledgeSig | Promise<ZeroKnowledgeSig>

The proof of the EphemeralKeyPair or a promise that provides the proof. This is used to allow for awaiting on +fetching the proof.

+
publicKey: KeylessPublicKey

The KeylessPublicKey associated with the account

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+
uidKey: string

The claim on the JWT to identify a user. This is typically 'sub' or 'email'.

+
uidVal: string

The value of the uidKey claim on the JWT. This intended to be a stable user identifier.

+
PEPPER_LENGTH: number = 31

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

    +
  • Checks if the proof is expired. If so the account must be rederived with a new EphemeralKeyPair +and JWT token.

    +

    Returns boolean

    boolean

    +
  • Note - This function is currently incomplete and should only be used to verify ownership of the KeylessAccount

    +

    Verifies a signature given the message.

    +

    TODO: Groth16 proof verification

    +

    Parameters

    Returns boolean

    boolean

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

Class KeylessConfiguration

A class which represents the on-chain configuration for how Keyless accounts work

+

Constructors

Properties

Methods

Constructors

Properties

maxExpHorizonSecs: number

The maximum lifespan of an ephemeral key pair. This is configured on chain.

+
verficationKey: Groth16VerificationKey

The verification key used to verify Groth16 proofs on chain

+

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessPublicKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessPublicKey.html new file mode 100644 index 000000000..b399dea63 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/KeylessPublicKey.html @@ -0,0 +1,46 @@ +KeylessPublicKey | @aptos-labs/ts-sdk - v1.28.0

Represents the KeylessPublicKey public key

+

KeylessPublicKey authentication key is represented in the SDK as AnyPublicKey.

+

Hierarchy (view full)

Constructors

Properties

idCommitment: Uint8Array

A value representing a cryptographic commitment to a user identity.

+

It is calculated from the aud, uidKey, uidVal, pepper.

+
iss: string

The value of the 'iss' claim on the JWT which identifies the OIDC provider.

+
ID_COMMITMENT_LENGTH: number = 32

The number of bytes that idCommitment should be

+

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

    +
  • Creates a KeylessPublicKey from the JWT components plus pepper

    +

    Parameters

    • args: {
          aud: string;
          iss: string;
          pepper: HexInput;
          uidKey: string;
          uidVal: string;
      }
      • aud: string

        the client ID of the application

        +
      • iss: string

        the iss of the identity

        +
      • pepper: HexInput

        The pepper used to maintain privacy of the account

        +
      • uidKey: string

        the key to use to get the uidVal in the JWT token

        +
      • uidVal: string

        the value of the uidKey in the JWT token

        +

    Returns KeylessPublicKey

    KeylessPublicKey

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

A signature of a message signed via Keyless Accounnt that uses proofs or the jwt token to authenticate.

+

Hierarchy (view full)

Constructors

Properties

ephemeralCertificate: EphemeralCertificate

The inner signature ZeroKnowledgeSigniature or OpenIdSignature

+
ephemeralPublicKey: EphemeralPublicKey

The ephemeral public key used to verify the signature

+
ephemeralSignature: EphemeralSignature

The signature resulting from signing with the private key of the EphemeralKeyPair

+
expiryDateSecs: number

The expiry timestamp in seconds of the EphemeralKeyPair used to sign

+
jwtHeader: string

The jwt header in the token used to create the proof/signature. In json string representation.

+

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/ModuleId.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/ModuleId.html new file mode 100644 index 000000000..6813d947b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/ModuleId.html @@ -0,0 +1,22 @@ +ModuleId | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Class MoveOption<T>

Type Parameters

Hierarchy (view full)

Implements

Constructors

Properties

value?: 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.

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

Hierarchy (view full)

Implements

Constructors

Properties

value: string

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/MoveVector.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MoveVector.html new file mode 100644 index 000000000..43c674868 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MoveVector.html @@ -0,0 +1,88 @@ +MoveVector | @aptos-labs/ts-sdk - v1.28.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 (view full)

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.

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

Class MultiAgentRawTransaction

Representation of a Multi Agent Transaction that can serialized and deserialized

+

Hierarchy (view full)

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

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

Class MultiAgentTransaction

Representation of a Raw Transaction that can serialized and deserialized

+

Hierarchy (view full)

Constructors

Properties

feePayerAddress?: AccountAddress
rawTransaction: RawTransaction
secondarySignerAddresses: AccountAddress[]

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

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

Class MultiEd25519PublicKey

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

+

Hierarchy (view full)

Constructors

Properties

publicKeys: Ed25519PublicKey[]

List of Ed25519 public keys for this LegacyMultiEd25519PublicKey

+
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

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

Class MultiEd25519Signature

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

+

Hierarchy (view full)

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

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

Represents the public key of a multi-agent account.

+

The public keys of each individual agent can be any type of public key supported by Aptos. +Since AIP-55 Aptos supports +Legacy and Unified authentication keys.

+

Hierarchy (view full)

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

    +
  • 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

    +
  • Get the index of the provided public key.

    +

    Parameters

    • publicKey: PublicKey

      array of the index mapping to the matching public keys

      +

    Returns number

    the corresponding index of the publicKey, if it exists

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiKeyAccount.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiKeyAccount.html new file mode 100644 index 000000000..ed5437e1d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiKeyAccount.html @@ -0,0 +1,53 @@ +MultiKeyAccount | @aptos-labs/ts-sdk - v1.28.0

Signer implementation for the MultiKey authentication scheme.

+

This accounts to use a M of N signing scheme. M and N are specified in the MultiKey +It signs messages via the array of M number of Accounts that individually correspond to a public key in the MultiKey.

+

Note: Generating a signer instance does not create the account on-chain.

+

Implements

Constructors

Properties

accountAddress: AccountAddress

Account address associated with the account

+
publicKey: MultiKey

Public key associated with the account

+
signaturesBitmap: Uint8Array
signerIndicies: number[]

An array of indicies where for signer[i], signerIndicies[i] is the index of the corresponding public key in +publicKey.publicKeys. Used to derive the right public key to use for verification.

+
signers: Account[]

The signers used to sign messages. These signers should correspond to public keys in the +MultiKeyAccount's public key. The number of signers should be equal or greater +than this.publicKey.signaturesRequired

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+

Methods

  • Waits for any proofs on any KeylessAccount signers to be fetched. If the proof is fetched a syncronously, call this +to ensure signing with the KeylessAccount does not fail as the proof must be ready.

    +

    Returns Promise<void>

  • Static constructor for MultiKeyAccount

    +

    Parameters

    • args: {
          publicKeys: PublicKey[];
          signaturesRequired: number;
          signers: Account[];
      }
      • publicKeys: PublicKey[]

        the N public keys of the MultiKeyAccount

        +
      • signaturesRequired: number

        the number of signatures required

        +
      • signers: Account[]

        an array of M signers that will be used to sign the transaction

        +

    Returns MultiKeyAccount

    MultiKeyAccount

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

An abstract representation of a crypto signature, +associated to a specific signature scheme e.g. Ed25519 or Secp256k1

+

This is the product of signing a message directly from a PrivateKey +and can be verified against a CryptoPublicKey.

+

Hierarchy (view full)

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: AnySignature[]

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 = ...

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

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

Representation of a MultiSig that can serialized and deserialized

+

Constructors

Properties

multisig_address: AccountAddress
transaction_payload?: MultiSigTransactionPayload

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiSigTransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiSigTransactionPayload.html new file mode 100644 index 000000000..343676f76 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/MultiSigTransactionPayload.html @@ -0,0 +1,21 @@ +MultiSigTransactionPayload | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/ParsingError.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/ParsingError.html new file mode 100644 index 000000000..10271dc4b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/ParsingError.html @@ -0,0 +1,16 @@ +ParsingError | @aptos-labs/ts-sdk - v1.28.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)

Optional override for formatting stack traces

+

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

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

Class PublicKeyAbstract

An abstract representation of a public key.

+

Provides a common interface for verifying any signature.

+

Hierarchy (view full)

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

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

Representation of a Raw Transaction that can serialized and deserialized

+

Hierarchy (view full)

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

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

Class RawTransactionWithDataAbstract

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

+

Hierarchy (view full)

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

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

Class RotationProofChallenge

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

+

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Script.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Script.html new file mode 100644 index 000000000..918ddbb65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Script.html @@ -0,0 +1,21 @@ +Script | @aptos-labs/ts-sdk - v1.28.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

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

Class Secp256k1PrivateKey

A Secp256k1 ecdsa private key

+

Hierarchy (view full)

Implements

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

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

    +

    Returns string

    string representation of the private key

    +
  • 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

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

Class Secp256k1PublicKey

Represents the Secp256k1 ecdsa public key

+

Secp256k1 authentication key is represented in the SDK as AnyPublicKey.

+

Hierarchy (view full)

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

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

Class Secp256k1Signature

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

+

Hierarchy (view full)

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

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

Class SerializableAbstract

Hierarchy (view full)

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

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

Hierarchy (view full)

Implements

Constructors

Properties

value: Uint8Array

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Serializer.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Serializer.html new file mode 100644 index 000000000..e541cdc73 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Serializer.html @@ -0,0 +1,82 @@ +Serializer | @aptos-labs/ts-sdk - v1.28.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 BCS Serializable values into a serializer instance or undefined. +Note that this does not return anything. The bytes are added to the serializer instance's byte buffer.

    +

    Type Parameters

    Parameters

    • Optional value: T

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeOption(new AccountAddress(...));
    const serializedBytes = serializer.toUint8Array();
    // serializedBytes is now the BCS-serialized byte representation of AccountAddress

    const serializer = new Serializer();
    serializer.serializeOption(undefined);
    assert(serializer.toUint8Array() === new Uint8Array([0x00])); +
    +
  • Serializes an optional string. UTF8 string is supported.

    +

    The existence of the string is encoded first, 0 if undefined and 1 if it exists. +Them the number of bytes in the string content is serialized, as a uleb128-encoded u32 integer. +Then the string content is serialized as UTF8 encoded bytes.

    +

    BCS layout for optional "string": 1 | 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.

    +

    BCS layout for undefined: 0

    +

    Parameters

    • Optional value: string

    Returns void

    Example

    const serializer = new Serializer();
    serializer.serializeOptionStr("1234abcd");
    assert(serializer.toUint8Array() === new Uint8Array([1, 8, 49, 50, 51, 52, 97, 98, 99, 100]));

    const serializer = new Serializer();
    serializer.serializeOptionStr(undefined);
    assert(serializer.toUint8Array() === new Uint8Array([0])); +
    +
  • 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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Signature.html new file mode 100644 index 000000000..60c52969d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/Signature.html @@ -0,0 +1,18 @@ +Signature | @aptos-labs/ts-sdk - v1.28.0

Class SignatureAbstract

An abstract representation of a crypto signature, +associated to a specific signature scheme e.g. Ed25519 or Secp256k1

+

This is the product of signing a message directly from a PrivateKey +and can be verified against a CryptoPublicKey.

+

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Representation of a SimpleTransaction that can serialized and deserialized

+

Hierarchy (view full)

Constructors

Properties

feePayerAddress?: AccountAddress
rawTransaction: RawTransaction
secondarySignerAddresses: undefined

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/SingleKeyAccount.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/SingleKeyAccount.html new file mode 100644 index 000000000..0fa081f9c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/SingleKeyAccount.html @@ -0,0 +1,39 @@ +SingleKeyAccount | @aptos-labs/ts-sdk - v1.28.0

Signer implementation for the SingleKey authentication scheme. +This extends a SingleKeyAccount by adding signing capabilities through a valid private key. +Currently, the only supported signature schemes are Ed25519 and Secp256k1.

+

Note: Generating a signer instance does not create the account on-chain.

+

Implements

Constructors

Properties

accountAddress: AccountAddress

Account address associated with the account

+
privateKey: PrivateKey

Private key associated with the account

+
publicKey: AnyPublicKey

Public key associated with the account

+
signingScheme: SingleKey = SigningScheme.SingleKey

Signing scheme used to sign transactions

+

Methods

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

Hierarchy (view full)

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

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

Class TransactionAuthenticatorAbstract

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorEd25519.html new file mode 100644 index 000000000..56c0444ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorEd25519.html @@ -0,0 +1,19 @@ +TransactionAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorFeePayer.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorFeePayer.html new file mode 100644 index 000000000..c0d537cfb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorFeePayer.html @@ -0,0 +1,21 @@ +TransactionAuthenticatorFeePayer | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiAgent.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiAgent.html new file mode 100644 index 000000000..f65b5225b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiAgent.html @@ -0,0 +1,19 @@ +TransactionAuthenticatorMultiAgent | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..eff71b432 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TransactionAuthenticatorMultiEd25519.html @@ -0,0 +1,17 @@ +TransactionAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Class TransactionAuthenticatorSingleSender

Single Sender authenticator for a single signer transaction

+

Param: sender

AccountAuthenticator

+

Hierarchy (view full)

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

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

Class TransactionPayloadAbstract

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

+

Hierarchy (view full)

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

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

Class TransactionPayloadEntryFunction

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

+

Hierarchy (view full)

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

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

Class TransactionPayloadMultiSig

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

+

Hierarchy (view full)

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

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

Class TransactionPayloadScript

Representation of a Transaction Payload Script that can serialized and deserialized

+

Hierarchy (view full)

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

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

TransactionWorker provides a simple framework for receiving payloads to be processed.

+

Once one start() the process and pushes a new transaction, the worker acquires +the current account's next sequence number (by using the AccountSequenceNumber class), +generates a signed transaction and pushes an async submission process into the outstandingTransactions queue. +At the same time, the worker processes transactions by reading the outstandingTransactions queue +and submits the next transaction to chain, it

+
    +
  1. waits for resolution of the submission process or get pre-execution validation error +and 2) waits for the resolution of the execution process or get an execution error. +The worker fires events for any submission and/or execution success and/or failure.
  2. +
+

Hierarchy

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

+
prefixed: string | boolean

Methods

  • Type Parameters

    Parameters

    Returns this

  • 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>

  • Calls each of the listeners registered for a given event.

    +

    Type Parameters

    Parameters

    Returns boolean

  • Return an array listing the events for which the emitter has registered +listeners.

    +

    Returns (keyof TransactionWorkerEvents)[]

  • Return the number of listeners listening to a given event.

    +

    Parameters

    Returns number

  • Return the listeners registered for a given event.

    +

    Type Parameters

    Parameters

    • event: T

    Returns ((...args) => void)[]

  • Type Parameters

    Parameters

    Returns this

  • Add a listener for a given event.

    +

    Type Parameters

    Parameters

    Returns this

  • Add a one-time listener for a given event.

    +

    Type Parameters

    Parameters

    Returns this

  • 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>

  • Remove all listeners, or those of the specified event.

    +

    Parameters

    • Optional event: keyof TransactionWorkerEvents

    Returns this

  • Remove the listeners of a given event.

    +

    Type Parameters

    Parameters

    Returns this

  • 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>

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

Class TypeTagAbstract

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/classes/TypeTagGeneric.html b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TypeTagGeneric.html new file mode 100644 index 000000000..6f3a23a78 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/classes/TypeTagGeneric.html @@ -0,0 +1,29 @@ +TypeTagGeneric | @aptos-labs/ts-sdk - v1.28.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 (view full)

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

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

Class TypeTagParserError

Hierarchy

  • Error
    • TypeTagParserError

Constructors

Properties

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

Optional override for formatting stack traces

+

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

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

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

Hierarchy (view full)

Implements

Constructors

Properties

value: bigint

Methods

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

Hierarchy (view full)

Implements

Constructors

Properties

value: number

Methods

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

Hierarchy (view full)

Implements

Constructors

Properties

value: bigint

Methods

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

Hierarchy (view full)

Implements

Constructors

Properties

value: number

Methods

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

Hierarchy (view full)

Implements

Constructors

Properties

value: bigint

Methods

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

Hierarchy (view full)

Implements

Constructors

Properties

value: number

Methods

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

The signature representation of a proof

+

Hierarchy (view full)

Constructors

Properties

expHorizonSecs: number

The max lifespan of the proof

+
extraField?: string

A key value pair on the JWT token that can be specified on the signature which would reveal the value on chain. +Can be used to assert identity or other attributes.

+
overrideAudVal?: string

The 'aud' value of the recovery service which is set when recovering an account.

+
proof: ZkProof

The proof

+
trainingWheelsSignature?: EphemeralSignature

The training wheels 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

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

A container for a different zero knowledge proof types

+

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

proof: Proof
variant: Groth16

Index of the underlying enum variant

+

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

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

Enumeration AccountAuthenticatorVariant

Transaction Authenticator enum as they are represented in Rust +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/authenticator.rs#L414

+

Enumeration Members

Enumeration Members

Ed25519: 0
MultiEd25519: 1
MultiKey: 3
SingleKey: 2
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/AddressInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AddressInvalidReason.html new file mode 100644 index 000000000..c371d5adc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AddressInvalidReason.html @@ -0,0 +1,9 @@ +AddressInvalidReason | @aptos-labs/ts-sdk - v1.28.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"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnyPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnyPublicKeyVariant.html new file mode 100644 index 000000000..57bec344d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnyPublicKeyVariant.html @@ -0,0 +1,4 @@ +AnyPublicKeyVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration AnyPublicKeyVariant

Enumeration Members

Enumeration Members

Ed25519: 0
Keyless: 3
Secp256k1: 1
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnySignatureVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnySignatureVariant.html new file mode 100644 index 000000000..1f3da5921 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AnySignatureVariant.html @@ -0,0 +1,4 @@ +AnySignatureVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration AnySignatureVariant

Enumeration Members

Enumeration Members

Ed25519: 0
Keyless: 3
Secp256k1: 1
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/AptosApiType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AptosApiType.html new file mode 100644 index 000000000..e6812adbd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/AptosApiType.html @@ -0,0 +1,7 @@ +AptosApiType | @aptos-labs/ts-sdk - v1.28.0

Enumeration AptosApiType

Type of API endpoint for request routing

+

Enumeration Members

Enumeration Members

FAUCET: "Faucet"
FULLNODE: "Fullnode"
INDEXER: "Indexer"
PEPPER: "Pepper"
PROVER: "Prover"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/DeriveScheme.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/DeriveScheme.html new file mode 100644 index 000000000..f8b9e5549 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/DeriveScheme.html @@ -0,0 +1,12 @@ +DeriveScheme | @aptos-labs/ts-sdk - v1.28.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

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralCertificateVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralCertificateVariant.html new file mode 100644 index 000000000..f7ce64175 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralCertificateVariant.html @@ -0,0 +1,2 @@ +EphemeralCertificateVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration EphemeralCertificateVariant

Enumeration Members

Enumeration Members

ZkProof: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralPublicKeyVariant.html new file mode 100644 index 000000000..38bda385c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralPublicKeyVariant.html @@ -0,0 +1,2 @@ +EphemeralPublicKeyVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration EphemeralPublicKeyVariant

Enumeration Members

Enumeration Members

Ed25519: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralSignatureVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralSignatureVariant.html new file mode 100644 index 000000000..902fb1ccf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/EphemeralSignatureVariant.html @@ -0,0 +1,2 @@ +EphemeralSignatureVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration EphemeralSignatureVariant

Enumeration Members

Enumeration Members

Ed25519: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/HexInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/HexInvalidReason.html new file mode 100644 index 000000000..ec7e610dc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/HexInvalidReason.html @@ -0,0 +1,5 @@ +HexInvalidReason | @aptos-labs/ts-sdk - v1.28.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"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/KeyType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/KeyType.html new file mode 100644 index 000000000..0d727a27b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/KeyType.html @@ -0,0 +1,3 @@ +KeyType | @aptos-labs/ts-sdk - v1.28.0

Enumeration KeyType

A list of supported key types and associated seeds

+

Enumeration Members

Enumeration Members

ED25519: "ed25519 seed"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/MimeType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/MimeType.html new file mode 100644 index 000000000..1f0c99292 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/MimeType.html @@ -0,0 +1,8 @@ +MimeType | @aptos-labs/ts-sdk - v1.28.0

Enumeration MimeType

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

+
BCS_VIEW_FUNCTION: "application/x.aptos.view_function+bcs"
JSON: "application/json"

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

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

Enumeration MoveAbility

Move function ability

+

Enumeration Members

Enumeration Members

COPY: "copy"
DROP: "drop"
KEY: "key"
STORE: "store"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/MoveFunctionVisibility.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/MoveFunctionVisibility.html new file mode 100644 index 000000000..6be92af8c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/MoveFunctionVisibility.html @@ -0,0 +1,5 @@ +MoveFunctionVisibility | @aptos-labs/ts-sdk - v1.28.0

Enumeration MoveFunctionVisibility

Move function visibility

+

Enumeration Members

Enumeration Members

FRIEND: "friend"
PRIVATE: "private"
PUBLIC: "public"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/Network.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/Network.html new file mode 100644 index 000000000..2fde0650b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/Network.html @@ -0,0 +1,6 @@ +Network | @aptos-labs/ts-sdk - v1.28.0

Enumeration Network

Enumeration Members

Enumeration Members

CUSTOM: "custom"
DEVNET: "devnet"
LOCAL: "local"
MAINNET: "mainnet"
TESTNET: "testnet"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/ProcessorType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ProcessorType.html new file mode 100644 index 000000000..91ca86461 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ProcessorType.html @@ -0,0 +1,12 @@ +ProcessorType | @aptos-labs/ts-sdk - v1.28.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://api.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"
OBJECT_PROCESSOR: "objects_processor"
STAKE_PROCESSOR: "stake_processor"
TOKEN_V2_PROCESSOR: "token_v2_processor"
USER_TRANSACTION_PROCESSOR: "user_transaction_processor"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/RoleType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/RoleType.html new file mode 100644 index 000000000..03d9c492f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/RoleType.html @@ -0,0 +1,3 @@ +RoleType | @aptos-labs/ts-sdk - v1.28.0

Enumeration RoleType

Enumeration Members

Enumeration Members

FULL_NODE: "full_node"
VALIDATOR: "validator"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/ScriptTransactionArgumentVariants.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ScriptTransactionArgumentVariants.html new file mode 100644 index 000000000..a148d7c44 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ScriptTransactionArgumentVariants.html @@ -0,0 +1,13 @@ +ScriptTransactionArgumentVariants | @aptos-labs/ts-sdk - v1.28.0

Enumeration ScriptTransactionArgumentVariants

Enumeration Members

Enumeration Members

Address: 3
Bool: 5
Serialized: 9
U128: 2
U16: 6
U256: 8
U32: 7
U64: 1
U8: 0
U8Vector: 4
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/SigningScheme.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/SigningScheme.html new file mode 100644 index 000000000..af287e4b2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/SigningScheme.html @@ -0,0 +1,8 @@ +SigningScheme | @aptos-labs/ts-sdk - v1.28.0

Enumeration SigningScheme

Enumeration Members

Enumeration Members

Ed25519: 0

For Ed25519PublicKey

+
MultiEd25519: 1

For MultiEd25519PublicKey

+
MultiKey: 3
SingleKey: 2

For SingleKey ecdsa

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

Enumeration SigningSchemeInput

Enumeration Members

Enumeration Members

Ed25519: 0

For Ed25519PublicKey

+
Secp256k1Ecdsa: 2

For Secp256k1Ecdsa

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

Enumeration TransactionAuthenticatorVariant

Transaction Authenticator enum as they are represented in Rust +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/authenticator.rs#L44

+

Enumeration Members

Ed25519: 0
FeePayer: 3
MultiAgent: 2
MultiEd25519: 1
SingleSender: 4
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionPayloadVariants.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionPayloadVariants.html new file mode 100644 index 000000000..a4bec37d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionPayloadVariants.html @@ -0,0 +1,6 @@ +TransactionPayloadVariants | @aptos-labs/ts-sdk - v1.28.0

Enumeration TransactionPayloadVariants

Transaction payload enum as they are represented in Rust +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L478

+

Enumeration Members

Enumeration Members

EntryFunction: 2
Multisig: 3
Script: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionResponseType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionResponseType.html new file mode 100644 index 000000000..012d77aee --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionResponseType.html @@ -0,0 +1,9 @@ +TransactionResponseType | @aptos-labs/ts-sdk - v1.28.0

Enumeration TransactionResponseType

TRANSACTION TYPES

+

Enumeration Members

BlockEpilogue: "block_epilogue_transaction"
BlockMetadata: "block_metadata_transaction"
Genesis: "genesis_transaction"
Pending: "pending_transaction"
StateCheckpoint: "state_checkpoint_transaction"
User: "user_transaction"
Validator: "validator_transaction"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionVariants.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionVariants.html new file mode 100644 index 000000000..594261bc9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionVariants.html @@ -0,0 +1,5 @@ +TransactionVariants | @aptos-labs/ts-sdk - v1.28.0

Enumeration TransactionVariants

Transaction variants enum as they are represented in Rust +https://github.com/aptos-labs/aptos-core/blob/main/types/src/transaction/mod.rs#L440

+

Enumeration Members

FeePayerTransaction: 1
MultiAgentTransaction: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionWorkerEventsEnum.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionWorkerEventsEnum.html new file mode 100644 index 000000000..ffc1326b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TransactionWorkerEventsEnum.html @@ -0,0 +1,6 @@ +TransactionWorkerEventsEnum | @aptos-labs/ts-sdk - v1.28.0

Enumeration TransactionWorkerEventsEnum

Enumeration Members

ExecutionFinish: "executionFinish"
TransactionExecuted: "transactionExecuted"
TransactionExecutionFailed: "transactionExecutionFailed"
TransactionSendFailed: "transactionSendFailed"
TransactionSent: "transactionSent"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagParserErrorType.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagParserErrorType.html new file mode 100644 index 000000000..b667088ea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagParserErrorType.html @@ -0,0 +1,15 @@ +TypeTagParserErrorType | @aptos-labs/ts-sdk - v1.28.0

Enumeration TypeTagParserErrorType

Enumeration Members

InvalidAddress: "struct address must be valid"
InvalidModuleNameCharacter: "module name must only contain alphanumeric or '_' characters"
InvalidStructNameCharacter: "struct name must only contain alphanumeric or '_' characters"
InvalidTypeTag: "unknown type"
MissingTypeArgument: "no type argument before ','"
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"
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagVariants.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagVariants.html new file mode 100644 index 000000000..40018ff1c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/TypeTagVariants.html @@ -0,0 +1,16 @@ +TypeTagVariants | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/enums/ZkpVariant.html b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ZkpVariant.html new file mode 100644 index 000000000..116458c78 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/enums/ZkpVariant.html @@ -0,0 +1,2 @@ +ZkpVariant | @aptos-labs/ts-sdk - v1.28.0

Enumeration ZkpVariant

Enumeration Members

Enumeration Members

Groth16: 0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/CKDPriv.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/CKDPriv.html new file mode 100644 index 000000000..faffed0ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/CKDPriv.html @@ -0,0 +1,2 @@ +CKDPriv | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/aptosCoinStructTag.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/aptosCoinStructTag.html new file mode 100644 index 000000000..72167bfa8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/aptosCoinStructTag.html @@ -0,0 +1 @@ +aptosCoinStructTag | @aptos-labs/ts-sdk - v1.28.0

Function aptosCoinStructTag

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

Function aptosRequest

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

Function base64UrlDecode

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

Function buildTransaction

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

Function checkOrConvertArgument

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

Function convertAmountFromHumanReadableToOnChain

  • Amount is represented in the smallest unit format on chain, this function converts +a human readable amount format to the smallest unit format

    +

    Parameters

    • value: number

      The value in human readable format

      +
    • decimal: number

      The token decimal

      +

    Returns number

    The value is smallest units

    +

    Example

    human readable amount format: 500
    on chain amount format when decimal is 8: 50000000000 +
    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertAmountFromOnChainToHumanReadable.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertAmountFromOnChainToHumanReadable.html new file mode 100644 index 000000000..5dff9bc6f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertAmountFromOnChainToHumanReadable.html @@ -0,0 +1,8 @@ +convertAmountFromOnChainToHumanReadable | @aptos-labs/ts-sdk - v1.28.0

Function convertAmountFromOnChainToHumanReadable

  • Amount is represented in the smallest unit format on chain, this function converts +the smallest unit format to a human readable amount format

    +

    Parameters

    • value: number

      The value in human readable format

      +
    • decimal: number

      The token decimal

      +

    Returns number

    The value is smallest units

    +

    Example

    human readable amount format: 500
    on chain amount format when decimal is 8: 50000000000 +
    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertArgument.html new file mode 100644 index 000000000..42cfcc41b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/convertArgument.html @@ -0,0 +1,2 @@ +convertArgument | @aptos-labs/ts-sdk - v1.28.0

Function convertArgument

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

Function convertNumber

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

Function createObjectAddress

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

Function createResourceAddress

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

Function createTokenAddress

  • Creates a token object address from creator address, collection name and token name

    +

    Parameters

    • creatorAddress: AccountAddress

      The token creator account address

      +
    • collectionName: string

      The collection name

      +
    • tokenName: string

      The token name

      +

    Returns AccountAddress

    The token account address

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

Function deriveKey

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

Function deriveTransactionType

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

Function deserializeFromScriptArgument

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

Function ensureBoolean

  • Parameters

    • value: unknown

    Returns asserts value is boolean

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

Function fetchEntryFunctionAbi

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

Function fetchFunctionAbi

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

Function fetchViewFunctionAbi

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/findFirstNonSignerArg.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/findFirstNonSignerArg.html new file mode 100644 index 000000000..afcec0ea2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/findFirstNonSignerArg.html @@ -0,0 +1,4 @@ +findFirstNonSignerArg | @aptos-labs/ts-sdk - v1.28.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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/floorToWholeHour.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/floorToWholeHour.html new file mode 100644 index 000000000..158f1a52e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/floorToWholeHour.html @@ -0,0 +1 @@ +floorToWholeHour | @aptos-labs/ts-sdk - v1.28.0

Function floorToWholeHour

  • Parameters

    • timestampInSeconds: number

    Returns number

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

Function generateRawTransaction

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

Function generateSignedTransaction

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

Function generateSignedTransactionForSimulation

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

Function generateSigningMessage

  • Generates the 'signing message' form of a message to be signed.

    +

    Parameters

    • bytes: Uint8Array

      The byte representation of the message to be signed and sent to the chain

      +
    • domainSeparator: string

      A domain separator that starts with 'APTOS::'

      +

    Returns Uint8Array

    The Uint8Array of the signing message

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

Function generateSigningMessageForSerializable

  • Parameters

    • serializable: Serializable

      An object that has a bcs serialized form

      +

    Returns Uint8Array

    The Uint8Array of the signing message

    +

    Deprecated

    Use CryptoHashable instead by having your class implement it and call hash() to get the signing message.

    +

    Generates the 'signing message' form of a serilizable value. It bcs serializes the value and uses the name of +its constructor as the domain separator.

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

Function generateSigningMessageForTransaction

  • Generates the 'signing message' form of a transaction. It derives the type of transaction and +applies the appropriate domain separator based on if there is extra data such as a fee payer or +secondary signers.

    +

    Parameters

    Returns Uint8Array

    The Uint8Array of the signing message

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

Function generateTransactionPayload

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

Function generateUserTransactionHash

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

Function generateViewFunctionPayload

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

Function generateViewFunctionPayloadWithABI

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/get.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/get.html new file mode 100644 index 000000000..560d8f64c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/get.html @@ -0,0 +1,3 @@ +get | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAptosFullNode.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAptosFullNode.html new file mode 100644 index 000000000..38adb74df --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAptosFullNode.html @@ -0,0 +1 @@ +getAptosFullNode | @aptos-labs/ts-sdk - v1.28.0

Function getAptosFullNode

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

Function getAptosPepperService

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAuthenticatorForSimulation.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAuthenticatorForSimulation.html new file mode 100644 index 000000000..88cf2c928 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getAuthenticatorForSimulation.html @@ -0,0 +1 @@ +getAuthenticatorForSimulation | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/getFunctionParts.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getFunctionParts.html new file mode 100644 index 000000000..305ca8c44 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getFunctionParts.html @@ -0,0 +1 @@ +getFunctionParts | @aptos-labs/ts-sdk - v1.28.0

Function getFunctionParts

  • Parameters

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

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

    • functionName: string
    • moduleAddress: string
    • moduleName: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/getKeylessConfig.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getKeylessConfig.html new file mode 100644 index 000000000..3f0d42ff3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/getKeylessConfig.html @@ -0,0 +1,3 @@ +getKeylessConfig | @aptos-labs/ts-sdk - v1.28.0

Function getKeylessConfig

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

Function hashValues

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsAddress.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsAddress.html new file mode 100644 index 000000000..9f19f512b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsAddress.html @@ -0,0 +1 @@ +isBcsAddress | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsBool.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsBool.html new file mode 100644 index 000000000..e0b8cf952 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsBool.html @@ -0,0 +1 @@ +isBcsBool | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsFixedBytes.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsFixedBytes.html new file mode 100644 index 000000000..0e6701e91 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsFixedBytes.html @@ -0,0 +1 @@ +isBcsFixedBytes | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsString.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsString.html new file mode 100644 index 000000000..de5bff76f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsString.html @@ -0,0 +1 @@ +isBcsString | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU128.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU128.html new file mode 100644 index 000000000..75bf61b0d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU128.html @@ -0,0 +1 @@ +isBcsU128 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU16.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU16.html new file mode 100644 index 000000000..eb98cf578 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU16.html @@ -0,0 +1 @@ +isBcsU16 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU256.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU256.html new file mode 100644 index 000000000..943f08b03 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU256.html @@ -0,0 +1 @@ +isBcsU256 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU32.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU32.html new file mode 100644 index 000000000..918da5b3c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU32.html @@ -0,0 +1 @@ +isBcsU32 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU64.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU64.html new file mode 100644 index 000000000..13cb13037 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU64.html @@ -0,0 +1 @@ +isBcsU64 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU8.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU8.html new file mode 100644 index 000000000..602ad06d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBcsU8.html @@ -0,0 +1 @@ +isBcsU8 | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..274205fe8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBlockEpilogueTransactionResponse.html @@ -0,0 +1 @@ +isBlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v1.28.0

Function isBlockEpilogueTransactionResponse

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

Function isBlockMetadataTransactionResponse

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBool.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBool.html new file mode 100644 index 000000000..32d09dc3d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isBool.html @@ -0,0 +1 @@ +isBool | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isCanonicalEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isCanonicalEd25519Signature.html new file mode 100644 index 000000000..c5b72963c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isCanonicalEd25519Signature.html @@ -0,0 +1,4 @@ +isCanonicalEd25519Signature | @aptos-labs/ts-sdk - v1.28.0

Function isCanonicalEd25519Signature

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

Function isEd25519Signature

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

Function isEmptyOption

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedEntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedEntryFunctionArgument.html new file mode 100644 index 000000000..4aa2e4f2f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedEntryFunctionArgument.html @@ -0,0 +1 @@ +isEncodedEntryFunctionArgument | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedStruct.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedStruct.html new file mode 100644 index 000000000..5d11d52d2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isEncodedStruct.html @@ -0,0 +1,9 @@ +isEncodedStruct | @aptos-labs/ts-sdk - v1.28.0

Function isEncodedStruct

  • Determines whether the given object is an encoded struct type with the following properties:

    +
      +
    • account_address: string
    • +
    • module_name: string
    • +
    • struct_name: string
    • +
    +

    Parameters

    • structObj: any

      The object to check

      +

    Returns structObj is {
        account_address: string;
        module_name: string;
        struct_name: string;
    }

    Whether the object is an encoded struct type

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

Function isFeePayerSignature

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

Function isGenesisTransactionResponse

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

Function isLargeNumber

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

Function isMultiAgentSignature

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

Function isMultiEd25519Signature

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isNumber.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isNumber.html new file mode 100644 index 000000000..9deb18f3c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isNumber.html @@ -0,0 +1 @@ +isNumber | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isPendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isPendingTransactionResponse.html new file mode 100644 index 000000000..4ffeab856 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isPendingTransactionResponse.html @@ -0,0 +1 @@ +isPendingTransactionResponse | @aptos-labs/ts-sdk - v1.28.0

Function isPendingTransactionResponse

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isScriptDataInput.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isScriptDataInput.html new file mode 100644 index 000000000..6c2f9d87f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isScriptDataInput.html @@ -0,0 +1 @@ +isScriptDataInput | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isSecp256k1Signature.html new file mode 100644 index 000000000..d0f20f8aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isSecp256k1Signature.html @@ -0,0 +1 @@ +isSecp256k1Signature | @aptos-labs/ts-sdk - v1.28.0

Function isSecp256k1Signature

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

Function isStateCheckpointTransactionResponse

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isString.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isString.html new file mode 100644 index 000000000..653fe3429 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isString.html @@ -0,0 +1 @@ +isString | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isUserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isUserTransactionResponse.html new file mode 100644 index 000000000..720d7be13 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isUserTransactionResponse.html @@ -0,0 +1 @@ +isUserTransactionResponse | @aptos-labs/ts-sdk - v1.28.0

Function isUserTransactionResponse

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidBIP44Path.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidBIP44Path.html new file mode 100644 index 000000000..8a9234b08 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidBIP44Path.html @@ -0,0 +1,6 @@ +isValidBIP44Path | @aptos-labs/ts-sdk - v1.28.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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidHardenedPath.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidHardenedPath.html new file mode 100644 index 000000000..36a14340e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/isValidHardenedPath.html @@ -0,0 +1,12 @@ +isValidHardenedPath | @aptos-labs/ts-sdk - v1.28.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

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

Function isValidatorTransactionResponse

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

Function mnemonicToSeed

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

    +

    Parameters

    • mnemonic: string

      the mnemonic seed phrase

      +

    Returns Uint8Array

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

Function normalizeBundle

  • Utility function that serializes and deserialize an object back into the same bundle as the sdk. +This is a workaround to have the instanceof operator work when input objects come from a different +bundle.

    +

    Type Parameters

    Parameters

    Returns T

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/nowInSeconds.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/nowInSeconds.html new file mode 100644 index 000000000..964401fc5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/nowInSeconds.html @@ -0,0 +1 @@ +nowInSeconds | @aptos-labs/ts-sdk - v1.28.0

Function nowInSeconds

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

Function objectStructTag

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

Function optionStructTag

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

Function outOfRangeErrorMessage

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

Function paginateWithCursor

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

Function parseEncodedStruct

  • Convert an encoded struct to a MoveStructId.

    +

    Parameters

    • structObj: {
          account_address: string;
          module_name: string;
          struct_name: string;
      }

      The struct with account_address, module_name, and struct_name properties

      +
      • account_address: string
      • module_name: string
      • struct_name: string

    Returns `${string}::${string}::${string}`

    The MoveStructId

    +

    Example

    const structObj = {
    account_address: "0x1",
    module_name: "0x6170746f735f636f696e",
    struct_name: "0x4170746f73436f696e",
    };
    // structId is "0x1::aptos_coin::AptosCoin"
    const structId = parseEncodedStruct(structObj); +
    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/parseTypeTag.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/parseTypeTag.html new file mode 100644 index 000000000..70d4c4330 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/parseTypeTag.html @@ -0,0 +1,14 @@ +parseTypeTag | @aptos-labs/ts-sdk - v1.28.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

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

Function postAptosFaucet

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

Function postAptosFullNode

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

Function postAptosIndexer

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

Function postAptosPepperService

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/postAptosProvingService.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/postAptosProvingService.html new file mode 100644 index 000000000..08cad887d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/postAptosProvingService.html @@ -0,0 +1 @@ +postAptosProvingService | @aptos-labs/ts-sdk - v1.28.0

Function postAptosProvingService

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/request.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/request.html new file mode 100644 index 000000000..9686ca8f0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/request.html @@ -0,0 +1,3 @@ +request | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/functions/sleep.html b/docs/@aptos-labs/ts-sdk-1.28.0/functions/sleep.html new file mode 100644 index 000000000..c453f693e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/functions/sleep.html @@ -0,0 +1,3 @@ +sleep | @aptos-labs/ts-sdk - v1.28.0
  • Sleep the current thread for the given amount of time

    +

    Parameters

    • timeMs: number

      time in milliseconds to sleep

      +

    Returns Promise<null>

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

Function splitPath

  • Splits derive path into segments

    +

    Parameters

    • path: string

    Returns string[]

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

Function standardizeTypeTags

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

Function stringStructTag

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

Function throwTypeMismatch

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

Function validateNumberInRange

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/hierarchy.html b/docs/@aptos-labs/ts-sdk-1.28.0/hierarchy.html new file mode 100644 index 000000000..2b98f2e5a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/hierarchy.html @@ -0,0 +1 @@ +@aptos-labs/ts-sdk - v1.28.0

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

Class Hierarchy

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

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

Typescript SDK for Aptos

License +Discord +NPM Package Downloads

+

Reference Docs

    +
  1. For SDK documentation, check out the TypeScript SDK documentation
  2. +
  3. For detailed reference documentation you can search, check out the API reference documentation for the associated version.
  4. +
  5. For in-depth examples, check out the examples folder with ready-made package.json files to get you going quickly!
  6. +
+

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 (<= 1.9.1 version only)

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: SigningSchemeInput.Secp256k1Ecdsa }); // Single Sender Secp256k1
const account = Account.generate({ scheme: SigningSchemeInput.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 }); +
+

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.

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/AptosResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/AptosResponse.html new file mode 100644 index 000000000..9d445d1f8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/AptosResponse.html @@ -0,0 +1,16 @@ +AptosResponse | @aptos-labs/ts-sdk - v1.28.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<Req, Res> {
    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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Client.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Client.html new file mode 100644 index 000000000..a356ffc5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Client.html @@ -0,0 +1,2 @@ +Client | @aptos-labs/ts-sdk - v1.28.0

Interface Client

interface Client {
    provider<Req, Res>(requestOptions): Promise<ClientResponse<Res>>;
}

Methods

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientRequest.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientRequest.html new file mode 100644 index 000000000..90ac285c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientRequest.html @@ -0,0 +1,9 @@ +ClientRequest | @aptos-labs/ts-sdk - v1.28.0

Interface ClientRequest<Req>

interface ClientRequest<Req> {
    body?: Req;
    contentType?: string;
    headers?: Record<string, any>;
    method: "GET" | "POST";
    originMethod?: string;
    overrides?: ClientHeadersType & {
        API_KEY?: string;
        WITH_CREDENTIALS?: boolean;
    } & {
        AUTH_TOKEN?: string;
    };
    params?: any;
    url: string;
}

Type Parameters

  • Req

Properties

body?: Req
contentType?: string
headers?: Record<string, any>
method: "GET" | "POST"
originMethod?: string
overrides?: ClientHeadersType & {
    API_KEY?: string;
    WITH_CREDENTIALS?: boolean;
} & {
    AUTH_TOKEN?: string;
}

Type declaration

  • Optional API_KEY?: string
  • Optional WITH_CREDENTIALS?: boolean

Type declaration

  • Optional AUTH_TOKEN?: string
params?: any
url: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientResponse.html new file mode 100644 index 000000000..33fa21036 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ClientResponse.html @@ -0,0 +1,8 @@ +ClientResponse | @aptos-labs/ts-sdk - v1.28.0

Interface ClientResponse<Res>

interface ClientResponse<Res> {
    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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..2ff86b317 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateAccountFromPrivateKeyArgs.html @@ -0,0 +1,6 @@ +CreateAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.28.0

Interface CreateAccountFromPrivateKeyArgs

Arguments for creating an opaque Account from any supported private key. +This is used when the private key type is not known at compilation time.

+
interface CreateAccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy?: boolean;
    privateKey: PrivateKey;
}

Properties

legacy?: boolean
privateKey: PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..a1a0ee671 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html @@ -0,0 +1,7 @@ +CreateEd25519AccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.28.0

Interface CreateEd25519AccountFromPrivateKeyArgs

Arguments for creating an Ed25519Account from an Ed25519PrivateKey. +This is the default input type when passing an Ed25519PrivateKey. +In order to use the SingleKey authentication scheme, legacy needs to be explicitly set to false.

+
interface CreateEd25519AccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy?: true;
    privateKey: Ed25519PrivateKey;
}

Properties

legacy?: true
privateKey: Ed25519PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..ad10281a6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,7 @@ +CreateEd25519SingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.28.0

Interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs

Arguments for creating an SingleKeyAccount from an Ed25519PrivateKey. +The legacy argument needs to be explicitly set to false in order to +use the SingleKey authentication scheme.

+
interface CreateEd25519SingleKeyAccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy: false;
    privateKey: Ed25519PrivateKey;
}

Properties

Properties

legacy: false
privateKey: Ed25519PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..39d71e932 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,7 @@ +CreateSingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.28.0

Interface CreateSingleKeyAccountFromPrivateKeyArgs

Arguments for creating an SingleKeyAccount from any supported private key +that is not an Ed25519PrivateKey. +The legacy argument defaults to false and cannot be explicitly set to true.

+
interface CreateSingleKeyAccountFromPrivateKeyArgs {
    address?: AccountAddressInput;
    legacy?: false;
    privateKey: PrivateKey;
}

Properties

legacy?: false
privateKey: PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Deserializable.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Deserializable.html new file mode 100644 index 000000000..fe81fab63 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Deserializable.html @@ -0,0 +1,6 @@ +Deserializable | @aptos-labs/ts-sdk - v1.28.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<T> {
    deserialize(deserializer): T;
}

Type Parameters

  • T

Methods

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerConstructorArgs.html new file mode 100644 index 000000000..53ce42bf4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerConstructorArgs.html @@ -0,0 +1,3 @@ +Ed25519SignerConstructorArgs | @aptos-labs/ts-sdk - v1.28.0

Interface Ed25519SignerConstructorArgs

interface Ed25519SignerConstructorArgs {
    address?: AccountAddressInput;
    privateKey: Ed25519PrivateKey;
}

Properties

Properties

privateKey: Ed25519PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerFromDerivationPathArgs.html new file mode 100644 index 000000000..c8424566c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/Ed25519SignerFromDerivationPathArgs.html @@ -0,0 +1,3 @@ +Ed25519SignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.28.0

Interface Ed25519SignerFromDerivationPathArgs

interface Ed25519SignerFromDerivationPathArgs {
    mnemonic: string;
    path: string;
}

Properties

Properties

mnemonic: string
path: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/EntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/EntryFunctionArgument.html new file mode 100644 index 000000000..fe7fbade9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/EntryFunctionArgument.html @@ -0,0 +1,8 @@ +EntryFunctionArgument | @aptos-labs/ts-sdk - v1.28.0

Interface EntryFunctionArgument

interface EntryFunctionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForEntryFunction(serializer): void;
}

Hierarchy (view full)

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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateAccountArgs.html new file mode 100644 index 000000000..f88bd9b22 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateAccountArgs.html @@ -0,0 +1,5 @@ +GenerateAccountArgs | @aptos-labs/ts-sdk - v1.28.0

Interface GenerateAccountArgs

Arguments for generating an opaque Account. +This is used when the input signature scheme is not known at compilation time.

+
interface GenerateAccountArgs {
    legacy?: boolean;
    scheme?: SigningSchemeInput;
}

Properties

Properties

legacy?: boolean
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519AccountArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519AccountArgs.html new file mode 100644 index 000000000..528fb7a28 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519AccountArgs.html @@ -0,0 +1,5 @@ +GenerateEd25519AccountArgs | @aptos-labs/ts-sdk - v1.28.0

Interface GenerateEd25519AccountArgs

Arguments for generating an Ed25519Account. +This is the input type used by default.

+
interface GenerateEd25519AccountArgs {
    legacy?: true;
    scheme?: Ed25519;
}

Properties

Properties

legacy?: true
scheme?: Ed25519
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html new file mode 100644 index 000000000..4155e1ce9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateEd25519SingleKeyAccountArgs.html @@ -0,0 +1,6 @@ +GenerateEd25519SingleKeyAccountArgs | @aptos-labs/ts-sdk - v1.28.0

Interface GenerateEd25519SingleKeyAccountArgs

Arguments for generating an SingleKeyAccount with ah underlying Ed25519PrivateKey. +The legacy argument needs to be explicitly set to false, +otherwise an Ed25519Account will be returned instead.

+
interface GenerateEd25519SingleKeyAccountArgs {
    legacy: false;
    scheme?: Ed25519;
}

Properties

Properties

legacy: false
scheme?: Ed25519
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateSingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateSingleKeyAccountArgs.html new file mode 100644 index 000000000..900ada3d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/GenerateSingleKeyAccountArgs.html @@ -0,0 +1,6 @@ +GenerateSingleKeyAccountArgs | @aptos-labs/ts-sdk - v1.28.0

Interface GenerateSingleKeyAccountArgs

Arguments for generating an SingleKeyAccount with any supported private key +that is not an Ed25519PrivateKey. +The legacy argument defaults to false and cannot be explicitly set to true.

+
interface GenerateSingleKeyAccountArgs {
    legacy?: false;
    scheme: Secp256k1Ecdsa;
}

Properties

Properties

legacy?: false
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html new file mode 100644 index 000000000..1f197f1b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionArgs.html @@ -0,0 +1,9 @@ +InputGenerateMultiAgentRawTransactionArgs | @aptos-labs/ts-sdk - v1.28.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[]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionData.html new file mode 100644 index 000000000..d2bed4b04 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateMultiAgentRawTransactionData.html @@ -0,0 +1,7 @@ +InputGenerateMultiAgentRawTransactionData | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html new file mode 100644 index 000000000..caaa182a4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionArgs.html @@ -0,0 +1,8 @@ +InputGenerateSingleSignerRawTransactionArgs | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionData.html new file mode 100644 index 000000000..5901faba5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputGenerateSingleSignerRawTransactionData.html @@ -0,0 +1,7 @@ +InputGenerateSingleSignerRawTransactionData | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputSubmitTransactionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputSubmitTransactionData.html new file mode 100644 index 000000000..4af86af42 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/InputSubmitTransactionData.html @@ -0,0 +1,6 @@ +InputSubmitTransactionData | @aptos-labs/ts-sdk - v1.28.0

Interface InputSubmitTransactionData

Interface that holds the user data input when submitting a transaction

+

Properties

additionalSignersAuthenticators?: AccountAuthenticator[]
feePayerAuthenticator?: AccountAuthenticator
senderAuthenticator: AccountAuthenticator
transaction: AnyRawTransaction
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/OrderByArg.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/OrderByArg.html new file mode 100644 index 000000000..490548495 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/OrderByArg.html @@ -0,0 +1,2 @@ +OrderByArg | @aptos-labs/ts-sdk - v1.28.0

Interface OrderByArg<T>

interface OrderByArg<T> {
    orderBy?: OrderBy<T>;
}

Type Parameters

  • T extends {}

Properties

Properties

orderBy?: OrderBy<T>
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PaginationArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PaginationArgs.html new file mode 100644 index 000000000..c8e20a420 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PaginationArgs.html @@ -0,0 +1,6 @@ +PaginationArgs | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKey.html new file mode 100644 index 000000000..025821c4f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKey.html @@ -0,0 +1,10 @@ +PrivateKey | @aptos-labs/ts-sdk - v1.28.0

Interface PrivateKey

An abstract representation of a private key. +It is associated to a signature scheme and provides signing capabilities.

+
interface PrivateKey {
    publicKey(): PublicKey;
    sign(message): Signature;
    toUint8Array(): Uint8Array;
}

Implemented by

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKeyFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKeyFromDerivationPathArgs.html new file mode 100644 index 000000000..e53930410 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/PrivateKeyFromDerivationPathArgs.html @@ -0,0 +1,4 @@ +PrivateKeyFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.28.0

Interface PrivateKeyFromDerivationPathArgs

Arguments for deriving a private key from a mnemonic phrase and a BIP44 path.

+
interface PrivateKeyFromDerivationPathArgs {
    mnemonic: string;
    path: string;
}

Properties

Properties

mnemonic: string
path: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ProofFetchEvents.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ProofFetchEvents.html new file mode 100644 index 000000000..d6dd0db42 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ProofFetchEvents.html @@ -0,0 +1,2 @@ +ProofFetchEvents | @aptos-labs/ts-sdk - v1.28.0

Interface ProofFetchEvents

interface ProofFetchEvents {
    proofFetchFinish: ((status) => void);
}

Properties

Properties

proofFetchFinish: ((status) => void)

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ScriptFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ScriptFunctionArgument.html new file mode 100644 index 000000000..c3fa05d7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/ScriptFunctionArgument.html @@ -0,0 +1,9 @@ +ScriptFunctionArgument | @aptos-labs/ts-sdk - v1.28.0

Interface ScriptFunctionArgument

interface ScriptFunctionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForScriptFunction(serializer): void;
}

Hierarchy (view full)

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

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerConstructorArgs.html new file mode 100644 index 000000000..d48487c49 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerConstructorArgs.html @@ -0,0 +1,3 @@ +SingleKeySignerConstructorArgs | @aptos-labs/ts-sdk - v1.28.0

Interface SingleKeySignerConstructorArgs

interface SingleKeySignerConstructorArgs {
    address?: AccountAddressInput;
    privateKey: PrivateKey;
}

Properties

Properties

privateKey: PrivateKey
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerGenerateArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerGenerateArgs.html new file mode 100644 index 000000000..f4ebf649d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/SingleKeySignerGenerateArgs.html @@ -0,0 +1,2 @@ +SingleKeySignerGenerateArgs | @aptos-labs/ts-sdk - v1.28.0

Interface SingleKeySignerGenerateArgs

interface SingleKeySignerGenerateArgs {
    scheme?: SigningSchemeInput;
}

Properties

Properties

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TokenStandardArg.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TokenStandardArg.html new file mode 100644 index 000000000..afb0bfd99 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TokenStandardArg.html @@ -0,0 +1,2 @@ +TokenStandardArg | @aptos-labs/ts-sdk - v1.28.0

Interface TokenStandardArg

interface TokenStandardArg {
    tokenStandard?: TokenStandard;
}

Properties

Properties

tokenStandard?: TokenStandard
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionArgument.html new file mode 100644 index 000000000..f78439b76 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionArgument.html @@ -0,0 +1,12 @@ +TransactionArgument | @aptos-labs/ts-sdk - v1.28.0

Interface TransactionArgument

interface TransactionArgument {
    bcsToBytes(): Uint8Array;
    bcsToHex(): Hex;
    serialize(serializer): void;
    serializeForEntryFunction(serializer): void;
    serializeForScriptFunction(serializer): void;
}

Hierarchy (view full)

Implemented by

Methods

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionWorkerEvents.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionWorkerEvents.html new file mode 100644 index 000000000..4b7e4b2c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/TransactionWorkerEvents.html @@ -0,0 +1,6 @@ +TransactionWorkerEvents | @aptos-labs/ts-sdk - v1.28.0

Interface TransactionWorkerEvents

interface TransactionWorkerEvents {
    executionFinish: ((data) => void);
    transactionExecuted: ((data) => void);
    transactionExecutionFailed: ((data) => void);
    transactionSendFailed: ((data) => void);
    transactionSent: ((data) => void);
}

Properties

executionFinish: ((data) => void)

Type declaration

transactionExecuted: ((data) => void)

Type declaration

transactionExecutionFailed: ((data) => void)

Type declaration

transactionSendFailed: ((data) => void)

Type declaration

transactionSent: ((data) => void)

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyEd25519SignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyEd25519SignatureArgs.html new file mode 100644 index 000000000..1bf2e7bbb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyEd25519SignatureArgs.html @@ -0,0 +1,3 @@ +VerifyEd25519SignatureArgs | @aptos-labs/ts-sdk - v1.28.0

Interface VerifyEd25519SignatureArgs

interface VerifyEd25519SignatureArgs {
    message: HexInput;
    signature: Ed25519Signature;
}

Properties

Properties

message: HexInput
signature: Ed25519Signature
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyMultiKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyMultiKeySignatureArgs.html new file mode 100644 index 000000000..bc04a9ff4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifyMultiKeySignatureArgs.html @@ -0,0 +1,3 @@ +VerifyMultiKeySignatureArgs | @aptos-labs/ts-sdk - v1.28.0

Interface VerifyMultiKeySignatureArgs

interface VerifyMultiKeySignatureArgs {
    message: HexInput;
    signature: MultiKeySignature;
}

Properties

Properties

message: HexInput
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySignatureArgs.html new file mode 100644 index 000000000..508cc4401 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySignatureArgs.html @@ -0,0 +1,4 @@ +VerifySignatureArgs | @aptos-labs/ts-sdk - v1.28.0

Interface VerifySignatureArgs

Arguments for verifying a signature

+
interface VerifySignatureArgs {
    message: HexInput;
    signature: Signature;
}

Properties

Properties

message: HexInput
signature: Signature
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySingleKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySingleKeySignatureArgs.html new file mode 100644 index 000000000..2c43ed94a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/VerifySingleKeySignatureArgs.html @@ -0,0 +1,3 @@ +VerifySingleKeySignatureArgs | @aptos-labs/ts-sdk - v1.28.0

Interface VerifySingleKeySignatureArgs

interface VerifySingleKeySignatureArgs {
    message: HexInput;
    signature: AnySignature;
}

Properties

Properties

message: HexInput
signature: AnySignature
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/WhereArg.html b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/WhereArg.html new file mode 100644 index 000000000..d2704f031 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/interfaces/WhereArg.html @@ -0,0 +1,2 @@ +WhereArg | @aptos-labs/ts-sdk - v1.28.0

Interface WhereArg<T>

interface WhereArg<T> {
    where?: T;
}

Type Parameters

  • T extends {}

Properties

Properties

where?: T
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/modules.html b/docs/@aptos-labs/ts-sdk-1.28.0/modules.html new file mode 100644 index 000000000..3468c99dd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/modules.html @@ -0,0 +1,444 @@ +@aptos-labs/ts-sdk - v1.28.0

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

Index

Enumerations

Classes

Account +AccountAddress +AccountAuthenticator +AccountAuthenticatorEd25519 +AccountAuthenticatorMultiEd25519 +AccountAuthenticatorMultiKey +AccountAuthenticatorSingleKey +AccountPublicKey +AccountSequenceNumber +AnyPublicKey +AnySignature +Aptos +AptosApiError +AptosConfig +AuthenticationKey +Bool +ChainId +Deserializer +Ed25519Account +Ed25519PrivateKey +Ed25519PublicKey +Ed25519Signature +EntryFunction +EntryFunctionBytes +EphemeralCertificate +EphemeralKeyPair +EphemeralPublicKey +EphemeralSignature +FeePayerRawTransaction +FixedBytes +Groth16Zkp +Hex +Identifier +KeylessAccount +KeylessConfiguration +KeylessPublicKey +KeylessSignature +ModuleId +MoveOption +MoveString +MoveVector +MultiAgentRawTransaction +MultiAgentTransaction +MultiEd25519PublicKey +MultiEd25519Signature +MultiKey +MultiKeyAccount +MultiKeySignature +MultiSig +MultiSigTransactionPayload +ParsingError +PublicKey +RawTransaction +RawTransactionWithData +RotationProofChallenge +Script +Secp256k1PrivateKey +Secp256k1PublicKey +Secp256k1Signature +Serializable +Serialized +Serializer +Signature +SignedTransaction +SimpleTransaction +SingleKeyAccount +StructTag +TransactionAuthenticator +TransactionAuthenticatorEd25519 +TransactionAuthenticatorFeePayer +TransactionAuthenticatorMultiAgent +TransactionAuthenticatorMultiEd25519 +TransactionAuthenticatorSingleSender +TransactionPayload +TransactionPayloadEntryFunction +TransactionPayloadMultiSig +TransactionPayloadScript +TransactionWorker +TypeTag +TypeTagAddress +TypeTagBool +TypeTagGeneric +TypeTagParserError +TypeTagReference +TypeTagSigner +TypeTagStruct +TypeTagU128 +TypeTagU16 +TypeTagU256 +TypeTagU32 +TypeTagU64 +TypeTagU8 +TypeTagVector +U128 +U16 +U256 +U32 +U64 +U8 +ZeroKnowledgeSig +ZkProof +

Interfaces

Type Aliases

AccountAddressInput +AccountData +AccountSignature +AnyNumber +AnyRawTransaction +AnyRawTransactionInstance +AnyTransactionPayloadInstance +AptosRequest +AptosSettings +AuthenticationKeyScheme +Block +BlockEndInfo +BlockEpilogueTransactionResponse +BlockMetadataTransactionResponse +ClientConfig +ClientHeadersType +CommittedTransactionResponse +DecodedTableData +DeletedTableData +DerivedKeys +DeserializableClass +DirectWriteSet +EntryFunctionABI +EntryFunctionArgumentTypes +EntryFunctionPayloadResponse +Event +EventGuid +ExecutionFinishEventData +FailureEventData +FaucetConfig +FullNodeConfig +FunctionABI +GasEstimation +GenerateAccount +GenerateAccountWithEd25519 +GenerateAccountWithSingleSignerSecp256k1Key +GenesisPayload +GenesisTransactionResponse +GetANSNameResponse +GetAccountCoinsDataResponse +GetAccountCollectionsWithOwnedTokenResponse +GetAccountOwnedTokensFromCollectionResponse +GetAccountOwnedTokensQueryResponse +GetAptosRequestOptions +GetChainTopUserTransactionsResponse +GetCollectionDataResponse +GetCurrentFungibleAssetBalancesResponse +GetCurrentTokenOwnershipResponse +GetDelegatedStakingActivitiesResponse +GetEventsResponse +GetFungibleAssetActivitiesResponse +GetFungibleAssetMetadataResponse +GetNumberOfDelegatorsResponse +GetObjectDataQueryResponse +GetOwnedTokensResponse +GetProcessorStatusResponse +GetRequestOptions +GetTableItemsDataResponse +GetTableItemsMetadataResponse +GetTokenActivityResponse +GetTokenDataResponse +GraphqlQuery +HexInput +IndexerConfig +InputEntryFunctionData +InputEntryFunctionDataWithABI +InputEntryFunctionDataWithRemoteABI +InputGenerateRawTransactionArgs +InputGenerateTransactionData +InputGenerateTransactionOptions +InputGenerateTransactionPayloadData +InputGenerateTransactionPayloadDataWithABI +InputGenerateTransactionPayloadDataWithRemoteABI +InputMultiSigData +InputMultiSigDataWithABI +InputMultiSigDataWithRemoteABI +InputScriptData +InputSimulateTransactionData +InputSimulateTransactionOptions +InputViewFunctionData +InputViewFunctionDataWithABI +InputViewFunctionDataWithRemoteABI +InputViewFunctionJsonData +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 +ProofFetchCallback +ProofFetchFailure +ProofFetchStatus +ProofFetchSuccess +ScriptFunctionArgumentTypes +ScriptPayloadResponse +ScriptWriteSet +SimpleEntryFunctionArgumentTypes +SingleKeySignerFromDerivationPathArgs +StateCheckpointTransactionResponse +SuccessEventData +TableItemRequest +TokenStandard +TransactionEd25519Signature +TransactionFeePayerSignature +TransactionMultiAgentSignature +TransactionMultiEd25519Signature +TransactionPayloadResponse +TransactionResponse +TransactionSecp256k1Signature +TransactionSignature +TypeArgument +Uint128 +Uint16 +Uint256 +Uint32 +Uint64 +Uint8 +UserTransactionResponse +ValidatorTransactionResponse +ViewFunctionABI +ViewFunctionJsonPayload +WaitForTransactionOptions +WriteSet +WriteSetChange +WriteSetChangeDeleteModule +WriteSetChangeDeleteResource +WriteSetChangeDeleteTableItem +WriteSetChangeWriteModule +WriteSetChangeWriteResource +WriteSetChangeWriteTableItem +

Variables

Functions

CKDPriv +aptosCoinStructTag +aptosRequest +base64UrlDecode +buildTransaction +checkOrConvertArgument +convertAmountFromHumanReadableToOnChain +convertAmountFromOnChainToHumanReadable +convertArgument +convertNumber +createObjectAddress +createResourceAddress +createTokenAddress +deriveKey +deriveTransactionType +deserializeFromScriptArgument +ensureBoolean +fetchEntryFunctionAbi +fetchFunctionAbi +fetchViewFunctionAbi +findFirstNonSignerArg +floorToWholeHour +generateRawTransaction +generateSignedTransaction +generateSignedTransactionForSimulation +generateSigningMessage +generateSigningMessageForSerializable +generateSigningMessageForTransaction +generateTransactionPayload +generateTransactionPayloadWithABI +generateUserTransactionHash +generateViewFunctionPayload +generateViewFunctionPayloadWithABI +get +getAptosFullNode +getAptosPepperService +getAuthenticatorForSimulation +getFunctionParts +getKeylessConfig +hashValues +isBcsAddress +isBcsBool +isBcsFixedBytes +isBcsString +isBcsU128 +isBcsU16 +isBcsU256 +isBcsU32 +isBcsU64 +isBcsU8 +isBlockEpilogueTransactionResponse +isBlockMetadataTransactionResponse +isBool +isCanonicalEd25519Signature +isEd25519Signature +isEmptyOption +isEncodedEntryFunctionArgument +isEncodedStruct +isFeePayerSignature +isGenesisTransactionResponse +isLargeNumber +isMultiAgentSignature +isMultiEd25519Signature +isNumber +isPendingTransactionResponse +isScriptDataInput +isSecp256k1Signature +isStateCheckpointTransactionResponse +isString +isUserTransactionResponse +isValidBIP44Path +isValidHardenedPath +isValidatorTransactionResponse +mnemonicToSeed +normalizeBundle +nowInSeconds +objectStructTag +optionStructTag +outOfRangeErrorMessage +paginateWithCursor +parseEncodedStruct +parseTypeTag +post +postAptosFaucet +postAptosFullNode +postAptosIndexer +postAptosPepperService +postAptosProvingService +request +sleep +splitPath +standardizeTypeTags +stringStructTag +throwTypeMismatch +validateNumberInRange +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountAddressInput.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountAddressInput.html new file mode 100644 index 000000000..984a18797 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountAddressInput.html @@ -0,0 +1 @@ +AccountAddressInput | @aptos-labs/ts-sdk - v1.28.0

Type alias AccountAddressInput

AccountAddressInput: HexInput | AccountAddress
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountData.html new file mode 100644 index 000000000..fd10f0f36 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountData.html @@ -0,0 +1 @@ +AccountData | @aptos-labs/ts-sdk - v1.28.0

Type alias AccountData

AccountData: {
    authentication_key: string;
    sequence_number: string;
}

Type declaration

  • authentication_key: string
  • sequence_number: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountSignature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountSignature.html new file mode 100644 index 000000000..23309204a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AccountSignature.html @@ -0,0 +1,2 @@ +AccountSignature | @aptos-labs/ts-sdk - v1.28.0

Type alias AccountSignature

The union of all single account signatures.

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyNumber.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyNumber.html new file mode 100644 index 000000000..fabde0144 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyNumber.html @@ -0,0 +1 @@ +AnyNumber | @aptos-labs/ts-sdk - v1.28.0

Type alias AnyNumber

AnyNumber: number | bigint
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransaction.html new file mode 100644 index 000000000..221663298 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransaction.html @@ -0,0 +1,2 @@ +AnyRawTransaction | @aptos-labs/ts-sdk - v1.28.0

Type alias AnyRawTransaction

Unified type that holds all the return interfaces when generating different transaction types

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransactionInstance.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransactionInstance.html new file mode 100644 index 000000000..3368a0576 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyRawTransactionInstance.html @@ -0,0 +1,2 @@ +AnyRawTransactionInstance | @aptos-labs/ts-sdk - v1.28.0

Type alias AnyRawTransactionInstance

Type that holds all raw transaction instances Aptos SDK supports

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyTransactionPayloadInstance.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyTransactionPayloadInstance.html new file mode 100644 index 000000000..0565c8e29 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AnyTransactionPayloadInstance.html @@ -0,0 +1,2 @@ +AnyTransactionPayloadInstance | @aptos-labs/ts-sdk - v1.28.0

Type alias AnyTransactionPayloadInstance

The generated transaction payload type that was produces from generateTransactionPayload() function.

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosRequest.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosRequest.html new file mode 100644 index 000000000..47f47b694 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosRequest.html @@ -0,0 +1,11 @@ +AptosRequest | @aptos-labs/ts-sdk - v1.28.0

Type alias AptosRequest

AptosRequest: {
    acceptType?: string;
    body?: any;
    contentType?: string;
    method: "GET" | "POST";
    originMethod?: string;
    overrides?: ClientConfig & FullNodeConfig & IndexerConfig & FaucetConfig;
    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 & FullNodeConfig & IndexerConfig & FaucetConfig
  • 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.devnet.aptoslabs.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

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosSettings.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosSettings.html new file mode 100644 index 000000000..203ffc748 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AptosSettings.html @@ -0,0 +1,4 @@ +AptosSettings | @aptos-labs/ts-sdk - v1.28.0

Type alias AptosSettings

AptosSettings: {
    client?: Client;
    clientConfig?: ClientConfig;
    faucet?: string;
    faucetConfig?: FaucetConfig;
    fullnode?: string;
    fullnodeConfig?: FullNodeConfig;
    indexer?: string;
    indexerConfig?: IndexerConfig;
    network?: Network;
    pepper?: string;
    prover?: string;
}

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 faucetConfig?: FaucetConfig
  • Optional Readonly fullnode?: string
  • Optional Readonly fullnodeConfig?: FullNodeConfig
  • Optional Readonly indexer?: string
  • Optional Readonly indexerConfig?: IndexerConfig
  • Optional Readonly network?: Network
  • Optional Readonly pepper?: string
  • Optional Readonly prover?: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/AuthenticationKeyScheme.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/AuthenticationKeyScheme.html new file mode 100644 index 000000000..a433bc43a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/AuthenticationKeyScheme.html @@ -0,0 +1,3 @@ +AuthenticationKeyScheme | @aptos-labs/ts-sdk - v1.28.0

Type alias AuthenticationKeyScheme

AuthenticationKeyScheme: SigningScheme | DeriveScheme

A list of Authentication Key schemes that are supported by Aptos.

+

They are combinations of signing schemes and derive schemes.

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Block.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Block.html new file mode 100644 index 000000000..0b9ab5603 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Block.html @@ -0,0 +1,3 @@ +Block | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEndInfo.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEndInfo.html new file mode 100644 index 000000000..1dd9c3b26 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEndInfo.html @@ -0,0 +1,2 @@ +BlockEndInfo | @aptos-labs/ts-sdk - v1.28.0

Type alias BlockEndInfo

BlockEndInfo: {
    block_approx_output_size: number;
    block_effective_block_gas_units: number;
    block_gas_limit_reached: boolean;
    block_output_limit_reached: boolean;
}

BlockEndInfo describes the gas state of the block

+

Type declaration

  • block_approx_output_size: number
  • block_effective_block_gas_units: number
  • block_gas_limit_reached: boolean
  • block_output_limit_reached: boolean
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..aaa6b37f3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockEpilogueTransactionResponse.html @@ -0,0 +1,6 @@ +BlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias BlockEpilogueTransactionResponse

BlockEpilogueTransactionResponse: {
    accumulator_root_hash: string;
    block_end_info: BlockEndInfo | null;
    changes: WriteSetChange[];
    event_root_hash: string;
    gas_used: string;
    hash: string;
    state_change_hash: string;
    state_checkpoint_hash: string | null;
    success: boolean;
    timestamp: string;
    type: BlockEpilogue;
    version: string;
    vm_status: string;
}

BlockEpilogueTransactionResponse is a transaction that is executed at the end of a block keeping track of data from +the whole block

+

Type declaration

  • accumulator_root_hash: string
  • block_end_info: BlockEndInfo | null
  • changes: WriteSetChange[]

    Final state of resources changed by the transaction

    +
  • event_root_hash: string
  • gas_used: string
  • hash: string
  • state_change_hash: string
  • state_checkpoint_hash: string | null
  • success: boolean

    Whether the transaction was successful

    +
  • timestamp: string
  • type: BlockEpilogue
  • version: string
  • vm_status: string

    The VM status of the transaction, can tell useful information in a failure

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockMetadataTransactionResponse.html new file mode 100644 index 000000000..50ae7c552 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/BlockMetadataTransactionResponse.html @@ -0,0 +1,7 @@ +BlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v1.28.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 | null;
    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
  • state_checkpoint_hash: string | null
  • 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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientConfig.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientConfig.html new file mode 100644 index 000000000..5e8ad1589 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientConfig.html @@ -0,0 +1,5 @@ +ClientConfig | @aptos-labs/ts-sdk - v1.28.0

Type alias ClientConfig

ClientConfig: ClientHeadersType & {
    API_KEY?: string;
    WITH_CREDENTIALS?: boolean;
}

A configuration object we can pass with the request to the server.

+

Type declaration

  • Optional API_KEY?: string
  • Optional WITH_CREDENTIALS?: boolean

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

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientHeadersType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientHeadersType.html new file mode 100644 index 000000000..04451721a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ClientHeadersType.html @@ -0,0 +1,2 @@ +ClientHeadersType | @aptos-labs/ts-sdk - v1.28.0

Type alias ClientHeadersType

ClientHeadersType: {
    HEADERS?: Record<string, string | number | boolean>;
}

General type definition for client HEADERS

+

Type declaration

  • Optional HEADERS?: Record<string, string | number | boolean>
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/CommittedTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/CommittedTransactionResponse.html new file mode 100644 index 000000000..eba023cb8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/CommittedTransactionResponse.html @@ -0,0 +1 @@ +CommittedTransactionResponse | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/DecodedTableData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/DecodedTableData.html new file mode 100644 index 000000000..845f40220 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/DecodedTableData.html @@ -0,0 +1,5 @@ +DecodedTableData | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/DeletedTableData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/DeletedTableData.html new file mode 100644 index 000000000..d00a708bd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/DeletedTableData.html @@ -0,0 +1,4 @@ +DeletedTableData | @aptos-labs/ts-sdk - v1.28.0

Type alias DeletedTableData

DeletedTableData: {
    key: any;
    key_type: string;
}

Deleted table data

+

Type declaration

  • key: any

    Deleted key

    +
  • key_type: string

    Deleted key type

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/DerivedKeys.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/DerivedKeys.html new file mode 100644 index 000000000..89a3e911e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/DerivedKeys.html @@ -0,0 +1 @@ +DerivedKeys | @aptos-labs/ts-sdk - v1.28.0

Type alias DerivedKeys

DerivedKeys: {
    chainCode: Uint8Array;
    key: Uint8Array;
}

Type declaration

  • chainCode: Uint8Array
  • key: Uint8Array
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/DeserializableClass.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/DeserializableClass.html new file mode 100644 index 000000000..e4870054f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/DeserializableClass.html @@ -0,0 +1 @@ +DeserializableClass | @aptos-labs/ts-sdk - v1.28.0

Type alias DeserializableClass<T>

DeserializableClass<T>: {
    deserialize(deserializer): T;
}

Type Parameters

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/DirectWriteSet.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/DirectWriteSet.html new file mode 100644 index 000000000..3218b4a4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/DirectWriteSet.html @@ -0,0 +1 @@ +DirectWriteSet | @aptos-labs/ts-sdk - v1.28.0

Type alias DirectWriteSet

DirectWriteSet: {
    changes: WriteSetChange[];
    events: Event[];
    type: string;
}

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionABI.html new file mode 100644 index 000000000..00cc03520 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionABI.html @@ -0,0 +1,3 @@ +EntryFunctionABI | @aptos-labs/ts-sdk - v1.28.0

Type alias EntryFunctionABI

EntryFunctionABI: FunctionABI & {
    signers?: number;
}

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

  • Optional signers?: number
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionArgumentTypes.html new file mode 100644 index 000000000..a1928e172 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +EntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.28.0

Type alias EntryFunctionArgumentTypes

Entry function arguments to be used when building a raw transaction using BCS serialized arguments

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionPayloadResponse.html new file mode 100644 index 000000000..2eb7819d6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/EntryFunctionPayloadResponse.html @@ -0,0 +1,3 @@ +EntryFunctionPayloadResponse | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Event.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Event.html new file mode 100644 index 000000000..69b8467bb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Event.html @@ -0,0 +1,2 @@ +Event | @aptos-labs/ts-sdk - v1.28.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
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/EventGuid.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/EventGuid.html new file mode 100644 index 000000000..d97bdd45b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/EventGuid.html @@ -0,0 +1 @@ +EventGuid | @aptos-labs/ts-sdk - v1.28.0

Type alias EventGuid

EventGuid: {
    account_address: string;
    creation_number: string;
}

Type declaration

  • account_address: string
  • creation_number: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ExecutionFinishEventData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ExecutionFinishEventData.html new file mode 100644 index 000000000..67a2ee087 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ExecutionFinishEventData.html @@ -0,0 +1 @@ +ExecutionFinishEventData | @aptos-labs/ts-sdk - v1.28.0

Type alias ExecutionFinishEventData

ExecutionFinishEventData: {
    message: string;
}

Type declaration

  • message: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/FailureEventData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/FailureEventData.html new file mode 100644 index 000000000..dcdf29562 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/FailureEventData.html @@ -0,0 +1 @@ +FailureEventData | @aptos-labs/ts-sdk - v1.28.0

Type alias FailureEventData

FailureEventData: {
    error: string;
    message: string;
}

Type declaration

  • error: string
  • message: string
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/FaucetConfig.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/FaucetConfig.html new file mode 100644 index 000000000..781c8245d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/FaucetConfig.html @@ -0,0 +1,4 @@ +FaucetConfig | @aptos-labs/ts-sdk - v1.28.0

Type alias FaucetConfig

FaucetConfig: ClientHeadersType & {
    AUTH_TOKEN?: string;
}

A Faucet only configuration object

+

Type declaration

  • Optional AUTH_TOKEN?: string

Param: HEADERS

extra headers we want to send with the request

+

Param: AUTH_TOKEN

an auth token to send with a faucet request

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/FullNodeConfig.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/FullNodeConfig.html new file mode 100644 index 000000000..6c24ebf71 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/FullNodeConfig.html @@ -0,0 +1,3 @@ +FullNodeConfig | @aptos-labs/ts-sdk - v1.28.0

Type alias FullNodeConfig

FullNodeConfig: ClientHeadersType

A Fullnode only configuration object

+

Param: HEADERS

extra headers we want to send with the request

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/FunctionABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/FunctionABI.html new file mode 100644 index 000000000..4bfd8d5a6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/FunctionABI.html @@ -0,0 +1,2 @@ +FunctionABI | @aptos-labs/ts-sdk - v1.28.0

Type alias FunctionABI

FunctionABI: {
    parameters: TypeTag[];
    typeParameters: MoveFunctionGenericTypeParam[];
}

Data need for a generic function ABI, both view and entry

+

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GasEstimation.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GasEstimation.html new file mode 100644 index 000000000..77c4821e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GasEstimation.html @@ -0,0 +1,5 @@ +GasEstimation | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccount.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccount.html new file mode 100644 index 000000000..0962a5e30 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccount.html @@ -0,0 +1 @@ +GenerateAccount | @aptos-labs/ts-sdk - v1.28.0
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithEd25519.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithEd25519.html new file mode 100644 index 000000000..f1962f45c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithEd25519.html @@ -0,0 +1,3 @@ +GenerateAccountWithEd25519 | @aptos-labs/ts-sdk - v1.28.0

Type alias GenerateAccountWithEd25519

GenerateAccountWithEd25519: {
    legacy: boolean;
    scheme: Ed25519;
}

Input type to generate an account using Single Signer +Ed25519 or Legacy Ed25519

+

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html new file mode 100644 index 000000000..da5554ac7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenerateAccountWithSingleSignerSecp256k1Key.html @@ -0,0 +1,3 @@ +GenerateAccountWithSingleSignerSecp256k1Key | @aptos-labs/ts-sdk - v1.28.0

Type alias GenerateAccountWithSingleSignerSecp256k1Key

GenerateAccountWithSingleSignerSecp256k1Key: {
    legacy?: false;
    scheme: Secp256k1Ecdsa;
}

Input type to generate an account using Single Signer +Secp256k1

+

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisPayload.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisPayload.html new file mode 100644 index 000000000..9d4150738 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisPayload.html @@ -0,0 +1 @@ +GenesisPayload | @aptos-labs/ts-sdk - v1.28.0

Type alias GenesisPayload

GenesisPayload: {
    type: string;
    write_set: WriteSet;
}

Type declaration

\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisTransactionResponse.html new file mode 100644 index 000000000..7c846bab3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GenesisTransactionResponse.html @@ -0,0 +1,5 @@ +GenesisTransactionResponse | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetANSNameResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetANSNameResponse.html new file mode 100644 index 000000000..3784b1490 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetANSNameResponse.html @@ -0,0 +1 @@ +GetANSNameResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetANSNameResponse

GetANSNameResponse: GetNamesQuery["current_aptos_names"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCoinsDataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCoinsDataResponse.html new file mode 100644 index 000000000..611b1fa6f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCoinsDataResponse.html @@ -0,0 +1 @@ +GetAccountCoinsDataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetAccountCoinsDataResponse

GetAccountCoinsDataResponse: GetAccountCoinsDataQuery["current_fungible_asset_balances"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCollectionsWithOwnedTokenResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCollectionsWithOwnedTokenResponse.html new file mode 100644 index 000000000..e98e9cebb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountCollectionsWithOwnedTokenResponse.html @@ -0,0 +1 @@ +GetAccountCollectionsWithOwnedTokenResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetAccountCollectionsWithOwnedTokenResponse

GetAccountCollectionsWithOwnedTokenResponse: GetAccountCollectionsWithOwnedTokensQuery["current_collection_ownership_v2_view"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensFromCollectionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensFromCollectionResponse.html new file mode 100644 index 000000000..20b60d604 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensFromCollectionResponse.html @@ -0,0 +1 @@ +GetAccountOwnedTokensFromCollectionResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetAccountOwnedTokensFromCollectionResponse

GetAccountOwnedTokensFromCollectionResponse: GetAccountOwnedTokensFromCollectionQuery["current_token_ownerships_v2"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensQueryResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensQueryResponse.html new file mode 100644 index 000000000..abafe076b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAccountOwnedTokensQueryResponse.html @@ -0,0 +1 @@ +GetAccountOwnedTokensQueryResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetAccountOwnedTokensQueryResponse

GetAccountOwnedTokensQueryResponse: GetAccountOwnedTokensQuery["current_token_ownerships_v2"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAptosRequestOptions.html new file mode 100644 index 000000000..f541b7fdd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetAptosRequestOptions.html @@ -0,0 +1 @@ +GetAptosRequestOptions | @aptos-labs/ts-sdk - v1.28.0

Type alias GetAptosRequestOptions

GetAptosRequestOptions: Omit<GetRequestOptions, "type">
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetChainTopUserTransactionsResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetChainTopUserTransactionsResponse.html new file mode 100644 index 000000000..08c43e983 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetChainTopUserTransactionsResponse.html @@ -0,0 +1 @@ +GetChainTopUserTransactionsResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetChainTopUserTransactionsResponse

GetChainTopUserTransactionsResponse: GetChainTopUserTransactionsQuery["user_transactions"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCollectionDataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCollectionDataResponse.html new file mode 100644 index 000000000..636c0198c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCollectionDataResponse.html @@ -0,0 +1 @@ +GetCollectionDataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetCollectionDataResponse

GetCollectionDataResponse: GetCollectionDataQuery["current_collections_v2"][0]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentFungibleAssetBalancesResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentFungibleAssetBalancesResponse.html new file mode 100644 index 000000000..67b697a56 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentFungibleAssetBalancesResponse.html @@ -0,0 +1 @@ +GetCurrentFungibleAssetBalancesResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetCurrentFungibleAssetBalancesResponse

GetCurrentFungibleAssetBalancesResponse: GetCurrentFungibleAssetBalancesQuery["current_fungible_asset_balances"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentTokenOwnershipResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentTokenOwnershipResponse.html new file mode 100644 index 000000000..d243135ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetCurrentTokenOwnershipResponse.html @@ -0,0 +1 @@ +GetCurrentTokenOwnershipResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetCurrentTokenOwnershipResponse

GetCurrentTokenOwnershipResponse: GetCurrentTokenOwnershipQuery["current_token_ownerships_v2"][0]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetDelegatedStakingActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetDelegatedStakingActivitiesResponse.html new file mode 100644 index 000000000..cd49ff964 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetDelegatedStakingActivitiesResponse.html @@ -0,0 +1 @@ +GetDelegatedStakingActivitiesResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetDelegatedStakingActivitiesResponse

GetDelegatedStakingActivitiesResponse: GetDelegatedStakingActivitiesQuery["delegated_staking_activities"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetEventsResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetEventsResponse.html new file mode 100644 index 000000000..c85d563e8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetEventsResponse.html @@ -0,0 +1 @@ +GetEventsResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetEventsResponse

GetEventsResponse: GetEventsQuery["events"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetActivitiesResponse.html new file mode 100644 index 000000000..82f000d91 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetActivitiesResponse.html @@ -0,0 +1 @@ +GetFungibleAssetActivitiesResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetFungibleAssetActivitiesResponse

GetFungibleAssetActivitiesResponse: GetFungibleAssetActivitiesQuery["fungible_asset_activities"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetMetadataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetMetadataResponse.html new file mode 100644 index 000000000..e3c397e81 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetFungibleAssetMetadataResponse.html @@ -0,0 +1 @@ +GetFungibleAssetMetadataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetFungibleAssetMetadataResponse

GetFungibleAssetMetadataResponse: GetFungibleAssetMetadataQuery["fungible_asset_metadata"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetNumberOfDelegatorsResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetNumberOfDelegatorsResponse.html new file mode 100644 index 000000000..38b647c39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetNumberOfDelegatorsResponse.html @@ -0,0 +1 @@ +GetNumberOfDelegatorsResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetNumberOfDelegatorsResponse

GetNumberOfDelegatorsResponse: GetNumberOfDelegatorsQuery["num_active_delegator_per_pool"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetObjectDataQueryResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetObjectDataQueryResponse.html new file mode 100644 index 000000000..03fe67159 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetObjectDataQueryResponse.html @@ -0,0 +1,7 @@ +GetObjectDataQueryResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetObjectDataQueryResponse

GetObjectDataQueryResponse: GetObjectDataQuery["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)

+
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetOwnedTokensResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetOwnedTokensResponse.html new file mode 100644 index 000000000..212650326 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetOwnedTokensResponse.html @@ -0,0 +1 @@ +GetOwnedTokensResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetOwnedTokensResponse

GetOwnedTokensResponse: GetCurrentTokenOwnershipQuery["current_token_ownerships_v2"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetProcessorStatusResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetProcessorStatusResponse.html new file mode 100644 index 000000000..3f636b5ff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetProcessorStatusResponse.html @@ -0,0 +1 @@ +GetProcessorStatusResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetProcessorStatusResponse

GetProcessorStatusResponse: GetProcessorStatusQuery["processor_status"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetRequestOptions.html new file mode 100644 index 000000000..f764ef244 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetRequestOptions.html @@ -0,0 +1,9 @@ +GetRequestOptions | @aptos-labs/ts-sdk - v1.28.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

    +
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsDataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsDataResponse.html new file mode 100644 index 000000000..3d6fadef1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsDataResponse.html @@ -0,0 +1 @@ +GetTableItemsDataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetTableItemsDataResponse

GetTableItemsDataResponse: GetTableItemsDataQuery["table_items"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsMetadataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsMetadataResponse.html new file mode 100644 index 000000000..c29060de4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTableItemsMetadataResponse.html @@ -0,0 +1 @@ +GetTableItemsMetadataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetTableItemsMetadataResponse

GetTableItemsMetadataResponse: GetTableItemsMetadataQuery["table_metadatas"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenActivityResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenActivityResponse.html new file mode 100644 index 000000000..e1b2c6053 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenActivityResponse.html @@ -0,0 +1 @@ +GetTokenActivityResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetTokenActivityResponse

GetTokenActivityResponse: GetTokenActivityQuery["token_activities_v2"]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenDataResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenDataResponse.html new file mode 100644 index 000000000..63cc86b3a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GetTokenDataResponse.html @@ -0,0 +1 @@ +GetTokenDataResponse | @aptos-labs/ts-sdk - v1.28.0

Type alias GetTokenDataResponse

GetTokenDataResponse: GetTokenDataQuery["current_token_datas_v2"][0]
\ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/GraphqlQuery.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/GraphqlQuery.html new file mode 100644 index 000000000..14e86d83f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/GraphqlQuery.html @@ -0,0 +1,2 @@ +GraphqlQuery | @aptos-labs/ts-sdk - v1.28.0

Type alias GraphqlQuery

GraphqlQuery: {
    query: string;
    variables?: {};
}

The graphql query type to pass into the queryIndexer function

+

Type declaration

  • query: string
  • Optional variables?: {}
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/HexInput.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/HexInput.html new file mode 100644 index 000000000..ee4e438c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/HexInput.html @@ -0,0 +1,2 @@ +HexInput | @aptos-labs/ts-sdk - v1.28.0

    Type alias HexInput

    HexInput: string | Uint8Array

    Hex data as input to a function

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/IndexerConfig.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/IndexerConfig.html new file mode 100644 index 000000000..bda91cbf0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/IndexerConfig.html @@ -0,0 +1,3 @@ +IndexerConfig | @aptos-labs/ts-sdk - v1.28.0

    Type alias IndexerConfig

    IndexerConfig: ClientHeadersType

    An Indexer only configuration object

    +

    Param: HEADERS

    extra headers we want to send with the request

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionData.html new file mode 100644 index 000000000..16eefa6dc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionData.html @@ -0,0 +1,2 @@ +InputEntryFunctionData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputEntryFunctionData

    InputEntryFunctionData: {
        abi?: EntryFunctionABI;
        function: MoveFunctionId;
        functionArguments: (EntryFunctionArgumentTypes | SimpleEntryFunctionArgumentTypes)[];
        typeArguments?: TypeArgument[];
    }

    The data needed to generate an Entry Function payload

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithABI.html new file mode 100644 index 000000000..b3ae9858d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithABI.html @@ -0,0 +1 @@ +InputEntryFunctionDataWithABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputEntryFunctionDataWithABI

    InputEntryFunctionDataWithABI: Omit<InputEntryFunctionData, "abi"> & {
        abi: EntryFunctionABI;
    }

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..a66e7ec3e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputEntryFunctionDataWithRemoteABI.html @@ -0,0 +1 @@ +InputEntryFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputEntryFunctionDataWithRemoteABI

    InputEntryFunctionDataWithRemoteABI: InputEntryFunctionData & {
        aptosConfig: AptosConfig;
    }

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateRawTransactionArgs.html new file mode 100644 index 000000000..d20967654 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateRawTransactionArgs.html @@ -0,0 +1,2 @@ +InputGenerateRawTransactionArgs | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputGenerateRawTransactionArgs

    Unified type that holds all the interfaces to generate different transaction types

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionData.html new file mode 100644 index 000000000..1707bb759 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputGenerateTransactionData

    Unified type that holds all the user data input interfaces when generating different transaction types

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionOptions.html new file mode 100644 index 000000000..5f0752ed3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionOptions.html @@ -0,0 +1,2 @@ +InputGenerateTransactionOptions | @aptos-labs/ts-sdk - v1.28.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
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadData.html new file mode 100644 index 000000000..b1c15b67f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadData.html @@ -0,0 +1,3 @@ +InputGenerateTransactionPayloadData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputGenerateTransactionPayloadData

    InputGenerateTransactionPayloadData: InputEntryFunctionData | InputScriptData | InputMultiSigData

    Unified type for the data needed to generate a transaction payload of types: +Entry Function | Script | Multi Sig

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithABI.html new file mode 100644 index 000000000..e5d1c60d6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithABI.html @@ -0,0 +1 @@ +InputGenerateTransactionPayloadDataWithABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputGenerateTransactionPayloadDataWithABI

    InputGenerateTransactionPayloadDataWithABI: InputEntryFunctionDataWithABI | InputMultiSigDataWithABI
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html new file mode 100644 index 000000000..15df4a83e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputGenerateTransactionPayloadDataWithRemoteABI.html @@ -0,0 +1 @@ +InputGenerateTransactionPayloadDataWithRemoteABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputGenerateTransactionPayloadDataWithRemoteABI

    InputGenerateTransactionPayloadDataWithRemoteABI: InputScriptData | InputEntryFunctionDataWithRemoteABI | InputMultiSigDataWithRemoteABI
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigData.html new file mode 100644 index 000000000..e06e10adf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigData.html @@ -0,0 +1,2 @@ +InputMultiSigData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputMultiSigData

    InputMultiSigData: {
        multisigAddress: AccountAddressInput;
    } & InputEntryFunctionData

    The data needed to generate a Multi Sig payload

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithABI.html new file mode 100644 index 000000000..ba9786ffe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithABI.html @@ -0,0 +1 @@ +InputMultiSigDataWithABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputMultiSigDataWithABI

    InputMultiSigDataWithABI: {
        multisigAddress: AccountAddressInput;
    } & InputEntryFunctionDataWithABI

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithRemoteABI.html new file mode 100644 index 000000000..f21cc36f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputMultiSigDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithRemoteABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputMultiSigDataWithRemoteABI

    InputMultiSigDataWithRemoteABI: {
        multisigAddress: AccountAddressInput;
    } & InputEntryFunctionDataWithRemoteABI

    The data needed to generate a Multi Sig payload

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputScriptData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputScriptData.html new file mode 100644 index 000000000..cf486f94b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputScriptData.html @@ -0,0 +1,2 @@ +InputScriptData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputScriptData

    InputScriptData: {
        bytecode: HexInput;
        functionArguments: ScriptFunctionArgumentTypes[];
        typeArguments?: TypeArgument[];
    }

    The data needed to generate a Script payload

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionData.html new file mode 100644 index 000000000..7ef25b2bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionData.html @@ -0,0 +1,5 @@ +InputSimulateTransactionData | @aptos-labs/ts-sdk - v1.28.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()

      +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionOptions.html new file mode 100644 index 000000000..7924bcb36 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputSimulateTransactionOptions.html @@ -0,0 +1 @@ +InputSimulateTransactionOptions | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputSimulateTransactionOptions

    InputSimulateTransactionOptions: {
        estimateGasUnitPrice?: boolean;
        estimateMaxGasAmount?: boolean;
        estimatePrioritizedGasUnitPrice?: boolean;
    }

    Type declaration

    • Optional estimateGasUnitPrice?: boolean
    • Optional estimateMaxGasAmount?: boolean
    • Optional estimatePrioritizedGasUnitPrice?: boolean
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionData.html new file mode 100644 index 000000000..62e9e4716 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionData.html @@ -0,0 +1,2 @@ +InputViewFunctionData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputViewFunctionData

    InputViewFunctionData: {
        abi?: ViewFunctionABI;
        function: MoveFunctionId;
        functionArguments?: (EntryFunctionArgumentTypes | SimpleEntryFunctionArgumentTypes)[];
        typeArguments?: TypeArgument[];
    }

    The data needed to generate a View Function payload

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithABI.html new file mode 100644 index 000000000..b1b0872f2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputViewFunctionDataWithABI

    InputViewFunctionDataWithABI: InputViewFunctionData & {
        abi: ViewFunctionABI;
    }

    Data needed to generate a view function, with an already fetched ABI

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..bf1c0c771 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputViewFunctionDataWithRemoteABI

    InputViewFunctionDataWithRemoteABI: InputViewFunctionData & {
        aptosConfig: AptosConfig;
    }

    Data needed to generate a view function payload and fetch the remote ABI

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionJsonData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionJsonData.html new file mode 100644 index 000000000..d0f56dced --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/InputViewFunctionJsonData.html @@ -0,0 +1,2 @@ +InputViewFunctionJsonData | @aptos-labs/ts-sdk - v1.28.0

    Type alias InputViewFunctionJsonData

    InputViewFunctionJsonData: {
        function: MoveFunctionId;
        functionArguments?: MoveValue[];
        typeArguments?: MoveStructId[];
    }

    The data needed to generate a View Function payload in JSON

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerInfo.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerInfo.html new file mode 100644 index 000000000..33dd942b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerInfo.html @@ -0,0 +1,4 @@ +LedgerInfo | @aptos-labs/ts-sdk - v1.28.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
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerVersionArg.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerVersionArg.html new file mode 100644 index 000000000..d0535c585 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/LedgerVersionArg.html @@ -0,0 +1,2 @@ +LedgerVersionArg | @aptos-labs/ts-sdk - v1.28.0

    Type alias LedgerVersionArg

    LedgerVersionArg: {
        ledgerVersion?: AnyNumber;
    }

    Specifies ledger version of transactions. By default latest version will be used

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveAddressType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveAddressType.html new file mode 100644 index 000000000..8163223b5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveAddressType.html @@ -0,0 +1 @@ +MoveAddressType | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveAddressType

    MoveAddressType: string
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunction.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunction.html new file mode 100644 index 000000000..48c2a853b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunction.html @@ -0,0 +1,7 @@ +MoveFunction | @aptos-labs/ts-sdk - v1.28.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
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionGenericTypeParam.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionGenericTypeParam.html new file mode 100644 index 000000000..c943e1f2f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionGenericTypeParam.html @@ -0,0 +1,2 @@ +MoveFunctionGenericTypeParam | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveFunctionGenericTypeParam

    MoveFunctionGenericTypeParam: {
        constraints: MoveAbility[];
    }

    Move abilities tied to the generic type param and associated with the function that uses it

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionId.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionId.html new file mode 100644 index 000000000..27b0070d5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveFunctionId.html @@ -0,0 +1 @@ +MoveFunctionId | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveFunctionId

    MoveFunctionId: MoveStructId
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModule.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModule.html new file mode 100644 index 000000000..7cfd5dafd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModule.html @@ -0,0 +1,5 @@ +MoveModule | @aptos-labs/ts-sdk - v1.28.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

      +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleBytecode.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleBytecode.html new file mode 100644 index 000000000..eb0fb589c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleBytecode.html @@ -0,0 +1 @@ +MoveModuleBytecode | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveModuleBytecode

    MoveModuleBytecode: {
        abi?: MoveModule;
        bytecode: string;
    }

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleId.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleId.html new file mode 100644 index 000000000..ec2eb85d1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveModuleId.html @@ -0,0 +1,3 @@ +MoveModuleId | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveModuleId

    MoveModuleId: `${string}::${string}`

    Move module id is a string representation of Move module. +Module name is case-sensitive.

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveObjectType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveObjectType.html new file mode 100644 index 000000000..b6273db86 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveObjectType.html @@ -0,0 +1 @@ +MoveObjectType | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveObjectType

    MoveObjectType: string
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveOptionType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveOptionType.html new file mode 100644 index 000000000..3a27962d1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveOptionType.html @@ -0,0 +1 @@ +MoveOptionType | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveOptionType

    MoveOptionType: MoveType | null | undefined
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveResource.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveResource.html new file mode 100644 index 000000000..9375194b7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveResource.html @@ -0,0 +1 @@ +MoveResource | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveResource<T>

    MoveResource<T>: {
        data: T;
        type: MoveStructId;
    }

    Type Parameters

    • T = {}

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveScriptBytecode.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveScriptBytecode.html new file mode 100644 index 000000000..220412d52 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveScriptBytecode.html @@ -0,0 +1,2 @@ +MoveScriptBytecode | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveScriptBytecode

    MoveScriptBytecode: {
        abi?: MoveFunction;
        bytecode: string;
    }

    Move script bytecode

    +

    Type declaration

    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStruct.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStruct.html new file mode 100644 index 000000000..b0c094b23 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStruct.html @@ -0,0 +1,6 @@ +MoveStruct | @aptos-labs/ts-sdk - v1.28.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
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructField.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructField.html new file mode 100644 index 000000000..c0bc6e417 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructField.html @@ -0,0 +1,2 @@ +MoveStructField | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveStructField

    MoveStructField: {
        name: string;
        type: string;
    }

    Move struct field

    +

    Type declaration

    • name: string
    • type: string
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructId.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructId.html new file mode 100644 index 000000000..7b1ec83e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructId.html @@ -0,0 +1,2 @@ +MoveStructId | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveStructId

    MoveStructId: `${string}::${string}::${string}`

    This is the format for a fully qualified struct, resource, or entry function in Move.

    +
    \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructType.html new file mode 100644 index 000000000..9f3b3b3bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveStructType.html @@ -0,0 +1 @@ +MoveStructType | @aptos-labs/ts-sdk - v1.28.0

    Type alias MoveStructType

    MoveStructType: {}

    Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveType.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveType.html new file mode 100644 index 000000000..29359dad3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveType.html @@ -0,0 +1 @@ +MoveType | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint128Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint128Type.html new file mode 100644 index 000000000..846ae14a7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint128Type.html @@ -0,0 +1 @@ +MoveUint128Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint128Type

      MoveUint128Type: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint16Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint16Type.html new file mode 100644 index 000000000..c75b7312a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint16Type.html @@ -0,0 +1 @@ +MoveUint16Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint16Type

      MoveUint16Type: number
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint256Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint256Type.html new file mode 100644 index 000000000..a110729d9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint256Type.html @@ -0,0 +1 @@ +MoveUint256Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint256Type

      MoveUint256Type: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint32Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint32Type.html new file mode 100644 index 000000000..c9cbc3121 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint32Type.html @@ -0,0 +1 @@ +MoveUint32Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint32Type

      MoveUint32Type: number
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint64Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint64Type.html new file mode 100644 index 000000000..0dea75538 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint64Type.html @@ -0,0 +1 @@ +MoveUint64Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint64Type

      MoveUint64Type: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint8Type.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint8Type.html new file mode 100644 index 000000000..6348263d2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveUint8Type.html @@ -0,0 +1,2 @@ +MoveUint8Type | @aptos-labs/ts-sdk - v1.28.0

      Type alias MoveUint8Type

      MoveUint8Type: number

      Map of Move types to local TypeScript types

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveValue.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveValue.html new file mode 100644 index 000000000..c066582e1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MoveValue.html @@ -0,0 +1,12 @@ +MoveValue | @aptos-labs/ts-sdk - v1.28.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

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/MultisigPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/MultisigPayloadResponse.html new file mode 100644 index 000000000..9bd43e2ad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/MultisigPayloadResponse.html @@ -0,0 +1 @@ +MultisigPayloadResponse | @aptos-labs/ts-sdk - v1.28.0

      Type alias MultisigPayloadResponse

      MultisigPayloadResponse: {
          multisig_address: string;
          transaction_payload?: EntryFunctionPayloadResponse;
          type: string;
      }

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderBy.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderBy.html new file mode 100644 index 000000000..691c81112 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderBy.html @@ -0,0 +1,3 @@ +OrderBy | @aptos-labs/ts-sdk - v1.28.0

      Type alias OrderBy<T>

      OrderBy<T>: {
          [K in keyof T]?: OrderByValue
      }[]

      A generic type that being passed by each function and holds an +array of properties we can sort the query by

      +

      Type Parameters

      • T
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderByValue.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderByValue.html new file mode 100644 index 000000000..f3e844d5d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/OrderByValue.html @@ -0,0 +1 @@ +OrderByValue | @aptos-labs/ts-sdk - v1.28.0

      Type alias OrderByValue

      OrderByValue: "asc" | "asc_nulls_first" | "asc_nulls_last" | "desc" | "desc_nulls_first" | "desc_nulls_last"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ParsingResult.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ParsingResult.html new file mode 100644 index 000000000..f71f29b94 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ParsingResult.html @@ -0,0 +1,6 @@ +ParsingResult | @aptos-labs/ts-sdk - v1.28.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.

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/PendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/PendingTransactionResponse.html new file mode 100644 index 000000000..6469531e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/PendingTransactionResponse.html @@ -0,0 +1 @@ +PendingTransactionResponse | @aptos-labs/ts-sdk - v1.28.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

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/PostAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/PostAptosRequestOptions.html new file mode 100644 index 000000000..62300ed52 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/PostAptosRequestOptions.html @@ -0,0 +1 @@ +PostAptosRequestOptions | @aptos-labs/ts-sdk - v1.28.0

      Type alias PostAptosRequestOptions

      PostAptosRequestOptions: Omit<PostRequestOptions, "type">
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/PostRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/PostRequestOptions.html new file mode 100644 index 000000000..a560d032e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/PostRequestOptions.html @@ -0,0 +1,10 @@ +PostRequestOptions | @aptos-labs/ts-sdk - v1.28.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

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchCallback.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchCallback.html new file mode 100644 index 000000000..0d058b9d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchCallback.html @@ -0,0 +1 @@ +ProofFetchCallback | @aptos-labs/ts-sdk - v1.28.0

      Type alias ProofFetchCallback

      ProofFetchCallback: ((status) => Promise<void>)

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchFailure.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchFailure.html new file mode 100644 index 000000000..5fad62857 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchFailure.html @@ -0,0 +1 @@ +ProofFetchFailure | @aptos-labs/ts-sdk - v1.28.0

      Type alias ProofFetchFailure

      ProofFetchFailure: {
          error: string;
          status: "Failed";
      }

      Type declaration

      • error: string
      • status: "Failed"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchStatus.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchStatus.html new file mode 100644 index 000000000..cef0efe19 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchStatus.html @@ -0,0 +1 @@ +ProofFetchStatus | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchSuccess.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchSuccess.html new file mode 100644 index 000000000..37c7568fa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ProofFetchSuccess.html @@ -0,0 +1 @@ +ProofFetchSuccess | @aptos-labs/ts-sdk - v1.28.0

      Type alias ProofFetchSuccess

      ProofFetchSuccess: {
          status: "Success";
      }

      Type declaration

      • status: "Success"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptFunctionArgumentTypes.html new file mode 100644 index 000000000..46160d346 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +ScriptFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.28.0

      Type alias ScriptFunctionArgumentTypes

      Script function arguments to be used when building a raw transaction using BCS serialized arguments

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptPayloadResponse.html new file mode 100644 index 000000000..f816f8b95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptPayloadResponse.html @@ -0,0 +1,3 @@ +ScriptPayloadResponse | @aptos-labs/ts-sdk - v1.28.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

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptWriteSet.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptWriteSet.html new file mode 100644 index 000000000..37991620a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ScriptWriteSet.html @@ -0,0 +1 @@ +ScriptWriteSet | @aptos-labs/ts-sdk - v1.28.0

      Type alias ScriptWriteSet

      ScriptWriteSet: {
          execute_as: string;
          script: ScriptPayloadResponse;
          type: string;
      }

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/SimpleEntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/SimpleEntryFunctionArgumentTypes.html new file mode 100644 index 000000000..fb02a2f47 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/SimpleEntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +SimpleEntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.28.0

      Type alias SimpleEntryFunctionArgumentTypes

      SimpleEntryFunctionArgumentTypes: boolean | number | bigint | string | null | undefined | Uint8Array | ArrayBuffer | (SimpleEntryFunctionArgumentTypes | EntryFunctionArgumentTypes)[]

      Entry function arguments to be used when building a raw transaction using remote ABI

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/SingleKeySignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/SingleKeySignerFromDerivationPathArgs.html new file mode 100644 index 000000000..6ec92ce7b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/SingleKeySignerFromDerivationPathArgs.html @@ -0,0 +1 @@ +SingleKeySignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.28.0

      Type alias SingleKeySignerFromDerivationPathArgs

      SingleKeySignerFromDerivationPathArgs: SingleKeySignerGenerateArgs & {
          mnemonic: string;
          path: string;
      }

      Type declaration

      • mnemonic: string
      • path: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/StateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/StateCheckpointTransactionResponse.html new file mode 100644 index 000000000..86a1914dc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/StateCheckpointTransactionResponse.html @@ -0,0 +1,4 @@ +StateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v1.28.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 | null;
          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
      • state_checkpoint_hash: string | null
      • 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

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/SuccessEventData.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/SuccessEventData.html new file mode 100644 index 000000000..97b2dca61 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/SuccessEventData.html @@ -0,0 +1 @@ +SuccessEventData | @aptos-labs/ts-sdk - v1.28.0

      Type alias SuccessEventData

      SuccessEventData: {
          message: string;
          transactionHash: string;
      }

      Type declaration

      • message: string
      • transactionHash: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TableItemRequest.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TableItemRequest.html new file mode 100644 index 000000000..87605aff0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TableItemRequest.html @@ -0,0 +1,3 @@ +TableItemRequest | @aptos-labs/ts-sdk - v1.28.0

      Type alias TableItemRequest

      TableItemRequest: {
          key: any;
          key_type: MoveValue;
          value_type: MoveValue;
      }

      Table Item request for the GetTableItem API

      +

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TokenStandard.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TokenStandard.html new file mode 100644 index 000000000..1fcfa55bd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TokenStandard.html @@ -0,0 +1,2 @@ +TokenStandard | @aptos-labs/ts-sdk - v1.28.0

      Type alias TokenStandard

      TokenStandard: "v1" | "v2"

      Refers to the token standard we want to query for

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionEd25519Signature.html new file mode 100644 index 000000000..160eff62c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionEd25519Signature.html @@ -0,0 +1 @@ +TransactionEd25519Signature | @aptos-labs/ts-sdk - v1.28.0

      Type alias TransactionEd25519Signature

      TransactionEd25519Signature: {
          public_key: string;
          signature: "ed25519_signature";
          type: string;
      }

      Type declaration

      • public_key: string
      • signature: "ed25519_signature"
      • type: string
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionFeePayerSignature.html new file mode 100644 index 000000000..6fc35f480 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionFeePayerSignature.html @@ -0,0 +1,3 @@ +TransactionFeePayerSignature | @aptos-labs/ts-sdk - v1.28.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"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiAgentSignature.html new file mode 100644 index 000000000..8e5c4ddc8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiAgentSignature.html @@ -0,0 +1,3 @@ +TransactionMultiAgentSignature | @aptos-labs/ts-sdk - v1.28.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"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiEd25519Signature.html new file mode 100644 index 000000000..975e33f9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionMultiEd25519Signature.html @@ -0,0 +1,4 @@ +TransactionMultiEd25519Signature | @aptos-labs/ts-sdk - v1.28.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"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionPayloadResponse.html new file mode 100644 index 000000000..f41f13b90 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionPayloadResponse.html @@ -0,0 +1 @@ +TransactionPayloadResponse | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionResponse.html new file mode 100644 index 000000000..81468a969 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionResponse.html @@ -0,0 +1 @@ +TransactionResponse | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSecp256k1Signature.html new file mode 100644 index 000000000..1edc38214 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSecp256k1Signature.html @@ -0,0 +1 @@ +TransactionSecp256k1Signature | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSignature.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSignature.html new file mode 100644 index 000000000..8e2291f5c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TransactionSignature.html @@ -0,0 +1,2 @@ +TransactionSignature | @aptos-labs/ts-sdk - v1.28.0

      Type alias TransactionSignature

      These are the JSON representations of transaction signatures returned from the node API.

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/TypeArgument.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/TypeArgument.html new file mode 100644 index 000000000..f01cb87ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/TypeArgument.html @@ -0,0 +1,17 @@ +TypeArgument | @aptos-labs/ts-sdk - v1.28.0

      Type alias TypeArgument

      TypeArgument: TypeTag | string

      TypeArgument inputs for Entry functions, view functions, and scripts

      +

      This can be a string version of the type argument such as:

      +
        +
      • u8
      • +
      • u16
      • +
      • u32
      • +
      • u64
      • +
      • u128
      • +
      • u256
      • +
      • bool
      • +
      • address
      • +
      • signer
      • +
      • vector
      • +
      • address::module::struct
      • +
      • address::module::struct<Type1, Type2>
      • +
      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint128.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint128.html new file mode 100644 index 000000000..d15c279e9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint128.html @@ -0,0 +1 @@ +Uint128 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint128

      Uint128: bigint
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint16.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint16.html new file mode 100644 index 000000000..d9db3295d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint16.html @@ -0,0 +1 @@ +Uint16 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint16

      Uint16: number
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint256.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint256.html new file mode 100644 index 000000000..4f3e87ffa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint256.html @@ -0,0 +1 @@ +Uint256 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint256

      Uint256: bigint
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint32.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint32.html new file mode 100644 index 000000000..ae0566779 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint32.html @@ -0,0 +1 @@ +Uint32 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint32

      Uint32: number
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint64.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint64.html new file mode 100644 index 000000000..76c5dd83d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint64.html @@ -0,0 +1 @@ +Uint64 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint64

      Uint64: bigint
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint8.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint8.html new file mode 100644 index 000000000..b37b53338 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/Uint8.html @@ -0,0 +1,2 @@ +Uint8 | @aptos-labs/ts-sdk - v1.28.0

      Type alias Uint8

      Uint8: number

      BCS types

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/UserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/UserTransactionResponse.html new file mode 100644 index 000000000..363fcc6dd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/UserTransactionResponse.html @@ -0,0 +1,5 @@ +UserTransactionResponse | @aptos-labs/ts-sdk - v1.28.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 | null;
          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
      • state_checkpoint_hash: string | null
      • 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

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ValidatorTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ValidatorTransactionResponse.html new file mode 100644 index 000000000..d08bd43eb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ValidatorTransactionResponse.html @@ -0,0 +1,5 @@ +ValidatorTransactionResponse | @aptos-labs/ts-sdk - v1.28.0

      Type alias ValidatorTransactionResponse

      ValidatorTransactionResponse: {
          accumulator_root_hash: string;
          changes: WriteSetChange[];
          event_root_hash: string;
          events: Event[];
          gas_used: string;
          hash: string;
          state_change_hash: string;
          state_checkpoint_hash: string | null;
          success: boolean;
          timestamp: string;
          type: Validator;
          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[]

        The events emitted by the validator transaction

        +
      • gas_used: string
      • hash: string
      • state_change_hash: string
      • state_checkpoint_hash: string | null
      • success: boolean

        Whether the transaction was successful

        +
      • timestamp: string
      • type: Validator
      • version: string
      • vm_status: string

        The VM status of the transaction, can tell useful information in a failure

        +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionABI.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionABI.html new file mode 100644 index 000000000..ea6efe646 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionABI.html @@ -0,0 +1,3 @@ +ViewFunctionABI | @aptos-labs/ts-sdk - v1.28.0

      Type alias ViewFunctionABI

      ViewFunctionABI: FunctionABI & {
          returnTypes: TypeTag[];
      }

      Interface of an View function's ABI.

      +

      This is used to provide type checking and simple input conversion on ABI based transaction submission.

      +

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionJsonPayload.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionJsonPayload.html new file mode 100644 index 000000000..e18c25993 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/ViewFunctionJsonPayload.html @@ -0,0 +1,2 @@ +ViewFunctionJsonPayload | @aptos-labs/ts-sdk - v1.28.0

      Type alias ViewFunctionJsonPayload

      ViewFunctionJsonPayload: {
          function: MoveFunctionId;
          functionArguments: MoveValue[];
          typeArguments: MoveStructId[];
      }

      Payload sent to the fullnode for a JSON view request

      +

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WaitForTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WaitForTransactionOptions.html new file mode 100644 index 000000000..fb30fe02e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WaitForTransactionOptions.html @@ -0,0 +1,2 @@ +WaitForTransactionOptions | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSet.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSet.html new file mode 100644 index 000000000..af452dee7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSet.html @@ -0,0 +1 @@ +WriteSet | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChange.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChange.html new file mode 100644 index 000000000..bbbb506a8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChange.html @@ -0,0 +1,2 @@ +WriteSetChange | @aptos-labs/ts-sdk - v1.28.0
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteModule.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteModule.html new file mode 100644 index 000000000..39cb04dfb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteModule.html @@ -0,0 +1,2 @@ +WriteSetChangeDeleteModule | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteResource.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteResource.html new file mode 100644 index 000000000..d7b8826d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteResource.html @@ -0,0 +1 @@ +WriteSetChangeDeleteResource | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteTableItem.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteTableItem.html new file mode 100644 index 000000000..cae6f71c2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeDeleteTableItem.html @@ -0,0 +1 @@ +WriteSetChangeDeleteTableItem | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteModule.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteModule.html new file mode 100644 index 000000000..352aba547 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteModule.html @@ -0,0 +1 @@ +WriteSetChangeWriteModule | @aptos-labs/ts-sdk - v1.28.0

      Type alias WriteSetChangeWriteModule

      WriteSetChangeWriteModule: {
          address: string;
          data: MoveModuleBytecode;
          state_key_hash: string;
          type: string;
      }

      Type declaration

      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteResource.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteResource.html new file mode 100644 index 000000000..75dc6ab43 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteResource.html @@ -0,0 +1 @@ +WriteSetChangeWriteResource | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteTableItem.html b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteTableItem.html new file mode 100644 index 000000000..a4fffba9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/types/WriteSetChangeWriteTableItem.html @@ -0,0 +1 @@ +WriteSetChangeWriteTableItem | @aptos-labs/ts-sdk - v1.28.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
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_BIP44_REGEX.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_BIP44_REGEX.html new file mode 100644 index 000000000..68572c81c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_BIP44_REGEX.html @@ -0,0 +1 @@ +APTOS_BIP44_REGEX | @aptos-labs/ts-sdk - v1.28.0

      Variable APTOS_BIP44_REGEXConst

      APTOS_BIP44_REGEX: RegExp = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_COIN.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_COIN.html new file mode 100644 index 000000000..72b539c75 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_COIN.html @@ -0,0 +1,2 @@ +APTOS_COIN | @aptos-labs/ts-sdk - v1.28.0

      Variable APTOS_COINConst

      APTOS_COIN: "0x1::aptos_coin::AptosCoin" = "0x1::aptos_coin::AptosCoin"

      The default gas currency for the network.

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_FA.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_FA.html new file mode 100644 index 000000000..da234afb3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_FA.html @@ -0,0 +1 @@ +APTOS_FA | @aptos-labs/ts-sdk - v1.28.0

      Variable APTOS_FAConst

      APTOS_FA: "0x000000000000000000000000000000000000000000000000000000000000000a" = "0x000000000000000000000000000000000000000000000000000000000000000a"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_HARDENED_REGEX.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_HARDENED_REGEX.html new file mode 100644 index 000000000..9c2937b91 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/APTOS_HARDENED_REGEX.html @@ -0,0 +1,2 @@ +APTOS_HARDENED_REGEX | @aptos-labs/ts-sdk - v1.28.0

      Variable APTOS_HARDENED_REGEXConst

      APTOS_HARDENED_REGEX: RegExp = ...

      Aptos derive path is 637

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_MAX_GAS_AMOUNT.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_MAX_GAS_AMOUNT.html new file mode 100644 index 000000000..2a7b59cca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_MAX_GAS_AMOUNT.html @@ -0,0 +1,5 @@ +DEFAULT_MAX_GAS_AMOUNT | @aptos-labs/ts-sdk - v1.28.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.

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html new file mode 100644 index 000000000..13befa4ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html @@ -0,0 +1,5 @@ +DEFAULT_TXN_EXP_SEC_FROM_NOW | @aptos-labs/ts-sdk - v1.28.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.

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html new file mode 100644 index 000000000..ccea62524 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/DEFAULT_TXN_TIMEOUT_SEC.html @@ -0,0 +1,4 @@ +DEFAULT_TXN_TIMEOUT_SEC | @aptos-labs/ts-sdk - v1.28.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.

      +
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/EPK_HORIZON_SECS.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/EPK_HORIZON_SECS.html new file mode 100644 index 000000000..943841f67 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/EPK_HORIZON_SECS.html @@ -0,0 +1 @@ +EPK_HORIZON_SECS | @aptos-labs/ts-sdk - v1.28.0

      Variable EPK_HORIZON_SECSConst

      EPK_HORIZON_SECS: 10000000 = 10000000
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/HARDENED_OFFSET.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/HARDENED_OFFSET.html new file mode 100644 index 000000000..ca1b8cdf3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/HARDENED_OFFSET.html @@ -0,0 +1 @@ +HARDENED_OFFSET | @aptos-labs/ts-sdk - v1.28.0

      Variable HARDENED_OFFSETConst

      HARDENED_OFFSET: 2147483648 = 0x80000000
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_AUD_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_AUD_VAL_BYTES.html new file mode 100644 index 000000000..e701fa1e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_AUD_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_AUD_VAL_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_AUD_VAL_BYTESConst

      MAX_AUD_VAL_BYTES: 120 = 120
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_COMMITED_EPK_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_COMMITED_EPK_BYTES.html new file mode 100644 index 000000000..0f9ffe08f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_COMMITED_EPK_BYTES.html @@ -0,0 +1 @@ +MAX_COMMITED_EPK_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_COMMITED_EPK_BYTESConst

      MAX_COMMITED_EPK_BYTES: 93 = 93
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_EXTRA_FIELD_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_EXTRA_FIELD_BYTES.html new file mode 100644 index 000000000..bb638c943 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_EXTRA_FIELD_BYTES.html @@ -0,0 +1 @@ +MAX_EXTRA_FIELD_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_EXTRA_FIELD_BYTESConst

      MAX_EXTRA_FIELD_BYTES: 350 = 350
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_ISS_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_ISS_VAL_BYTES.html new file mode 100644 index 000000000..6cbbd09cc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_ISS_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_ISS_VAL_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_ISS_VAL_BYTESConst

      MAX_ISS_VAL_BYTES: 120 = 120
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_JWT_HEADER_B64_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_JWT_HEADER_B64_BYTES.html new file mode 100644 index 000000000..97dd022c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_JWT_HEADER_B64_BYTES.html @@ -0,0 +1 @@ +MAX_JWT_HEADER_B64_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_JWT_HEADER_B64_BYTESConst

      MAX_JWT_HEADER_B64_BYTES: 300 = 300
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_KEY_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_KEY_BYTES.html new file mode 100644 index 000000000..cc4877c85 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_KEY_BYTES.html @@ -0,0 +1 @@ +MAX_UID_KEY_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_UID_KEY_BYTESConst

      MAX_UID_KEY_BYTES: 30 = 30
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_VAL_BYTES.html new file mode 100644 index 000000000..ac2b5d3fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/MAX_UID_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_UID_VAL_BYTES | @aptos-labs/ts-sdk - v1.28.0

      Variable MAX_UID_VAL_BYTESConst

      MAX_UID_VAL_BYTES: 330 = 330
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToChainId.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToChainId.html new file mode 100644 index 000000000..7a0c083f3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToChainId.html @@ -0,0 +1 @@ +NetworkToChainId | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToChainIdConst

      NetworkToChainId: Record<string, number> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToFaucetAPI.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToFaucetAPI.html new file mode 100644 index 000000000..4b8a96f0a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToFaucetAPI.html @@ -0,0 +1 @@ +NetworkToFaucetAPI | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToFaucetAPIConst

      NetworkToFaucetAPI: Record<string, string> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToIndexerAPI.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToIndexerAPI.html new file mode 100644 index 000000000..cfe272890 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToIndexerAPI.html @@ -0,0 +1 @@ +NetworkToIndexerAPI | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToIndexerAPIConst

      NetworkToIndexerAPI: Record<string, string> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNetworkName.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNetworkName.html new file mode 100644 index 000000000..8c51b2c9e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNetworkName.html @@ -0,0 +1 @@ +NetworkToNetworkName | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToNetworkNameConst

      NetworkToNetworkName: Record<string, Network> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNodeAPI.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNodeAPI.html new file mode 100644 index 000000000..97a290b17 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToNodeAPI.html @@ -0,0 +1 @@ +NetworkToNodeAPI | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToNodeAPIConst

      NetworkToNodeAPI: Record<string, string> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToPepperAPI.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToPepperAPI.html new file mode 100644 index 000000000..5952c7f02 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToPepperAPI.html @@ -0,0 +1 @@ +NetworkToPepperAPI | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToPepperAPIConst

      NetworkToPepperAPI: Record<string, string> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToProverAPI.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToProverAPI.html new file mode 100644 index 000000000..4615336e4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/NetworkToProverAPI.html @@ -0,0 +1 @@ +NetworkToProverAPI | @aptos-labs/ts-sdk - v1.28.0

      Variable NetworkToProverAPIConst

      NetworkToProverAPI: Record<string, string> = ...
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_SALT.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_SALT.html new file mode 100644 index 000000000..424db744f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_SALT | @aptos-labs/ts-sdk - v1.28.0

      Variable RAW_TRANSACTION_SALTConst

      RAW_TRANSACTION_SALT: "APTOS::RawTransaction" = "APTOS::RawTransaction"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html new file mode 100644 index 000000000..0643d64e1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/RAW_TRANSACTION_WITH_DATA_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_WITH_DATA_SALT | @aptos-labs/ts-sdk - v1.28.0

      Variable RAW_TRANSACTION_WITH_DATA_SALTConst

      RAW_TRANSACTION_WITH_DATA_SALT: "APTOS::RawTransactionWithData" = "APTOS::RawTransactionWithData"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.28.0/variables/promiseFulfilledStatus.html b/docs/@aptos-labs/ts-sdk-1.28.0/variables/promiseFulfilledStatus.html new file mode 100644 index 000000000..820246973 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.28.0/variables/promiseFulfilledStatus.html @@ -0,0 +1 @@ +promiseFulfilledStatus | @aptos-labs/ts-sdk - v1.28.0

      Variable promiseFulfilledStatusConst

      promiseFulfilledStatus: "fulfilled" = "fulfilled"
      \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-latest/index.md b/docs/@aptos-labs/ts-sdk-latest/index.md index 288350609..839a46274 100644 --- a/docs/@aptos-labs/ts-sdk-latest/index.md +++ b/docs/@aptos-labs/ts-sdk-latest/index.md @@ -1,5 +1,5 @@ --- title: Latest Aptos TypeScript SDK Documentation permalink: /@aptos-labs/ts-sdk-latest -redirect_to: /@aptos-labs/ts-sdk-1.27.1 +redirect_to: /@aptos-labs/ts-sdk-1.28.0 --- diff --git a/docs/index.md b/docs/index.md index df87d780f..1f6457754 100644 --- a/docs/index.md +++ b/docs/index.md @@ -9,6 +9,7 @@ redirect_from: This is a repository of all Aptos TypeScript SDK documentation by version. - [Latest](@aptos-labs/ts-sdk-latest) +- [Stable - @aptos-labs/ts-sdk-1.28.0](@aptos-labs/ts-sdk-1.28.0) - [Stable - @aptos-labs/ts-sdk-1.27.1](@aptos-labs/ts-sdk-1.27.1) - [Stable - @aptos-labs/ts-sdk-1.27.0](@aptos-labs/ts-sdk-1.27.0) - [Stable - @aptos-labs/ts-sdk-1.26.0](@aptos-labs/ts-sdk-1.26.0) diff --git a/package.json b/package.json index 26cf14142..17024f170 100644 --- a/package.json +++ b/package.json @@ -95,5 +95,5 @@ "typedoc": "^0.25.4", "typescript": "^5.3.3" }, - "version": "1.27.1" + "version": "1.28.0" } diff --git a/src/version.ts b/src/version.ts index 8f75a5edb..fd7a56f4d 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.27.1"; +export const VERSION = "1.28.0";