2021-05-10 20:56:20 +02:00
<!doctype html>
< html class = "no-js" lang = "" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "x-ua-compatible" content = "ie=edge" >
< title > CICADA< / title >
< meta name = "description" content = "" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< link rel = "icon" type = "image/x-icon" href = "../images/favicon.ico" >
< link rel = "stylesheet" href = "../styles/style.css" >
< / head >
< body >
< div class = "navbar navbar-default navbar-fixed-top visible-xs" >
< a href = "../" class = "navbar-brand" > CICADA< / a >
< button type = "button" class = "btn btn-default btn-menu ion-ios-menu" id = "btn-menu" > < / button >
< / div >
< div class = "xs-menu menu" id = "mobile-menu" >
< div id = "book-search-input" role = "search" > < input type = "text" placeholder = "Type to search" > < / div > < compodoc-menu > < / compodoc-menu >
< / div >
< div class = "container-fluid main" >
< div class = "row main" >
< div class = "hidden-xs menu" >
< compodoc-menu mode = "normal" > < / compodoc-menu >
< / div >
<!-- START CONTENT -->
< div class = "content class" >
< div class = "content-data" >
< ol class = "breadcrumb" >
< li > Classes< / li >
< li > AccountIndex< / li >
< / ol >
< ul class = "nav nav-tabs" role = "tablist" >
< li class = "active" >
< a href = "#info" role = "tab" id = "info-tab" data-toggle = "tab" data-link = "info" > Info< / a >
< / li >
< li >
< a href = "#source" role = "tab" id = "source-tab" data-toggle = "tab" data-link = "source" > Source< / a >
< / li >
< / ul >
< div class = "tab-content" >
< div class = "tab-pane fade active in" id = "c-info" >
< p class = "comment" >
< h3 > File< / h3 >
< / p >
< p class = "comment" >
< code > src/app/_eth/accountIndex.ts< / code >
< / p >
2021-05-11 11:05:04 +02:00
< p class = "comment" >
< h3 > Description< / h3 >
< / p >
< p class = "comment" >
< p > Provides an instance of the accounts registry contract.
Allows querying of accounts that have been registered as valid accounts in the network.< / p >
2021-05-10 20:56:20 +02:00
2021-05-11 11:05:04 +02:00
< / p >
2021-05-10 20:56:20 +02:00
2021-05-11 11:05:04 +02:00
< p class = "comment" >
< h3 > Example< / h3 >
< / p >
< div class = "io-description" >
< / div >
2021-05-10 20:56:20 +02:00
< section >
< h3 id = "index" > Index< / h3 >
< table class = "table table-sm table-bordered index-table" >
< tbody >
< tr >
< td class = "col-md-4" >
< h6 > < b > Properties< / b > < / h6 >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< ul class = "index-list" >
< li >
< a href = "#contract" > contract< / a >
< / li >
< li >
< a href = "#contractAddress" > contractAddress< / a >
< / li >
< li >
< a href = "#signerAddress" > signerAddress< / a >
< / li >
< / ul >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< h6 > < b > Methods< / b > < / h6 >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< ul class = "index-list" >
< li >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
< a href = "#addToAccountRegistry" > addToAccountRegistry< / a >
< / li >
< li >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
< a href = "#haveAccount" > haveAccount< / a >
< / li >
< li >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
< a href = "#last" > last< / a >
< / li >
< li >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
< a href = "#totalAccounts" > totalAccounts< / a >
< / li >
< / ul >
< / td >
< / tr >
< / tbody >
< / table >
< / section >
< section >
< h3 id = "constructor" > Constructor< / h3 >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< code > constructor(contractAddress: < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > , signerAddress?: < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > )< / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "25" class = "link-to-prism" > src/app/_eth/accountIndex.ts:25< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-description" > < p > Create a connection to the deployed account registry contract.< / p >
< / div >
2021-05-10 20:56:20 +02:00
< div >
< b > Parameters :< / b >
< table class = "params" >
< thead >
< tr >
< td > Name< / td >
< td > Type< / td >
< td > Optional< / td >
2021-05-11 11:05:04 +02:00
< td > Description< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / thead >
< tbody >
< tr >
< td > contractAddress< / td >
< td >
< code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< td >
No
< / td >
2021-05-11 11:05:04 +02:00
< td >
< code > < ul >
< li > The deployed account registry contract' s address.< / li >
< / ul >
< / code >
< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< tr >
< td > signerAddress< / td >
< td >
< code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< td >
Yes
< / td >
2021-05-11 11:05:04 +02:00
< td >
< code > < ul >
< li > The account address of the account that deployed the account registry contract.< / li >
< / ul >
< / code >
< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / tbody >
< / table >
< / div >
< / td >
< / tr >
< / tbody >
< / table >
< / section >
< section >
< h3 id = "inputs" >
Properties
< / h3 >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "contract" > < / a >
< span class = "name" >
< b >
contract< / b >
< a href = "#contract" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< i > Type : < / i > < code > < a href = "https://www.typescriptlang.org/docs/handbook/basic-types.html" target = "_blank" > any< / a > < / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "21" class = "link-to-prism" > src/app/_eth/accountIndex.ts:21< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
2021-05-11 11:05:04 +02:00
< tr >
< td class = "col-md-4" >
< div class = "io-description" > < p > The instance of the account registry contract. < / p >
< / div >
< / td >
< / tr >
2021-05-10 20:56:20 +02:00
< / tbody >
< / table >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "contractAddress" > < / a >
< span class = "name" >
< b >
contractAddress< / b >
< a href = "#contractAddress" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< i > Type : < / i > < code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "23" class = "link-to-prism" > src/app/_eth/accountIndex.ts:23< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
2021-05-11 11:05:04 +02:00
< tr >
< td class = "col-md-4" >
< div class = "io-description" > < p > The deployed account registry contract' s address. < / p >
< / div >
< / td >
< / tr >
2021-05-10 20:56:20 +02:00
< / tbody >
< / table >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "signerAddress" > < / a >
< span class = "name" >
< b >
signerAddress< / b >
< a href = "#signerAddress" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< i > Type : < / i > < code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "25" class = "link-to-prism" > src/app/_eth/accountIndex.ts:25< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
2021-05-11 11:05:04 +02:00
< tr >
< td class = "col-md-4" >
< div class = "io-description" > < p > The account address of the account that deployed the account registry contract. < / p >
< / div >
< / td >
< / tr >
2021-05-10 20:56:20 +02:00
< / tbody >
< / table >
< / section >
< section >
< h3 id = "methods" >
Methods
< / h3 >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "addToAccountRegistry" > < / a >
< span class = "name" >
< b >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
addToAccountRegistry
< / b >
< a href = "#addToAccountRegistry" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< span class = "modifier-icon icon ion-ios-reset" > < / span >
< code > addToAccountRegistry(address: < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > )< / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "57"
class="link-to-prism">src/app/_eth/accountIndex.ts:57< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-description" > < p > Registers an account to the accounts registry.
Requires availability of the signer address.< / p >
< / div >
2021-05-10 20:56:20 +02:00
< div class = "io-description" >
< b > Parameters :< / b >
< table class = "params" >
< thead >
< tr >
< td > Name< / td >
< td > Type< / td >
< td > Optional< / td >
2021-05-11 11:05:04 +02:00
< td > Description< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / thead >
< tbody >
< tr >
< td > address< / td >
< td >
< code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< td >
No
< / td >
2021-05-11 11:05:04 +02:00
< td >
< ul >
< li > The account address to be registered to the accounts registry contract.< / li >
< / ul >
< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / tbody >
< / table >
< / div >
< div >
2021-05-11 11:05:04 +02:00
< b > Example :< / b >
< div >
< pre class = "line-numbers" > < code class = "language-html" > Prints & quot;true& quot; for registration of & #39;0xc0ffee254729296a45a3885639AC7E10F9d54979& #39;:< /p>
< p> ```typescript< /p>
< ul>
< li> console.log(await addToAccountRegistry(& #39;0xc0ffee254729296a45a3885639AC7E10F9d54979& #39;));< /li>
< li> ```< /li>
< /ul> < / code > < / pre >
< / div >
2021-05-10 20:56:20 +02:00
< / div >
< div class = "io-description" >
< b > Returns : < / b > < code > Promise< boolean> < / code >
< / div >
< div class = "io-description" >
2021-05-11 11:05:04 +02:00
< p > true - If registration is successful or account had already been registered.< / p >
2021-05-10 20:56:20 +02:00
< / div >
< / td >
< / tr >
< / tbody >
< / table >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "haveAccount" > < / a >
< span class = "name" >
< b >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
haveAccount
< / b >
< a href = "#haveAccount" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< span class = "modifier-icon icon ion-ios-reset" > < / span >
< code > haveAccount(address: < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > )< / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "78"
class="link-to-prism">src/app/_eth/accountIndex.ts:78< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-description" > < p > Checks whether a specific account address has been registered in the accounts registry.
Returns " true" for available and " false" otherwise.< / p >
< / div >
2021-05-10 20:56:20 +02:00
< div class = "io-description" >
< b > Parameters :< / b >
< table class = "params" >
< thead >
< tr >
< td > Name< / td >
< td > Type< / td >
< td > Optional< / td >
2021-05-11 11:05:04 +02:00
< td > Description< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / thead >
< tbody >
< tr >
< td > address< / td >
< td >
< code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/string" target = "_blank" > string< / a > < / code >
< / td >
< td >
No
< / td >
2021-05-11 11:05:04 +02:00
< td >
< ul >
< li > The account address to be validated.< / li >
< / ul >
< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / tbody >
< / table >
< / div >
< div >
2021-05-11 11:05:04 +02:00
< b > Example :< / b >
< div >
< pre class = "line-numbers" > < code class = "language-html" > Prints & quot;true& quot; or & quot;false& quot; depending on whether & #39;0xc0ffee254729296a45a3885639AC7E10F9d54979& #39; has been registered:< /p>
< p> ```typescript< /p>
< ul>
< li> console.log(await haveAccount(& #39;0xc0ffee254729296a45a3885639AC7E10F9d54979& #39;));< /li>
< li> ```< /li>
< /ul> < / code > < / pre >
< / div >
2021-05-10 20:56:20 +02:00
< / div >
< div class = "io-description" >
< b > Returns : < / b > < code > Promise< boolean> < / code >
< / div >
< div class = "io-description" >
2021-05-11 11:05:04 +02:00
< p > true - If the address has been registered in the accounts registry.< / p >
2021-05-10 20:56:20 +02:00
< / div >
< / td >
< / tr >
< / tbody >
< / table >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "last" > < / a >
< span class = "name" >
< b >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
last
< / b >
< a href = "#last" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< span class = "modifier-icon icon ion-ios-reset" > < / span >
< code > last(numberOfAccounts: < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target = "_blank" > number< / a > )< / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "95"
class="link-to-prism">src/app/_eth/accountIndex.ts:95< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-description" > < p > Returns a specified number of the most recently registered accounts.< / p >
< / div >
2021-05-10 20:56:20 +02:00
< div class = "io-description" >
< b > Parameters :< / b >
< table class = "params" >
< thead >
< tr >
< td > Name< / td >
< td > Type< / td >
< td > Optional< / td >
2021-05-11 11:05:04 +02:00
< td > Description< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / thead >
< tbody >
< tr >
< td > numberOfAccounts< / td >
< td >
< code > < a href = "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target = "_blank" > number< / a > < / code >
< / td >
< td >
No
< / td >
2021-05-11 11:05:04 +02:00
< td >
< ul >
< li > The number of accounts to return from the accounts registry.< / li >
< / ul >
< / td >
2021-05-10 20:56:20 +02:00
< / tr >
< / tbody >
< / table >
< / div >
< div >
2021-05-11 11:05:04 +02:00
< b > Example :< / b >
< div >
< pre class = "line-numbers" > < code class = "language-html" > Prints an array of accounts:< /p>
< p> ```typescript< /p>
< ul>
< li> console.log(await last(5));< /li>
< li> ```< /li>
< /ul> < / code > < / pre >
< / div >
2021-05-10 20:56:20 +02:00
< / div >
< div class = "io-description" >
< b > Returns : < / b > < code > Promise< Array< string> > < / code >
< / div >
< div class = "io-description" >
2021-05-11 11:05:04 +02:00
< p > An array of registered account addresses.< / p >
2021-05-10 20:56:20 +02:00
< / div >
< / td >
< / tr >
< / tbody >
< / table >
< table class = "table table-sm table-bordered" >
< tbody >
< tr >
< td class = "col-md-4" >
< a name = "totalAccounts" > < / a >
< span class = "name" >
< b >
< span class = "modifier" > Public< / span >
< span class = "modifier" > Async< / span >
totalAccounts
< / b >
< a href = "#totalAccounts" > < span class = "icon ion-ios-link" > < / span > < / a >
< / span >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
< span class = "modifier-icon icon ion-ios-reset" > < / span >
< code > totalAccounts()< / code >
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-line" > Defined in < a href = "" data-line = "121"
class="link-to-prism">src/app/_eth/accountIndex.ts:121< / a > < / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< tr >
< td class = "col-md-4" >
2021-05-11 11:05:04 +02:00
< div class = "io-description" > < p > Returns the total number of accounts that have been registered in the network.< / p >
< / div >
2021-05-10 20:56:20 +02:00
2021-05-11 11:05:04 +02:00
< div >
< b > Example :< / b >
< div >
< pre class = "line-numbers" > < code class = "language-html" > Prints the total number of registered accounts:< /p>
< p> ```typescript< /p>
< ul>
< li> console.log(await totalAccounts());< /li>
< li> ```< /li>
< /ul> < / code > < / pre >
< / div >
< / div >
2021-05-10 20:56:20 +02:00
< div class = "io-description" >
< b > Returns : < / b > < code > Promise< number> < / code >
< / div >
2021-05-11 11:05:04 +02:00
< div class = "io-description" >
< p > The total number of registered accounts.< / p >
< / div >
2021-05-10 20:56:20 +02:00
< / td >
< / tr >
< / tbody >
< / table >
< / section >
< / div >
< div class = "tab-pane fade tab-source-code" id = "c-source" >
2021-05-11 11:05:04 +02:00
< pre class = "line-numbers compodoc-sourcecode" > < code class = "language-typescript" > import Web3 from ' web3' ;
// Application imports
import {environment} from ' @src/environments/environment' ;
2021-05-10 20:56:20 +02:00
2021-05-11 11:05:04 +02:00
/** Fetch the account registry contract' s ABI. */
2021-05-10 20:56:20 +02:00
const abi: Array< any> = require(' @src/assets/js/block-sync/data/AccountRegistry.json' );
2021-05-11 11:05:04 +02:00
/** Establish a connection to the blockchain network. */
2021-05-10 20:56:20 +02:00
const web3: Web3 = new Web3(environment.web3Provider);
2021-05-11 11:05:04 +02:00
/**
* Provides an instance of the accounts registry contract.
* Allows querying of accounts that have been registered as valid accounts in the network.
*
* @remarks
* This is our interface to the accounts registry contract.
*/
2021-05-10 20:56:20 +02:00
export class AccountIndex {
2021-05-11 11:05:04 +02:00
/** The instance of the account registry contract. */
contract: any;
/** The deployed account registry contract' s address. */
2021-05-10 20:56:20 +02:00
contractAddress: string;
2021-05-11 11:05:04 +02:00
/** The account address of the account that deployed the account registry contract. */
2021-05-10 20:56:20 +02:00
signerAddress: string;
2021-05-11 11:05:04 +02:00
/**
* Create a connection to the deployed account registry contract.
*
* @param contractAddress - The deployed account registry contract' s address.
* @param signerAddress - The account address of the account that deployed the account registry contract.
*/
2021-05-10 20:56:20 +02:00
constructor(contractAddress: string, signerAddress?: string) {
this.contractAddress = contractAddress;
this.contract = new web3.eth.Contract(abi, this.contractAddress);
if (signerAddress) {
this.signerAddress = signerAddress;
} else {
this.signerAddress = web3.eth.accounts[0];
}
}
2021-05-11 11:05:04 +02:00
/**
* Registers an account to the accounts registry.
* Requires availability of the signer address.
*
* @async
* @example
* Prints " true" for registration of ' 0xc0ffee254729296a45a3885639AC7E10F9d54979' :
* ` ` ` typescript
* console.log(await addToAccountRegistry(' 0xc0ffee254729296a45a3885639AC7E10F9d54979' ));
* ` ` `
*
* @param address - The account address to be registered to the accounts registry contract.
* @returns true - If registration is successful or account had already been registered.
*/
public async addToAccountRegistry(address: string): Promise< boolean> {
if (!await this.haveAccount(address)) {
return await this.contract.methods.add(address).send({from: this.signerAddress});
}
return true;
2021-05-10 20:56:20 +02:00
}
2021-05-11 11:05:04 +02:00
/**
* Checks whether a specific account address has been registered in the accounts registry.
* Returns " true" for available and " false" otherwise.
*
* @async
* @example
* Prints " true" or " false" depending on whether ' 0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:
* ` ` ` typescript
* console.log(await haveAccount(' 0xc0ffee254729296a45a3885639AC7E10F9d54979' ));
* ` ` `
*
* @param address - The account address to be validated.
* @returns true - If the address has been registered in the accounts registry.
*/
2021-05-10 20:56:20 +02:00
public async haveAccount(address: string): Promise< boolean> {
return await this.contract.methods.accountIndex(address).call() != = 0;
}
2021-05-11 11:05:04 +02:00
/**
* Returns a specified number of the most recently registered accounts.
*
* @async
* @example
* Prints an array of accounts:
* ` ` ` typescript
* console.log(await last(5));
* ` ` `
*
* @param numberOfAccounts - The number of accounts to return from the accounts registry.
* @returns An array of registered account addresses.
*/
2021-05-10 20:56:20 +02:00
public async last(numberOfAccounts: number): Promise< Array< string> > {
const count: number = await this.totalAccounts();
let lowest: number = count - numberOfAccounts - 1;
if (lowest < 0) {
lowest = 0;
}
const accounts: Array< string> = [];
for (let i = count - 1; i > lowest; i--) {
const account: string = await this.contract.methods.accounts(i).call();
accounts.push(account);
}
return accounts;
}
2021-05-11 11:05:04 +02:00
/**
* Returns the total number of accounts that have been registered in the network.
*
* @async
* @example
* Prints the total number of registered accounts:
* ` ` ` typescript
* console.log(await totalAccounts());
* ` ` `
*
* @returns The total number of registered accounts.
*/
public async totalAccounts(): Promise< number> {
return await this.contract.methods.count().call();
2021-05-10 20:56:20 +02:00
}
}
< / code > < / pre >
< / div >
< / div >
< / div > < div class = "search-results" >
< div class = "has-results" >
< h1 class = "search-results-title" > < span class = 'search-results-count' > < / span > result-matching "< span class = 'search-query' > < / span > "< / h1 >
< ul class = "search-results-list" > < / ul >
< / div >
< div class = "no-results" >
< h1 class = "search-results-title" > No results matching "< span class = 'search-query' > < / span > "< / h1 >
< / div >
< / div >
< / div >
<!-- END CONTENT -->
< / div >
< / div >
< script >
var COMPODOC_CURRENT_PAGE_DEPTH = 1;
var COMPODOC_CURRENT_PAGE_CONTEXT = 'class';
var COMPODOC_CURRENT_PAGE_URL = 'AccountIndex.html';
var MAX_SEARCH_RESULTS = 15;
< / script >
< script src = "../js/libs/custom-elements.min.js" > < / script >
< script src = "../js/libs/lit-html.js" > < / script >
<!-- Required to polyfill modern browsers as code is ES5 for IE... -->
< script src = "../js/libs/custom-elements-es5-adapter.js" charset = "utf-8" defer > < / script >
< script src = "../js/menu-wc.js" defer > < / script >
< script src = "../js/libs/bootstrap-native.js" > < / script >
< script src = "../js/libs/es6-shim.min.js" > < / script >
< script src = "../js/libs/EventDispatcher.js" > < / script >
< script src = "../js/libs/promise.min.js" > < / script >
< script src = "../js/libs/zepto.min.js" > < / script >
< script src = "../js/compodoc.js" > < / script >
< script src = "../js/tabs.js" > < / script >
< script src = "../js/menu.js" > < / script >
< script src = "../js/libs/clipboard.min.js" > < / script >
< script src = "../js/libs/prism.js" > < / script >
< script src = "../js/sourceCode.js" > < / script >
< script src = "../js/search/search.js" > < / script >
< script src = "../js/search/lunr.min.js" > < / script >
< script src = "../js/search/search-lunr.js" > < / script >
< script src = "../js/search/search_index.js" > < / script >
< script src = "../js/lazy-load-graphs.js" > < / script >
< / body >
< / html >