1 line
577 KiB
JSON
1 line
577 KiB
JSON
{"version":"0.1","summaries":[{"title":"ContractFactory","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory","text":"To deploy a Contract, additional information is needed that is not available on a Contract object itself."},{"link":"/v5/api/contract/contract-factory/#ContractFactory","text":"Mainly, the bytecode (more specifically the initcode) of a contract is required."},{"link":"/v5/api/contract/contract-factory/#ContractFactory","text":"The Contract Factory sends a special type of transaction, an initcode transaction (i.e."},{"link":"/v5/api/contract/contract-factory/#ContractFactory","text":"the to field is null, and the data field is the initcode) where the initcode will be evaluated and the result becomes the new code to be deployed as a new contract."}]},{"title":"ContractFactory -- Creating Instances -- new ethers.ContractFactory( interface , bytecode [ , signer ] )","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--creating","text":"Creates a new instance of a ContractFactory for the contract described by the interface and bytecode initcode."}]},{"title":"ContractFactory -- Creating Instances -- ContractFactory.fromSolidity( compilerOutput [ , signer ] ) => ContractFactory","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--creating","text":"Consumes the output of the Solidity compiler, extracting the ABI and bytecode from it, allowing for the various formats the solc compiler has emitted over its life."}]},{"title":"ContractFactory -- Creating Instances -- contractFactory.connect( signer ) => Contract","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory-connect","text":"Returns a new instance of the ContractFactory with the same interface and bytecode, but with a different signer."}]},{"title":"ContractFactory -- Properties -- contractFactory.interface => Interface","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--properties","text":"The Contract interface."}]},{"title":"ContractFactory -- Properties -- contractFactory.bytecode => string< DataHexString >","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--properties","text":"The bytecode (i.e."},{"link":"/v5/api/contract/contract-factory/#ContractFactory--properties","text":"initcode) that this ContractFactory will use to deploy the Contract."}]},{"title":"ContractFactory -- Properties -- contractFactory.signer => Signer","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--properties","text":"The Signer (if any) this ContractFactory will use to deploy instances of the Contract to the Blockchain."}]},{"title":"ContractFactory -- Methods -- contractFactory.attach( address ) => Contract","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory-attach","text":"Return an instance of a Contract attached to address."},{"link":"/v5/api/contract/contract-factory/#ContractFactory-attach","text":"This is the same as using the Contract constructor with address and this the interface and signerOrProvider passed in when creating the ContractFactory."}]},{"title":"ContractFactory -- Methods -- contractFactory.getDeployTransaction( ...args [ , overrides ] ) => UnsignedTransaction","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory--methods","text":"Returns the unsigned transaction which would deploy this Contract with args passed to the Contract's constructor."},{"link":"/v5/api/contract/contract-factory/#ContractFactory--methods","text":"If the optional overrides is specified, they can be used to override the endowment value, transaction nonce, gasLimit or gasPrice."}]},{"title":"ContractFactory -- Methods -- contractFactory.deploy( ...args [ , overrides ] ) => Promise< Contract >","blocks":[{"link":"/v5/api/contract/contract-factory/#ContractFactory-deploy","text":"Uses the signer to deploy the Contract with args passed into the constructor and returns a Contract which is attached to the address where this contract will be deployed once the transaction is mined."},{"link":"/v5/api/contract/contract-factory/#ContractFactory-deploy","text":"The transaction can be found at contract.deployTransaction, and no interactions should be made until the transaction is mined."},{"link":"/v5/api/contract/contract-factory/#ContractFactory-deploy","text":"If the optional overrides is specified, they can be used to override the endowment value, transaction nonce, gasLimit or gasPrice."}]},{"title":"Contract","blocks":[{"link":"/v5/api/contract/contract/#Contract","text":"A Contract is an abstraction of code that has been deployed to the blockchain."},{"link":"/v5/api/contract/contract/#Contract","text":"A Contract may be sent transactions, which will trigger its code to be run with the input of the transaction data."}]},{"title":"Contract -- Creating Instances -- contract.attach( addressOrName ) => Contract","blocks":[{"link":"/v5/api/contract/contract/#Contract-attach","text":"Returns a new instance of the Contract attached to a new address."},{"link":"/v5/api/contract/contract/#Contract-attach","text":"This is useful if there are multiple similar or identical copies of a Contract on the network and you wish to interact with each of them."}]},{"title":"Contract -- Creating Instances -- contract.connect( providerOrSigner ) => Contract","blocks":[{"link":"/v5/api/contract/contract/#Contract-connect","text":"Returns a new instance of the Contract, but connected to providerOrSigner."},{"link":"/v5/api/contract/contract/#Contract-connect","text":"By passing in a Provider, this will return a downgraded Contract which only has read-only access (i.e."},{"link":"/v5/api/contract/contract/#Contract-connect","text":"constant calls)."},{"link":"/v5/api/contract/contract/#Contract-connect","text":"By passing in a Signer."},{"link":"/v5/api/contract/contract/#Contract-connect","text":"this will return a Contract which will act on behalf of that signer."}]},{"title":"Contract -- Properties -- contract.address => string< Address >","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"This is the address (or ENS name) the contract was constructed with."}]},{"title":"Contract -- Properties -- contract.resolvedAddress => string< Address >","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"This is a promise that will resolve to the address the Contract object is attached to."},{"link":"/v5/api/contract/contract/#Contract--properties","text":"If an Address was provided to the constructor, it will be equal to this; if an ENS name was provided, this will be the resolved address."}]},{"title":"Contract -- Properties -- contract.deployTransaction => TransactionResponse","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"If the Contract object is the result of a ContractFactory deployment, this is the transaction which was used to deploy the contract."}]},{"title":"Contract -- Properties -- contract.interface => Interface","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"This is the ABI as an Interface."}]},{"title":"Contract -- Properties -- contract.provider => Provider","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"If a provider was provided to the constructor, this is that provider."},{"link":"/v5/api/contract/contract/#Contract--properties","text":"If a signer was provided that had a Provider, this is that provider."}]},{"title":"Contract -- Properties -- contract.signer => Signer","blocks":[{"link":"/v5/api/contract/contract/#Contract--properties","text":"If a signer was provided to the constructor, this is that signer."}]},{"title":"Contract -- Events -- contract.queryFilter( event [ , fromBlockOrBlockHash [ , toBlock ] ) => Promise< Array< Event > >","blocks":[{"link":"/v5/api/contract/contract/#Contract-queryFilter","text":"Return Events that match the event."}]},{"title":"Contract -- Events -- contract.listenerCount( [ event ] ) => number","blocks":[{"link":"/v5/api/contract/contract/#Contract-listenerCount","text":"Return the number of listeners that are subscribed to event."},{"link":"/v5/api/contract/contract/#Contract-listenerCount","text":"If no event is provided, returns the total count of all events."}]},{"title":"Contract -- Events -- contract.listeners( event ) => Array< Listener >","blocks":[{"link":"/v5/api/contract/contract/#Contract-listeners","text":"Return a list of listeners that are subscribed to event."}]},{"title":"Contract -- Events -- contract.off( event , listener ) => this","blocks":[{"link":"/v5/api/contract/contract/#Contract-off","text":"Unsubscribe listener to event."}]},{"title":"Contract -- Events -- contract.on( event , listener ) => this","blocks":[{"link":"/v5/api/contract/contract/#Contract-on","text":"Subscribe to event calling listener when the event occurs."}]},{"title":"Contract -- Events -- contract.once( event , listener ) => this","blocks":[{"link":"/v5/api/contract/contract/#Contract-once","text":"Subscribe once to event calling listener when the event occurs."}]},{"title":"Contract -- Events -- contract.removeAllListeners( [ event ] ) => this","blocks":[{"link":"/v5/api/contract/contract/#Contract-removeAllListeners","text":"Unsubscribe all listeners for event."},{"link":"/v5/api/contract/contract/#Contract-removeAllListeners","text":"If no event is provided, all events are unsubscribed."}]},{"title":"Contract -- Meta-Class","blocks":[{"link":"/v5/api/contract/contract/#Contract--metaclass","text":"A Meta-Class is a Class which has any of its properties determined at run-time."},{"link":"/v5/api/contract/contract/#Contract--metaclass","text":"The Contract object uses a Contract's ABI to determine what methods are available, so the following sections describe the generic ways to interact with the properties added at run-time during the Contract constructor."}]},{"title":"Contract -- Meta-Class -- Read-Only Methods (constant)","blocks":[{"link":"/v5/api/contract/contract/#Contract--readonly","text":"A constant method is read-only and evaluates a small amount of EVM code against the current blockchain state and can be computed by asking a single node, which can return a result."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"It is therefore free and does not require any ether, but cannot make changes to the blockchain state.."}]},{"title":"Contract -- Meta-Class -- contract.METHOD_NAME( ...args [ , overrides ] ) => Promise< any >","blocks":[{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"The type of the result depends on the ABI."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"If the method returns a single value, it will be returned directly, otherwise a Result object will be returned with each parameter available positionally and if the parameter is named, it will also be available by its name."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"For values that have a simple meaning in JavaScript, the types are fairly straight forward; strings and booleans are returned as JavaScript strings and booleans."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"For numbers, if the type is in the JavaScript safe range (i.e."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"less than 53 bits, such as an int24 or uint48) a normal JavaScript number is used."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"Otherwise a BigNumber is returned."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"For bytes (both fixed length and dynamic), a DataHexString is returned."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"The overrides object for a read-only method may include any of:."},{"link":"/v5/api/contract/contract/#Contract-functionsCall","text":"overrides.from - the msg.sender (or CALLER) to use during the execution of the code overrides.value - the msg.value (or CALLVALUE) to use during the exectuiont of the code overrides.gasPrice - the price to pay per gas (theoretically); since there is no transaction, there is not going to be any fee charged, but the EVM still requires a value to report to tx.gasprice (or GASPRICE); most developers will not require this overrides.gasLimit - the amount of gas (theoretically) to allow a node to use during the execution of the code; since there is no transaction, there is not going to be any fee charged, but the EVM still processes gas metering so calls like gasleft (or GAS) report meaningful values overrides.blockTag - a block tag to simulate the execution at, which can be used for hypothetical historic analysis; note that many backends do not support this, or may require paid plans to access as the node database storage and processing requirements are much higher."}]},{"title":"Contract -- Meta-Class -- contract.functions.METHOD_NAME( ...args [ , overrides ] ) => Promise< Result >","blocks":[{"link":"/v5/api/contract/contract/#Contract--readonly","text":"The result will always be a Result, even if there is only a single return value type."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"This simplifies frameworks which wish to use the Contract object, since they do not need to inspect the return types to unwrap simplified functions."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"Another use for this method is for error recovery."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"For example, if a function result is an invalid UTF-8 string, the normal call using the above meta-class function will throw an exception."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"This allows using the Result access error to access the low-level bytes and reason for the error allowing an alternate UTF-8 error strategy to be used."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"Most developers should not require this."},{"link":"/v5/api/contract/contract/#Contract--readonly","text":"The overrides are identical to the read-only operations above."}]},{"title":"Contract -- Meta-Class -- Write Methods (non-constant)","blocks":[{"link":"/v5/api/contract/contract/#Contract--write","text":"A non-constant method requires a transaction to be signed and requires payment in the form of a fee to be paid to a miner."},{"link":"/v5/api/contract/contract/#Contract--write","text":"This transaction will be verified by every node on the entire network as well by the miner who will compute the new state of the blockchain after executing it against the current state."},{"link":"/v5/api/contract/contract/#Contract--write","text":"It cannot return a result."},{"link":"/v5/api/contract/contract/#Contract--write","text":"If a result is required, it should be logged using a Solidity event (or EVM log), which can then be queried from the transaction receipt."}]},{"title":"Contract -- Meta-Class -- contract.METHOD_NAME( ...args [ , overrides ] ) => Promise< TransactionResponse >","blocks":[{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"Returns a TransactionResponse for the transaction after it is sent to the network."},{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"This requires the Contract has a signer."},{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"The overrides object for write methods may include any of:."},{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"overrides.gasPrice - the price to pay per gas overrides.gasLimit - the limit on the amount of gas to allow the transaction to consume; any unused gas is returned at the gasPrice overrides.value - the amount of ether (in wei) to forward with the call overrides.nonce - the nonce to use for the Signer."},{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"If the wait() method on the returned TransactionResponse is called, there will be additional properties on the receipt:."},{"link":"/v5/api/contract/contract/#contract-functionsSend","text":"receipt.events - an array of the logs, with additional properties (if the ABI included a description for the events) receipt.events[n].args - the parsed arguments receipt.events[n].decode - a method that can be used to parse the log topics and data (this was used to compute args) receipt.events[n].event - the name of the event receipt.events[n].eventSignature - the full signature of the event receipt.removeListener() - a method to remove the listener that trigger this event receipt.getBlock() - a method to return the Block this event occurred in receipt.getTransaction() - a method to return the Transaction this event occurred in receipt.getTransactionReceipt() - a method to return the Transaction Receipt this event occurred in."}]},{"title":"Contract -- Meta-Class -- Write Methods Analysis","blocks":[{"link":"/v5/api/contract/contract/#Contract--check","text":"There are several options to analyze properties and results of a write method without actually executing it."}]},{"title":"Contract -- Meta-Class -- contract.estimateGas.METHOD_NAME( ...args [ , overrides ] ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/contract/contract/#contract-estimateGas","text":"Returns the estimate units of gas that would be required to execute the METHOD_NAME with args and overrides."},{"link":"/v5/api/contract/contract/#contract-estimateGas","text":"The overrides are identical to the overrides above for read-only or write methods, depending on the type of call of METHOD_NAME."}]},{"title":"Contract -- Meta-Class -- contract.populateTransaction.METHOD_NAME( ...args [ , overrides ] ) => Promise< UnsignedTx >","blocks":[{"link":"/v5/api/contract/contract/#contract-populateTransaction","text":"Returns an UnsignedTransaction which represents the transaction that would need to be signed and submitted to the network to execute METHOD_NAME with args and overrides."},{"link":"/v5/api/contract/contract/#contract-populateTransaction","text":"The overrides are identical to the overrides above for read-only or write methods, depending on the type of call of METHOD_NAME."}]},{"title":"Contract -- Meta-Class -- contract.callStatic.METHOD_NAME( ...args [ , overrides ] ) => Promise< any >","blocks":[{"link":"/v5/api/contract/contract/#contract-callStatic","text":"Rather than executing the state-change of a transaction, it is possible to ask a node to pretend that a call is not state-changing and return the result."},{"link":"/v5/api/contract/contract/#contract-callStatic","text":"This does not actually change any state, but is free."},{"link":"/v5/api/contract/contract/#contract-callStatic","text":"This in some cases can be used to determine if a transaction will fail or succeed."},{"link":"/v5/api/contract/contract/#contract-callStatic","text":"This otherwise functions the same as a Read-Only Method."},{"link":"/v5/api/contract/contract/#contract-callStatic","text":"The overrides are identical to the read-only operations above."}]},{"title":"Contract -- Meta-Class -- Event Filters","blocks":[{"link":"/v5/api/contract/contract/#Contract--filters","text":"An event filter is made up of topics, which are values logged in a Bloom Filter, allowing efficient searching for entries which match a filter."}]},{"title":"Contract -- Meta-Class -- contract.filters.EVENT_NAME( ...args ) => Filter","blocks":[{"link":"/v5/api/contract/contract/#Contract--filters","text":"Return a filter for EVENT_NAME, optionally filtering by additional constraints."},{"link":"/v5/api/contract/contract/#Contract--filters","text":"Only indexed event parameters may be filtered."},{"link":"/v5/api/contract/contract/#Contract--filters","text":"If a parameter is null (or not provided) then any value in that field matches."}]},{"title":"Example: ERC-20 Contract -- Connecting to a Contract -- new ethers.Contract( address , abi , providerOrSigner )","blocks":[{"link":"/v5/api/contract/example/","text":"See the above code example for creating an Instance which will (in addition to the Contact methods and properties) automatically add the additional properties defined in abi to a Contract connected to address using the providerOrSigner."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.address => string< Address >","blocks":[{"link":"/v5/api/contract/example/","text":"This is the address (or ENS name) the contract was constructed with."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.resolvedAddress => string< Address >","blocks":[{"link":"/v5/api/contract/example/","text":"This is a promise that will resolve to the address the Contract object is attached to."},{"link":"/v5/api/contract/example/","text":"If an Address was provided to the constructor, it will be equal to this; if an ENS name was provided, this will be the resolved address."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.deployTransaction => TransactionResponse","blocks":[{"link":"/v5/api/contract/example/","text":"If the Contract object is the result of a ContractFactory deployment, this is the transaction which was used to deploy the contract."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.interface => Interface","blocks":[{"link":"/v5/api/contract/example/","text":"This is the ABI as an Interface."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.provider => Provider","blocks":[{"link":"/v5/api/contract/example/","text":"If a provider was provided to the constructor, this is that provider."},{"link":"/v5/api/contract/example/","text":"If a signer was provided that had a Provider, this is that provider."}]},{"title":"Example: ERC-20 Contract -- Properties -- erc20.signer => Signer","blocks":[{"link":"/v5/api/contract/example/","text":"If a signer was provided to the constructor, this is that signer."}]},{"title":"Example: ERC-20 Contract -- Methods -- erc20.attach( addressOrName ) => Contract","blocks":[{"link":"/v5/api/contract/example/","text":"Returns a new instance of the Contract attached to a new address."},{"link":"/v5/api/contract/example/","text":"This is useful if there are multiple similar or identical copies of a Contract on the network and you wish to interact with each of them."}]},{"title":"Example: ERC-20 Contract -- Methods -- erc20.connect( providerOrSigner ) => Contract","blocks":[{"link":"/v5/api/contract/example/","text":"Returns a new instance of the Contract, but connected to providerOrSigner."},{"link":"/v5/api/contract/example/","text":"By passing in a Provider, this will return a downgraded Contract which only has read-only access (i.e."},{"link":"/v5/api/contract/example/","text":"constant calls)."},{"link":"/v5/api/contract/example/","text":"By passing in a Signer."},{"link":"/v5/api/contract/example/","text":"this will return a Contract which will act on behalf of that signer."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.queryFilter( event [ , fromBlockOrBlockHash [ , toBlock ] ) => Promise< Array< Event > >","blocks":[{"link":"/v5/api/contract/example/#erc20-queryfilter","text":"Return Events that match the event."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.listenerCount( [ event ] ) => number","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Return the number of listeners that are subscribed to event."},{"link":"/v5/api/contract/example/#erc20-events","text":"If no event is provided, returns the total count of all events."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.listeners( event ) => Array< Listener >","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Return a list of listeners that are subscribed to event."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.off( event , listener ) => this","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Unsubscribe listener to event."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.on( event , listener ) => this","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Subscribe to event calling listener when the event occurs."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.once( event , listener ) => this","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Subscribe once to event calling listener when the event occurs."}]},{"title":"Example: ERC-20 Contract -- Events -- erc20.removeAllListeners( [ event ] ) => this","blocks":[{"link":"/v5/api/contract/example/#erc20-events","text":"Unsubscribe all listeners for event."},{"link":"/v5/api/contract/example/#erc20-events","text":"If no event is provided, all events are unsubscribed."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods","blocks":[{"link":"/v5/api/contract/example/","text":"Since the Contract is a Meta-Class, the methods available here depend on the ABI which was passed into the Contract."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.decimals( [ overrides ] ) => Promise< number >","blocks":[{"link":"/v5/api/contract/example/","text":"Returns the number of decimal places used by this ERC-20 token."},{"link":"/v5/api/contract/example/","text":"This can be used with parseUnits when taking input from the user or [formatUnits](utils-formatunits] when displaying the token amounts in the UI."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.getBalance( owner [ , overrides ] ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/contract/example/","text":"Returns the balance of owner for this ERC-20 token."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.symbol( [ overrides ] ) => Promise< string >","blocks":[{"link":"/v5/api/contract/example/","text":"Returns the symbol of the token."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20_rw.transfer( target , amount [ , overrides ] ) => Promise< TransactionResponse >","blocks":[{"link":"/v5/api/contract/example/","text":"Transfers amount tokens to target from the current signer."},{"link":"/v5/api/contract/example/","text":"The return value (a boolean) is inaccessible during a write operation using a transaction."},{"link":"/v5/api/contract/example/","text":"Other techniques (such as events) are required if this value is required."},{"link":"/v5/api/contract/example/","text":"On-chain contracts calling the transfer function have access to this result, which is why it is possible."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.callStatic.transfer( target , amount [ , overrides ] ) => Promise< boolean >","blocks":[{"link":"/v5/api/contract/example/","text":"Performs a dry-run of transferring amount tokens to target from the current signer, without actually signing or sending a transaction."},{"link":"/v5/api/contract/example/","text":"This can be used to preflight check that a transaction will be successful."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.estimateGas.transfer( target , amount [ , overrides ] ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/contract/example/","text":"Returns an estimate for how many units of gas would be required to transfer amount tokens to target."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- erc20.populateTransaction.transfer( target , amount [ , overrides ] ) => Promise< UnsignedTx >","blocks":[{"link":"/v5/api/contract/example/","text":"Returns an UnsignedTransaction which could be signed and submitted to the network to transaction amount tokens to target."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Methods -- Note on Estimating and Static Calling","blocks":[{"link":"/v5/api/contract/example/","text":"When you perform a static call, the current state is taken into account as best as Ethereum can determine."},{"link":"/v5/api/contract/example/","text":"There are many cases where this can provide false positives and false negatives."},{"link":"/v5/api/contract/example/","text":"The eventually consistent model of the blockchain also means there are certain consistency modes that cannot be known until an actual transaction is attempted."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Filters","blocks":[{"link":"/v5/api/contract/example/","text":"Since the Contract is a Meta-Class, the methods available here depend on the ABI which was passed into the Contract."}]},{"title":"Example: ERC-20 Contract -- Meta-Class Filters -- erc20.filters.Transfer( [ fromAddress [ , toAddress ] ] ) => Filter","blocks":[{"link":"/v5/api/contract/example/","text":"Returns a new Filter which can be used to query or to subscribe/unsubscribe to events."},{"link":"/v5/api/contract/example/","text":"If fromAddress is null or not provided, then any from address matches."},{"link":"/v5/api/contract/example/","text":"If toAddress is null or not provided, then any to address matches."}]},{"title":"Contract Interaction","blocks":[{"link":"/v5/api/contract/#contracts","text":"A Contract object is an abstraction of a contract (EVM bytecode) deployed on the Ethereum network."},{"link":"/v5/api/contract/#contracts","text":"It allows for a simple way to serialize calls and transactions to an on-chain contract and deserialize their results and emitted logs."},{"link":"/v5/api/contract/#contracts","text":"A ContractFactory is an abstraction of a contract's bytecode and facilitates deploying a contract."}]},{"title":"Experimental","blocks":[{"link":"/v5/api/experimental/","text":"The Experimental package is used for features that are not ready to be included in the base library."},{"link":"/v5/api/experimental/","text":"The API should not be considered stable and does not follow semver versioning, so applications requiring it should specify the exact version needed."}]},{"title":"Experimental -- BrainWallet","blocks":[{"link":"/v5/api/experimental/#experimental-brainwallet","text":"Ethers removed support for BrainWallets in v4, since they are unsafe and many can be easily guessed, allowing attackers to steal the funds."},{"link":"/v5/api/experimental/#experimental-brainwallet","text":"This class is offered to ensure older systems which used brain wallets can still recover their funds and assets."}]},{"title":"Experimental -- BrainWallet -- BrainWallet.generate( username , password [ , progressCallback ] ) => BrainWallet","blocks":[{"link":"/v5/api/experimental/#experimental-brainwallet","text":"Generates a brain wallet, with a slightly improved experience, in which the generated wallet has a mnemonic."}]},{"title":"Experimental -- BrainWallet -- BrainWallet.generateLegacy( username , password [ , progressCallback ] ) => BrainWallet","blocks":[{"link":"/v5/api/experimental/#experimental-brainwallet","text":"Generate a brain wallet which is compatible with the ethers v3 and earlier."}]},{"title":"Experimental -- EIP1193Bridge","blocks":[{"link":"/v5/api/experimental/#experimental-eip1193bridge","text":"The EIP1193Bridge allows a normal Ethers Signer and Provider to be exposed in as a standard EIP-1193 Provider, which may be useful when interacting with other libraries."}]},{"title":"Experimental -- NonceManager","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"The NonceManager is designed to manage the nonce for a Signer, automatically increasing it as it sends transactions."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"Currently the NonceManager does not handle re-broadcast."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"If you attempt to send a lot of transactions to the network on a node that does not control that account, the transaction pool may drop your transactions."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"In the future, it'd be nice if the NonceManager remembered transactions and watched for them on the network, rebroadcasting transactions that appear to have been dropped."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"Another future feature will be some sort of failure mode."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"For example, often a transaction is dependent on another transaction being mined first."}]},{"title":"Experimental -- NonceManager -- new NonceManager( signer )","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"Create a new NonceManager."}]},{"title":"Experimental -- NonceManager -- nonceManager.signer => Signer","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"The signer whose nonce is being managed."}]},{"title":"Experimental -- NonceManager -- nonceManager.provider => Provider","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"The provider associated with the signer."}]},{"title":"Experimental -- NonceManager -- nonceManager.setTransactionCount( count ) => void","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"Set the current transaction count (nonce) for the signer."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"This may be useful in interacting with the signer outside of using this class."}]},{"title":"Experimental -- NonceManager -- nonceManager.incrementTransactionCount( [ count = 1 ] ) => void","blocks":[{"link":"/v5/api/experimental/#experimental-noncemanager","text":"Bump the current transaction count (nonce) by count."},{"link":"/v5/api/experimental/#experimental-noncemanager","text":"This may be useful in interacting with the signer outside of using this class."}]},{"title":"Application Programming Interface","blocks":[{"link":"/v5/api/#api","text":"An Application Programming Interface (API) is the formal specification of the library."}]},{"title":"Utilities -- Assembler","blocks":[{"link":"/v5/api/other/assembly/api/#asm-utilities","text":"The assembler utilities allow parsing and assembling an Ethers ASM Dialect source file."}]},{"title":"Utilities -- Assembler -- asm.parse( code ) => Node","blocks":[{"link":"/v5/api/other/assembly/api/#asm-parse","text":"Parse an ethers-format assembly file and return the Abstract Syntax Tree."}]},{"title":"Utilities -- Assembler -- asm.assemble( node ) => string< DataHexString >","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Performs assembly of the Abstract Syntax Tree node and return the resulting bytecode representation."}]},{"title":"Utilities -- Disassembler","blocks":[{"link":"/v5/api/other/assembly/api/#asm-utilities","text":"The Disassembler utilities make it easy to convert bytecode into an object which can easily be examined for program structure."}]},{"title":"Utilities -- Disassembler -- asm.disassemble( bytecode ) => Bytecode","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Returns an array of Operations given bytecode."}]},{"title":"Utilities -- Disassembler -- asm.formatBytecode( operations ) => string","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Create a formatted output of an array of Operation."}]},{"title":"Utilities -- Disassembler -- Bytecode","blocks":[{"link":"/v5/api/other/assembly/api/#asm-bytecode","text":"Each array index represents an operation, collapsing multi-byte operations (i.e."},{"link":"/v5/api/other/assembly/api/#asm-bytecode","text":"PUSH) into a single operation."}]},{"title":"Utilities -- Disassembler -- bytecode.getOperation( offset ) => Operation","blocks":[{"link":"/v5/api/other/assembly/api/#asm-bytecode","text":"Get the operation at a given offset into the bytecode."},{"link":"/v5/api/other/assembly/api/#asm-bytecode","text":"This ensures that the byte at offset is an operation and not data contained within a PUSH, in which case null it returned."}]},{"title":"Utilities -- Disassembler -- Operation","blocks":[{"link":"/v5/api/other/assembly/api/#asm-operation","text":"An Operation is a single command from a disassembled bytecode stream."}]},{"title":"Utilities -- Disassembler -- operation.opcode => Opcode","blocks":[{"link":"/v5/api/other/assembly/api/#asm-operation","text":"The opcode for this Operation."}]},{"title":"Utilities -- Disassembler -- operation.offset => number","blocks":[{"link":"/v5/api/other/assembly/api/#asm-operation","text":"The offset into the bytecode for this Operation."}]},{"title":"Utilities -- Disassembler -- operation.pushValue => string< DataHexString >","blocks":[{"link":"/v5/api/other/assembly/api/#asm-operation","text":"If the opcode is a PUSH, this is the value of that push."}]},{"title":"Utilities -- Opcode -- asm.Opcode.from( valueOrMnemonic ) => Opcode","blocks":[{"link":"/v5/api/other/assembly/api/#asm-opcode","text":"Create a new instance of an Opcode for a given numeric value (e.g."},{"link":"/v5/api/other/assembly/api/#asm-opcode","text":"0x60 is PUSH1) or mnemonic string (e.g."},{"link":"/v5/api/other/assembly/api/#asm-opcode","text":"\"PUSH1\")."}]},{"title":"Utilities -- Opcode -- opcode.value => number","blocks":[{"link":"/v5/api/other/assembly/api/","text":"The value (bytecode as a number) of this opcode."}]},{"title":"Utilities -- Opcode -- opcode.mnemonic => string","blocks":[{"link":"/v5/api/other/assembly/api/","text":"The mnemonic string of this opcode."}]},{"title":"Utilities -- Opcode -- opcode.delta => number","blocks":[{"link":"/v5/api/other/assembly/api/","text":"The number of items this opcode will consume from the stack."}]},{"title":"Utilities -- Opcode -- opcode.alpha => number","blocks":[{"link":"/v5/api/other/assembly/api/","text":"The number of items this opcode will push onto the stack."}]},{"title":"Utilities -- Opcode -- opcode.doc => string","blocks":[{"link":"/v5/api/other/assembly/api/","text":"A short description of what this opcode does."}]},{"title":"Utilities -- Opcode -- opcode.isMemory( ) => \"read\" | \"write\" | \"full\"","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Returns true if the opcode accesses memory."}]},{"title":"Utilities -- Opcode -- opcode.isStatic( ) => boolean","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Returns true if the opcode cannot change state."}]},{"title":"Utilities -- Opcode -- opcode.isJump( ) => boolean","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Returns true if the opcode is a jumper operation."}]},{"title":"Utilities -- Opcode -- opcode.isPush( ) => number","blocks":[{"link":"/v5/api/other/assembly/api/","text":"Returns 0 if the opcode is not a PUSH*, or the number of bytes this opcode will push if it is."}]},{"title":"Abstract Syntax Tree","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-ast","text":"Parsing a file using the Ethers ASM Dialect will generate an Abstract Syntax Tree."},{"link":"/v5/api/other/assembly/ast/#asm-ast","text":"The root node will always be a ScopeNode whose name is _."},{"link":"/v5/api/other/assembly/ast/#asm-ast","text":"To parse a file into an Abstract Syntax tree, use the parse function."}]},{"title":"Abstract Syntax Tree -- Types -- offset => number","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-location","text":"The offset into the source code to the start of this node."}]},{"title":"Abstract Syntax Tree -- Types -- length => number","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-location","text":"The length of characters in the source code to the end of this node."}]},{"title":"Abstract Syntax Tree -- Types -- source => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-location","text":"The source code of this node."}]},{"title":"Abstract Syntax Tree -- Nodes","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-ast","text":"@TODO: Place a diagram here showing the hierarchy."}]},{"title":"Abstract Syntax Tree -- Nodes -- node.tag => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-node","text":"A unique tag for this node for the lifetime of the process."}]},{"title":"Abstract Syntax Tree -- Nodes -- node.location => Location","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-node","text":"The source code and location within the source code that this node represents."}]},{"title":"Abstract Syntax Tree -- Nodes -- ValueNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-valuenode","text":"A ValueNode is a node which may manipulate the stack."}]},{"title":"Abstract Syntax Tree -- Nodes -- literalNode.value => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-literalnode","text":"The literal value of this node, which may be a DataHexString or string of a decimal number."}]},{"title":"Abstract Syntax Tree -- Nodes -- literalNode.verbatim => boolean","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-literalnode","text":"This is true in a DataNode context, since in that case the value should be taken verbatim and no PUSH operation should be added, otherwise false."}]},{"title":"Abstract Syntax Tree -- Nodes -- PopNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"A PopNode is used to store a place-holder for an implicit pop from the stack."},{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"It represents the code for an implicit place-holder (i.e."},{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"$$) or an explicit place-holder (e.g."},{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"$1), which indicates the expected stack position to consume."}]},{"title":"Abstract Syntax Tree -- Nodes -- literalNode.index => number","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"The index this PopNode is representing."},{"link":"/v5/api/other/assembly/ast/#asm-popnode","text":"For an implicit place-holder this is 0."}]},{"title":"Abstract Syntax Tree -- Nodes -- LinkNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-linknode","text":"A LinkNode represents a link to another Node's data, for example $foo or #bar."}]},{"title":"Abstract Syntax Tree -- Nodes -- linkNode.label => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-linknode","text":"The name of the target node."}]},{"title":"Abstract Syntax Tree -- Nodes -- linkNode.type => \"offset\" | \"length\"","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-linknode","text":"Whether this node is for an offset or a length value of the target node."}]},{"title":"Abstract Syntax Tree -- Nodes -- opcodeNode.opcode => Opcode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-opcodenode","text":"The opcode for this Node."}]},{"title":"Abstract Syntax Tree -- Nodes -- opcodeNode.operands => Array< ValueNode >","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-opcodenode","text":"A list of all operands passed into this Node."}]},{"title":"Abstract Syntax Tree -- Nodes -- EvaluationNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-evaluationnode","text":"An EvaluationNode is used to execute code and insert the results but does not generate any output assembly, using the {{! code here }} syntax."}]},{"title":"Abstract Syntax Tree -- Nodes -- literalNode.verbatim => boolean","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-evaluationnode","text":"This is true in a DataNode context, since in that case the value should be taken verbatim and no PUSH operation should be added, otherwise false."}]},{"title":"Abstract Syntax Tree -- Nodes -- evaluationNode.script => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-evaluationnode","text":"The code to evaluate and produce the result to use as a literal."}]},{"title":"Abstract Syntax Tree -- Nodes -- ExecutionNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-executionnode","text":"An ExecutionNode is used to execute code but does not generate any output assembly, using the {{! code here }} syntax."}]},{"title":"Abstract Syntax Tree -- Nodes -- evaluationNode.script => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-executionnode","text":"The code to execute."},{"link":"/v5/api/other/assembly/ast/#asm-executionnode","text":"Any result is ignored."}]},{"title":"Abstract Syntax Tree -- Nodes -- LabelledNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-labellednode","text":"A LabelledNode is used for any Node that has a name, and can therefore be targeted by a LinkNode."}]},{"title":"Abstract Syntax Tree -- Nodes -- labelledNode.name => string","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-labellednode","text":"The name of this node."}]},{"title":"Abstract Syntax Tree -- Nodes -- LabelNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-labelnode","text":"A LabelNode is used as a place to JUMP to by referencing it name, using @myLabel:."},{"link":"/v5/api/other/assembly/ast/#asm-labelnode","text":"A JUMPDEST is automatically inserted at the bytecode offset."}]},{"title":"Abstract Syntax Tree -- Nodes -- DataNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-datanode","text":"A DataNode allows for data to be inserted directly into the output assembly, using @myData[ ..."},{"link":"/v5/api/other/assembly/ast/#asm-datanode","text":"]."},{"link":"/v5/api/other/assembly/ast/#asm-datanode","text":"The data is padded if needed to ensure values that would otherwise be regarded as a PUSH value does not impact anything past the data."}]},{"title":"Abstract Syntax Tree -- Nodes -- dataNode.data => Array< ValueNode >","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-datanode","text":"The child nodes, which each represent a verbatim piece of data in insert."}]},{"title":"Abstract Syntax Tree -- Nodes -- ScopeNode","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-scopenode","text":"A ScopeNode allows a new frame of reference that all LinkNode's will use when resolving offset locations, using @myScope{ ..."},{"link":"/v5/api/other/assembly/ast/#asm-scopenode","text":"}."}]},{"title":"Abstract Syntax Tree -- Nodes -- scopeNode.statements => Array< Node >","blocks":[{"link":"/v5/api/other/assembly/ast/#asm-scopenode","text":"The list of child nodes for this scope."}]},{"title":"Ethers ASM Dialect","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect","text":"This provides a quick, high-level overview of the Ethers ASM Dialect for EVM, which is defined by the Ethers ASM Dialect Grammar."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect","text":"Once a program is compiled by a higher level language into ASM (assembly), or hand-coded directly in ASM, it needs to be assembled into bytecode."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect","text":"The assembly process performs a very small set of operations and is intentionally simple and closely related to the underlying EVM bytecode."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect","text":"Operations include embedding programs within programs (for example the deployment bootstrap has the runtime embedded in it) and computing the necessary offsets for jump operations."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect","text":"The Command-Line Assembler can be used to assemble an Ethers ASM Dialect file or to disassemble bytecode into its human-readable (ish) opcodes and literals."}]},{"title":"Ethers ASM Dialect -- Opcodes","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-opcode","text":"An Opcode may be provided in either a functional or instructional syntax."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-opcode","text":"For Opcodes that require parameters, the functional syntax is recommended and the instructional syntax will raise a warning."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-opcode","text":"@TODO: Examples."}]},{"title":"Ethers ASM Dialect -- Labels","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-label","text":"A Label is a position in the program which can be jumped to."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-label","text":"A JUMPDEST is automatically added to this point in the assembled output."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-label","text":"@TODO: Examples."}]},{"title":"Ethers ASM Dialect -- Literals","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-literal","text":"A Literal puts data on the stack when executed using a PUSH operation."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-literal","text":"A Literal can be provided using a DataHexString or a decimal byte value."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-literal","text":"@TODO: examples."}]},{"title":"Ethers ASM Dialect -- Comments","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-comment","text":"To enter a comment in the Ethers ASM Dialect, any text following a semi-colon (i.e."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-comment","text":";) is ignored by the assembler."}]},{"title":"Ethers ASM Dialect -- Scopes","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"A common case in Ethereum is to have one program embedded in another."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"The most common use of this is embedding a Contract runtime bytecode within a deployment bytecode, which can be used as init code."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"When deploying a program to Ethereum, an init transaction is used."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"An init transaction has a null to address and contains bytecode in the data."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"This data bytecode is a program, that when executed returns some other bytecode as a result, this result is the bytecode to be installed."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"Therefore it is important that embedded code uses jumps relative to itself, not the entire program it is embedded in, which also means that a jump can only target its own scope, no parent or child scopes."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"This is enforced by the assembler."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"A scope may access the offset of any child Data Segment or child Scopes (with respect to itself) and may access the length of any Data Segment or Scopes anywhere in the program."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-scope","text":"Every program in the Ethers ASM Dialect has a top-level scope named _."}]},{"title":"Ethers ASM Dialect -- Data Segment","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-datasegment","text":"A Data Segment allows arbitrary data to be embedded into a program, which can be useful for lookup tables or deploy-time constants."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-datasegment","text":"An empty Data Segment can also be used when a labelled location is required, but without the JUMPDEST which a Labels adds."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-datasegment","text":"@TODO: Example."}]},{"title":"Ethers ASM Dialect -- Links","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"A Link allows access to a Scopes, Data Segment or Labels."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"To access the byte offset of a labelled item, use $foobar."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"For a Labels, the target must be directly reachable within this scope."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"For a Data Segment or a Scopes, it can be inside the same scope or any child scope."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"For a Data Segment or a Labels, there is an additional type of Link, which provides the length of the data or bytecode respectively."},{"link":"/v5/api/other/assembly/dialect/#asm-dialect-links","text":"A Length Link is accessed by #foobar and is pushed on the stack as a literal."}]},{"title":"Ethers ASM Dialect -- Stack Placeholders","blocks":[{"link":"/v5/api/other/assembly/dialect/#asm-dialect-placeholder","text":"@TODO: exampl."}]},{"title":"Assembly","blocks":[{"link":"/v5/api/other/assembly/","text":"This module should still be considered fairly experimental."}]},{"title":"Hardware Wallets -- LedgerSigner","blocks":[{"link":"/v5/api/other/hardware/#hw-ledger","text":"The Ledger Hardware Wallets are a fairly popular brand."}]},{"title":"Hardware Wallets -- LedgerSigner -- new LedgerSigner( [ provider [ , type [ , path ] ] ] ) => LedgerSigner","blocks":[{"link":"/v5/api/other/hardware/","text":"Connects to a Ledger Hardware Wallet."},{"link":"/v5/api/other/hardware/","text":"The type if left unspecified is determined by the environment; in node the default is \"hid\" and in the browser \"u2f\" is the default."},{"link":"/v5/api/other/hardware/","text":"The default Ethereum path is used if path is left unspecified."}]},{"title":"Other Libraries","blocks":[{"link":"/v5/api/other/","text":"Now that ethers is more modular, it is possible to have additional ancillary packages, which are not part of the core but optionally add functionality only needed in certain situations."}]},{"title":"API Providers","blocks":[{"link":"/v5/api/providers/api-providers/#api-providers","text":"There are many services which offer a web API for accessing the Ethereum Blockchain."},{"link":"/v5/api/providers/api-providers/#api-providers","text":"These Providers allow connecting to them, which simplifies development, since you do not need to run your own instance or cluster of Ethereum nodes."},{"link":"/v5/api/providers/api-providers/#api-providers","text":"However, this reliance on third-party services can reduce resilience, security and increase the amount of required trust."},{"link":"/v5/api/providers/api-providers/#api-providers","text":"To mitigate these issues, it is recommended you use a Default Provider."}]},{"title":"API Providers -- EtherscanProvider","blocks":[{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"The EtherscanProvider is backed by a combination of the various Etherscan APIs."}]},{"title":"API Providers -- EtherscanProvider -- new ethers.providers.EtherscanProvider( [ network = \"homestead\" , [ apiKey ] ] )","blocks":[{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"Create a new EtherscanProvider connected to network with the optional apiKey."},{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"The network may be specified as a string for a common network name, a number for a common chain ID or a [Network Object]provider-(network)."},{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"If no apiKey is provided, a shared API key will be used, which may result in reduced performance and throttled requests."},{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"It is highly recommended for production, you register with Etherscan for your own API key."}]},{"title":"API Providers -- EtherscanProvider -- Note: Default API keys","blocks":[{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"If no apiKey is provided, a shared API key will be used, which may result in reduced performance and throttled requests."},{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"It is highly recommended for production, you register with Etherscan for your own API key."}]},{"title":"API Providers -- EtherscanProvider -- Supported Networks","blocks":[{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"Homestead (Mainnet) Ropsten (proof-of-work testnet) Rinkeby (proof-of-authority testnet) Görli (clique testnet) Kovan (proof-of-authority testnet)."}]},{"title":"API Providers -- EtherscanProvider -- provider.getHistory( address ) => Array< History >","blocks":[{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"@TODO..."},{"link":"/v5/api/providers/api-providers/#EtherscanProvider","text":"Explain."}]},{"title":"API Providers -- InfuraProvider","blocks":[{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"The InfuraProvider is backed by the popular INFURA Ethereum service."}]},{"title":"API Providers -- InfuraProvider -- new ethers.providers.InfuraProvider( [ network = \"homestead\" , [ apiKey ] ] )","blocks":[{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"Create a new InfuraProvider connected to network with the optional apiKey."},{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"The network may be specified as a string for a common network name, a number for a common chain ID or a [Network Object]provider-(network)."},{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"The apiKey can be a string Project ID or an object with the properties projectId and projectSecret to specify a Project Secret which can be used on non-public sources (like on a server) to further secure your API access and quotas."}]},{"title":"API Providers -- InfuraProvider -- InfuraProvider.getWebSocketProvider( [ network [ , apiKey ] ] ) => WebSocketProvider","blocks":[{"link":"/v5/api/providers/api-providers/#InfuraProvider-getWebSocketProvider","text":"Create a new WebSocketProvider using the INFURA web-socket endpoint to connect to network with the optional apiKey."},{"link":"/v5/api/providers/api-providers/#InfuraProvider-getWebSocketProvider","text":"The network and apiKey are specified the same as the constructor."}]},{"title":"API Providers -- InfuraProvider -- Note: Default API keys","blocks":[{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"If no apiKey is provided, a shared API key will be used, which may result in reduced performance and throttled requests."},{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"It is highly recommended for production, you register with INFURA for your own API key."}]},{"title":"API Providers -- InfuraProvider -- Supported Networks","blocks":[{"link":"/v5/api/providers/api-providers/#InfuraProvider","text":"Homestead (Mainnet) Ropsten (proof-of-work testnet) Rinkeby (proof-of-authority testnet) Görli (clique testnet) Kovan (proof-of-authority testnet)."}]},{"title":"API Providers -- AlchemyProvider","blocks":[{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"The AlchemyProvider is backed by Alchemy."}]},{"title":"API Providers -- AlchemyProvider -- new ethers.providers.AlchemyProvider( [ network = \"homestead\" , [ apiKey ] ] )","blocks":[{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"Create a new AlchemyProvider connected to network with the optional apiKey."},{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"The network may be specified as a string for a common network name, a number for a common chain ID or a Network Object."}]},{"title":"API Providers -- AlchemyProvider -- Note: Default API keys","blocks":[{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"If no apiKey is provided, a shared API key will be used, which may result in reduced performance and throttled requests."},{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"It is highly recommended for production, you register with Alchemy for your own API key."}]},{"title":"API Providers -- AlchemyProvider -- Supported Networks","blocks":[{"link":"/v5/api/providers/api-providers/#AlchemyProvider","text":"Homestead (Mainnet) Ropsten (proof-of-work testnet) Rinkeby (proof-of-authority testnet) Görli (clique testnet) Kovan (proof-of-authority testnet)."}]},{"title":"API Providers -- CloudflareProvider","blocks":[{"link":"/v5/api/providers/api-providers/#CloudflareProvider","text":"The CloudflareProvider is backed by the Cloudflare Ethereum Gateway."}]},{"title":"API Providers -- CloudflareProvider -- new ethers.providers.CloudflareProvider( )","blocks":[{"link":"/v5/api/providers/api-providers/#CloudflareProvider","text":"Create a new CloudflareProvider connected to mainnet (i.e."},{"link":"/v5/api/providers/api-providers/#CloudflareProvider","text":"\"homestead\")."}]},{"title":"API Providers -- CloudflareProvider -- Supported Networks","blocks":[{"link":"/v5/api/providers/api-providers/#CloudflareProvider","text":"Homestead (Mainnet)."}]},{"title":"Providers","blocks":[{"link":"/v5/api/providers/#providers","text":"A Provider is an abstraction of a connection to the Ethereum network, providing a concise, consistent interface to standard Ethereum node functionality."},{"link":"/v5/api/providers/#providers","text":"The ethers.js library provides several options which should cover the vast majority of use-cases, but also includes the necessary functions and classes for sub-classing if a more custom configuration is necessary."},{"link":"/v5/api/providers/#providers","text":"Most users should use the Default Provider."}]},{"title":"Providers -- Default Provider","blocks":[{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"The default provider is the safest, easiest way to begin developing on Ethereum, and it is also robust enough for use in production."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"It creates a FallbackProvider connected to as many backend services as possible."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"When a request is made, it is sent to multiple backends simultaneously."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"As responses from each backend are returned, they are checked that they agree."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"Once a quorum has been reached (i.e."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"enough of the backends agree), the response is provided to your application."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"This ensures that if a backend has become out-of-sync, or if it has been compromised that its responses are dropped in favor of responses that match the majority."}]},{"title":"Providers -- Default Provider -- ethers.getDefaultProvider( [ network , [ options ] ] ) => Provider","blocks":[{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"Returns a new Provider, backed by multiple services, connected to network."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"If no network is provided, homestead (i.e."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"mainnet) is used."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"The network may also be a URL to connect to, such as http://localhost:8545 or wss://example.com."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"The options is an object, with the following properties:."}]},{"title":"Providers -- Default Provider -- Note: API Keys","blocks":[{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"It is highly recommended for production services to acquire and specify an API Key for each service."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"The default API Keys used by ethers are shared across all users, so services may throttle all services that are using the default API Keys during periods of load without realizing it."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"Many services also have monitoring and usage metrics, which are only available if an API Key is specified."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"This allows tracking how many requests are being sent and which methods are being used the most."},{"link":"/v5/api/providers/#providers-getDefaultProvider","text":"Some services also provide additional paid features, which are only available when specifying an API Key."}]},{"title":"Providers -- Networks","blocks":[{"link":"/v5/api/providers/#providers","text":"There are several official common Ethereum networks as well as custom networks and other compatible projects."},{"link":"/v5/api/providers/#providers","text":"Any API that accept a Networkish can be passed a common name (such as \"mainnet\" or \"ropsten\") to use that network definition or may specify custom parameters."}]},{"title":"Providers -- Networks -- Custom ENS Contract","blocks":[{"link":"/v5/api/providers/","text":"One common reason to specify custom properties for a Network is to override the address of the root ENS registry, either on a common network to intercept the ENS Methods or to specify the ENS registry on a dev network (on most dev networks you must deploy the ENS contracts manually)."}]},{"title":"JsonRpcProvider","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"The JSON-RPC API is a popular method for interacting with Ethereum and is available in all major Ethereum node implementations (e.g."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"Geth and Parity) as well as many third-party web services (e.g."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"INFURA)."}]},{"title":"JsonRpcProvider -- Provider Documentation -- new ethers.providers.JsonRpcProvider( [ urlOrConnectionInfo [ , networkish ] ] )","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"Connect to a JSON-RPC HTTP API using the URL or ConnectionInfo urlOrConnectionInfo connected to the networkish network."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"If urlOrConnectionInfo is not specified, the default (i.e."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"http://localhost:8545) is used and if no network is specified, it will be determined automatically by querying the node using eth_chaindId and falling back on eth_networkId."}]},{"title":"JsonRpcProvider -- Provider Documentation -- Note: Connecting to a Local Node","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"Each node implementation is slightly different and may require specific command-line flags, configuration or settings in their UI to enable JSON-RPC, unlock accounts or expose specific APIs."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider","text":"Please consult their documentation."}]},{"title":"JsonRpcProvider -- Provider Documentation -- jsonRpcProvider.getSigner( [ addressOrIndex ] ) => JsonRpcSigner","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider-getSigner","text":"Returns a JsonRpcSigner which is managed by this Ethereum node, at addressOrIndex."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider-getSigner","text":"If no addressOrIndex is provided, the first account (account #0) is used."}]},{"title":"JsonRpcProvider -- Provider Documentation -- jsonRpcProvider.listAccounts( ) => Array< string >","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider-listAccounts","text":"Returns a list of all account addresses managed by this provider."}]},{"title":"JsonRpcProvider -- Provider Documentation -- jsonRpcProvider.send( method , params ) => Promise< any >","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider-send","text":"Allows sending raw messages to the provider."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider-send","text":"This can be used for backend-specific calls, such as for debugging or specific account management."}]},{"title":"JsonRpcProvider -- JsonRpcSigner","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner","text":"A JsonRpcSigner is a simple Signer which is backed by a connected JsonRpcProvider."}]},{"title":"JsonRpcProvider -- JsonRpcSigner -- signer.provider => JsonRpcProvider","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner","text":"The provider this signer was established from."}]},{"title":"JsonRpcProvider -- JsonRpcSigner -- signer.connectUnchecked( ) => JsonRpcUncheckedSigner","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner-connectUnchecked","text":"Returns a new Signer object which does not perform additional checks when sending a transaction."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner-connectUnchecked","text":"See getUncheckedSigner for more details."}]},{"title":"JsonRpcProvider -- JsonRpcSigner -- signer.sendUncheckedTransaction( transaction ) => Promise< string< DataHexString< 32 > > >","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner-sendUncheckedTransaction","text":"Sends the transaction and returns a Promise which resolves to the opaque transaction hash."}]},{"title":"JsonRpcProvider -- JsonRpcSigner -- signer.unlock( password ) => Promise< boolean >","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcSigner-unlock","text":"Request the node unlock the account (if locked) using password."}]},{"title":"JsonRpcProvider -- JsonRpcUncheckedSigner","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#UncheckedJsonRpcSigner","text":"The JSON-RPC API only provides a transaction hash as the response when a transaction is sent, but the ethers Provider requires populating all details of a transaction before returning it."},{"link":"/v5/api/providers/jsonrpc-provider/#UncheckedJsonRpcSigner","text":"For example, the gas price and gas limit may be adjusted by the node or the nonce automatically included, in which case the opaque transaction hash has discarded this."},{"link":"/v5/api/providers/jsonrpc-provider/#UncheckedJsonRpcSigner","text":"To remedy this, the JsonRpcSigner immediately queries the provider for the details using the returned transaction hash to populate the TransactionResponse object."},{"link":"/v5/api/providers/jsonrpc-provider/#UncheckedJsonRpcSigner","text":"Some backends do not respond immediately and instead defer releasing the details of a transaction it was responsible for signing until it is mined."},{"link":"/v5/api/providers/jsonrpc-provider/#UncheckedJsonRpcSigner","text":"The UncheckedSigner does not populate any additional information and will immediately return the result as a mock TransactionResponse-like object, with most of the properties set to null, but allows access to the transaction hash quickly, if that is all that is required."}]},{"title":"JsonRpcProvider -- Node-Specific Methods","blocks":[{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"Many methods are less common or specific to certain Ethereum Node implementations (e.g."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"Parity vs Geth."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"These include account and admin management, debugging, deeper block and transaction exploration and other services (such as Swarm and Whisper)."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"The jsonRpcProvider.send method can be used to access these."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"All JSON-RPC methods (including the less common methods) which most Ethereum Nodes support."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"Parity's Trace Module can be used to trace and debug EVM execution of a transaction (requires custom configuration) Geth's Debug Module can be used to debug transactions and internal cache state, etc."},{"link":"/v5/api/providers/jsonrpc-provider/#JsonRpcProvider--other","text":"Additional Geth Methods Additional Parity Methods."}]},{"title":"Other Providers -- FallbackProvider","blocks":[{"link":"/v5/api/providers/other/#FallbackProvider","text":"The FallbackProvider is the most advanced Provider available in ethers."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"It uses a quorum and connects to multiple Providers as backends, each configured with a priority and a weight."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"When a request is made, the request is dispatched to multiple backends, randomly chosen (lower-value priority backends are always selected first) and the results from each are compared against the others."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"Only once the quorum has been reached will that result be accepted and returned to the caller."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"By default the quorum requires 50% (rounded up) of the backends to agree."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"The weight can be used to give a backend Provider more influence."}]},{"title":"Other Providers -- FallbackProvider -- new ethers.providers.FallbackProvider( providers [ , quorum ] )","blocks":[{"link":"/v5/api/providers/other/#FallbackProvider","text":"Creates a new instance of a FallbackProvider connected to providers."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"If quorum is not specified, half of the total sum of the provider weights is used."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"The providers can be either an array of Provider or FallbackProviderConfig."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"If a Provider is provided, the defaults are a priority of 1 and a weight of 1."}]},{"title":"Other Providers -- FallbackProvider -- provider.providerConfigs => Array< FallbackProviderConfig >","blocks":[{"link":"/v5/api/providers/other/#FallbackProvider","text":"The list of Provider Configurations that describe the backends."}]},{"title":"Other Providers -- FallbackProvider -- provider.quorum => number","blocks":[{"link":"/v5/api/providers/other/#FallbackProvider","text":"The quorum the backend responses must agree upon before a result will be resolved."},{"link":"/v5/api/providers/other/#FallbackProvider","text":"By default this is half the sum of the weights."}]},{"title":"Other Providers -- FallbackProvider -- fallbackProviderConfig.provider => Provider","blocks":[{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"The provider for this configuration."}]},{"title":"Other Providers -- FallbackProvider -- fallbackProviderConfig.priority => number","blocks":[{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"The priority used for the provider."},{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"Lower-value priorities are favoured over higher-value priorities."},{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"If multiple providers share the same priority, they are chosen at random."}]},{"title":"Other Providers -- FallbackProvider -- fallbackProviderConfig.stallTimeout => number","blocks":[{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"The timeout (in ms) after which another Provider will be attempted."},{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"This does not affect the current Provider; if it returns a result it is counted as part of the quorum."},{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"Lower values will result in more network traffic, but may reduce the response time of requests."}]},{"title":"Other Providers -- FallbackProvider -- fallbackProviderConfig.weight => number","blocks":[{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"The weight a response from this provider provides."},{"link":"/v5/api/providers/other/#FallbackProviderConfig","text":"This can be used if a given Provider is more trusted, for example."}]},{"title":"Other Providers -- IpcProvider","blocks":[{"link":"/v5/api/providers/other/#IpcProvider","text":"The IpcProvider allows the JSON-RPC API to be used over a local filename on the file system, exposed by Geth, Parity and other nodes."},{"link":"/v5/api/providers/other/#IpcProvider","text":"This is only available in node.js (as it requires file system access, and may have additional complications due to file permissions."},{"link":"/v5/api/providers/other/#IpcProvider","text":"See any related notes on the documentation for the actual node implementation websites."}]},{"title":"Other Providers -- IpcProvider -- ipcProvider.path => string","blocks":[{"link":"/v5/api/providers/other/#IpcProvider","text":"The path this Provider is connected to."}]},{"title":"Other Providers -- UrlJsonRpcProvider","blocks":[{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"This class is intended to be sub-classed and not used directly."},{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"It simplifies creating a Provider where a normal JsonRpcProvider would suffice, with a little extra effort needed to generate the JSON-RPC URL."}]},{"title":"Other Providers -- UrlJsonRpcProvider -- new ethers.providers.UrlJsonRpcProvider( [ network [ , apiKey ] ] )","blocks":[{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"Sub-classes do not need to override this."},{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"Instead they should override the static method getUrl and optionally getApiKey."}]},{"title":"Other Providers -- UrlJsonRpcProvider -- urlJsonRpcProvider.apiKey => any","blocks":[{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"The value of the apiKey that was returned from InheritedClass.getApiKey."}]},{"title":"Other Providers -- UrlJsonRpcProvider -- InheritingClass.getApiKey( apiKey ) => any","blocks":[{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"This function should examine the apiKey to ensure it is valid and return a (possible modified) value to use in getUrl."}]},{"title":"Other Providers -- UrlJsonRpcProvider -- InheritingClass.getUrl( network , apiKey ) => string","blocks":[{"link":"/v5/api/providers/other/#UrlJsonRpcProvider","text":"The URL to use for the JsonRpcProvider instance."}]},{"title":"Other Providers -- Web3Provider","blocks":[{"link":"/v5/api/providers/other/#Web3Provider","text":"The Web3Provider is meant to ease moving from a web3.js based application to ethers by wrapping an existing Web3-compatible (such as a Web3HttpProvider, Web3IpcProvider or Web3WsProvider) and exposing it as an ethers.js Provider which can then be used with the rest of the library."},{"link":"/v5/api/providers/other/#Web3Provider","text":"This may also be used to wrap a standard [EIP-1193 Provider](link-eip-1193]."}]},{"title":"Other Providers -- Web3Provider -- new ethers.providers.Web3Provider( externalProvider [ , network ] )","blocks":[{"link":"/v5/api/providers/other/#Web3Provider","text":"Create a new Web3Provider, which wraps an EIP-1193 Provider or Web3Provider-compatible Provider."}]},{"title":"Other Providers -- Web3Provider -- web3Provider.provider => Web3CompatibleProvider","blocks":[{"link":"/v5/api/providers/other/#Web3Provider","text":"The provider used to create this instance."}]},{"title":"Other Providers -- Web3Provider -- ExternalProvider","blocks":[{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"An ExternalProvider can be either one for the above mentioned Web3 Providers (or otherwise compatible) or an EIP-1193 provider."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"An ExternalProvider must offer one of the following signatures, and the first matching is used:."}]},{"title":"Other Providers -- Web3Provider -- externalProvider.request( request ) => Promise< any >","blocks":[{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"This follows the EIP-1193 API signature."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"The request should be a standard JSON-RPC payload, which should at a minimum specify the method and params."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"The result should be the actual result, which differs from the Web3.js response, which is a wrapped JSON-RPC response."}]},{"title":"Other Providers -- Web3Provider -- externalProvider.sendAsync( request , callback ) => void","blocks":[{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"This follows the Web3.js Provider Signature."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"The request should be a standard JSON-RPC payload, which should at a minimum specify the method and params."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"The callback should use the error-first calling semantics, so (error, result) where the result is a JSON-RPC wrapped result."}]},{"title":"Other Providers -- Web3Provider -- externalProvider.send( request , callback ) => void","blocks":[{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"This is identical to sendAsync."},{"link":"/v5/api/providers/other/#Web3Provider--ExternalProvider","text":"Historically, this used a synchronous web request, but no current browsers support this, so its use this way was deprecated quite a long time ago."}]},{"title":"Other Providers -- WebSocketProvider","blocks":[{"link":"/v5/api/providers/other/#WebSocketProvider","text":"The WebSocketProvider connects to a JSON-RPC WebSocket-compatible backend which allows for a persistent connection, multiplexing requests and pub-sub events for a more immediate event dispatching."},{"link":"/v5/api/providers/other/#WebSocketProvider","text":"The WebSocket API is newer, and if running your own infrastructure, note that WebSockets are much more intensive on your server resources, as they must manage and maintain the state for each client."},{"link":"/v5/api/providers/other/#WebSocketProvider","text":"For this reason, many services may also charge additional fees for using their WebSocket endpoints."}]},{"title":"Other Providers -- WebSocketProvider -- new ethers.providers.WebSocketProvider( [ url [ , network ] ] )","blocks":[{"link":"/v5/api/providers/other/#WebSocketProvider","text":"Returns a new WebSocketProvider connected to url as the network."},{"link":"/v5/api/providers/other/#WebSocketProvider","text":"If url is unspecified, the default \"ws://localhost:8546\" will be used."},{"link":"/v5/api/providers/other/#WebSocketProvider","text":"If network is unspecified, it will be queried from the network."}]},{"title":"Provider","blocks":[{"link":"/v5/api/providers/provider/#Provider","text":"A Provider in ethers is a read-only abstraction to access the blockchain data."}]},{"title":"Provider -- WebSocketProvider -- Coming from Web3.js?","blocks":[{"link":"/v5/api/providers/provider/#Provider","text":"If you are coming from Web3.js, this is one of the biggest differences you will encounter using ethers."},{"link":"/v5/api/providers/provider/#Provider","text":"The ethers library creates a strong division between the operation a Provider can perform and those of a Signer, which Web3.js lumps together."},{"link":"/v5/api/providers/provider/#Provider","text":"This separation of concerns and a stricted subset of Provider operations allows for a larger variety of backends, a more consistent API and ensures other libraries to operate without being able to rely on any underlying assumption."}]},{"title":"Provider -- Accounts Methods -- provider.getBalance( address [ , blockTag = latest ] ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getBalance","text":"Returns the balance of address as of the blockTag block height."}]},{"title":"Provider -- Accounts Methods -- provider.getCode( address [ , blockTag = latest ] ) => Promise< string< DataHexString > >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getCode","text":"Returns the contract code of address as of the blockTag block height."},{"link":"/v5/api/providers/provider/#Provider-getCode","text":"If there is no contract currently deployed, the result is 0x."}]},{"title":"Provider -- Accounts Methods -- provider.getStorageAt( addr , pos [ , blockTag = latest ] ) => Promise< string< DataHexString > >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getStorageAt","text":"Returns the Bytes32 value of the position pos at address addr, as of the blockTag."}]},{"title":"Provider -- Accounts Methods -- provider.getTransactionCount( address [ , blockTag = latest ] ) => Promise< number >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getTransactionCount","text":"Returns the number of transactions address has ever sent, as of blockTag."},{"link":"/v5/api/providers/provider/#Provider-getTransactionCount","text":"This value is required to be the nonce for the next transaction from address sent to the network."}]},{"title":"Provider -- Blocks Methods -- provider.getBlock( block ) => Promise< Block >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getBlock","text":"Get the block from the network, where the result.transactions is a list of transaction hashes."}]},{"title":"Provider -- Blocks Methods -- provider.getBlockWithTransactions( block ) => Promise< BlockWithTransactions >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getBlockWithTransactions","text":"Get the block from the network, where the result.transactions is an Array of TransactionResponse objects."}]},{"title":"Provider -- Ethereum Naming Service (ENS) Methods","blocks":[{"link":"/v5/api/providers/provider/#Provider--ens-methods","text":"The Ethereum Naming Service (ENS) allows a short and easy-to-remember ENS Name to be attached to any set of keys and values."},{"link":"/v5/api/providers/provider/#Provider--ens-methods","text":"One of the most common uses for this is to use a simple name to refer to an Ethereum Address."},{"link":"/v5/api/providers/provider/#Provider--ens-methods","text":"In the ethers API, nearly anywhere that accepts an address, an ENS name may be used instead, which can simplify code and make reading and debugging much simpler."},{"link":"/v5/api/providers/provider/#Provider--ens-methods","text":"The provider offers some basic operations to help resolve and work with ENS names."}]},{"title":"Provider -- Ethereum Naming Service (ENS) Methods -- provider.getResolver( name ) => Promise< EnsResolver >","blocks":[{"link":"/v5/api/providers/provider/#Provider--ens-methods","text":"Returns an EnsResolver instance which can be used to further inquire about specific entries for an ENS name."}]},{"title":"Provider -- Ethereum Naming Service (ENS) Methods -- provider.lookupAddress( address ) => Promise< string >","blocks":[{"link":"/v5/api/providers/provider/#Provider-lookupAddress","text":"Performs a reverse lookup of the address in ENS using the Reverse Registrar."},{"link":"/v5/api/providers/provider/#Provider-lookupAddress","text":"If the name does not exist, or the forward lookup does not match, null is returned."}]},{"title":"Provider -- Ethereum Naming Service (ENS) Methods -- provider.resolveName( name ) => Promise< string< Address > >","blocks":[{"link":"/v5/api/providers/provider/#Provider-ResolveName","text":"Looks up the address of name."},{"link":"/v5/api/providers/provider/#Provider-ResolveName","text":"If the name is not owned, or does not have a Resolver configured, or the Resolver does not have an address configured, null is returned."}]},{"title":"Provider -- EnsResolver -- resolver.name => string","blocks":[{"link":"/v5/api/providers/provider/#EnsResolver","text":"The name of this resolver."}]},{"title":"Provider -- EnsResolver -- resolver.address => string< Address >","blocks":[{"link":"/v5/api/providers/provider/#EnsResolver","text":"The address of the Resolver."}]},{"title":"Provider -- EnsResolver -- resolver.getAddress( [ cointType = 60 ] ) => Promise< string >","blocks":[{"link":"/v5/api/providers/provider/#EnsResolver","text":"Returns a Promise which resolves to the EIP-2304 multicoin address stored for the coinType."},{"link":"/v5/api/providers/provider/#EnsResolver","text":"By default an Ethereum Address (coinType = 60) will be returned."}]},{"title":"Provider -- EnsResolver -- resolver.getContentHash( ) => Promise< string >","blocks":[{"link":"/v5/api/providers/provider/#EnsResolver","text":"Returns a Promise which resolves to any stored EIP-1577 content hash."}]},{"title":"Provider -- EnsResolver -- resolver.getText( key ) => Promise< string >","blocks":[{"link":"/v5/api/providers/provider/#EnsResolver","text":"Returns a Promise which resolves to any stored EIP-634 text entry for key."}]},{"title":"Provider -- Logs Methods -- provider.getLogs( filter ) => Promise< Array< Log > >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getLogs","text":"Returns the Array of Log matching the filter."},{"link":"/v5/api/providers/provider/#Provider-getLogs","text":"Keep in mind that many backends will discard old events, and that requests which are too broad may get dropped as they require too many resources to execute the query."}]},{"title":"Provider -- Network Status Methods -- provider.getNetwork( ) => Promise< Network >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getNetwork","text":"Returns the Network this Provider is connected to."}]},{"title":"Provider -- Network Status Methods -- provider.getBlockNumber( ) => Promise< number >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getBlockNumber","text":"Returns the block number (or height) of the most recently mined block."}]},{"title":"Provider -- Network Status Methods -- provider.getGasPrice( ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getGasPrice","text":"Returns a best guess of the Gas Price to use in a transaction."}]},{"title":"Provider -- Network Status Methods -- provider.ready => Promise< Network >","blocks":[{"link":"/v5/api/providers/provider/#Provider-ready","text":"Returns a Promise which will stall until the network has heen established, ignoring errors due to the target node not being active yet."},{"link":"/v5/api/providers/provider/#Provider-ready","text":"This can be used for testing or attaching scripts to wait until the node is up and running smoothly."}]},{"title":"Provider -- Transactions Methods -- provider.call( transaction [ , blockTag = latest ] ) => Promise< string< DataHexString > >","blocks":[{"link":"/v5/api/providers/provider/#Provider-call","text":"Returns the result of executing the transaction, using call."},{"link":"/v5/api/providers/provider/#Provider-call","text":"A call does not require any ether, but cannot change any state."},{"link":"/v5/api/providers/provider/#Provider-call","text":"This is useful for calling getters on Contracts."}]},{"title":"Provider -- Transactions Methods -- provider.estimateGas( transaction ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/provider/#Provider-estimateGas","text":"Returns an estimate of the amount of gas that would be required to submit transaction to the network."},{"link":"/v5/api/providers/provider/#Provider-estimateGas","text":"An estimate may not be accurate since there could be another transaction on the network that was not accounted for, but after being mined affected relevant state."}]},{"title":"Provider -- Transactions Methods -- provider.getTransaction( hash ) => Promise< TransactionResponse >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getTransaction","text":"Returns the transaction with hash or null if the transaction is unknown."},{"link":"/v5/api/providers/provider/#Provider-getTransaction","text":"If a transaction has not been mined, this method will search the transaction pool."},{"link":"/v5/api/providers/provider/#Provider-getTransaction","text":"Various backends may have more restrictive transaction pool access (e.g."},{"link":"/v5/api/providers/provider/#Provider-getTransaction","text":"if the gas price is too low or the transaction was only recently sent and not yet indexed) in which case this method may also return null."}]},{"title":"Provider -- Transactions Methods -- provider.getTransactionReceipt( hash ) => Promise< TransactionReceipt >","blocks":[{"link":"/v5/api/providers/provider/#Provider-getTransactionReceipt","text":"Returns the transaction receipt for hash or null if the transaction has not been mined."},{"link":"/v5/api/providers/provider/#Provider-getTransactionReceipt","text":"To stall until the transaction has been mined, consider the waitForTransaction method below."}]},{"title":"Provider -- Transactions Methods -- provider.sendTransaction( transaction ) => Promise< TransactionResponse >","blocks":[{"link":"/v5/api/providers/provider/#Provider-sendTransaction","text":"Submits transaction to the network to be mined."},{"link":"/v5/api/providers/provider/#Provider-sendTransaction","text":"The transaction must be signed, and be valid (i.e."},{"link":"/v5/api/providers/provider/#Provider-sendTransaction","text":"the nonce is correct and the account has sufficient balance to pay for the transaction)."}]},{"title":"Provider -- Transactions Methods -- provider.waitForTransaction( hash [ , confirms = 1 [ , timeout ] ] ) => Promise< TxReceipt >","blocks":[{"link":"/v5/api/providers/provider/#Provider-waitForTransaction","text":"Returns a Promise which will not resolve until transactionHash is mined."},{"link":"/v5/api/providers/provider/#Provider-waitForTransaction","text":"If confirms is 0, this method is non-blocking and if the transaction has not been mined returns null."},{"link":"/v5/api/providers/provider/#Provider-waitForTransaction","text":"Otherwise, this method will block until the transaction has confirms blocks mined on top of the block in which is was mined."}]},{"title":"Provider -- Event Emitter Methods","blocks":[{"link":"/v5/api/providers/provider/#Provider--event-methods","text":"The EventEmitter API allows applications to use an Obeserver Pattern to register callbacks for when various events occur."},{"link":"/v5/api/providers/provider/#Provider--event-methods","text":"This closely follows the Event Emitter provided by other JavaScript libraries with the exception that event names support some more complex objects, not only strings."},{"link":"/v5/api/providers/provider/#Provider--event-methods","text":"The objects are normalized internally."}]},{"title":"Provider -- Event Emitter Methods -- provider.on( eventName , listener ) => this","blocks":[{"link":"/v5/api/providers/provider/#Provider-on","text":"Add a listener to be triggered for each eventName event."}]},{"title":"Provider -- Event Emitter Methods -- provider.once( eventName , listener ) => this","blocks":[{"link":"/v5/api/providers/provider/#Provider-once","text":"Add a listener to be triggered for only the next eventName event, at which time it will be removed."}]},{"title":"Provider -- Event Emitter Methods -- provider.emit( eventName , ...args ) => boolean","blocks":[{"link":"/v5/api/providers/provider/#Provider-emit","text":"Notify all listeners of the eventName event, passing args to each listener."},{"link":"/v5/api/providers/provider/#Provider-emit","text":"This is generally only used internally."}]},{"title":"Provider -- Event Emitter Methods -- provider.off( eventName [ , listener ] ) => this","blocks":[{"link":"/v5/api/providers/provider/#Provider-off","text":"Remove a listener for the eventName event."},{"link":"/v5/api/providers/provider/#Provider-off","text":"If no listener is provided, all listeners for eventName are removed."}]},{"title":"Provider -- Event Emitter Methods -- provider.removeAllListeners( [ eventName ] ) => this","blocks":[{"link":"/v5/api/providers/provider/#Provider-removeAllListeners","text":"Remove all the listeners for the eventName events."},{"link":"/v5/api/providers/provider/#Provider-removeAllListeners","text":"If no eventName is provided, all events are removed."}]},{"title":"Provider -- Event Emitter Methods -- provider.listenerCount( [ eventName ] ) => number","blocks":[{"link":"/v5/api/providers/provider/#Provider-listenerCount","text":"Returns the number of listeners for the eventName events."},{"link":"/v5/api/providers/provider/#Provider-listenerCount","text":"If no eventName is provided, the total number of listeners is returned."}]},{"title":"Provider -- Event Emitter Methods -- provider.listeners( eventName ) => Array< Listener >","blocks":[{"link":"/v5/api/providers/provider/#Provider-listeners","text":"Returns the list of Listeners for the eventName events."}]},{"title":"Provider -- Event Emitter Methods -- Events","blocks":[{"link":"/v5/api/providers/provider/#Provider--events","text":"Any of the following may be used as the eventName in the above methods."}]},{"title":"Provider -- Event Emitter Methods -- Log Filter","blocks":[{"link":"/v5/api/providers/provider/#Provider--events","text":"A filter is an object, representing a contract log Filter, which has the optional properties address (the source contract) and topics (a topic-set to match)."},{"link":"/v5/api/providers/provider/#Provider--events","text":"If address is unspecified, the filter matches any contract address."},{"link":"/v5/api/providers/provider/#Provider--events","text":"See EventFilters for more information on filtering events."}]},{"title":"Provider -- Event Emitter Methods -- Topic-Set Filter","blocks":[{"link":"/v5/api/providers/provider/#Provider--events","text":"The value of a Topic-Set Filter is a array of Topic-Sets."},{"link":"/v5/api/providers/provider/#Provider--events","text":"This event is identical to a Log Filter with the address omitted (i.e."},{"link":"/v5/api/providers/provider/#Provider--events","text":"from any contract)."},{"link":"/v5/api/providers/provider/#Provider--events","text":"See EventFilters for more information on filtering events."}]},{"title":"Provider -- Event Emitter Methods -- Transaction Filter","blocks":[{"link":"/v5/api/providers/provider/#Provider--events","text":"The value of a Transaction Filter is any transaction hash."},{"link":"/v5/api/providers/provider/#Provider--events","text":"This event is emitted on every block that is part of a chain that includes the given mined transaction."},{"link":"/v5/api/providers/provider/#Provider--events","text":"It is much more common that the once method is used than the on method."},{"link":"/v5/api/providers/provider/#Provider--events","text":"In addition to transaction and filter events, there are several named events."}]},{"title":"Provider -- Inspection Methods -- Provider.isProvider( object ) => boolean","blocks":[{"link":"/v5/api/providers/provider/#Provider-isProvider","text":"Returns true if and only if object is a Provider."}]},{"title":"Types -- BlockTag","blocks":[{"link":"/v5/api/providers/types/#providers-BlockTag","text":"A BlockTag specifies a specific block location in the Blockchain."},{"link":"/v5/api/providers/types/#providers-BlockTag","text":"\"latest\" - The most recently mined block \"earliest\" - Block #0 \"pending\" - The block currently being prepared for mining; not all operations and backends support this BlockTag number - The block at this height a negative number - The block this many blocks ago hex string - The block at this height (as a hexidecimal value)."}]},{"title":"Types -- Networkish","blocks":[{"link":"/v5/api/providers/types/#providers-Networkish","text":"A Networkish may be any of the following:."},{"link":"/v5/api/providers/types/#providers-Networkish","text":"a Network object the name of a common network as a string (e.g."},{"link":"/v5/api/providers/types/#providers-Networkish","text":"\"homestead\") the chain ID a network as a number; if the chain ID is that of a common network, the name and ensAddress will be populated, otherwise, the default name \"unknown\" and no ensAddress is used."}]},{"title":"Types -- Network","blocks":[{"link":"/v5/api/providers/types/#providers-Network","text":"A Network represents an Ethereum network."}]},{"title":"Types -- Network -- network.name => string","blocks":[{"link":"/v5/api/providers/types/#providers-Network","text":"The human-readable name of the network, such as homestead."},{"link":"/v5/api/providers/types/#providers-Network","text":"If the network name is unknown, this will be \"unknown\"."}]},{"title":"Types -- Network -- network.chainId => number","blocks":[{"link":"/v5/api/providers/types/#providers-Network","text":"The Chain ID of the network."}]},{"title":"Types -- Network -- network.ensAddress => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-Network","text":"The address at which the ENS registry is deployed on this network."}]},{"title":"Types -- Block -- block.hash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The hash of this block."}]},{"title":"Types -- Block -- block.parentHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The hash of the previous block."}]},{"title":"Types -- Block -- block.number => number","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The height (number) of this block."}]},{"title":"Types -- Block -- block.timestamp => number","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The timestamp of this block."}]},{"title":"Types -- Block -- block.nonce => string< DataHexString >","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The nonce used as part of the proof-of-work to mine this block."},{"link":"/v5/api/providers/types/#providers-Block","text":"This property is generally of little interest to developers."}]},{"title":"Types -- Block -- block.difficulty => number","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The difficulty target required to be met by the miner of the block."},{"link":"/v5/api/providers/types/#providers-Block","text":"This property is generally of little interest to developers."}]},{"title":"Types -- Block -- block.gasLimit => BigNumber","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The maximum amount of gas that this block was permitted to use."},{"link":"/v5/api/providers/types/#providers-Block","text":"This is a value that can be voted up or voted down by miners and is used to automatically adjust the bandwidth requirements of the network."},{"link":"/v5/api/providers/types/#providers-Block","text":"This property is generally of little interest to developers."}]},{"title":"Types -- Block -- block.gasUsed => BigNumber","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The total amount of gas used by all transactions in this block."}]},{"title":"Types -- Block -- block.miner => string","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"The coinbase address of this block, which indicates the address the miner that mined this block would like the subsidy reward to go to."}]},{"title":"Types -- Block -- block.extraData => string","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"This is extra data a miner may choose to include when mining a block."},{"link":"/v5/api/providers/types/#providers-Block","text":"This property is generally of little interest to developers."}]},{"title":"Types -- Block -- Block (with transaction hashes)","blocks":[{"link":"/v5/api/providers/types/#providers-Block","text":"Often only the hashes of the transactions included in a block are needed, so by default a block only contains this information, as it is substantially less data."}]},{"title":"Types -- Block -- block.transactions => Array< string< DataHexString< 32 > > >","blocks":[{"link":"/v5/api/providers/types/","text":"A list of the transactions hashes for each transaction this block includes."}]},{"title":"Types -- Block -- BlockWithTransactions","blocks":[{"link":"/v5/api/providers/types/#providers-BlockWithTransactions","text":"If all transactions for a block are needed, this object instead includes the full details on each transaction."}]},{"title":"Types -- Block -- block.transactions => Array< TransactionResponse >","blocks":[{"link":"/v5/api/providers/types/#providers-BlockWithTransactions","text":"A list of the transactions this block includes."}]},{"title":"Types -- Events and Logs -- filter.address => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-EventFilter","text":"The address to filter by, or null to match any address."}]},{"title":"Types -- Events and Logs -- filter.topics => Array< string< Data< 32 > > | Array< string< Data< 32 > > > >","blocks":[{"link":"/v5/api/providers/types/#providers-EventFilter","text":"The topics to filter by or null to match any topics."},{"link":"/v5/api/providers/types/#providers-EventFilter","text":"Each entry represents an AND condition that must match, or may be null to match anything."},{"link":"/v5/api/providers/types/#providers-EventFilter","text":"If a given entry is an Array, then that entry is treated as an OR for any value in the entry."},{"link":"/v5/api/providers/types/#providers-EventFilter","text":"See Filters for more details and examples on specifying complex filters."}]},{"title":"Types -- Events and Logs -- filter.fromBlock => BlockTag","blocks":[{"link":"/v5/api/providers/types/#providers-Filter","text":"The starting block (inclusive) to search for logs matching the filter criteria."}]},{"title":"Types -- Events and Logs -- filter.toBlock => BlockTag","blocks":[{"link":"/v5/api/providers/types/#providers-Filter","text":"The end block (inclusive) to search for logs matching the filter criteria."}]},{"title":"Types -- Events and Logs -- filter.blockHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-FilterByBlockHash","text":"The specific block (by its block hash) to search for logs matching the filter criteria."}]},{"title":"Types -- Events and Logs -- log.blockNumber => number","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The block height (number) of the block including the transaction of this log."}]},{"title":"Types -- Events and Logs -- log.blockHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The block hash of the block including the transaction of this log."}]},{"title":"Types -- Events and Logs -- log.removed => boolean","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"During a re-org, if a transaction is orphaned, this will be set to true to indicate the Log entry has been removed; it will likely be emitted again in the near future when another block is mined with the transaction that triggered this log, but keep in mind the values may change."}]},{"title":"Types -- Events and Logs -- log.transactionLogIndex => number","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The index of this log in the transaction."}]},{"title":"Types -- Events and Logs -- log.address => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The address of the contract that generated this log."}]},{"title":"Types -- Events and Logs -- log.data => string< DataHexString >","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The data included in this log."}]},{"title":"Types -- Events and Logs -- log.topics => Array< string< DataHexString< 32 > > >","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The list of topics (indexed properties) for this log."}]},{"title":"Types -- Events and Logs -- log.transactionHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The transaction hash of the transaction of this log."}]},{"title":"Types -- Events and Logs -- log.transactionIndex => number","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The index of the transaction in the block of the transaction of this log."}]},{"title":"Types -- Events and Logs -- log.logIndex => number","blocks":[{"link":"/v5/api/providers/types/#providers-Log","text":"The index of this log across all logs in the entire block."}]},{"title":"Types -- Transactions -- TransactionRequest","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"A transaction request describes a transaction that is to be sent to the network or otherwise processed."},{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"All fields are optional and may be a promise which resolves to the required type."}]},{"title":"Types -- Transactions -- transactionRequest.to => string | Promise< string >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The address (or ENS name) this transaction it to."}]},{"title":"Types -- Transactions -- transactionRequest.from => string< Address > | Promise< string< Address > >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The address this transaction is from."}]},{"title":"Types -- Transactions -- transactionRequest.nonce => number | Promise< number >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The nonce for this transaction."},{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"This should be set to the number of transactions ever sent from this address."}]},{"title":"Types -- Transactions -- transactionRequest.gasLimit => BigNumber | Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The maximum amount of gas this transaction is permitted to use."}]},{"title":"Types -- Transactions -- transactionRequest.gasPrice => BigNumber | Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The price (in wei) per unit of gas this transaction will pay."}]},{"title":"Types -- Transactions -- transactionRequest.data => DataHexString | Promise< DataHexString >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The transaction data."}]},{"title":"Types -- Transactions -- transactionRequest.value => BigNumber | Promise< BigNumber >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The amount (in wei) this transaction is sending."}]},{"title":"Types -- Transactions -- transactionRequest.chainId => number | Promise< number >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"The chain ID this transaction is authorized on, as specified by EIP-155."},{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"If the chain ID is 0 will disable EIP-155 and the transaction will be valid on any network."},{"link":"/v5/api/providers/types/#providers-TransactionRequest","text":"This can be dangerous and care should be taken, since it allows transactions to be replayed on networks that were possibly not intended."}]},{"title":"Types -- Transactions -- TransactionResponse","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"A TransactionResponse includes all properties of a Transaction as well as several properties that are useful once it has been mined."}]},{"title":"Types -- Transactions -- transaction.blockNumber => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"The number (\"height\") of the block this transaction was mined in."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"If the block has not been mined, this is null."}]},{"title":"Types -- Transactions -- transaction.blockHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"The hash of the block this transaction was mined in."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"If the block has not been mined, this is null."}]},{"title":"Types -- Transactions -- transaction.timestamp => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"The timestamp of the block this transaction was mined in."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"If the block has not been mined, this is null."}]},{"title":"Types -- Transactions -- transaction.confirmations => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"The number of blocks that have been mined (including the initial block) since this transaction was mined."}]},{"title":"Types -- Transactions -- transaction.raw => string< DataHexString >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"The serialized transaction."}]},{"title":"Types -- Transactions -- transaction.wait( [ confirms = 1 ] ) => Promise< TransactionReceipt >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"Resolves to the TransactionReceipt once the transaction has been included in the chain for confirms blocks."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"If confirms is 0, and the transaction has not been mined, null is returned."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"If the transaction execution failed (i.e."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"the receipt status is 0), a CALL_EXCEPTION Error will be rejected with the following properties:."},{"link":"/v5/api/providers/types/#providers-TransactionResponse","text":"error.transaction - the original transaction error.transactionHash - the hash of the transaction error.receipt - the actual receipt, with the status of 0."}]},{"title":"Types -- Transactions -- receipt.to => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The address this transaction is to."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"This is null if the transaction was an init transaction, used to deploy a contract."}]},{"title":"Types -- Transactions -- receipt.from => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The address this transaction is from."}]},{"title":"Types -- Transactions -- receipt.contractAddress => string< Address >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"If this transaction has a null to address, it is an init transaction used to deploy a contract, in which case this is the address created by that contract."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"To compute a contract address, the getContractAddress utility function can also be used with a TransactionResponse object, which requires the transaction nonce and the address of the sender."}]},{"title":"Types -- Transactions -- receipt.transactionIndex => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The index of this transaction in the list of transactions included in the block this transaction was mined in."}]},{"title":"Types -- Transactions -- receipt.root => string","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The intermediate state root of a receipt."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"Only transactions included in blocks before the Byzantium Hard Fork have this property, as it was replaced by the status property."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The property is generally of little use to developers."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"At the time it could be used to verify a state transition with a fraud-proof only considering the single transaction; without it the full block must be considered."}]},{"title":"Types -- Transactions -- receipt.gasUsed => BigNumber","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The amount of gas actually used by this transaction."}]},{"title":"Types -- Transactions -- receipt.logsBloom => string< DataHexString >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"A bloom-filter, which includes all the addresses and topics included in any log in this transaction."}]},{"title":"Types -- Transactions -- receipt.blockHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The block hash of the block that this transaction was included in."}]},{"title":"Types -- Transactions -- receipt.transactionHash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The transaction hash of this transaction."}]},{"title":"Types -- Transactions -- receipt.logs => Array< Log >","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"All the logs emitted by this transaction."}]},{"title":"Types -- Transactions -- receipt.blockNumber => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The block height (number) of the block that this transaction was included in."}]},{"title":"Types -- Transactions -- receipt.confirmations => number","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The number of blocks that have been mined since this transaction, including the actual block it was mined in."}]},{"title":"Types -- Transactions -- receipt.cumulativeGasUsed => BigNumber","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"For the block this transaction was included in, this is the sum of the gas used by each transaction in the ordered list of transactions up to (and including) this transaction."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"This is generally of little interest to developers."}]},{"title":"Types -- Transactions -- receipt.byzantium => boolean","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"This is true if the block is in a post-Byzantium Hard Fork block."}]},{"title":"Types -- Transactions -- receipt.status => boolean","blocks":[{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"The status of a transaction is 1 is successful or 0 if it was reverted."},{"link":"/v5/api/providers/types/#providers-TransactionReceipt","text":"Only transactions included in blocks post-Byzantium Hard Fork have this property."}]},{"title":"Signers","blocks":[{"link":"/v5/api/signer/#signers","text":"A Signer in ethers is an abstraction of an Ethereum Account, which can be used to sign messages and transactions and send signed transactions to the Ethereum Network to execute state changing operations."},{"link":"/v5/api/signer/#signers","text":"The available operations depend largely on the sub-class used."},{"link":"/v5/api/signer/#signers","text":"For example, a Signer from MetaMask can send transactions and sign messages but cannot sign a transaction (without broadcasting it)."},{"link":"/v5/api/signer/#signers","text":"The most common Signers you will encounter are:."},{"link":"/v5/api/signer/#signers","text":"Wallet, which is a class which knows its private key and can execute any operations with it JsonRpcSigner, which is connected to a JsonRpcProvider (or sub-class) and is acquired using getSigner."}]},{"title":"Signers -- Signer","blocks":[{"link":"/v5/api/signer/#Signer","text":"The Signer class is abstract and cannot be directly instantiated."},{"link":"/v5/api/signer/#Signer","text":"Instead use one of the concrete sub-classes, such as the Wallet, VoidSigner or JsonRpcSigner."}]},{"title":"Signers -- Signer -- signer.connect( provider ) => Signer","blocks":[{"link":"/v5/api/signer/#Signer-connect","text":"Sub-classes must implement this, however they may simply throw an error if changing providers is not supported."}]},{"title":"Signers -- Signer -- signer.getAddress( ) => Promise< string< Address > >","blocks":[{"link":"/v5/api/signer/#Signer-getaddress","text":"Returns a Promise that resolves to the account address."},{"link":"/v5/api/signer/#Signer-getaddress","text":"This is a Promise so that a Signer can be designed around an asynchronous source, such as hardware wallets."},{"link":"/v5/api/signer/#Signer-getaddress","text":"Sub-classes must implement this."}]},{"title":"Signers -- Signer -- Signer.isSigner( object ) => boolean","blocks":[{"link":"/v5/api/signer/#Signer-isSigner","text":"Returns true if an only if object is a Signer."}]},{"title":"Signers -- Signer -- signer.getBalance( [ blockTag = \"latest\" ] ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/signer/#Signer-getBalance","text":"Returns the balance of this wallet at blockTag."}]},{"title":"Signers -- Signer -- signer.getChainId( ) => Promise< number >","blocks":[{"link":"/v5/api/signer/#Signer-getChainId","text":"Returns the chain ID this wallet is connected to."}]},{"title":"Signers -- Signer -- signer.getGasPrice( ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/signer/#Signer-getGasPrice","text":"Returns the current gas price."}]},{"title":"Signers -- Signer -- signer.getTransactionCount( [ blockTag = \"latest\" ] ) => Promise< number >","blocks":[{"link":"/v5/api/signer/#Signer-getTransactionCount","text":"Returns the number of transactions this account has ever sent."},{"link":"/v5/api/signer/#Signer-getTransactionCount","text":"This is the value required to be included in transactions as the nonce."}]},{"title":"Signers -- Signer -- signer.call( transactionRequest ) => Promise< string< DataHexString > >","blocks":[{"link":"/v5/api/signer/#Signer-call","text":"Returns the result of calling using the transactionRequest, with this account address being used as the from field."}]},{"title":"Signers -- Signer -- signer.estimateGas( transactionRequest ) => Promise< BigNumber >","blocks":[{"link":"/v5/api/signer/#Signer-estimateGas","text":"Returns the result of estimating the cost to send the transactionRequest, with this account address being used as the from field."}]},{"title":"Signers -- Signer -- signer.resolveName( ensName ) => Promise< string< Address > >","blocks":[{"link":"/v5/api/signer/#Signer-resolveName","text":"Returns the address associated with the ensName."}]},{"title":"Signers -- Signer -- signer.signMessage( message ) => Promise< string< RawSignature > >","blocks":[{"link":"/v5/api/signer/#Signer-signMessage","text":"This returns a Promise which resolves to the Raw Signature of message."},{"link":"/v5/api/signer/#Signer-signMessage","text":"Sub-classes must implement this, however they may throw if signing a message is not supported, such as in a Contract-based Wallet or Meta-Transaction-based Wallet."}]},{"title":"Signers -- Signer -- Note","blocks":[{"link":"/v5/api/signer/#Signer--signing-methods","text":"If message is a string, it is treated as a string and converted to its representation in UTF8 bytes."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"If and only if a message is a Bytes will it be treated as binary data."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"For example, the string \"0x1234\" is 6 characters long (and in this case 6 bytes long)."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"This is not equivalent to the array [ 0x12, 0x34 ], which is 2 bytes long."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"A common case is to sign a hash."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"In this case, if the hash is a string, it must be converted to an array first, using the arrayify utility function."}]},{"title":"Signers -- Signer -- signer.signTransaction( transactionRequest ) => Promise< string< DataHexString > >","blocks":[{"link":"/v5/api/signer/#Signer-signTransaction","text":"Returns a Promise which resolves to the signed transaction of the transactionRequest."},{"link":"/v5/api/signer/#Signer-signTransaction","text":"This method does not populate any missing fields."},{"link":"/v5/api/signer/#Signer-signTransaction","text":"Sub-classes must implement this, however they may throw if signing a transaction is not supported, which is common for security reasons in many clients."}]},{"title":"Signers -- Signer -- signer.sendTransaction( transactionRequest ) => Promise< TransactionResponse >","blocks":[{"link":"/v5/api/signer/#Signer-sendTransaction","text":"This method populates the transactionRequest with missing fields, using populateTransaction and returns a Promise which resolves to the transaction."},{"link":"/v5/api/signer/#Signer-sendTransaction","text":"Sub-classes must implement this, however they may throw if sending a transaction is not supported, such as the VoidSigner or if the Wallet is offline and not connected to a Provider."}]},{"title":"Signers -- Signer -- signer._signTypedData( domain , types , value ) => Promise< string< RawSignature > >","blocks":[{"link":"/v5/api/signer/#Signer-signTypedData","text":"Signs the typed data value with types data structure for domain using the EIP-712 specification."}]},{"title":"Signers -- Signer -- Experimental feature (this method name will change)","blocks":[{"link":"/v5/api/signer/#Signer--signing-methods","text":"This is still an experimental feature."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"If using it, please specify the exact version of ethers you are using (e.g."},{"link":"/v5/api/signer/#Signer--signing-methods","text":"spcify \"5.0.18\", not \"^5.0.18\") as the method name will be renamed from _signTypedData to signTypedData once it has been used in the field a bit."}]},{"title":"Signers -- Signer -- Sub-Classes","blocks":[{"link":"/v5/api/signer/#Signer--subclassing","text":"It is very important that all important properties of a Signer are immutable."},{"link":"/v5/api/signer/#Signer--subclassing","text":"Since Ethereum is very asynchronous and deals with critical data (such as ether and other potentially valuable crypto assets), keeping properties such as the provider and address static throughout the life-cycle of the Signer helps prevent serious issues and many other classes and libraries make this assumption."},{"link":"/v5/api/signer/#Signer--subclassing","text":"A sub-class must extend Signer and must call super()."}]},{"title":"Signers -- Signer -- signer.checkTransaction( transactionRequest ) => TransactionRequest","blocks":[{"link":"/v5/api/signer/#Signer-checkTransaction","text":"This is generally not required to be overridden, but may be needed to provide custom behaviour in sub-classes."},{"link":"/v5/api/signer/#Signer-checkTransaction","text":"This should return a copy of the transactionRequest, with any properties needed by call, estimateGas and populateTransaction (which is used by sendTransaction)."},{"link":"/v5/api/signer/#Signer-checkTransaction","text":"It should also throw an error if any unknown key is specified."},{"link":"/v5/api/signer/#Signer-checkTransaction","text":"The default implementation checks only if valid TransactionRequest properties exist and adds from to the transaction if it does not exist."},{"link":"/v5/api/signer/#Signer-checkTransaction","text":"If there is a from field it must be verified to be equal to the Signer's address."}]},{"title":"Signers -- Signer -- signer.populateTransaction( transactionRequest ) => Promise< TransactionRequest >","blocks":[{"link":"/v5/api/signer/#Signer-populateTransaction","text":"This is generally not required to be overridden, but may be needed to provide custom behaviour in sub-classes."},{"link":"/v5/api/signer/#Signer-populateTransaction","text":"This should return a copy of transactionRequest, follow the same procedure as checkTransaction and fill in any properties required for sending a transaction."},{"link":"/v5/api/signer/#Signer-populateTransaction","text":"The result should have all promises resolved; if needed the resolveProperties utility function can be used for this."},{"link":"/v5/api/signer/#Signer-populateTransaction","text":"The default implementation calls checkTransaction and resolves to if it is an ENS name, adds gasPrice, nonce, gasLimit and chainId based on the related operations on Signer."}]},{"title":"Signers -- Wallet","blocks":[{"link":"/v5/api/signer/#Wallet","text":"The Wallet class inherits Signer and can sign transactions and messages using a private key as a standard Externally Owned Account (EOA)."}]},{"title":"Signers -- Wallet -- new ethers.Wallet( privateKey [ , provider ] )","blocks":[{"link":"/v5/api/signer/#Wallet-constructor","text":"Create a new Wallet instance for privateKey and optionally connected to the provider."}]},{"title":"Signers -- Wallet -- ethers.Wallet.createRandom( [ options = {} ] ) => Wallet","blocks":[{"link":"/v5/api/signer/#Wallet-createRandom","text":"Returns a new Wallet with a random private key, generated from cryptographically secure entropy sources."},{"link":"/v5/api/signer/#Wallet-createRandom","text":"If the current environment does not have a secure entropy source, an error is thrown."},{"link":"/v5/api/signer/#Wallet-createRandom","text":"Wallets created using this method will have a mnemonic."}]},{"title":"Signers -- Wallet -- ethers.Wallet.fromEncryptedJson( json , password [ , progress ] ) => Promise< Wallet >","blocks":[{"link":"/v5/api/signer/#Wallet-fromEncryptedJson","text":"Create an instance from an encrypted JSON wallet."},{"link":"/v5/api/signer/#Wallet-fromEncryptedJson","text":"If progress is provided it will be called during decryption with a value between 0 and 1 indicating the progress towards completion."}]},{"title":"Signers -- Wallet -- ethers.Wallet.fromEncryptedJsonSync( json , password ) => Wallet","blocks":[{"link":"/v5/api/signer/#Wallet-fromEncryptedJsonSync","text":"Create an instance from an encrypted JSON wallet."},{"link":"/v5/api/signer/#Wallet-fromEncryptedJsonSync","text":"This operation will operate synchronously which will lock up the user interface, possibly for a non-trivial duration."},{"link":"/v5/api/signer/#Wallet-fromEncryptedJsonSync","text":"Most applications should use the asynchronous fromEncryptedJson instead."}]},{"title":"Signers -- Wallet -- ethers.Wallet.fromMnemonic( mnemonic [ , path , [ wordlist ] ] ) => Wallet","blocks":[{"link":"/v5/api/signer/#Wallet.fromMnemonic","text":"Create an instance from a mnemonic phrase."},{"link":"/v5/api/signer/#Wallet.fromMnemonic","text":"If path is not specified, the Ethereum default path is used (i.e."},{"link":"/v5/api/signer/#Wallet.fromMnemonic","text":"m/44'/60'/0'/0/0)."},{"link":"/v5/api/signer/#Wallet.fromMnemonic","text":"If wordlist is not specified, the English Wordlist is used."}]},{"title":"Signers -- Wallet -- wallet.address => string< Address >","blocks":[{"link":"/v5/api/signer/#Wallet--properties","text":"The address for the account this Wallet represents."}]},{"title":"Signers -- Wallet -- wallet.provider => Provider","blocks":[{"link":"/v5/api/signer/#Wallet--properties","text":"The provider this wallet is connected to, which will be used for any Blockchain Methods methods."},{"link":"/v5/api/signer/#Wallet--properties","text":"This can be null."}]},{"title":"Signers -- Wallet -- Note","blocks":[{"link":"/v5/api/signer/#Wallet--properties","text":"A Wallet instance is immutable, so if you wish to change the Provider, you may use the connect method to create a new instance connected to the desired provider."}]},{"title":"Signers -- Wallet -- wallet.publicKey => string< DataHexString< 65 > >","blocks":[{"link":"/v5/api/signer/#Wallet--properties","text":"The uncompressed public key for this Wallet represents."}]},{"title":"Signers -- Wallet -- wallet.encrypt( password , [ options = {} , [ progress ] ] ) => Promise< string >","blocks":[{"link":"/v5/api/signer/#Wallet-encrypt","text":"Encrypt the wallet using password returning a Promise which resolves to a JSON wallet."},{"link":"/v5/api/signer/#Wallet-encrypt","text":"If progress is provided it will be called during decryption with a value between 0 and 1 indicating the progress towards completion."}]},{"title":"Signers -- VoidSigner","blocks":[{"link":"/v5/api/signer/#VoidSigner","text":"A VoidSigner is a simple Signer which cannot sign."},{"link":"/v5/api/signer/#VoidSigner","text":"It is useful as a read-only signer, when an API requires a Signer as a parameter, but it is known only read-only operations will be carried."},{"link":"/v5/api/signer/#VoidSigner","text":"For example, the call operation will automatically have the provided address passed along during the execution."}]},{"title":"Signers -- VoidSigner -- new ethers.VoidSigner( address [ , provider ] ) => VoidSigner","blocks":[{"link":"/v5/api/signer/#VoidSigner","text":"Create a new instance of a VoidSigner for address."}]},{"title":"Signers -- VoidSigner -- voidSigner.address => string< Address >","blocks":[{"link":"/v5/api/signer/#VoidSigner","text":"The address of this VoidSigner."}]},{"title":"Signers -- ExternallyOwnedAccount","blocks":[{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"This is an interface which contains a minimal set of properties required for Externally Owned Accounts which can have certain operations performed, such as encoding as a JSON wallet."}]},{"title":"Signers -- ExternallyOwnedAccount -- eoa.address => string< Address >","blocks":[{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"The Address of this EOA."}]},{"title":"Signers -- ExternallyOwnedAccount -- eoa.privateKey => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"The privateKey of this EOA."}]},{"title":"Signers -- ExternallyOwnedAccount -- eoa.mnemonic => Mnemonic","blocks":[{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"Optional."},{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"The account HD mnemonic, if it has one and can be determined."},{"link":"/v5/api/signer/#ExternallyOwnedAccount","text":"Some sources do not encode the mnemonic, such as HD extended keys."}]},{"title":"AbiCoder","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder","text":"The AbiCoder is a collection of Coders which can be used to encode and decode the binary data formats used to interoperate between the EVM and higher level libraries."},{"link":"/v5/api/utils/abi/coder/#AbiCoder","text":"Most developers will never need to use this class directly, since the Interface class greatly simplifies these operations."}]},{"title":"AbiCoder -- Creating Instance","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"For the most part, there should never be a need to manually create an instance of an AbiCoder, since one is created with the default coercion function when the library is loaded which can be used universally."},{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"This is likely only needed by those with specific needs to override how values are coerced after they are decoded from their binary format."}]},{"title":"AbiCoder -- Creating Instance -- new ethers.utils.AbiCoder( [ coerceFunc ] )","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"Create a new AbiCoder instance, which will call the coerceFunc on every decode, where the result of the call will be used in the Result."},{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"The function signature is `(type, value)`, where the type is the string describing the type and the value is the processed value from the underlying Coder."},{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"If the callback throws, the Result will contain a property that when accessed will throw, allowing for higher level libraries to recover from data errors."}]},{"title":"AbiCoder -- Creating Instance -- ethers.utils.defaultAbiCoder => AbiCoder","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder--creating","text":"An AbiCoder created when the library is imported which is used by the Interface."}]},{"title":"AbiCoder -- Coding Methods -- abiCoder.encode( types , values ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder-encode","text":"Encode the array values according to the array of types, each of which may be a string or a ParamType."}]},{"title":"AbiCoder -- Coding Methods -- abiCoder.decode( types , data ) => Result","blocks":[{"link":"/v5/api/utils/abi/coder/#AbiCoder-decode","text":"Decode the data according to the array of types, each of which may be a string or ParamType."}]},{"title":"ABI Formats","blocks":[{"link":"/v5/api/utils/abi/formats/#abi-formats","text":"@TODO: Expand this section."}]},{"title":"ABI Formats -- Human-Readable ABI","blocks":[{"link":"/v5/api/utils/abi/formats/#abi-formats--human-readable-abi","text":"See Human-Readable Abi."}]},{"title":"ABI Formats -- Solidity JSON ABI","blocks":[{"link":"/v5/api/utils/abi/formats/#abi-formats--solidity","text":"See Solidity compiler."}]},{"title":"Fragments","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments","text":"Explain an ABI."}]},{"title":"Fragments -- Formats -- JSON String ABI (Solidity Output JSON)","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"The JSON ABI Format is the format that is output from the Solidity compiler."},{"link":"/v5/api/utils/abi/fragments/","text":"A JSON serialized object is always a string, which represents an Array of Objects, where each Object has various properties describing the Fragment of the ABI."},{"link":"/v5/api/utils/abi/fragments/","text":"The deserialized JSON string (which is a normal JavaScript Object) may also be passed into any function which accepts a JSON String ABI."}]},{"title":"Fragments -- Formats -- Humanb-Readable ABI","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"The Human-Readable ABI was @TODO."},{"link":"/v5/api/utils/abi/fragments/","text":"article."}]},{"title":"Fragments -- Formats -- Output Formats","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"Each Fragment and ParamType may be output using its format method."}]},{"title":"Fragments -- Formats -- ethers.utils.FragmentTypes.full => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"This is a full human-readable string, including all parameter names, any optional modifiers (e.g."},{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"indexed, public, etc) and white-space to aid in human readability."}]},{"title":"Fragments -- Formats -- ethers.utils.FragmentTypes.minimal => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"This is similar to full, except with no unnecessary whitespace or parameter names."},{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"This is useful for storing a minimal string which can still fully reconstruct the original Fragment using Fragment . from."}]},{"title":"Fragments -- Formats -- ethers.utils.FragmentTypes.json => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"This returns a JavaScript Object which is safe to call JSON.stringify on to create a JSON string."}]},{"title":"Fragments -- Formats -- ethers.utils.FragmentTypes.sighash => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"This is a minimal output format, which is used by Solidity when computing a signature hash or an event topic hash."}]},{"title":"Fragments -- Formats -- Note","blocks":[{"link":"/v5/api/utils/abi/fragments/#fragments--output-formats","text":"The sighash format is insufficient to re-create the original Fragment, since it discards modifiers such as indexed, anonymous, stateMutability, etc."}]},{"title":"Fragments -- Fragment","blocks":[{"link":"/v5/api/utils/abi/fragments/#Fragment","text":"An ABI is a collection of Fragments, where each fragment specifies:."},{"link":"/v5/api/utils/abi/fragments/#Fragment","text":"An Event A Function A Constructor."}]},{"title":"Fragments -- Fragment -- fragment.name => string","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is the name of the Event or Function."},{"link":"/v5/api/utils/abi/fragments/","text":"This will be null for a ConstructorFragment."}]},{"title":"Fragments -- Fragment -- fragment.type => string","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is a string which indicates the type of the Fragment."},{"link":"/v5/api/utils/abi/fragments/","text":"This will be one of:."},{"link":"/v5/api/utils/abi/fragments/","text":"constructor event function."}]},{"title":"Fragments -- Fragment -- fragment.inputs => Array< ParamType >","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is an array of each ParamType for the input parameters to the Constructor, Event of Function."}]},{"title":"Fragments -- Fragment -- ethers.utils.Fragment.from( objectOrString ) => Fragment","blocks":[{"link":"/v5/api/utils/abi/fragments/#Fragment-from","text":"Returns a."}]},{"title":"Fragments -- Fragment -- ethers.utils.Fragment.isFragment( object ) => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#Fragment-isFragment","text":"Tra lal al."}]},{"title":"Fragments -- ConstructorFragment -- fragment.gas => BigNumber","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is the gas limit that should be used during deployment."},{"link":"/v5/api/utils/abi/fragments/","text":"It may be null."}]},{"title":"Fragments -- ConstructorFragment -- fragment.payable => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is whether the constructor may receive ether during deployment as an endowment (i.e."},{"link":"/v5/api/utils/abi/fragments/","text":"msg.value != 0)."}]},{"title":"Fragments -- ConstructorFragment -- fragment.stateMutability => string","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is the state mutability of the constructor."},{"link":"/v5/api/utils/abi/fragments/","text":"It can be any of:."},{"link":"/v5/api/utils/abi/fragments/","text":"nonpayable payable."}]},{"title":"Fragments -- ConstructorFragment -- ethers.utils.ConstructorFragment.from( objectOrString ) => ConstructorFragment","blocks":[{"link":"/v5/api/utils/abi/fragments/#ConstructorFragment-from","text":"Tra la la..."}]},{"title":"Fragments -- ConstructorFragment -- ethers.utils.ConstructorFragment.isConstructorFragment( object ) => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#ConstructorFragment-isConstructorFragment","text":"Tra lal al."}]},{"title":"Fragments -- EventFragment -- fragment.anonymous => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is whether the event is anonymous."},{"link":"/v5/api/utils/abi/fragments/","text":"An anonymous Event does not inject its topic hash as topic0 when creating a log."}]},{"title":"Fragments -- EventFragment -- ethers.utils.EventFragment.from( objectOrString ) => EventFragment","blocks":[{"link":"/v5/api/utils/abi/fragments/#EventFragment-from","text":"Tra la la..."}]},{"title":"Fragments -- EventFragment -- ethers.utils.EventFragment.isEventFragment( object ) => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#EventFragment-isEventFragment","text":"Tra lal al."}]},{"title":"Fragments -- FunctionFragment -- fragment.constant => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is whether the function is constant (i.e."},{"link":"/v5/api/utils/abi/fragments/","text":"does not change state)."},{"link":"/v5/api/utils/abi/fragments/","text":"This is true if the state mutability is pure or view."}]},{"title":"Fragments -- FunctionFragment -- fragment.stateMutability => string","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"This is the state mutability of the constructor."},{"link":"/v5/api/utils/abi/fragments/","text":"It can be any of:."},{"link":"/v5/api/utils/abi/fragments/","text":"nonpayable payable pure view."}]},{"title":"Fragments -- FunctionFragment -- fragment.outputs => Array< ParamType >","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"A list of the Function output parameters."}]},{"title":"Fragments -- FunctionFragment -- ethers.utils.FunctionFragment.from( objectOrString ) => FunctionFragment","blocks":[{"link":"/v5/api/utils/abi/fragments/#FunctionFragment-from","text":"Tra la la..."}]},{"title":"Fragments -- FunctionFragment -- ethers.utils.FunctionFragment.isFunctionFragment( object ) => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#FunctionFragment-isFunctionFragment","text":"Tra lal al."}]},{"title":"Fragments -- ParamType","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType","text":"The following examples will represent the Solidity parameter:."},{"link":"/v5/api/utils/abi/fragments/#ParamType","text":"string foobar."}]},{"title":"Fragments -- ParamType -- paramType.name => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-name","text":"The local parameter name."},{"link":"/v5/api/utils/abi/fragments/#ParamType-name","text":"This may be null for unnamed parameters."},{"link":"/v5/api/utils/abi/fragments/#ParamType-name","text":"For example, the parameter definition string foobar would be foobar."}]},{"title":"Fragments -- ParamType -- paramType.type => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-type","text":"The full type of the parameter, including tuple and array symbols."},{"link":"/v5/api/utils/abi/fragments/#ParamType-type","text":"This may be null for unnamed parameters."},{"link":"/v5/api/utils/abi/fragments/#ParamType-type","text":"For the above example, this would be foobar."}]},{"title":"Fragments -- ParamType -- paramType.baseType => string","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-baseType","text":"The base type of the parameter."},{"link":"/v5/api/utils/abi/fragments/#ParamType-baseType","text":"For primitive types (e.g."},{"link":"/v5/api/utils/abi/fragments/#ParamType-baseType","text":"address, uint256, etc) this is equal to type."},{"link":"/v5/api/utils/abi/fragments/#ParamType-baseType","text":"For arrays, it will be the string array and for a tuple, it will be the string tuple."}]},{"title":"Fragments -- ParamType -- paramType.indexed => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-indexed","text":"Whether the parameter has been marked as indexed."},{"link":"/v5/api/utils/abi/fragments/#ParamType-indexed","text":"This only applies to parameters which are part of an EventFragment."}]},{"title":"Fragments -- ParamType -- paramType.arrayChildren => ParamType","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-arrayChildren","text":"The type of children of the array."},{"link":"/v5/api/utils/abi/fragments/#ParamType-arrayChildren","text":"This is null for any parameter which is not an array."}]},{"title":"Fragments -- ParamType -- paramType.arrayLength => number","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-arrayLength","text":"The length of the array, or -1 for dynamic-length arrays."},{"link":"/v5/api/utils/abi/fragments/#ParamType-arrayLength","text":"This is null for parameters which are not arrays."}]},{"title":"Fragments -- ParamType -- paramType.components => Array< ParamType >","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-components","text":"The components of a tuple."},{"link":"/v5/api/utils/abi/fragments/#ParamType-components","text":"This is null for non-tuple parameters."}]},{"title":"Fragments -- ParamType -- Methods","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType","text":"Tra la la..."}]},{"title":"Fragments -- ParamType -- paramType.format( [ outputType = sighash ] )","blocks":[{"link":"/v5/api/utils/abi/fragments/","text":"Tra la la..."}]},{"title":"Fragments -- ParamType -- ethers.utils.ParamType.from( objectOrString ) => ParamType","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-from","text":"Tra la la..."}]},{"title":"Fragments -- ParamType -- ethers.utils.ParamType.isParamType( object ) => boolean","blocks":[{"link":"/v5/api/utils/abi/fragments/#ParamType-isParamType","text":"Tra la la..."}]},{"title":"Application Binary Interface","blocks":[{"link":"/v5/api/utils/abi/","text":"An Application Binary Interface (ABI) is a collection of Fragments which specify how to interact with various components of a Contract."},{"link":"/v5/api/utils/abi/","text":"An Interface helps organize Fragments by type as well as provides the functionality required to encode, decode and work with each component."},{"link":"/v5/api/utils/abi/","text":"Most developers will not require this low-level access to encoding and decoding the binary data on the network and will most likely use a Contract which provides a more convenient interface."},{"link":"/v5/api/utils/abi/","text":"Some framework, tool developers or developers using advanced techniques may find these classes and utilities useful."}]},{"title":"Interface","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface","text":"The Interface Class abstracts the encoding and decoding required to interact with contracts on the Ethereum network."},{"link":"/v5/api/utils/abi/interface/#Interface","text":"Many of the standards organically evolved along side the Solidity language, which other languages have adopted to remain compatible with existing deployed contracts."},{"link":"/v5/api/utils/abi/interface/#Interface","text":"The EVM itself does not understand what the ABI is."},{"link":"/v5/api/utils/abi/interface/#Interface","text":"It is simply an agreed upon set of formats to encode various types of data which each contract can expect so they can interoperate with each other."}]},{"title":"Interface -- Creating Instances -- new ethers.utils.Interface( abi )","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--creating","text":"Create a new Interface from a JSON string or object representing abi."},{"link":"/v5/api/utils/abi/interface/#Interface--creating","text":"The abi may be a JSON string or the parsed Object (using JSON.parse) which is emitted by the Solidity compiler (or compatible languages)."},{"link":"/v5/api/utils/abi/interface/#Interface--creating","text":"The abi may also be a Human-Readable Abi, which is a format the Ethers created to simplify manually typing the ABI into the source and so that a Contract ABI can also be referenced easily within the same source file."}]},{"title":"Interface -- Properties -- interface.fragments => Array< Fragment >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--properties","text":"All the Fragments in the interface."}]},{"title":"Interface -- Properties -- interface.events => Array< EventFragment >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--properties","text":"All the Event Fragments in the interface."}]},{"title":"Interface -- Properties -- interface.functions => Array< FunctionFragment >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--properties","text":"All the Function Fragments in the interface."}]},{"title":"Interface -- Properties -- interface.deploy => ConstructorFragment","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--properties","text":"The Constructor Fragments for the interface."}]},{"title":"Interface -- Formatting -- interface.format( [ format ] ) => string | Array< string >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--formatting","text":"Return the formatted Interface."},{"link":"/v5/api/utils/abi/interface/#Interface--formatting","text":"If the format type is json a single string is returned, otherwise an Array of the human-readable strings is returned."}]},{"title":"Interface -- Fragment Access -- interface.getFunction( fragment ) => FunctionFragment","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--fragments","text":"Returns the FunctionFragment for fragment (see Specifying Fragments)."}]},{"title":"Interface -- Fragment Access -- interface.getEvent( fragment ) => EventFragment","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--fragments","text":"Returns the EventFragment for fragment (see Specifying Fragments)."}]},{"title":"Interface -- Signature and Topic Hashes -- interface.getSighash( fragment ) => string< DataHexString< 4 > >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--selectors","text":"Return the sighash (or Function Selector) for fragment (see Specifying Fragments)."}]},{"title":"Interface -- Signature and Topic Hashes -- interface.getEventTopic( fragment ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--selectors","text":"Return the topic hash for fragment (see Specifying Fragments)."}]},{"title":"Interface -- Encoding Data -- interface.encodeDeploy( [ values ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Return the encoded deployment data, which can be concatenated to the deployment bytecode of a contract to pass values into the contract constructor."}]},{"title":"Interface -- Encoding Data -- interface.encodeFilterTopics( fragment [ , values ] ) => Array< topic | Array< topic > >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Returns the encoded topic filter, which can be passed to getLogs for fragment (see Specifying Fragments) for the given values."},{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Each topic is a 32 byte (64 nibble) DataHexString."}]},{"title":"Interface -- Encoding Data -- interface.encodeFunctionData( fragment [ , values ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Returns the encoded data, which can be used as the data for a transaction for fragment (see Specifying Fragments) for the given values."}]},{"title":"Interface -- Encoding Data -- interface.encodeFunctionResult( fragment [ , values ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Returns the encoded result, which would normally be the response from a call for fragment (see Specifying Fragments) for the given values."},{"link":"/v5/api/utils/abi/interface/#Interface--encoding","text":"Most developers will not need this method, but may be useful for authors of a mock blockchain."}]},{"title":"Interface -- Decoding Data -- interface.decodeEventLog( fragment , data [ , topics ] ) => Result","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--decoding","text":"Returns the decoded event values from an event log for fragment (see Specifying Fragments) for the given data with the optional topics."},{"link":"/v5/api/utils/abi/interface/#Interface--decoding","text":"If topics is not specified, placeholders will be inserted into the result."}]},{"title":"Interface -- Decoding Data -- interface.decodeFunctionData( fragment , data ) => Result","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--decoding","text":"Returns the decoded values from transaction data for fragment (see Specifying Fragments) for the given data."},{"link":"/v5/api/utils/abi/interface/#Interface--decoding","text":"Most developers will not need this method, but may be useful for debugging or inspecting transactions."}]},{"title":"Interface -- Decoding Data -- interface.decodeFunctionResult( fragment , data ) => Result","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--decoding","text":"Returns the decoded values from the result of a call for fragment (see Specifying Fragments) for the given data."}]},{"title":"Interface -- Parsing","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--parsing","text":"The functions are generally the most useful for most developers."},{"link":"/v5/api/utils/abi/interface/#Interface--parsing","text":"They will automatically search the ABI for a matching Event or Function and decode the components as a fully specified description."}]},{"title":"Interface -- Parsing -- interface.parseLog( log ) => LogDescription","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--parsing","text":"Search the event that matches the log topic hash and parse the values the log represents."}]},{"title":"Interface -- Parsing -- interface.parseTransaction( transaction ) => TransactionDescription","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--parsing","text":"Search for the function that matches the transaction data sighash and parse the transaction properties."}]},{"title":"Interface -- Types -- Result","blocks":[{"link":"/v5/api/utils/abi/interface/#Result","text":"A Result is an array, so each value can be accessed as a positional argument."},{"link":"/v5/api/utils/abi/interface/#Result","text":"Additionally, if values are named, the identical object as its positional value can be accessed by its name."},{"link":"/v5/api/utils/abi/interface/#Result","text":"The name length is however reserved as it is part of the Array, so any named value for this key is renamed to _length."},{"link":"/v5/api/utils/abi/interface/#Result","text":"If there is a name collision, only the first is available by its key."}]},{"title":"Interface -- Types -- logDescription.args => Result","blocks":[{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"The values of the input parameters of the event."}]},{"title":"Interface -- Types -- logDescription.eventFragment => EventFragment","blocks":[{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"The EventFragment which matches the topic in the Log."}]},{"title":"Interface -- Types -- logDescription.name => string","blocks":[{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"The event name."},{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"(e.g."},{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"Transfer)."}]},{"title":"Interface -- Types -- logDescription.signature => string","blocks":[{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"The event signature."},{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"(e.g."},{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"Transfer(address,address,uint256))."}]},{"title":"Interface -- Types -- logDescription.topic => string","blocks":[{"link":"/v5/api/utils/abi/interface/#LogDescription","text":"The topic hash."}]},{"title":"Interface -- Types -- transactionDescription.args => Result","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The decoded values from the transaction data which were passed as the input parameters."}]},{"title":"Interface -- Types -- transactionDescription.functionFragment => FunctionFragment","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The FunctionFragment which matches the sighash in the transaction data."}]},{"title":"Interface -- Types -- transactionDescription.name => string","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The name of the function."},{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"(e.g."},{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"transfer)."}]},{"title":"Interface -- Types -- transactionDescription.sighash => string","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The sighash (or function selector) that matched the transaction data."}]},{"title":"Interface -- Types -- transactionDescription.signature => string","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The signature of the function."},{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"(e.g."},{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"transfer(address,uint256))."}]},{"title":"Interface -- Types -- transactionDescription.value => BigNumber","blocks":[{"link":"/v5/api/utils/abi/interface/#TransactionDescription","text":"The value from the transaction."}]},{"title":"Interface -- Specifying Fragments","blocks":[{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"When specifying a fragment to any of the functions in an Interface, any of the following may be used:."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"The name of the event or function, if it is unique and non-ambiguous within the ABI (e.g."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"transfer) The signature of the event or function."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"The signature is normalized, so, for example, uint and uint256 are equivalent (e.g."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"transfer(address, uint)) The sighash or topichash of the function."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"The sighash is often referred to the function selector in Solidity (e.g."},{"link":"/v5/api/utils/abi/interface/#Interface--specifying-fragments","text":"0xa9059cbb) A Fragment."}]},{"title":"Addresses","blocks":[{"link":"/v5/api/utils/address/#addresses","text":"Explain addresses,formats and checksumming here."},{"link":"/v5/api/utils/address/#addresses","text":"Also see: constants.AddressZero."}]},{"title":"Addresses -- Address Formats -- Address","blocks":[{"link":"/v5/api/utils/address/#address","text":"An Address is a DataHexString of 20 bytes (40 nibbles), with optional mixed case."},{"link":"/v5/api/utils/address/#address","text":"If the case is mixed, it is a Checksum Address, which uses a specific pattern of uppercase and lowercase letters within a given address to reduce the risk of errors introduced from typing an address or cut and paste issues."},{"link":"/v5/api/utils/address/#address","text":"All functions that return an Address will return a Checksum Address."}]},{"title":"Addresses -- Address Formats -- ICAP Address","blocks":[{"link":"/v5/api/utils/address/#address-icap","text":"The ICAP Address Format was an early attempt to introduce a checksum into Ethereum addresses using the popular banking industry's IBAN format with the country code specified as XE."},{"link":"/v5/api/utils/address/#address-icap","text":"Due to the way IBAN encodes address, only addresses that fit into 30 base-36 characters are actually compatible, so the format was adapted to support 31 base-36 characters which is large enough for a full Ethereum address, however the preferred method was to select a private key whose address has a 0 as the first byte, which allows the address to be formatted as a fully compatibly standard IBAN address with 30 base-36 characters."},{"link":"/v5/api/utils/address/#address-icap","text":"In general this format is no longer widely supported anymore, however any function that accepts an address can receive an ICAP address, and it will be converted internally."},{"link":"/v5/api/utils/address/#address-icap","text":"To convert an address into the ICAP format, see getIcapAddress."}]},{"title":"Addresses -- Converting and Verifying -- ethers.utils.getAddress( address ) => string< Address >","blocks":[{"link":"/v5/api/utils/address/#utils-getAddress","text":"Returns address as a Checksum Address."},{"link":"/v5/api/utils/address/#utils-getAddress","text":"If address is an invalid 40-nibble HexString or if it contains mixed case and the checksum is invalid, an INVALID_ARGUMENT Error is thrown."},{"link":"/v5/api/utils/address/#utils-getAddress","text":"The value of address may be any supported address format."}]},{"title":"Addresses -- Converting and Verifying -- ethers.utils.getIcapAddress( address ) => string< IcapAddress >","blocks":[{"link":"/v5/api/utils/address/#utils-getIcapAddress","text":"Returns address as an ICAP address."},{"link":"/v5/api/utils/address/#utils-getIcapAddress","text":"Supports the same restrictions as getAddress."}]},{"title":"Addresses -- Converting and Verifying -- ethers.utils.isAddress( address ) => boolean","blocks":[{"link":"/v5/api/utils/address/#utils-isAddress","text":"Returns true if address is valid (in any supported format)."}]},{"title":"Addresses -- Derivation -- ethers.utils.computeAddress( publicOrPrivateKey ) => string< Address >","blocks":[{"link":"/v5/api/utils/address/#utils-computeAddress","text":"Returns the address for publicOrPrivateKey."},{"link":"/v5/api/utils/address/#utils-computeAddress","text":"A public key may be compressed or uncompressed, and a private key will be converted automatically to a public key for the derivation."}]},{"title":"Addresses -- Derivation -- ethers.utils.recoverAddress( digest , signature ) => string< Address >","blocks":[{"link":"/v5/api/utils/address/#utils-recoverAddress","text":"Use ECDSA Public Key Recovery to determine the address that signed digest to which generated signature."}]},{"title":"Addresses -- Contracts Addresses -- ethers.utils.getContractAddress( transaction ) => string< Address >","blocks":[{"link":"/v5/api/utils/address/#utils-getContractAddress","text":"Returns the contract address that would result if transaction was used to deploy a contract."}]},{"title":"Addresses -- Contracts Addresses -- ethers.utils.getCreate2Address( from , salt , initCodeHash ) => string< Address >","blocks":[{"link":"/v5/api/utils/address/#utils-getCreate2Address","text":"Returns the contract address that would result from the given CREATE2 call."}]},{"title":"BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber","text":"Many operations in Ethereum operation on numbers which are outside the range of safe values to use in JavaScript."},{"link":"/v5/api/utils/bignumber/#BigNumber","text":"A BigNumber is an object which safely allows mathematical operations on numbers of any magnitude."},{"link":"/v5/api/utils/bignumber/#BigNumber","text":"Most operations which need to return a value will return a BigNumber and parameters which accept values will generally accept them."}]},{"title":"BigNumber -- Types -- BigNumberish","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"Many functions and methods in this library take in values which can be non-ambiguously and safely converted to a BigNumber."},{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"These values can be specified as:."}]},{"title":"BigNumber -- Types -- string","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"A HexString or a decimal string, either of which may be negative."}]},{"title":"BigNumber -- Types -- BytesLike","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"A BytesLike Object, such as an Array or Uint8Array."}]},{"title":"BigNumber -- Types -- BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"An existing BigNumber instance."}]},{"title":"BigNumber -- Types -- number","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"A number that is within the safe range for JavaScript numbers."}]},{"title":"BigNumber -- Types -- BigInt","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumberish","text":"A JavaScript BigInt object, on environments that support BigInt."}]},{"title":"BigNumber -- Creating Instances","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--creating","text":"The constructor of BigNumber cannot be called directly."},{"link":"/v5/api/utils/bignumber/#BigNumber--creating","text":"Instead, Use the static BigNumber.from."}]},{"title":"BigNumber -- Creating Instances -- ethers.BigNumber.from( aBigNumberish ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--creating","text":"Returns an instance of a BigNumber for aBigNumberish."}]},{"title":"BigNumber -- Methods","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--methods","text":"The BigNumber class is immutable, so no operations can change the value it represents."}]},{"title":"BigNumber -- Methods -- BigNumber.add( otherValue ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber + otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.sub( otherValue ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber - otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.mul( otherValue ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber × otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.div( divisor ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber ÷ divisor."}]},{"title":"BigNumber -- Methods -- BigNumber.mod( divisor ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of the remainder of BigNumber ÷ divisor."}]},{"title":"BigNumber -- Methods -- BigNumber.pow( exponent ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber to the power of exponent."}]},{"title":"BigNumber -- Methods -- BigNumber.abs( ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the absolute value of BigNumber."}]},{"title":"BigNumber -- Methods -- BigNumber.mask( bitcount ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber with bits beyond the bitcount least significant bits set to zero."}]},{"title":"BigNumber -- Methods -- Two's Complement","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--methods","text":"Two's Complement is an elegant method used to encode and decode fixed-width signed values while efficiently preserving mathematical operations."},{"link":"/v5/api/utils/bignumber/#BigNumber--methods","text":"Most users will not need to interact with these."}]},{"title":"BigNumber -- Methods -- BigNumber.fromTwos( bitwidth ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber converted from twos-complement with bitwidth."}]},{"title":"BigNumber -- Methods -- BigNumber.toTwos( bitwidth ) => BigNumber","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns a BigNumber with the value of BigNumber converted to twos-complement with bitwidth."}]},{"title":"BigNumber -- Methods -- BigNumber.eq( otherValue ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber is equal to otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.lt( otherValue ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber < otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.lte( otherValue ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber ≤ otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.gt( otherValue ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber > otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.gte( otherValue ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber ≥ otherValue."}]},{"title":"BigNumber -- Methods -- BigNumber.isZero( ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the value of BigNumber is zero."}]},{"title":"BigNumber -- Methods -- BigNumber.toNumber( ) => number","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns the value of BigNumber as a JavaScript value."},{"link":"/v5/api/utils/bignumber/","text":"This will throw an error if the value is greater than or equal to Number.MAX_SAFE_INTEGER or less than or equal to Number.MIN_SAFE_INTEGER."}]},{"title":"BigNumber -- Methods -- BigNumber.toString( ) => string","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns the value of BigNumber as a base-10 string."}]},{"title":"BigNumber -- Methods -- BigNumber.toHexString( ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns the value of BigNumber as a base-16, 0x-prefixed DataHexString."}]},{"title":"BigNumber -- Methods -- ethers.BigNumber.isBigNumber( object ) => boolean","blocks":[{"link":"/v5/api/utils/bignumber/","text":"Returns true if and only if the object is a BigNumber object."}]},{"title":"BigNumber -- Notes","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"This section is a for a couple of questions that come up frequently."}]},{"title":"BigNumber -- Notes -- Why can't I just use numbers?","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"The first problem many encounter when dealing with Ethereum is the concept of numbers."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"Most common currencies are broken down with very little granularity."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"For example, there are only 100 cents in a single dollar."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"However, there are 1018 wei in a single ether."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"JavaScript uses IEEE 754 double-precision binary floating point numbers to represent numeric values."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"As a result, there are holes in the integer set after 9,007,199,254,740,991; which is problematic for Ethereum because that is only around 0.009 ether (in wei), which means any value over that will begin to experience rounding errors."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"To demonstrate how this may be an issue in your code, consider:."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"To remedy this, all numbers (which can be large) are stored and manipulated as Big Numbers."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes-safenumbers","text":"The functions parseEther( etherString ) and formatEther( wei ) can be used to convert between string representations, which are displayed to or entered by the user and Big Number representations which can have mathematical operations handled safely."}]},{"title":"BigNumber -- Notes -- Why not BigNumber.js, BN.js, BigDecimal, etc?","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"Everyone has their own favourite Big Number library, and once someone has chosen one, it becomes part of their identity, like their editor, vi vs emacs."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"There are over 100 Big Number libraries on npm."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"One of the biggest differences between the Ethers BigNumber object and other libraries is that it is immutable, which is very important when dealing with the asynchronous nature of the blockchain."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"Capturing the value is not safe in async functions, so immutability protects us from easy to make mistakes, which is not possible on the low-level library's objects which supports myriad in-place operations."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"Second, the Ethers BigNumber provides all the functionality required internally and should generally be sufficient for most developers while not exposing some of the more advanced and rare functionality."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"So it will be easier to swap out the underlying library without impacting consumers."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"For example, if BN.js was exposed, someone may use the greatest-common-denominator functions, which would then be functionality the replacing library should also provide to ensure anyone depending on that functionality is not broken."}]},{"title":"BigNumber -- Notes -- Why BN.js??","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"The reason why BN.js is used internally as the big number is because that is the library used by elliptic."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"Therefore it must be included regardless, so we leverage that library rather than adding another Big Number library, which would mean two different libraries offering the same functionality."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"This has saved about 85kb (80% of this library size) of library size over other libraries which include separate Big Number libraries for various purposes."}]},{"title":"BigNumber -- Notes -- Allow us to set a global Big Number library?","blocks":[{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"Another comment that comes up frequently is the desire to specify a global user-defined Big Number library, which all functions would return."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"This becomes problematic since your code may live along side other libraries or code that use Ethers."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"In fact, even Ethers uses a lot of the public functions internally."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"If you, for example, used a library that used a.plus(b) instead of a.add(b), this would break Ethers when it tries to compute fees internally, and other libraries likely have similar logic."},{"link":"/v5/api/utils/bignumber/#BigNumber--notes","text":"But, the BigNumber prototype is exposed, so you can always add a toMyCustomBigNumber() method to all BigNumber's globally which is safe."}]},{"title":"Byte Manipulation","blocks":[{"link":"/v5/api/utils/bytes/","text":"While there are many high-level APIs for interacting with Ethereum, such as Contracts and Providers, a lot of the low level access requires byte manipulation operations."},{"link":"/v5/api/utils/bytes/","text":"Many of these operations are used internally, but can also be used to help normalize binary data representations from the output of various functions and methods."}]},{"title":"Byte Manipulation -- Types -- Bytes","blocks":[{"link":"/v5/api/utils/bytes/#Bytes","text":"A Bytes is any object which is an Array or TypedArray with each value in the valid byte range (i.e."},{"link":"/v5/api/utils/bytes/#Bytes","text":"between 0 and 255 inclusive), or is an Object with a length property where each indexed property is in the valid byte range."}]},{"title":"Byte Manipulation -- Types -- BytesLike","blocks":[{"link":"/v5/api/utils/bytes/#BytesLike","text":"A BytesLike can be either a Bytes or a DataHexString."}]},{"title":"Byte Manipulation -- Types -- DataHexString","blocks":[{"link":"/v5/api/utils/bytes/#DataHexString","text":"A DataHexstring is identical to a HexString except that it has an even number of nibbles, and therefore is a valid representation of binary data as a string."}]},{"title":"Byte Manipulation -- Types -- HexString","blocks":[{"link":"/v5/api/utils/bytes/#HexString","text":"A Hexstring is a string which has a 0x prefix followed by any number of nibbles (i.e."},{"link":"/v5/api/utils/bytes/#HexString","text":"case-insensitive hexadecimal characters, 0-9 and a-f)."}]},{"title":"Byte Manipulation -- Types -- Signature","blocks":[{"link":"/v5/api/utils/bytes/#Signature","text":"r and s --- The x co-ordinate of r and the s value of the signature v --- The parity of the y co-ordinate of r _vs --- The compact representation of the s and v recoveryParam --- The normalized (i.e."},{"link":"/v5/api/utils/bytes/#Signature","text":"0 or 1) value of v."}]},{"title":"Byte Manipulation -- Types -- Raw Signature","blocks":[{"link":"/v5/api/utils/bytes/#signature-raw","text":"A Raw Signature is a common Signature format where the r, s and v are concatenated into a 65 byte (130 nibble) DataHexString."}]},{"title":"Byte Manipulation -- Types -- SignatureLike","blocks":[{"link":"/v5/api/utils/bytes/#SignatureLike","text":"A SignatureLike is similar to a Signature, except redundant properties may be omitted or it may be a Raw Signature."},{"link":"/v5/api/utils/bytes/#SignatureLike","text":"For example, if _vs is specified, s and v may be omitted."},{"link":"/v5/api/utils/bytes/#SignatureLike","text":"Likewise, if recoveryParam is provided, v may be omitted (as in these cases the missing values can be computed)."}]},{"title":"Byte Manipulation -- Inspection -- ethers.utils.isBytes( object ) => boolean","blocks":[{"link":"/v5/api/utils/bytes/#utils-isBytes","text":"Returns true if and only if object is a valid Bytes."}]},{"title":"Byte Manipulation -- Inspection -- ethers.utils.isBytesLike( object ) => boolean","blocks":[{"link":"/v5/api/utils/bytes/#utils-isBytesLike","text":"Returns true if and only if object is a Bytes or DataHexString."}]},{"title":"Byte Manipulation -- Inspection -- ethers.utils.isHexString( object , [ length ] ) => boolean","blocks":[{"link":"/v5/api/utils/bytes/#utils-isHexString","text":"Returns true if and only if object is a valid hex string."},{"link":"/v5/api/utils/bytes/#utils-isHexString","text":"If length is specified and object is not a valid DataHexString of length bytes, an InvalidArgument error is thrown."}]},{"title":"Byte Manipulation -- Converting between Arrays and Hexstrings -- ethers.utils.arrayify( DataHexStringOrArrayish [ , options ] ) => Uint8Array","blocks":[{"link":"/v5/api/utils/bytes/#utils-arrayify","text":"Converts DataHexStringOrArrayish to a Uint8Array."}]},{"title":"Byte Manipulation -- Converting between Arrays and Hexstrings -- ethers.utils.hexlify( hexstringOrArrayish ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexlify","text":"Converts hexstringOrArrayish to a DataHexString."}]},{"title":"Byte Manipulation -- Converting between Arrays and Hexstrings -- ethers.utils.hexValue( aBigNumberish ) => string< HexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexValue","text":"Converts aBigNumberish to a HexString, with no unnecessary leading zeros."}]},{"title":"Byte Manipulation -- Array Manipulation -- ethers.utils.concat( arrayOfBytesLike ) => Uint8Array","blocks":[{"link":"/v5/api/utils/bytes/#utils-concat","text":"Concatenates all the BytesLike in arrayOfBytesLike into a single Uint8Array."}]},{"title":"Byte Manipulation -- Array Manipulation -- ethers.utils.stripZeros( aBytesLike ) => Uint8Array","blocks":[{"link":"/v5/api/utils/bytes/#utils-stripZeros","text":"Returns a Uint8Array with all leading 0 bytes of aBtyesLike removed."}]},{"title":"Byte Manipulation -- Array Manipulation -- ethers.utils.zeroPad( aBytesLike , length ) => Uint8Array","blocks":[{"link":"/v5/api/utils/bytes/#utils-zeroPad","text":"Returns a Uint8Array of the data in aBytesLike with 0 bytes prepended to length bytes long."},{"link":"/v5/api/utils/bytes/#utils-zeroPad","text":"If aBytesLike is already longer than length bytes long, an InvalidArgument error will be thrown."}]},{"title":"Byte Manipulation -- Hexstring Manipulation -- ethers.utils.hexConcat( arrayOfBytesLike ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexConcat","text":"Concatenates all the BytesLike in arrayOfBytesLike into a single DataHexString."}]},{"title":"Byte Manipulation -- Hexstring Manipulation -- ethers.utils.hexDataLength( aBytesLike ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexDataLength","text":"Returns the length (in bytes) of aBytesLike."}]},{"title":"Byte Manipulation -- Hexstring Manipulation -- ethers.utils.hexDataSlice( aBytesLike , offset [ , endOffset ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexDataSlice","text":"Returns a DataHexString representation of a slice of aBytesLike, from offset (in bytes) to endOffset (in bytes)."},{"link":"/v5/api/utils/bytes/#utils-hexDataSlice","text":"If endOffset is omitted, the length of aBytesLike is used."}]},{"title":"Byte Manipulation -- Hexstring Manipulation -- ethers.utils.hexStripZeros( aBytesLike ) => string< HexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexStripZeros","text":"Returns a HexString representation of aBytesLike with all leading zeros removed."}]},{"title":"Byte Manipulation -- Hexstring Manipulation -- ethers.utils.hexZeroPad( aBytesLike , length ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/bytes/#utils-hexZeroPad","text":"Returns a DataHexString representation of aBytesLike padded to length bytes."},{"link":"/v5/api/utils/bytes/#utils-hexZeroPad","text":"If aBytesLike is already longer than length bytes long, an InvalidArgument error will be thrown."}]},{"title":"Byte Manipulation -- Signature Conversion -- ethers.utils.joinSignature( aSignatureLike ) => string< RawSignature >","blocks":[{"link":"/v5/api/utils/bytes/#utils-joinSignature","text":"Return the raw-format of aSignaturelike, which is 65 bytes (130 nibbles) long, concatenating the r, s and (normalized) v of a Signature."}]},{"title":"Byte Manipulation -- Signature Conversion -- ethers.utils.splitSignature( aSignatureLikeOrBytesLike ) => Signature","blocks":[{"link":"/v5/api/utils/bytes/#utils-splitSignature","text":"Return the full expanded-format of aSignaturelike or a raw-format DataHexString."},{"link":"/v5/api/utils/bytes/#utils-splitSignature","text":"Any missing properties will be computed."}]},{"title":"Byte Manipulation -- Random Bytes -- ethers.utils.randomBytes( length ) => Uint8Array","blocks":[{"link":"/v5/api/utils/bytes/#utils-randomBytes","text":"Return a new Uint8Array of length random bytes."}]},{"title":"Byte Manipulation -- Random Bytes -- ethers.utils.shuffled( array ) => Array< any >","blocks":[{"link":"/v5/api/utils/bytes/#utils-shuffled","text":"Return a copy of array shuffled using Fisher-Yates Shuffle."}]},{"title":"Constants","blocks":[{"link":"/v5/api/utils/constants/#constants","text":"The ethers.contants Object contains commonly used values."}]},{"title":"Constants -- Bytes -- ethers.constants.AddressZero => string< Address >","blocks":[{"link":"/v5/api/utils/constants/#constants-AddressZero","text":"The Address Zero, which is 20 bytes (40 nibbles) of zero."}]},{"title":"Constants -- Bytes -- ethers.constants.HashZero => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/constants/#constants-HashZero","text":"The Hash Zero, which is 32 bytes (64 nibbles) of zero."}]},{"title":"Constants -- Strings -- ethers.constants.EtherSymbol => string","blocks":[{"link":"/v5/api/utils/constants/#constants-EtherSymbol","text":"The Ether symbol, Ξ."}]},{"title":"Constants -- BigNumber -- ethers.constants.NegativeOne => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-NegativeOne","text":"The BigNumber value representing \"-1\"."}]},{"title":"Constants -- BigNumber -- ethers.constants.Zero => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-Zero","text":"The BigNumber value representing \"0\"."}]},{"title":"Constants -- BigNumber -- ethers.constants.One => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-One","text":"The BigNumber value representing \"1\"."}]},{"title":"Constants -- BigNumber -- ethers.constants.Two => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-Two","text":"The BigNumber value representing \"2\"."}]},{"title":"Constants -- BigNumber -- ethers.constants.WeiPerEther => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-WeiPerEther","text":"The BigNumber value representing \"1000000000000000000\", which is the number of Wei per Ether."}]},{"title":"Constants -- BigNumber -- ethers.constants.MaxUint256 => BigNumber","blocks":[{"link":"/v5/api/utils/constants/#constants-MaxUint256","text":"The BigNumber value representing the maximum uint256 value."}]},{"title":"Display Logic and Input","blocks":[{"link":"/v5/api/utils/display-logic/#display-logic","text":"When creating an Application, it is useful to convert between user-friendly strings (usually displaying ether) and the machine-readable values that contracts and maths depend on (usually in wei)."},{"link":"/v5/api/utils/display-logic/#display-logic","text":"For example, a Wallet may specify the balance in ether, and gas prices in gwei for the User Interface, but when sending a transaction, both must be specified in wei."},{"link":"/v5/api/utils/display-logic/#display-logic","text":"The parseUnits will parse a string representing ether, such as 1.1 into a BigNumber in wei, and is useful when a user types in a value, such as sending 1.1 ether."},{"link":"/v5/api/utils/display-logic/#display-logic","text":"The formatUnits will format a BigNumberish into a string, which is useful when displaying a balance."}]},{"title":"Display Logic and Input -- Units -- Decimal Count","blocks":[{"link":"/v5/api/utils/display-logic/#display-logic--units","text":"A Unit can be specified as a number, which indicates the number of decimal places that should be used."},{"link":"/v5/api/utils/display-logic/#display-logic--units","text":"Examples:."},{"link":"/v5/api/utils/display-logic/#display-logic--units","text":"1 ether in wei, has 18 decimal places (i.e."},{"link":"/v5/api/utils/display-logic/#display-logic--units","text":"1 ether represents 1018 wei) 1 bitcoin in Satoshi, has 8 decimal places (i.e."},{"link":"/v5/api/utils/display-logic/#display-logic--units","text":"1 bitcoin represents 108 satoshi)."}]},{"title":"Display Logic and Input -- Units -- Named Units","blocks":[{"link":"/v5/api/utils/display-logic/#display-logic--named-units","text":"There are also several common Named Units, in which case their name (as a string) may be used."}]},{"title":"Display Logic and Input -- Functions -- ethers.utils.commify( value ) => string","blocks":[{"link":"/v5/api/utils/display-logic/#utils-commify","text":"Returns a string with value grouped by 3 digits, separated by ,."}]},{"title":"Display Logic and Input -- Functions -- ethers.utils.formatUnits( value [ , unit = \"ether\" ] ) => string","blocks":[{"link":"/v5/api/utils/display-logic/#utils-formatUnits","text":"Returns a string representation of value formatted with unit digits (if it is a number) or to the unit specified (if a string)."}]},{"title":"Display Logic and Input -- Functions -- ethers.utils.formatEther( value ) => string","blocks":[{"link":"/v5/api/utils/display-logic/#utils-formatEther","text":"The equivalent to calling formatUnits(value, \"ether\")."}]},{"title":"Display Logic and Input -- Functions -- ethers.utils.parseUnits( value [ , unit = \"ether\" ] ) => BigNumber","blocks":[{"link":"/v5/api/utils/display-logic/#utils-parseUnits","text":"Returns a BigNumber representation of value, parsed with unit digits (if it is a number) or from the unit specified (if a string)."}]},{"title":"Display Logic and Input -- Functions -- ethers.utils.parseEther( value ) => BigNumber","blocks":[{"link":"/v5/api/utils/display-logic/#utils-parseEther","text":"The equivalent to calling parseUnits(value, \"ether\")."}]},{"title":"Encoding Utilities -- Base58 -- ethers.utils.base58.decode( textData ) => Uin8Array","blocks":[{"link":"/v5/api/utils/encoding/#Bse58","text":"Return a typed Uint8Array representation of textData decoded using base-58 encoding."}]},{"title":"Encoding Utilities -- Base58 -- ethers.utils.base58.encode( aBytesLike ) => string","blocks":[{"link":"/v5/api/utils/encoding/#Bse58","text":"Return aBytesLike encoded as a string using the base-58 encoding."}]},{"title":"Encoding Utilities -- Base64 -- ethers.utils.base64.decode( textData ) => Uin8Array","blocks":[{"link":"/v5/api/utils/encoding/#Base64","text":"Return a typed Uint8Array representation of textData decoded using base-64 encoding."}]},{"title":"Encoding Utilities -- Base64 -- ethers.utils.base64.encode( aBytesLike ) => string","blocks":[{"link":"/v5/api/utils/encoding/#Base64","text":"Return aBytesLike encoded as a string using the base-64 encoding."}]},{"title":"Encoding Utilities -- Recursive-Length Prefix","blocks":[{"link":"/v5/api/utils/encoding/#rlp--methods","text":"The Recursive Length Prefix encoding is used throughout Ethereum to serialize nested structures of Arrays and data."}]},{"title":"Encoding Utilities -- Recursive-Length Prefix -- ethers.utils.RLP.encode( dataObject ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/encoding/#utils-rlpEncode","text":"Encode a structured Data Object into its RLP-encoded representation."},{"link":"/v5/api/utils/encoding/#utils-rlpEncode","text":"Each Data component may be a valid BytesLike."}]},{"title":"Encoding Utilities -- Recursive-Length Prefix -- ethers.utils.RLP.decode( aBytesLike ) => DataObject","blocks":[{"link":"/v5/api/utils/encoding/#utils.rlpDecode","text":"Decode an RLP-encoded aBytesLike into its structured Data Object."},{"link":"/v5/api/utils/encoding/#utils.rlpDecode","text":"All Data components will be returned as a DataHexString."}]},{"title":"Encoding Utilities -- Recursive-Length Prefix -- Data Object","blocks":[{"link":"/v5/api/utils/encoding/#rlp--dataobject","text":"A Data Object is a recursive structure which is used to serialize many internal structures in Ethereum."},{"link":"/v5/api/utils/encoding/#rlp--dataobject","text":"Each Data Object can either be:."},{"link":"/v5/api/utils/encoding/#rlp--dataobject","text":"Binary Data An Array of Data Objects (i.e."},{"link":"/v5/api/utils/encoding/#rlp--dataobject","text":"this recursively includes Nesting)."}]},{"title":"Encoding Utilities -- Recursive-Length Prefix -- Examples","blocks":[{"link":"/v5/api/utils/encoding/#rlp--dataobject","text":"\"0x1234\" [ \"0x1234\", [ \"0xdead\", \"0xbeef\" ], [ ] ]."}]},{"title":"FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/#FixedNumber","text":"A FixedNumber is a fixed-width (in bits) number with an internal base-10 divisor, which allows it to represent a decimal fractional component."}]},{"title":"FixedNumber -- Creating Instances","blocks":[{"link":"/v5/api/utils/fixednumber/#FixedNumber","text":"The FixedNumber constructor cannot be called directly."},{"link":"/v5/api/utils/fixednumber/#FixedNumber","text":"There are several static methods for creating a FixedNumber."}]},{"title":"FixedNumber -- Creating Instances -- FixedNumber.from( value [ , format = \"fixed\" ] ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns an instance of a FixedNumber for value as a format."}]},{"title":"FixedNumber -- Creating Instances -- FixedNumber.fromBytes( aBytesLike [ , format = \"fixed\" ] ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns an instance of a FixedNumber for value as a format."}]},{"title":"FixedNumber -- Creating Instances -- FixedNumber.fromString( value [ , format = \"fixed\" ] ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns an instance of a FixedNumber for value as a format."},{"link":"/v5/api/utils/fixednumber/","text":"The value must not contain more decimals than the format permits."}]},{"title":"FixedNumber -- Creating Instances -- FixedNumber.fromValue( value [ , decimals = 0 [ , format = \"fixed\" ] ] ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns an instance of a FixedNumber for value with decimals as a format."}]},{"title":"FixedNumber -- Properties -- fixednumber.format","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"The FixedFormat of fixednumber."}]},{"title":"FixedNumber -- Methods -- fixednumber.addUnsafe( otherValue ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue + otherValue."}]},{"title":"FixedNumber -- Methods -- fixednumber.subUnsafe( otherValue ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue - otherValue."}]},{"title":"FixedNumber -- Methods -- fixednumber.mulUnsafe( otherValue ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue × otherValue."}]},{"title":"FixedNumber -- Methods -- fixednumber.divUnsafe( otherValue ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue ÷ otherValue."}]},{"title":"FixedNumber -- Methods -- fixednumber.round( [ decimals = 0 ] ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue rounded to decimals."}]},{"title":"FixedNumber -- Methods -- FixedNumber.isZero( ) => boolean","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns true if and only if the value of FixedNumber is zero."}]},{"title":"FixedNumber -- Methods -- fixednumber.toFormat( format ) => FixedNumber","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a new FixedNumber with the value of fixedvalue with format."}]},{"title":"FixedNumber -- Methods -- fixednumber.toHexString( ) => string","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a HexString representation of fixednumber."}]},{"title":"FixedNumber -- Methods -- fixednumber.toString( ) => string","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a string representation of fixednumber."}]},{"title":"FixedNumber -- Methods -- fixednumber.toUnsafeFloat( ) => float","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns a floating-point JavaScript number value of fixednumber."},{"link":"/v5/api/utils/fixednumber/","text":"Due to rounding in JavaScript numbers, the value is only approximate."}]},{"title":"FixedNumber -- Methods -- FixedNumber.isFixedNumber( value ) => boolean","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"Returns true if and only if value is a FixedNumber."}]},{"title":"FixedNumber -- FixedFormat","blocks":[{"link":"/v5/api/utils/fixednumber/#FixedFormat","text":"A FixedFormat is a simple object which represents a decimal (base-10) Fixed-Point data representation."},{"link":"/v5/api/utils/fixednumber/#FixedFormat","text":"Usually using this class directly is unnecessary, as passing in a Format Strings directly into the FixedNumber will automatically create this."}]},{"title":"FixedNumber -- FixedFormat -- Format Strings","blocks":[{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"A format string is composed of three components, including signed-ness, bit-width and number of decimals."},{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"A signed format string begins with fixed, which an unsigned format string begins with ufixed, followed by the width (in bits) and the number of decimals."},{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"The width must be congruent to 0 mod 8 (i.e."},{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"(width % 8) == 0) and no larger than 256 bits and the number of decimals must be no larger than 80."},{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"For example:."},{"link":"/v5/api/utils/fixednumber/#FixedFormat--strings","text":"fixed128x18 is signed, 128 bits wide and has 18 decimals; this is useful for most purposes fixed32x0 is signed, 32 bits wide and has 0 decimals; this would be the same as a int32_t in C ufixed32x0 is unsigned, 32 bits wide and has 0 decimals; this would be the same as a uint32_t in C fixed is shorthand for fixed128x18 ufixed is shorthand for ufixed128x18."}]},{"title":"FixedNumber -- FixedFormat -- FixedFormat.from( value = \"fixed128x18\" ) => FixedFormat","blocks":[{"link":"/v5/api/utils/fixednumber/#FixedNumber-from","text":"Returns a new instance of a FixedFormat defined by value."},{"link":"/v5/api/utils/fixednumber/#FixedNumber-from","text":"Any valid Format Strings may be passed in as well as any object which has any of signed, width and decimals defined, including a FixedFormat object."}]},{"title":"FixedNumber -- FixedFormat -- fixedFormat.signed => boolean","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"The signed-ness of fixedFormat, true if negative values are supported."}]},{"title":"FixedNumber -- FixedFormat -- fixedFormat.width => number","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"The width (in bits) of fixedFormat."}]},{"title":"FixedNumber -- FixedFormat -- fixedFormat.decimals => number","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"The number of decimal points of fixedFormat."}]},{"title":"FixedNumber -- FixedFormat -- fixedFormat.name => string","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"The name of the fixedFormat, which can be used to recreate the format and is the string that the Solidity language uses to represent this format."}]},{"title":"FixedNumber -- FixedFormat -- \"fixed\"","blocks":[{"link":"/v5/api/utils/fixednumber/","text":"A shorthand for fixed128x80."}]},{"title":"Hashing Algorithms","blocks":[{"link":"/v5/api/utils/hashing/#hashing-algorithms","text":"There are many hashing algorithms used throughout the blockchain space as well as some more complex usages which require utilities to facilitate these common operations."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions","blocks":[{"link":"/v5/api/utils/hashing/#cryptographic-hash-functions","text":"The Cryptographic Hash Functions are a specific family of hash functions."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions -- ethers.utils.id( text ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-id","text":"The Ethereum Identity function computes the KECCAK256 hash of the text bytes."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions -- ethers.utils.keccak256( aBytesLike ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-keccak256","text":"Returns the KECCAK256 digest aBytesLike."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions -- ethers.utils.ripemd160( aBytesLike ) => string< DataHexString< 20 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-ripemd160","text":"Returns the RIPEMD-160 digest of aBytesLike."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions -- ethers.utils.sha256( aBytesLike ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-sha256","text":"Returns the SHA2-256 digest of aBytesLike."}]},{"title":"Hashing Algorithms -- Cryptographic Hash Functions -- ethers.utils.sha512( aBytesLike ) => string< DataHexString< 64 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-sha512","text":"Returns the SHA2-512 digest of aBytesLike."}]},{"title":"Hashing Algorithms -- HMAC -- ethers.utils.computeHmac( algorithm , key , data ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/hashing/#utils-computeHmac","text":"Returns the HMAC of data with key using the Algorithm algorithm."}]},{"title":"Hashing Algorithms -- HMAC -- ethers.utils.SupportedAlgorithm.sha256 => string","blocks":[{"link":"/v5/api/utils/hashing/#utils--hmac-supported-algorithm","text":"Use the SHA2-256 hash algorithm."}]},{"title":"Hashing Algorithms -- HMAC -- ethers.utils.SupportedAlgorithm.sha512 => string","blocks":[{"link":"/v5/api/utils/hashing/#utils--hmac-supported-algorithm","text":"Use the SHA2-512 hash algorithm."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- ethers.utils.hashMessage( message ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-hashMessage","text":"Computes the EIP-191 personal message digest of message."},{"link":"/v5/api/utils/hashing/#utils-hashMessage","text":"Personal messages are converted to UTF-8 bytes and prefixed with \\x19Ethereum Signed Message: and the length of message."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- ethers.utils.namehash( name ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-namehash","text":"Returns the ENS Namehash of name."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- Typed Data Encoder","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"The TypedDataEncoder is used to compute the various encoded data required for EIP-712 signed data."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"Signed data requires a domain, list of structures and their members and the data itself."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"The domain is an object with values for any of the standard domain properties."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"The types is an object with each property being the name of a structure, mapping to an array of field descriptions."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"It should not include the EIP712Domain property unless it is required as a child structure of another."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- Experimental Feature (this exported class name will change)","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"This is still an experimental feature."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"If using it, please specify the exact version of ethers you are using (e.g."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder","text":"spcify \"5.0.18\", not \"^5.0.18\") as the exported class name will be renamed from _TypedDataEncoder to TypedDataEncoder once it has been used in the field a bit."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- ethers.utils._TypedDataEncoder.from( types ) => [TypedDataEncoder]","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-from","text":"Creates a new TypedDataEncoder for types."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder-from","text":"This object is a fairly low-level object that most developers should not require using instances directly."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder-from","text":"Most developers will find the static class methods below the most useful."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.encode( domain , types , values ) => string","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-encode","text":"Encodes the Returns the hashed EIP-712 domain."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.getPayload( domain , types , value ) => any","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-getPayload","text":"Returns the standard payload used by various JSON-RPC eth_signTypedData* calls."},{"link":"/v5/api/utils/hashing/#TypedDataEncoder-getPayload","text":"All domain values and entries in value are normalized and the types are verified."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.getPrimaryType( types ) => string","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-getPrimaryType","text":"Constructs a directed acyclic graph of the types and returns the root type, which can be used as the primaryType for EIP-712 payloads."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.hash( domain , types , values ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-hash","text":"Returns the computed EIP-712 hash."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.hashDomain( domain ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-hashDomain","text":"Returns the hashed EIP-712 domain."}]},{"title":"Hashing Algorithms -- Hashing Helpers -- TypedDataEncoder.resolveNames( domain , types , value , resolveName ) => Promise< any >","blocks":[{"link":"/v5/api/utils/hashing/#TypedDataEncoder-resolveNames","text":"Returns a copy of value, where any leaf value with a type of address will have been recursively replacedwith the value of calling resolveName with that value."}]},{"title":"Hashing Algorithms -- Solidity Hashing Algorithms","blocks":[{"link":"/v5/api/utils/hashing/#utils--solidity-hashing","text":"When using the Solidity abi.packEncoded(...) function, a non-standard tightly packed version of encoding is used."},{"link":"/v5/api/utils/hashing/#utils--solidity-hashing","text":"These functions implement the tightly packing algorithm."}]},{"title":"Hashing Algorithms -- Solidity Hashing Algorithms -- ethers.utils.solidityPack( types , values ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/hashing/#utils-solidityPack","text":"Returns the non-standard encoded values packed according to their respective type in types."}]},{"title":"Hashing Algorithms -- Solidity Hashing Algorithms -- ethers.utils.solidityKeccak256( types , values ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-solidityKeccak256","text":"Returns the KECCAK256 of the non-standard encoded values packed according to their respective type in types."}]},{"title":"Hashing Algorithms -- Solidity Hashing Algorithms -- ethers.utils.soliditySha256( types , values ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hashing/#utils-soliditySha256","text":"Returns the SHA2-256 of the non-standard encoded values packed according to their respective type in types."}]},{"title":"HD Wallet","blocks":[{"link":"/v5/api/utils/hdnode/#hdnodes","text":"The Hierarchal Desterministic (HD) Wallet was a standard created for Bitcoin, but lends itself well to a wide variety of Blockchains which rely on secp256k1 private keys."},{"link":"/v5/api/utils/hdnode/#hdnodes","text":"For a more detailed technical understanding:."},{"link":"/v5/api/utils/hdnode/#hdnodes","text":"BIP-32 - the hierarchal deterministic description BIP-39 - the method used to derive the BIP-32 seed from human-readable sequences of words (i.e."},{"link":"/v5/api/utils/hdnode/#hdnodes","text":"a mnemonic) BIP-44 - a standard defined to make BIP-32 easy to adapt to any future compatible blockchain."}]},{"title":"HD Wallet -- Types -- ethers.utils.defaultPath => \"m/44'/60'/0'/0/0\"","blocks":[{"link":"/v5/api/utils/hdnode/#hdnodes--defaultpath","text":"The default path for Ethereum in an HD Wallet."}]},{"title":"HD Wallet -- Types -- mnemonic.phrase => string","blocks":[{"link":"/v5/api/utils/hdnode/#Mnemonic","text":"The mnemonic phrase for this mnemonic."},{"link":"/v5/api/utils/hdnode/#Mnemonic","text":"It is 12, 15, 18, 21 or 24 words long and separated by the whitespace specified by the locale."}]},{"title":"HD Wallet -- Types -- mnemonic.path => string","blocks":[{"link":"/v5/api/utils/hdnode/#Mnemonic","text":"The HD path for this mnemonic."}]},{"title":"HD Wallet -- Types -- mnemonic.locale => string","blocks":[{"link":"/v5/api/utils/hdnode/#Mnemonic","text":"The language of the wordlist this mnemonic is using."}]},{"title":"HD Wallet -- HDNode -- ethers.HDNode.fromMnemonic( phrase [ , password [ , wordlist ] ] ) => HDNode","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode-fromMnemonic","text":"Return the HDNode for phrase with the optional password and wordlist."}]},{"title":"HD Wallet -- HDNode -- ethers.HDNode.fromSeed( aBytesLike ) => HDNode","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode-fromSeed","text":"Return the HDNode for the seed aBytesLike."}]},{"title":"HD Wallet -- HDNode -- ethers.HDNode.fromExtendedKey( extendedKey ) => HDNode","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode-fromExtendedKey","text":"Return the HDNode for the extendedKey."},{"link":"/v5/api/utils/hdnode/#HDNode-fromExtendedKey","text":"If extendedKey was neutered, the HDNode will only be able to compute addresses and not private keys."}]},{"title":"HD Wallet -- HDNode -- hdNode.privateKey => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The private key for this HDNode."}]},{"title":"HD Wallet -- HDNode -- hdNode.publicKey => string< DataHexString< 33 > >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The (compresses) public key for this HDNode."}]},{"title":"HD Wallet -- HDNode -- hdNode.fingerprint => string< DataHexString< 4 > >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The fingerprint is meant as an index to quickly match parent and children nodes together, however collisions may occur and software should verify matching nodes."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Most developers will not need to use this."}]},{"title":"HD Wallet -- HDNode -- hdNode.parentFingerprint => string< DataHexString< 4 > >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The fingerprint of the parent node."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"See fingerprint for more details."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Most developers will not need to use this."}]},{"title":"HD Wallet -- HDNode -- hdNode.address => string< Address >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The address of this HDNode."}]},{"title":"HD Wallet -- HDNode -- hdNode.mnemonic => Mnemonic","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The mnemonic of this HDNode, if known."}]},{"title":"HD Wallet -- HDNode -- hdNode.path => string","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The path of this HDNode, if known."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"If the mnemonic is also known, this will match mnemonic.path."}]},{"title":"HD Wallet -- HDNode -- hdNode.chainCode => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The chain code is used as a non-secret private key which is then used with EC-multiply to provide the ability to derive addresses without the private key of child non-hardened nodes."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Most developers will not need to use this."}]},{"title":"HD Wallet -- HDNode -- hdNode.index => number","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The index of this HDNode."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"This will match the last component of the path."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Most developers will not need to use this."}]},{"title":"HD Wallet -- HDNode -- hdNode.depth => number","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"The depth of this HDNode."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"This will match the number of components (less one, the m/) of the path."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Most developers will not need to use this."}]},{"title":"HD Wallet -- HDNode -- hdNode.extendedKey => string","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"A serialized string representation of this HDNode."},{"link":"/v5/api/utils/hdnode/#HDNode--properties","text":"Not all properties are included in the serialization, such as the mnemonic and path, so serializing and deserializing (using the fromExtendedKey class method) will result in reduced information."}]},{"title":"HD Wallet -- HDNode -- hdNode.neuter( ) => HDNode","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode-neuter","text":"Return a new instance of hdNode with its private key removed but all other properties preserved."},{"link":"/v5/api/utils/hdnode/#HDNode-neuter","text":"This ensures that the key can not leak the private key of itself or any derived children, but may still be used to compute the addresses of itself and any non-hardened children."}]},{"title":"HD Wallet -- HDNode -- hdNode.derivePath( path ) => HDNode","blocks":[{"link":"/v5/api/utils/hdnode/#HDNode-derivePath","text":"Return a new HDNode which is the child of hdNode found by deriving path."}]},{"title":"HD Wallet -- Other Functions -- ethers.utils.mnemonicToSeed( phrase [ , password ] ) => string< DataHexString< 64 > >","blocks":[{"link":"/v5/api/utils/hdnode/#utils-mnemonicToSeed","text":"Convert a mnemonic phrase to a seed, according to BIP-39."}]},{"title":"HD Wallet -- Other Functions -- ethers.utils.mnemonicToEntropy( phrase [ , wordlist ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/hdnode/#utils-mnemonicToEntropy","text":"Convert a mnemonic phrase to its entropy, according to BIP-39."}]},{"title":"HD Wallet -- Other Functions -- ethers.utils.isValidMnemonic( phrase [ , wordlist ] ) => boolean","blocks":[{"link":"/v5/api/utils/hdnode/#utils-isValidMnemonic","text":"Returns true if phrase is a valid mnemonic phrase, by testing the checksum."}]},{"title":"Utilities","blocks":[{"link":"/v5/api/utils/","text":"These utilities are used extensively within the library, but are also quite useful for application developers."}]},{"title":"Logging","blocks":[{"link":"/v5/api/utils/logger/#logging","text":"These are just a few simple logging utilities provided to simplify and standardize the error facilities across the Ethers library."},{"link":"/v5/api/utils/logger/#logging","text":"The Logger library has zero dependencies and is intentionally very light so it can be easily included in each library."},{"link":"/v5/api/utils/logger/#logging","text":"The Censorship functionality relies on one instance of the Ethers library being included."},{"link":"/v5/api/utils/logger/#logging","text":"In large bundled packages or when npm link is used, this may not be the case."},{"link":"/v5/api/utils/logger/#logging","text":"If you require this functionality, ensure that your bundling is configured properly."}]},{"title":"Logging -- Logger -- new ethers.utils.Logger( version )","blocks":[{"link":"/v5/api/utils/logger/#Logger","text":"Create a new logger which will include version in all errors thrown."}]},{"title":"Logging -- Logger -- Logger.globalLogger( ) => Logger","blocks":[{"link":"/v5/api/utils/logger/#Logger","text":"Returns the singleton global logger."}]},{"title":"Logging -- Logger -- logger.debug( ...args ) => void","blocks":[{"link":"/v5/api/utils/logger/","text":"Log debugging information."}]},{"title":"Logging -- Logger -- logger.info( ...args ) => void","blocks":[{"link":"/v5/api/utils/logger/","text":"Log generic information."}]},{"title":"Logging -- Logger -- logger.warn( ...args ) => void","blocks":[{"link":"/v5/api/utils/logger/","text":"Log warnings."}]},{"title":"Logging -- Logger -- Errors","blocks":[{"link":"/v5/api/utils/logger/#Logger","text":"These functions honor the current Censorship and help create a standard error model for detecting and processing errors within Ethers."}]},{"title":"Logging -- Logger -- logger.makeError( message [ , code = UNKNOWN_ERROR [ , params ] ] ) => Error","blocks":[{"link":"/v5/api/utils/logger/","text":"Create an Error object with message and an optional code and additional params set."},{"link":"/v5/api/utils/logger/","text":"This is useful when an error is needed to be rejected instead of thrown."}]},{"title":"Logging -- Logger -- logger.throwError( message [ , code = UNKNOWN_ERROR [ , params ] ] ) => never","blocks":[{"link":"/v5/api/utils/logger/","text":"Throw an Error with message and an optional code and additional params set."}]},{"title":"Logging -- Logger -- logger.throwArgumentError( message , name , value ) => never","blocks":[{"link":"/v5/api/utils/logger/","text":"Throw an INVALID_ARGUMENT Error with name and value."}]},{"title":"Logging -- Logger -- Usage Validation","blocks":[{"link":"/v5/api/utils/logger/#Logger","text":"There can be used to ensure various properties and actions are safe."}]},{"title":"Logging -- Logger -- logger.checkAbstract( target , kind ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-checkAbstract","text":"If target is kind, throws a UNSUPPORTED_OPERATION error otherwise performs the same operations as checkNew."},{"link":"/v5/api/utils/logger/#Logger-checkAbstract","text":"This is useful for ensuring abstract classes are not being instantiated."}]},{"title":"Logging -- Logger -- logger.checkArgumentCount( count , expectedCount [ , message ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-checkArgumentCount","text":"If count is not equal to expectedCount, throws a MISSING_ARGUMENT or UNEXPECTED_ARGUMENT error."}]},{"title":"Logging -- Logger -- logger.checkNew( target , kind ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-checkNew","text":"If target is not a valid this or target value, throw a MISSING_NEW error."},{"link":"/v5/api/utils/logger/#Logger-checkNew","text":"This is useful to ensure callers of a Class are using new."}]},{"title":"Logging -- Logger -- logger.checkNormalize( message ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-checkNoralize","text":"Check that the environment has a correctly functioning String.normalize."},{"link":"/v5/api/utils/logger/#Logger-checkNoralize","text":"If not, a UNSUPPORTED_OPERATION error is thrown."}]},{"title":"Logging -- Logger -- logger.checkSafeUint53( value [ , message ] ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-checkSafeUint53","text":"If value is not safe as a JavaScript number, throws a NUMERIC_FAULT error."}]},{"title":"Logging -- Logger -- Logger.setCensorship( censor [ , permanent = false ] ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-setCensorship","text":"Set error censorship, optionally preventing errors from being uncensored."},{"link":"/v5/api/utils/logger/#Logger-setCensorship","text":"In production applications, this prevents any error from leaking information by masking the message and values of errors."},{"link":"/v5/api/utils/logger/#Logger-setCensorship","text":"This can impact debugging, making it substantially more difficult."}]},{"title":"Logging -- Logger -- Logger.setLogLevel( logLevel ) => void","blocks":[{"link":"/v5/api/utils/logger/#Logger-setLogLevel","text":"Set the log level, to suppress logging output below a particular log level."}]},{"title":"Logging -- Errors","blocks":[{"link":"/v5/api/utils/logger/#errors","text":"Every error in Ethers has a code value, which is a string that will match one of the following error codes."}]},{"title":"Logging -- Errors -- Logger.errors.NOT_IMPLEMENTED","blocks":[{"link":"/v5/api/utils/logger/#errors--not-implemented","text":"The operation is not implemented."},{"link":"/v5/api/utils/logger/#errors--not-implemented","text":"This may occur when calling a method on a sub-class that has not fully implemented its abstract superclass."}]},{"title":"Logging -- Errors -- Logger.errors.SERVER_ERROR","blocks":[{"link":"/v5/api/utils/logger/#errors--server-error","text":"There was an error communicating with a server."},{"link":"/v5/api/utils/logger/#errors--server-error","text":"This may occur for a number of reasons, for example:."},{"link":"/v5/api/utils/logger/#errors--server-error","text":"a CORS issue; this is quite often the problem and also the hardest to diagnose and fix, so it is very beneficial to familiarize yourself with CORS; some backends allow you configure your CORS, such as the geth command-line or conifguration files or the INFURA and Alchemy dashboards by specifing allowed Origins, methods, etc."},{"link":"/v5/api/utils/logger/#errors--server-error","text":"an SSL issue; for example, if you are trying to connect to a local node via HTTP but are serving the content from a secure HTTPS website a link issue; a firewall is preventing the traffic from reaching the server a server issue; the server is down, or is returning 500 error codes a backend DDoS mitigation proxy; for example, Etherscan operates behind a Cloudflare proxy, which will block traffic if the request is sent via specific User Agents or the client fingerprint is detected as a bot in some cases."}]},{"title":"Logging -- Errors -- Logger.errors.TIMEOUT","blocks":[{"link":"/v5/api/utils/logger/#errors--timeout","text":"A timeout occurred."}]},{"title":"Logging -- Errors -- Logger.errors.UNKNOWN_ERROR","blocks":[{"link":"/v5/api/utils/logger/#errors--unknown-error","text":"A generic unknown error."}]},{"title":"Logging -- Errors -- Logger.errors.UNSUPPORTED_OPERATION","blocks":[{"link":"/v5/api/utils/logger/#errors--unsupported-operation","text":"The operation is not supported."},{"link":"/v5/api/utils/logger/#errors--unsupported-operation","text":"This can happen for a variety reasons, for example:."},{"link":"/v5/api/utils/logger/#errors--unsupported-operation","text":"Some backends do not support certain operations; such as passing a blockTag to an EtherscanProvider for call A Contract object connected to Provider (instead of a Signer) cannot sign or send transactions a Contract connected to a Signer without a Provider is write-only and cannot estimate gas or execute static calls."}]},{"title":"Logging -- Errors -- Logger.errors.BUFFER_OVERRUN","blocks":[{"link":"/v5/api/utils/logger/#errors--buffer-overrun","text":"The amount of data needed is more than the amount of data required, which would cause the data buffer to read past its end."},{"link":"/v5/api/utils/logger/#errors--buffer-overrun","text":"This can occur if a contract erroneously returns invalid ABI-encoded data or RLP data is malformed."}]},{"title":"Logging -- Errors -- Logger.errors.NUMERIC_FAULT","blocks":[{"link":"/v5/api/utils/logger/#errors--numeric-fault","text":"There was an invalid operation done on numeric values."},{"link":"/v5/api/utils/logger/#errors--numeric-fault","text":"Common cases of this occur when there is overflow, arithmetic underflow in fixed numeric types or division by zero."}]},{"title":"Logging -- Errors -- Logger.errors.INVALID_ARGUMENT","blocks":[{"link":"/v5/api/utils/logger/#errors--invalid-argument","text":"The type or value of an argument is invalid."},{"link":"/v5/api/utils/logger/#errors--invalid-argument","text":"This will generally also include the name and value of the argument."},{"link":"/v5/api/utils/logger/#errors--invalid-argument","text":"Any function which accepts sensitive data (such as a private key) will include the string \"[[REDACTED]]\" instead of the value passed in."}]},{"title":"Logging -- Errors -- Logger.errors.MISSING_ARGUMENT","blocks":[{"link":"/v5/api/utils/logger/#errors--missing-argument","text":"An expected parameter was not specified."}]},{"title":"Logging -- Errors -- Logger.errors.MISSING_NEW","blocks":[{"link":"/v5/api/utils/logger/#errors--missing-new","text":"An object is a Class, but is not being called with new."}]},{"title":"Logging -- Errors -- Logger.errors.UNEXPECTED_ARGUMENT","blocks":[{"link":"/v5/api/utils/logger/#errors--unexpected-argument","text":"Too many parameters we passed into a function."}]},{"title":"Logging -- Errors -- Logger.errors.CALL_EXCEPTION","blocks":[{"link":"/v5/api/utils/logger/#errors--call-exception","text":"An attempt to call a blockchain contract (getter) resulted in a revert or other error, such as insufficient gas (out-of-gas) or an invalid opcode."},{"link":"/v5/api/utils/logger/#errors--call-exception","text":"This can also occur during gas estimation or if waiting for a TransactionReceipt which failed during execution."},{"link":"/v5/api/utils/logger/#errors--call-exception","text":"Consult the contract to determine the cause, such as a failed condition in a require statement."},{"link":"/v5/api/utils/logger/#errors--call-exception","text":"The reason property may provide more context for the cause of this error."}]},{"title":"Logging -- Errors -- Logger.errors.INSUFFICIENT_FUNDS","blocks":[{"link":"/v5/api/utils/logger/#errors--insufficient-funds","text":"The account is attempting to make a transaction which costs more than is available."},{"link":"/v5/api/utils/logger/#errors--insufficient-funds","text":"A sending account must have enough ether to pay for the value, the gas limit (at the gas price) as well as the intrinsic cost of data."},{"link":"/v5/api/utils/logger/#errors--insufficient-funds","text":"The intrinsic cost of data is 4 gas for each zero byte and 68 gas for each non-zero byte, as well as 35000 gas if a transaction contains no to property and is therefore expected to create a new account."}]},{"title":"Logging -- Errors -- Logger.errors.NETWORK_ERROR","blocks":[{"link":"/v5/api/utils/logger/#errors--network","text":"An Ethereum network validation error, such as an invalid chain ID."}]},{"title":"Logging -- Errors -- Logger.errors.NONCE_EXPIRED","blocks":[{"link":"/v5/api/utils/logger/#errors--nonce-expired","text":"The nonce being specified has already been used in a mined transaction."}]},{"title":"Logging -- Errors -- Logger.errors.REPLACEMENT_UNDERPRICED","blocks":[{"link":"/v5/api/utils/logger/#errors--replacement-underpriced","text":"When replacing a transaction, by using a nonce which has already been sent to the network, but which has not been mined yet the new transaction must specify a higher gas price."},{"link":"/v5/api/utils/logger/#errors--replacement-underpriced","text":"This error occurs when the gas price is insufficient to bribe the transaction pool to prefer the new transaction over the old one."},{"link":"/v5/api/utils/logger/#errors--replacement-underpriced","text":"Generally, the new gas price should be about 50% + 1 wei more, so if a gas price of 10 gwei was used, the replacement should be 15.000000001 gwei."},{"link":"/v5/api/utils/logger/#errors--replacement-underpriced","text":"This is not enforced by the protocol, as it deals with unmined transactions, and can be configured by each node, however to ensure a transaction is propagated to a miner it is best practice to follow the defaults most nodes have enabled."}]},{"title":"Logging -- Errors -- Logger.errors.UNPREDICTABLE_GAS_LIMIT","blocks":[{"link":"/v5/api/utils/logger/#errors--unpredicatable-gas-limit","text":"When estimating the required amount of gas for a transaction, a node is queried for its best guess."},{"link":"/v5/api/utils/logger/#errors--unpredicatable-gas-limit","text":"If a node is unable (or unwilling) to predict the cost, this error occurs."},{"link":"/v5/api/utils/logger/#errors--unpredicatable-gas-limit","text":"The best remedy for this situation is to specify a gas limit in the transaction manually."},{"link":"/v5/api/utils/logger/#errors--unpredicatable-gas-limit","text":"This error can also indicate that the transaction is expected to fail regardless, if for example an account with no tokens is attempting to send a token."}]},{"title":"Logging -- Log Levels -- Logger.levels.DEBUG","blocks":[{"link":"/v5/api/utils/logger/#Logger-levels","text":"Log all output, including debugging information."}]},{"title":"Logging -- Log Levels -- Logger.levels.INFO","blocks":[{"link":"/v5/api/utils/logger/#Logger-levels","text":"Only log output for informational, warnings and errors."}]},{"title":"Logging -- Log Levels -- Logger.levels.WARNING","blocks":[{"link":"/v5/api/utils/logger/#Logger-levels","text":"Only log output for warnings and errors."}]},{"title":"Logging -- Log Levels -- Logger.levels.ERROR","blocks":[{"link":"/v5/api/utils/logger/#Logger-levels","text":"Only log output for errors."}]},{"title":"Logging -- Log Levels -- Logger.levels.OFF","blocks":[{"link":"/v5/api/utils/logger/#Logger-levels","text":"Do not output any logs."}]},{"title":"Property Utilities","blocks":[{"link":"/v5/api/utils/properties/","text":"This is a collection of utility functions used for handling properties in a platform-safe way."},{"link":"/v5/api/utils/properties/","text":"The next major version of ethers will no longer be compatible with ES3, so many of these will be removed in favor of the built-in options available in ES2015 and above."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.checkProperties( object , check ) => void","blocks":[{"link":"/v5/api/utils/properties/","text":"Checks that object only contains properties included in check, and throws INVALID_ARGUMENT if not."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.deepCopy( anObject ) => any","blocks":[{"link":"/v5/api/utils/properties/","text":"Creates a recursive copy of anObject."},{"link":"/v5/api/utils/properties/","text":"Frozen (i.e."},{"link":"/v5/api/utils/properties/","text":"and other known immutable) objects are copied by reference."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.defineReadOnly( anObject , name , value ) => void","blocks":[{"link":"/v5/api/utils/properties/","text":"Uses the Object.defineProperty method to set a read-only property on an object."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.getStatic( aConstructor , key ) => any","blocks":[{"link":"/v5/api/utils/properties/","text":"Recursively check for a static method key on an inheritance chain from aConstructor to all ancestors."},{"link":"/v5/api/utils/properties/","text":"This is used to mimic behaviour in other languages where this in a static method will also search ancestors."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.resolveProperties( anObject ) => Promise< any >","blocks":[{"link":"/v5/api/utils/properties/#utils-resolveproperties","text":"Retruns a Promise which resolves all child values on anObject."}]},{"title":"Property Utilities -- Log Levels -- ethers.utils.shallowCopy( anObject ) => any","blocks":[{"link":"/v5/api/utils/properties/","text":"Returns a shallow copy of anObject."},{"link":"/v5/api/utils/properties/","text":"This is the same as using Object.assign({ }, anObject)."}]},{"title":"Signing Key -- Log Levels -- new ethers.utils.SigningKey( privateKey )","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey-constructor","text":"Create a new SigningKey for privateKey."}]},{"title":"Signing Key -- Log Levels -- signingKey.privateKey => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"The private key for this Signing Key."}]},{"title":"Signing Key -- Log Levels -- signingKey.publicKey => string< DataHexString< 65 > >","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"The uncompressed public key for this Signing Key."},{"link":"/v5/api/utils/signing-key/#SigningKey","text":"It will always be 65 bytes (130 nibbles) and begins with 0x04."}]},{"title":"Signing Key -- Log Levels -- signingKey.compressedPublicKey => string< DataHexString< 33 > >","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"The compressed public key for this Signing Key."},{"link":"/v5/api/utils/signing-key/#SigningKey","text":"It will always be 33 bytes (66 nibbles) and begins with either 0x02 or 0x03."}]},{"title":"Signing Key -- Log Levels -- signingKey.signDigest( digest ) => Signature","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"Sign the digest and return the signature."}]},{"title":"Signing Key -- Log Levels -- signingKey.computeSharedSecret( otherKey ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"Compute the ECDH shared secret with otherKey."},{"link":"/v5/api/utils/signing-key/#SigningKey","text":"The otherKey may be either a public key or a private key, but generally will be a public key from another party."},{"link":"/v5/api/utils/signing-key/#SigningKey","text":"It is best practice that each party computes the hash of this before using it as a symmetric key."}]},{"title":"Signing Key -- Log Levels -- SigningKey.isSigningKey( anObject ) => boolean","blocks":[{"link":"/v5/api/utils/signing-key/#SigningKey","text":"Returns true if anObject is a SigningKey."}]},{"title":"Signing Key -- Other Functions -- ethers.utils.verifyMessage( message , signature ) => string< Address >","blocks":[{"link":"/v5/api/utils/signing-key/#utils-verifyMessage","text":"Returns the address that signed message producing signature."},{"link":"/v5/api/utils/signing-key/#utils-verifyMessage","text":"The signature may have a non-canonical v (i.e."},{"link":"/v5/api/utils/signing-key/#utils-verifyMessage","text":"does not need to be 27 or 28), in which case it will be normalized to compute the `recoveryParam` which will then be used to compute the address; this allows systems which use the v to encode additional data (such as EIP-155) to be used since the v parameter is still completely non-ambiguous."}]},{"title":"Signing Key -- Other Functions -- ethers.utils.verifyTypedData( domain , types , value , signature ) => string< Address >","blocks":[{"link":"/v5/api/utils/signing-key/#utils-verifyTypedData","text":"Returns the address that signed the EIP-712 value for the domain and types to produce the signature."}]},{"title":"Signing Key -- Other Functions -- ethers.utils.recoverPublicKey( digest , signature ) => string< DataHexString< 65 > >","blocks":[{"link":"/v5/api/utils/signing-key/#utils-recoverPublicKey","text":"Returns the uncompressed public key (i.e."},{"link":"/v5/api/utils/signing-key/#utils-recoverPublicKey","text":"the first byte will be 0x04) of the private key that was used to sign digest which gave the signature."}]},{"title":"Signing Key -- Other Functions -- ethers.utils.computePublicKey( key [ , compressed = false ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/signing-key/#utils-computePublicKey","text":"Computes the public key of key, optionally compressing it."},{"link":"/v5/api/utils/signing-key/#utils-computePublicKey","text":"The key can be any form of public key (compressed or uncompressed) or a private key."}]},{"title":"Strings","blocks":[{"link":"/v5/api/utils/strings/#strings","text":"A String is a representation of a human-readable input of output, which are often taken for granted."},{"link":"/v5/api/utils/strings/#strings","text":"When dealing with blockchains, properly handling human-readable and human-provided data is important to prevent loss of funds, assets, incorrect permissions, etc."}]},{"title":"Strings -- Bytes32String","blocks":[{"link":"/v5/api/utils/strings/#Bytes32String","text":"A string in Solidity is length prefixed with its 256-bit (32 byte) length, which means that even short strings require 2 words (64 bytes) of storage."},{"link":"/v5/api/utils/strings/#Bytes32String","text":"In many cases, we deal with short strings, so instead of prefixing the string with its length, we can null-terminate it and fit it in a single word (32 bytes)."},{"link":"/v5/api/utils/strings/#Bytes32String","text":"Since we need only a single byte for the null termination, we can store strings up to 31 bytes long in a word."}]},{"title":"Strings -- Bytes32String -- Note","blocks":[{"link":"/v5/api/utils/strings/#Bytes32String","text":"Strings that are 31 bytes long may contain fewer than 31 characters, since UTF-8 requires multiple bytes to encode international characters."}]},{"title":"Strings -- Bytes32String -- ethers.utils.parseBytes32String( aBytesLike ) => string","blocks":[{"link":"/v5/api/utils/strings/#utils-parseBytes32","text":"Returns the decoded string represented by the Bytes32 encoded data."}]},{"title":"Strings -- Bytes32String -- ethers.utils.formatBytes32String( text ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/strings/#utils-formatBytes32","text":"Returns a bytes32 string representation of text."},{"link":"/v5/api/utils/strings/#utils-formatBytes32","text":"If the length of text exceeds 31 bytes, it will throw an error."}]},{"title":"Strings -- UTF-8 Strings -- ethers.utils.toUtf8Bytes( text [ , form = current ] ) => Uint8Array","blocks":[{"link":"/v5/api/utils/strings/#utils-toUtf8Bytes","text":"Returns the UTF-8 bytes of text, optionally normalizing it using the UnicodeNormalizationForm form."}]},{"title":"Strings -- UTF-8 Strings -- ethers.utils.toUtf8CodePoints( text [ , form = current ] ) => Array< number >","blocks":[{"link":"/v5/api/utils/strings/#utils-toUtf8CodePoints","text":"Returns the Array of codepoints of text, optionally normalized using the UnicodeNormalizationForm form."}]},{"title":"Strings -- UTF-8 Strings -- Note","blocks":[{"link":"/v5/api/utils/strings/#strings-utf8","text":"This function correctly splits each user-perceived character into its codepoint, accounting for surrogate pairs."},{"link":"/v5/api/utils/strings/#strings-utf8","text":"This should not be confused with string.split(\"\"), which destroys surrogate pairs, splitting between each UTF-16 codeunit instead."}]},{"title":"Strings -- UTF-8 Strings -- ethers.utils.toUtf8String( aBytesLike [ , onError = error ] ) => string","blocks":[{"link":"/v5/api/utils/strings/#utils-toUtf8String","text":"Returns the string represented by the UTF-8 bytes of aBytesLike."},{"link":"/v5/api/utils/strings/#utils-toUtf8String","text":"The onError is a Custom UTF-8 Error function and if not specified it defaults to the error function, which throws an error on any UTF-8 error."}]},{"title":"Strings -- UnicodeNormalizationForm","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"There are several commonly used forms when normalizing UTF-8 data, which allow strings to be compared or hashed in a stable way."}]},{"title":"Strings -- UnicodeNormalizationForm -- ethers.utils.UnicodeNormalizationForm.current","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"Maintain the current normalization form."}]},{"title":"Strings -- UnicodeNormalizationForm -- ethers.utils.UnicodeNormalizationForm.NFC","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"The Composed Normalization Form."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"This form uses single codepoints which represent the fully composed character."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"For example, the é is a single codepoint, 0x00e9."}]},{"title":"Strings -- UnicodeNormalizationForm -- ethers.utils.UnicodeNormalizationForm.NFD","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"The Decomposed Normalization Form."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"This form uses multiple codepoints (when necessary) to compose a character."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"For example, the é is made up of two codepoints, \"0x0065\" (which is the letter \"e\") and \"0x0301\" which is a special diacritic UTF-8 codepoint which indicates the previous character should have an acute accent."}]},{"title":"Strings -- UnicodeNormalizationForm -- ethers.utils.UnicodeNormalizationForm.NFKC","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"The Composed Normalization Form with Canonical Equivalence."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"The Canonical representation folds characters which have the same syntactic representation but different semantic meaning."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"For example, the Roman Numeral I, which has a UTF-8 codepoint \"0x2160\", is folded into the capital letter I, \"0x0049\"."}]},{"title":"Strings -- UnicodeNormalizationForm -- ethers.utils.UnicodeNormalizationForm.NFKD","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"The Decomposed Normalization Form with Canonical Equivalence."},{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"See NFKC for more an example."}]},{"title":"Strings -- UnicodeNormalizationForm -- Note","blocks":[{"link":"/v5/api/utils/strings/#strings--unicode-normalization-form","text":"Only certain specified characters are folded in Canonical Equivalence, and thus it should not be considered a method to achieve any level of security from homoglyph attacks."}]},{"title":"Strings -- Custom UTF-8 Error Handling","blocks":[{"link":"/v5/api/utils/strings/#strings--error-handling","text":"When converting a string to its codepoints, there is the possibility of invalid byte sequences."},{"link":"/v5/api/utils/strings/#strings--error-handling","text":"Since certain situations may need specific ways to handle UTF-8 errors, a custom error handling function can be used, which has the signature:."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- errorFunction( reason , offset , bytes , output [ , badCodepoint ] ) => number","blocks":[{"link":"/v5/api/utils/strings/#strings--error-handling","text":"The reason is one of the UTF-8 Error Reasons, offset is the index into bytes where the error was first encountered, output is the list of codepoints already processed (and may be modified) and in certain Error Reasons, the badCodepoint indicates the currently computed codepoint, but which would be rejected because its value is invalid."},{"link":"/v5/api/utils/strings/#strings--error-handling","text":"This function should return the number of bytes to skip past keeping in mind the value at offset will already be consumed."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.BAD_PREFIX","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"A byte was encountered which is invalid to begin a UTF-8 byte sequence with."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.MISSING_CONTINUE","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"A UTF-8 sequence was begun, but did not have enough continuation bytes for the sequence."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"For this error the ofset is the index at which a continuation byte was expected."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.OUT_OF_RANGE","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"The computed codepoint is outside the range for valid UTF-8 codepoints (i.e."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"the codepoint is greater than 0x10ffff)."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"This reason will pass the computed badCountpoint into the custom error function."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.OVERLONG","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"Due to the way UTF-8 allows variable length byte sequences to be used, it is possible to have multiple representations of the same character, which means overlong sequences allow for a non-distinguished string to be formed, which can impact security as multiple strings that are otherwise equal can have different hashes."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"Generally, overlong sequences are an attempt to circumvent some part of security, but in rare cases may be produced by lazy libraries or used to encode the null terminating character in a way that is safe to include in a char*."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"This reason will pass the computed badCountpoint into the custom error function, which is actually a valid codepoint, just one that was arrived at through unsafe methods."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.OVERRUN","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"The string does not have enough characters remaining for the length of this sequence."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.UNEXPECTED_CONTINUE","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"This error is similar to BAD_PREFIX, since a continuation byte cannot begin a valid sequence, but many may wish to process this differently."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"However, most developers would want to trap this and perform the same operation as a BAD_PREFIX."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorReason.UTF16_SURROGATE","blocks":[{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"The computed codepoint represents a value reserved for UTF-16 surrogate pairs."},{"link":"/v5/api/utils/strings/#strings--error-reasons","text":"This reason will pass the computed surrogate half badCountpoint into the custom error function."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- Provided UTF-8 Error Handling Functions","blocks":[{"link":"/v5/api/utils/strings/#strings--error-handling","text":"There are already several functions available for the most common situations."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorFuncs.error","blocks":[{"link":"/v5/api/utils/strings/#strings--Utf8Error","text":"The will throw an error on any error with a UTF-8 sequence, including invalid prefix bytes, overlong sequences, UTF-16 surrogate pairs."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorFuncs.ignore","blocks":[{"link":"/v5/api/utils/strings/#strings--Utf8Ignore","text":"This will drop all invalid sequences (by consuming invalid prefix bytes and any following continuation bytes) from the final string as well as permit overlong sequences to be converted to their equivalent string."}]},{"title":"Strings -- Custom UTF-8 Error Handling -- ethers.utils.Utf8ErrorFuncs.replace","blocks":[{"link":"/v5/api/utils/strings/#strings--Utf8Replace","text":"This will replace all invalid sequences (by consuming invalid prefix bytes and any following continuation bytes) with the UTF-8 Replacement Character, (i.e."},{"link":"/v5/api/utils/strings/#strings--Utf8Replace","text":"U+FFFD)."}]},{"title":"Transactions -- Types -- UnsignedTransaction","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"An unsigned transaction represents a transaction that has not been signed and its values are flexible as long as they are not ambiguous."}]},{"title":"Transactions -- Types -- unsignedTransaction.to => string< Address >","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The address this transaction is to."}]},{"title":"Transactions -- Types -- unsignedTransaction.nonce => number","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The nonce of this transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.gasLimit => BigNumberish","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The gas limit for this transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.gasPrice => BigNumberish","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The gas price for this transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.data => BytesLike","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The data for this transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.value => BigNumberish","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The value (in wei) for this transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.chainId => number","blocks":[{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"The chain ID for this transaction."},{"link":"/v5/api/utils/transactions/#UnsignedTransaction","text":"If the chain ID is 0 or null, then EIP-155 is disabled and legacy signing is used, unless overridden in a signature."}]},{"title":"Transactions -- Types -- Transaction","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"A generic object to represent a transaction."}]},{"title":"Transactions -- Types -- transaction.hash => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The transaction hash, which can be used as an identifier for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"This is the keccak256 of the serialized RLP encoded representation of transaction."}]},{"title":"Transactions -- Types -- unsignedTransaction.to => string< Address >","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The address transaction is to."}]},{"title":"Transactions -- Types -- transaction.from => string< Address >","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The address transaction is from."}]},{"title":"Transactions -- Types -- transaction.nonce => number","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The nonce for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"Each transaction sent to the network from an account includes this, which ensures the order and non-replayability of a transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"This must be equal to the current number of transactions ever sent to the network by the from address."}]},{"title":"Transactions -- Types -- transaction.gasLimit => BigNumber","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The gas limit for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"An account must have enough ether to cover the gas (at the specified gasPrice)."},{"link":"/v5/api/utils/transactions/#Transaction","text":"Any unused gas is refunded at the end of the transaction, and if there is insufficient gas to complete execution, the effects of the transaction are reverted, but the gas is fully consumed and an out-of-gas error occurs."}]},{"title":"Transactions -- Types -- transaction.gasPrice => BigNumber","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The price (in wei) per unit of gas for transaction."}]},{"title":"Transactions -- Types -- transaction.data => BytesLike","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The data for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"In a contract this is the call data."}]},{"title":"Transactions -- Types -- transaction.value => BigNumber","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The value (in wei) for transaction."}]},{"title":"Transactions -- Types -- transaction.chainId => number","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The chain ID for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"This is used as part of EIP-155 to prevent replay attacks on different networks."},{"link":"/v5/api/utils/transactions/#Transaction","text":"For example, if a transaction was made on ropsten with an account also used on homestead, it would be possible for a transaction signed on ropsten to be executed on homestead, which is likely unintended."},{"link":"/v5/api/utils/transactions/#Transaction","text":"There are situations where replay may be desired, however these are very rare and it is almost always recommended to specify the chain ID."}]},{"title":"Transactions -- Types -- transaction.r => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The r portion of the elliptic curve signatures for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"This is more accurately, the x coordinate of the point r (from which the y can be computed, along with v)."}]},{"title":"Transactions -- Types -- transaction.s => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The s portion of the elliptic curve signatures for transaction."}]},{"title":"Transactions -- Types -- transaction.v => number","blocks":[{"link":"/v5/api/utils/transactions/#Transaction","text":"The v portion of the elliptic curve signatures for transaction."},{"link":"/v5/api/utils/transactions/#Transaction","text":"This is used to refine which of the two possible points a given x-coordinate can have, and in EIP-155 is additionally used to encode the chain ID into the serialized transaction."}]},{"title":"Transactions -- Functions -- ethers.utils.parseTransaction( aBytesLike ) => Transaction","blocks":[{"link":"/v5/api/utils/transactions/#utils-parseTransaction","text":"Parses the transaction properties from a serialized transaction."}]},{"title":"Transactions -- Functions -- ethers.utils.serializeTransaction( tx [ , signature ] ) => string< DataHexString >","blocks":[{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"Computes the serialized transaction, optionally serialized with the a signature."},{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"If signature is not present, the unsigned serialized transaction is returned, which can be used to compute the hash necessary to sign."},{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"This function uses EIP-155 if a chainId is provided, otherwise legacy serialization is used."},{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"It is highly recommended to always specify a chainId."},{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"If signature includes a chain ID (explicitly or implicitly by using an EIP-155 v or _vs) it will be used to compute the chain ID."},{"link":"/v5/api/utils/transactions/#utils-serializeTransaction","text":"If there is a mismatch between the chain ID of transaction and signature an error is thrown."}]},{"title":"Web Utilities -- Functions -- ethers.utils.fetchJson( urlOrConnectionInfo [ , json [ , processFunc ] ] ) => Promise< any >","blocks":[{"link":"/v5/api/utils/web/#utils-fetchJson","text":"Fetch and parse the JSON content from urlOrConnectionInfo, with the optional body json and optionally processing the result with processFun before returning it."}]},{"title":"Web Utilities -- Functions -- ethers.utils.poll( pollFunc [ , options ] ) => Promise< any >","blocks":[{"link":"/v5/api/utils/web/#utils-poll","text":"Repeatedly call pollFunc using the PollOptions until it returns a value other than undefined."}]},{"title":"Web Utilities -- Functions -- connection.url => string","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The URL to connect to."}]},{"title":"Web Utilities -- Functions -- connection.user => string","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The username to use for Basic Authentication."},{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The default is null (i.e."},{"link":"/v5/api/utils/web/#ConnectionInfo","text":"do not use basic authentication)."}]},{"title":"Web Utilities -- Functions -- connection.password => string","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The password to use for Basic Authentication."},{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The default is null (i.e."},{"link":"/v5/api/utils/web/#ConnectionInfo","text":"do not use basic authentication)."}]},{"title":"Web Utilities -- Functions -- connection.allowInsecureAuthentication => boolean","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"Allow Basic Authentication over non-secure HTTP."},{"link":"/v5/api/utils/web/#ConnectionInfo","text":"The default is false."}]},{"title":"Web Utilities -- Functions -- connection.timeout => number","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"How long to wait before rejecting with a timeout error."}]},{"title":"Web Utilities -- Functions -- connection.headers => {[key:string]:string}","blocks":[{"link":"/v5/api/utils/web/#ConnectionInfo","text":"Additional headers to include in the connection."}]},{"title":"Web Utilities -- Functions -- options.timeout => number","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"The amount of time allowed to elapse before triggering a timeout error."}]},{"title":"Web Utilities -- Functions -- options.floor => number","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"The minimum time limit to allow for Exponential Backoff."},{"link":"/v5/api/utils/web/#PollOptions","text":"The default is 0s."}]},{"title":"Web Utilities -- Functions -- options.ceiling => number","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"The maximum time limit to allow for Exponential Backoff."},{"link":"/v5/api/utils/web/#PollOptions","text":"The default is 10s."}]},{"title":"Web Utilities -- Functions -- options.interval => number","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"The interval used during Exponential Backoff calculation."},{"link":"/v5/api/utils/web/#PollOptions","text":"The default is 250ms."}]},{"title":"Web Utilities -- Functions -- options.retryLimit => number","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"The number of times to retry in the event of an error or undefined is returned."}]},{"title":"Web Utilities -- Functions -- options.onceBlock => Provider","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"If this is specified, the polling will wait on new blocks from provider before attempting the pollFunc again."}]},{"title":"Web Utilities -- Functions -- options.oncePoll => Provider","blocks":[{"link":"/v5/api/utils/web/#PollOptions","text":"If this is specified, the polling will occur on each poll cycle of provider before attempting the pollFunc again."}]},{"title":"Wordlists -- Wordlist -- wordlist.locale => string","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"The locale for this wordlist."}]},{"title":"Wordlists -- Wordlist -- wordlist.getWord( index ) => string","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Returns the word at index."}]},{"title":"Wordlists -- Wordlist -- wordlist.getWordIndex( word ) => number","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Returns the index of word within the wordlist."}]},{"title":"Wordlists -- Wordlist -- wordlist.split( mnemonic ) => Array< string >","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Returns the mnemonic split into each individual word, according to a locale's valid whitespace character set."}]},{"title":"Wordlists -- Wordlist -- wordlist.join( words ) => string","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Returns the mnemonic by joining words together using the whitespace that is standard for the locale."}]},{"title":"Wordlists -- Wordlist -- Wordlist.check( wordlists ) => string< DataHexString< 32 > >","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Checks that all words map both directions correctly and return the hash of the lists."},{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Sub-classes should use this to validate the wordlist is correct against the official wordlist hash."}]},{"title":"Wordlists -- Wordlist -- Wordlist.register( wordlist [ , name ] ) => void","blocks":[{"link":"/v5/api/utils/wordlists/#Wordlist","text":"Register a wordlist with the list of wordlists, optionally overriding the registered name."}]},{"title":"Wordlists -- Languages","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The official wordlists available at `ethers.wordlists`."},{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"In the browser, only the english language is available by default; to include the others (which increases the size of the library), see the dist files in the `ethers` package."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.cz => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Czech Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.en => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The English Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.es => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Spanish Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.fr => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The French Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.it => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Italian Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.ja => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Japanese Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.ko => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Korean Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.zh_cn => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Simplified Chinese Wordlist."}]},{"title":"Wordlists -- Languages -- ethers.wordlists.zh_tw => Wordlist","blocks":[{"link":"/v5/api/utils/wordlists/#wordlists--languages","text":"The Traditional Chinese Wordlist."}]},{"title":"Provider API Keys","blocks":[{"link":"/v5/api-keys/#api-keys","text":"( TL; DR – sign up for your own API keys with the links below to improve your application performance )."},{"link":"/v5/api-keys/#api-keys","text":"When using a Provider backed by an API service (such as Alchemy, Etherscan or INFURA), the service requires an API key, which allows each service to track individual projects and their usage and permissions."},{"link":"/v5/api-keys/#api-keys","text":"The ethers library offers default API keys for each service, so that each Provider works out-of-the-box."},{"link":"/v5/api-keys/#api-keys","text":"These API keys are provided as a community resource by the backend services for low-traffic projects and for early prototyping."},{"link":"/v5/api-keys/#api-keys","text":"Since these API keys are shared by all users (that have not acquired their own API key), they are aggressively throttled which means retries occur more frequently and the responses are slower."},{"link":"/v5/api-keys/#api-keys","text":"It is highly recommended that you sign up for a free API key from each service for their free tier, which (depending on the service) includes many advantages:."},{"link":"/v5/api-keys/#api-keys","text":"a much higher request rate and concurrent request limit faster responses with fewer retries and timeouts useful metric tracking for performance tuning and to analyze your customer behaviour more advanced APIs, such as archive data or advanced log queries."}]},{"title":"Provider API Keys -- Etherscan","blocks":[{"link":"/v5/api-keys/#api-keys--etherscan","text":"Etherscan is an Ethereum block explorer, which is possibly the most useful developer tool for building and debugging Ethereum applications."},{"link":"/v5/api-keys/#api-keys--etherscan","text":"They offer an extensive collection of API endpoints which provide all the operations required to interact with the Ethereum Blockchain."},{"link":"/v5/api-keys/#api-keys--etherscan","text":"Sign up for a free API key on Etherscan."},{"link":"/v5/api-keys/#api-keys--etherscan","text":"Benefits:."},{"link":"/v5/api-keys/#api-keys--etherscan","text":"higher rate limit (since you are not using the shared rate limit) customer usage metrics."}]},{"title":"Provider API Keys -- INFURA","blocks":[{"link":"/v5/api-keys/#api-keys--infura","text":"The INFURA service has been around for quite some time and is very robust and reliable and highly recommended."},{"link":"/v5/api-keys/#api-keys--infura","text":"They offer a standard JSON-RPC interface and a WebSocket interface, which makes interaction with standard tools versatile, simple and straight forward."},{"link":"/v5/api-keys/#api-keys--infura","text":"Sign up for a free Project ID on INFURA."},{"link":"/v5/api-keys/#api-keys--infura","text":"Benefits:."},{"link":"/v5/api-keys/#api-keys--infura","text":"higher rate limit customer usage metrics access to archive data (requires paid upgrade)."}]},{"title":"Provider API Keys -- Alchemy","blocks":[{"link":"/v5/api-keys/#api-keys--alchemy","text":"The Alchemy service has been around a few years and is also very robust and reliable."},{"link":"/v5/api-keys/#api-keys--alchemy","text":"They offer a standard JSON-RPC interface and a WebSocket interface, as well as a collection of advanced APIs for interacting with tokens and to assist with debugging."},{"link":"/v5/api-keys/#api-keys--alchemy","text":"Sign up for a free API key on Alchemy."},{"link":"/v5/api-keys/#api-keys--alchemy","text":"Benefits:."},{"link":"/v5/api-keys/#api-keys--alchemy","text":"higher rate limit customer usage metrics access to advanced token balance and metadata APIs access to advanced debugging trace and revert reason APIs."}]},{"title":"Provider API Keys -- Pocket Gateway","blocks":[{"link":"/v5/api-keys/#api-keys--pocket-gateway","text":"Sign up for a free API key on Pocket."},{"link":"/v5/api-keys/#api-keys--pocket-gateway","text":"Benefits:."},{"link":"/v5/api-keys/#api-keys--pocket-gateway","text":"customer usage metrics decentralized Access to Blockchain Infrastructure Stake as opposed to paying a monthly fee Highly redundant global set of nodes incentivized by cryptoeconomic incentives."}]},{"title":"Provider API Keys -- Creating a Default Provider","blocks":[{"link":"/v5/api-keys/#api-keys--getDefaultProvider","text":"The default provider connects to multiple backends and verifies their results internally, making it simple to have a high level of trust in third-party services."},{"link":"/v5/api-keys/#api-keys--getDefaultProvider","text":"A second optional parameter allows API keys to be specified to each Provider created internally and any API key omitted will fallback onto using the default API key for that service."},{"link":"/v5/api-keys/#api-keys--getDefaultProvider","text":"It is highly recommended that you provide an API for each service, to maximize your applications performance."}]},{"title":"Assembler","blocks":[{"link":"/v5/cli/asm/#cli-asm","text":"The assembler Command-Line utility allows you to assemble the Ethers ASM Dialect into deployable EVM bytecode and disassemble EVM bytecode into human-readable mnemonics."}]},{"title":"Assembler -- Example Input Files -- Note: Bytecode File Syntax","blocks":[{"link":"/v5/cli/asm/","text":"A bin file may be made up of multiple blocks of bytecode, each may optionally begin with a 0x prefix, all of which must be of even length (since bytes are required, with 2 nibbles per byte)."},{"link":"/v5/cli/asm/","text":"All whitespace is ignored."}]},{"title":"Assembler -- Assembler Examples","blocks":[{"link":"/v5/cli/asm/#cli-asm","text":"The assembler converts an Ethers ASM Dialect into bytecode by running multiple passes of an assemble stage, each pass more closely approximating the final result."},{"link":"/v5/cli/asm/#cli-asm","text":"This allows small portions of the bytecode to be massaged and tweaked until the bytecode stabilizes."},{"link":"/v5/cli/asm/#cli-asm","text":"This allows for more compact jump destinations and for code to include more advanced meta-programming techniques."}]},{"title":"Assembler -- Assembler Examples -- --define KEY=VALUE or --define FLAG","blocks":[{"link":"/v5/cli/asm/","text":"This allows key/value pairs (where the value is a string) and flags (which the value is true) to be passed along to the assembler, which can be accessed in Scripting Blocks, such as {{= defined.someKey }}."}]},{"title":"Assembler -- Assembler Examples -- --ignore-warnings","blocks":[{"link":"/v5/cli/asm/","text":"By default any warning will be treated like an error."},{"link":"/v5/cli/asm/","text":"This enabled by-passing warnings."}]},{"title":"Assembler -- Assembler Examples -- --pic","blocks":[{"link":"/v5/cli/asm/","text":"When a program is assembled, the labels are usually given as an absolute byte position, which can be jumped to for loops and control flow."},{"link":"/v5/cli/asm/","text":"This means that a program must be installed at a specific location."},{"link":"/v5/cli/asm/","text":"Byt specifying the Position Independent Code flag, code will be generated in a way such that all offsets are relative, allowing the program to be moved without any impact to its logic."},{"link":"/v5/cli/asm/","text":"This does incur an additional gas cost of 8 gas per offset access though."}]},{"title":"Assembler -- Assembler Examples -- --target LABEL","blocks":[{"link":"/v5/cli/asm/","text":"All programs have a root scope named _ which is by default assembled."},{"link":"/v5/cli/asm/","text":"This option allows another labelled target (either a Scopes or a Data Segment to be assembled instead."},{"link":"/v5/cli/asm/","text":"The entire program is still assembled per usual, so this only impacts which part of the program is output."}]},{"title":"Assembler -- Disassembler Examples","blocks":[{"link":"/v5/cli/asm/#cli-asm","text":"A disassembled program shows offsets and mnemonics for the given bytecode."},{"link":"/v5/cli/asm/#cli-asm","text":"This format may change in the future to be more human-readable."}]},{"title":"Ethereum Naming Service -- Examples","blocks":[{"link":"/v5/cli/ens/","text":"TODO examples."}]},{"title":"Sandbox Utility","blocks":[{"link":"/v5/cli/ethers/","text":"The sandbox utility provides a simple way to use the most common ethers utilities required during learning, debugging and managing interactions with the Ethereum network."},{"link":"/v5/cli/ethers/","text":"If no command is given, it will enter a REPL interface with many of the ethers utilities already exposed."}]},{"title":"Sandbox Utility -- Examples -- Scripting","blocks":[{"link":"/v5/cli/ethers/#cliex-scripting","text":"The eval command can be used to execute simple one-line scripts from the command line to be passed into other commands or stored in script environment variables."}]},{"title":"Sandbox Utility -- Examples -- Using Mnemonics (with a password)","blocks":[{"link":"/v5/cli/ethers/#cliex-mnemonicpassword","text":"All mnemonic phrases have a password, but the default is to use the empty string (i.e."},{"link":"/v5/cli/ethers/#cliex-mnemonicpassword","text":"\"\") as the password."},{"link":"/v5/cli/ethers/#cliex-mnemonicpassword","text":"If you have a password on your mnemonic, the --mnemonic-password will prompt for the password to use to decrypt the account."}]},{"title":"Sandbox Utility -- Examples -- Using Mnemonics (with experimental memory-hard passwords)","blocks":[{"link":"/v5/cli/ethers/#cliex-mnemonicpassword-xxx","text":"The --xxx-mnemonic-password is similar to the --mnemonic-password options, which uses a password to decrypt the account for a mnemonic, however it passes the password through the scrypt password-based key derivation function first, which is intentionally slow and makes a brute-force attack far more difficult."}]},{"title":"Sandbox Utility -- Examples -- Note","blocks":[{"link":"/v5/cli/ethers/#cliex-mnemonicpassword-xxx","text":"This is still an experimental feature (hence the xxx)."}]},{"title":"Making Your Own","blocks":[{"link":"/v5/cli/plugin/#cli-diy","text":"The cli library is meant to make it easy to create command line utilities of your own."}]},{"title":"Making Your Own -- CLI","blocks":[{"link":"/v5/cli/plugin/#cli-cli","text":"A CLI handles parsing all the command-line flags, options and arguments and instantiates a Plugin to process the command."},{"link":"/v5/cli/plugin/#cli-cli","text":"A CLI may support multiple Plugin's in which case the first argument is used to determine which to run (or if no arguments, the default plugin will be selected) or may be designed to be standalone, in which case exactly one Plugin will be used and no command argument is allowed."}]},{"title":"Making Your Own -- CLI -- addPlugin( command , pluginClass ) => void","blocks":[{"link":"/v5/cli/plugin/#cli-addplugin","text":"Add a plugin class for the command."},{"link":"/v5/cli/plugin/#cli-addplugin","text":"After all options and flags have been consumed, the first argument will be consumed and the associated plugin class will be instantiated and run."}]},{"title":"Making Your Own -- CLI -- setPlugin( pluginClass ) => void","blocks":[{"link":"/v5/cli/plugin/#cli-setplugin","text":"Set a dedicated Plugin class which will handle all input."},{"link":"/v5/cli/plugin/#cli-setplugin","text":"This may not be used in conjunction with addPlugin and will not automatically accept a command from the arguments."}]},{"title":"Making Your Own -- CLI -- showUsage( [ message = \"\" [ , status = 0 ] ] ) => never","blocks":[{"link":"/v5/cli/plugin/#cli-showusage","text":"Shows the usage help screen for the CLI and terminates."}]},{"title":"Making Your Own -- CLI -- run( args ) => Promise< void >","blocks":[{"link":"/v5/cli/plugin/#cli-run","text":"Usually the value of args passed in will be process.argv.slice(2)."}]},{"title":"Making Your Own -- Plugin","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"Each Plugin manages each command of a CLI and is executed in phases."},{"link":"/v5/cli/plugin/#cli-plugin","text":"If the usage (i.e."},{"link":"/v5/cli/plugin/#cli-plugin","text":"help) of a CLI is requested, the static methods getHelp and getOptionHelp are used to generate the help screen."},{"link":"/v5/cli/plugin/#cli-plugin","text":"Otherwise, a plugin is instantiated and the prepareOptions is called."},{"link":"/v5/cli/plugin/#cli-plugin","text":"Each plugin must call super.prepareOptions, otherwise the basic options are not yet processed."},{"link":"/v5/cli/plugin/#cli-plugin","text":"During this time a Plugin should consume all the flags and options it understands, since any left over flags or options will cause the CLI to bail and issue an unknown option error."},{"link":"/v5/cli/plugin/#cli-plugin","text":"This should throw if a value for a given option is invalid or some combination of options and flags is not allowed."},{"link":"/v5/cli/plugin/#cli-plugin","text":"Once the prepareOptions is complete (the returned promise is resolved), the prepareArguments is called."},{"link":"/v5/cli/plugin/#cli-plugin","text":"This should validate the number of arguments expected and throw an error if there are too many or too few arguments or if any arguments do not make sense."},{"link":"/v5/cli/plugin/#cli-plugin","text":"Once the prepareArguments is complete (the returned promise is resolved), the run is called."}]},{"title":"Making Your Own -- Plugin -- plugin.network => Network","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The network this plugin is running for."}]},{"title":"Making Your Own -- Plugin -- plugin.provider => Provider","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The provider for this plugin is running for."}]},{"title":"Making Your Own -- Plugin -- plugin.accounts => Array< Signer >","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The accounts passed into the plugin using --account, --account-rpc and --account-void which this plugin can use."}]},{"title":"Making Your Own -- Plugin -- plugin.gasLimit => BigNumber","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The gas limit this plugin should use."},{"link":"/v5/cli/plugin/#cli-plugin","text":"This is null if unspecified."}]},{"title":"Making Your Own -- Plugin -- plugin.gasPrice => BigNumber","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The gas price this plugin should use."},{"link":"/v5/cli/plugin/#cli-plugin","text":"This is null if unspecified."}]},{"title":"Making Your Own -- Plugin -- plugin.nonce => number","blocks":[{"link":"/v5/cli/plugin/#cli-plugin","text":"The initial nonce for the account this plugin should use."}]},{"title":"Making Your Own -- Plugin -- plugin.getAddress( addressOrName [ , message = \"\" , [ allowZero = false ] ] ) => Promise< string >","blocks":[{"link":"/v5/cli/plugin/#plugin-getaddress","text":"A plugin should use this method to resolve an address."},{"link":"/v5/cli/plugin/#plugin-getaddress","text":"If the resolved address is the zero address and allowZero is not true, an error is raised."}]},{"title":"Making Your Own -- Plugin -- plugin.dump( header , info ) => void","blocks":[{"link":"/v5/cli/plugin/#plugin-dump","text":"Dumps the contents of info to the console with a header in a nicely formatted style."},{"link":"/v5/cli/plugin/#plugin-dump","text":"In the future, plugins may support a JSON output format which will automatically work with this method."}]},{"title":"Making Your Own -- Plugin -- plugin.throwUsageError( [ message = \"\" ] ) => never","blocks":[{"link":"/v5/cli/plugin/#plugin-throwusageerror","text":"Stops execution of the plugin and shows the help screen of the plugin with the optional message."}]},{"title":"Making Your Own -- Plugin -- plugin.throwError( message ) => never","blocks":[{"link":"/v5/cli/plugin/#plugin-throwerror","text":"Stops execution of the plugin and shows message."}]},{"title":"Making Your Own -- Plugin -- Plugin.getHelp => Help","blocks":[{"link":"/v5/cli/plugin/#plugin-gethelp","text":"Each subclass should implement this static method which is used to generate the help screen."}]},{"title":"Making Your Own -- Plugin -- Plugin.getOptionHelp => Array< Help >","blocks":[{"link":"/v5/cli/plugin/#plugin-getoptionshelp","text":"Each subclass should implement this static method if it supports additional options which is used to generate the help screen."}]},{"title":"Making Your Own -- ArgParser","blocks":[{"link":"/v5/cli/plugin/#cli-argparser","text":"The ArgParser is used to parse a command line into flags, options and arguments."},{"link":"/v5/cli/plugin/#cli-argparser","text":"Flags are simple binary options (such as the --yes), which are true if present otherwise false."},{"link":"/v5/cli/plugin/#cli-argparser","text":"Options require a single parameter follow them on the command line (such as --account wallet.json, which has the name account and the value wallet.json)."},{"link":"/v5/cli/plugin/#cli-argparser","text":"Arguments are all other values on the command line, and are not accessed through the ArgParser directly."},{"link":"/v5/cli/plugin/#cli-argparser","text":"When a CLI is run, an ArgParser is used to validate the command line by using prepareOptions, which consumes all flags and options leaving only the arguments behind, which are then passed into prepareArgs."}]},{"title":"Making Your Own -- ArgParser -- argParser.consumeFlag( name ) => boolean","blocks":[{"link":"/v5/cli/plugin/#argparser-consumeflag","text":"Remove the flag name and return true if it is present."}]},{"title":"Making Your Own -- ArgParser -- argParser.consumeMultiOptions( names ) => Array< {name:string,value:string} >","blocks":[{"link":"/v5/cli/plugin/#argparser-consumemultioptions","text":"Remove all options which match any name in the Array of names with their values returning the list (in order) of values."}]},{"title":"Making Your Own -- ArgParser -- argParser.consumeOption( name ) => string","blocks":[{"link":"/v5/cli/plugin/#argparser-consumeoption","text":"Remove the option with its value for name and return the value."},{"link":"/v5/cli/plugin/#argparser-consumeoption","text":"This will throw a UsageError if the option is included multiple times."}]},{"title":"Making Your Own -- ArgParser -- argParser.consumeOptions( name ) => Array< string >","blocks":[{"link":"/v5/cli/plugin/#argparser-consumeoptions","text":"Remove all options with their values for name and return the list (in order) of values."}]},{"title":"TypeScript -- Examples","blocks":[{"link":"/v5/cli/typescript/","text":"TODO."}]},{"title":"Best Practices -- Network Changes","blocks":[{"link":"/v5/concepts/best-practices/#best-practices","text":"Handling a change in the network (e.g."},{"link":"/v5/concepts/best-practices/#best-practices","text":"Ropsten vs Mainnet) is incredibly complex and a slight failure can at best make your application seem confusing and at worst cause the loss of funds, leak private data or misrepresent what an action performed."},{"link":"/v5/concepts/best-practices/#best-practices","text":"Luckily, standard users should likely never change their networks unless tricked to do so or they make a mistake."},{"link":"/v5/concepts/best-practices/#best-practices","text":"This is a problem you mainly need to worry about for developers, and most developers should understand the vast array of issues surrounding a network change during application operation and will understand the page reloading (which is already the default behaviour in many clients)."},{"link":"/v5/concepts/best-practices/#best-practices","text":"So, the best practice when a network change occurs is to simply refresh the page."},{"link":"/v5/concepts/best-practices/#best-practices","text":"This should cause all your UI components to reset to a known-safe state, including any banners and warnings to your users if they are on an unsupported network."},{"link":"/v5/concepts/best-practices/#best-practices","text":"This can be accomplished by using the following function:."}]},{"title":"Events -- Logs and Filtering","blocks":[{"link":"/v5/concepts/events/#events","text":"Logs and filtering are used quite often in blockchain applications, since they allow for efficient queries of indexed data and provide lower-cost data storage when the data is not required to be accessed on-chain."},{"link":"/v5/concepts/events/#events","text":"These can be used in conjunction with the Provider Events API and with the Contract Events API."},{"link":"/v5/concepts/events/#events","text":"The Contract Events API also provides higher-level methods to compute and query this data, which should be preferred over the lower-level filter."}]},{"title":"Events -- Logs and Filtering -- Filters","blocks":[{"link":"/v5/concepts/events/#events--filters","text":"When a Contract creates a log, it can include up to 4 pieces of data to be indexed by."},{"link":"/v5/concepts/events/#events--filters","text":"The indexed data is hashed and included in a Bloom Filter, which is a data structure that allows for efficient filtering."},{"link":"/v5/concepts/events/#events--filters","text":"So, a filter may correspondingly have up to 4 topic-sets, where each topic-set refers to a condition that must match the indexed log topic in that position (i.e."},{"link":"/v5/concepts/events/#events--filters","text":"each condition is AND-ed together)."},{"link":"/v5/concepts/events/#events--filters","text":"If a topic-set is null, a log topic in that position is not filtered at all and any value matches."},{"link":"/v5/concepts/events/#events--filters","text":"If a topic-set is a single topic, a log topic in that position must match that topic."},{"link":"/v5/concepts/events/#events--filters","text":"If a topic-set is an array of topics, a log topic in that position must match any one of the topics (i.e."},{"link":"/v5/concepts/events/#events--filters","text":"the topic in this position are OR-ed)."},{"link":"/v5/concepts/events/#events--filters","text":"This may sound complicated at first, but is more easily understood with some examples."}]},{"title":"Events -- Logs and Filtering -- Example Log Matching","blocks":[{"link":"/v5/concepts/events/#events--filters","text":"To simplify life, ..., explain here, the contract API."}]},{"title":"Events -- Solidity Topics","blocks":[{"link":"/v5/concepts/events/#events-solidity","text":"This is a quick (and non-comprehensive) overview of how events are computed in Solidity."},{"link":"/v5/concepts/events/#events-solidity","text":"This is likely out of the scope for most developers, but may be intersting to those who want to learn a bit more about the underlying technology."},{"link":"/v5/concepts/events/#events-solidity","text":"Solidity provides two types of events, anonymous and non-anonymous."},{"link":"/v5/concepts/events/#events-solidity","text":"The default is non-anonymous, and most developers will not need to worry about anonymous events."},{"link":"/v5/concepts/events/#events-solidity","text":"For non-anonymous events, up to 3 topics may be indexed (instead of 4), since the first topic is reserved to specify the event signature."},{"link":"/v5/concepts/events/#events-solidity","text":"This allows non-anonymous events to always be filtered by their event signature."},{"link":"/v5/concepts/events/#events-solidity","text":"This topic hash is always in the first slot of the indexed data, and is computed by normalizing the Event signature and taking the keccak256 hash of it."},{"link":"/v5/concepts/events/#events-solidity","text":"For anonymous events, up to 4 topics may be indexed, and there is no signature topic hash, so the events cannot be filtered by the event signature."},{"link":"/v5/concepts/events/#events-solidity","text":"Each additional indexed property is processed depending on whether its length is fixed or dynamic."},{"link":"/v5/concepts/events/#events-solidity","text":"For fixed length types (e.g."},{"link":"/v5/concepts/events/#events-solidity","text":"uint, bytes5), all of which are internally exactly 32 bytes (shorter types are padded with zeros; numeric values are padded on the left, data values padded on the right), these are included directly by their actual value, 32 bytes of data."},{"link":"/v5/concepts/events/#events-solidity","text":"For dynamic types (e.g."},{"link":"/v5/concepts/events/#events-solidity","text":"string, uint256[]) , the value is hashed using keccak256 and this hash is used."},{"link":"/v5/concepts/events/#events-solidity","text":"Because dynamic types are hashed, there are important consequences in parsing events that should be kept in mind."},{"link":"/v5/concepts/events/#events-solidity","text":"Mainly that the original value is lost in the event."},{"link":"/v5/concepts/events/#events-solidity","text":"So, it is possible to tell is a topic is equal to a given string, but if they do not match, there is no way to determine what the value was."},{"link":"/v5/concepts/events/#events-solidity","text":"If a developer requires that a string value is required to be both able to be filtered and also able to be read, the value must be included in the signature twice, once indexed and once non-indexed (e.g."},{"link":"/v5/concepts/events/#events-solidity","text":"someEvent(string indexed searchBy, string clearText))."},{"link":"/v5/concepts/events/#events-solidity","text":"For a more detailed description, please refer to the Solidity Event Documentation."}]},{"title":"Events -- Solidity Topics -- Other Things? TODO","blocks":[{"link":"/v5/concepts/events/#events-solidity","text":"Explain what happens to strings and bytes, how to filter and retain the value."}]},{"title":"Gas","blocks":[{"link":"/v5/concepts/gas/#gas","text":"Explain attack vectors."}]},{"title":"Gas -- Gas Price","blocks":[{"link":"/v5/concepts/gas/#gas-price","text":"The gas price is used somewhat like a bid, indicating an amount you are willing to pay (per unit of execution) to have your transaction processed."}]},{"title":"Ethereum Basics","blocks":[{"link":"/v5/concepts/","text":"This is a brief overview of some aspects of Ethereum and blockchains which developers can make use of or should be aware of."},{"link":"/v5/concepts/","text":"This section is sparse at the moment, but will be expanded as time goes on."}]},{"title":"Security -- Key Derivation Functions","blocks":[{"link":"/v5/concepts/security/#security--pbkdf","text":"This is not specific to Ethereum, but is a useful technique to understand and has some implications on User Experience."},{"link":"/v5/concepts/security/#security--pbkdf","text":"Many people are concerned that encrypting and decrypting an Ethereum wallet is quite slow and can take quite some time."},{"link":"/v5/concepts/security/#security--pbkdf","text":"It is important to understand this is intentional and provides much stronger security."},{"link":"/v5/concepts/security/#security--pbkdf","text":"The algorithm usually used for this process is scrypt, which is a memory and CPU intensive algorithm which computes a key (fixed-length pseudo-random series of bytes) for a given password."}]},{"title":"Security -- Key Derivation Functions -- Why does it take so long?","blocks":[{"link":"/v5/concepts/security/#security--pbkdf","text":"The goal is to use as much CPU and memory as possible during this algorithm, so that a single computer can only compute a very small number of results for some fixed amount of time."},{"link":"/v5/concepts/security/#security--pbkdf","text":"To scale up an attack, the attacker requires additional computers, increasing the cost to brute-force attack to guess the password."},{"link":"/v5/concepts/security/#security--pbkdf","text":"For example, if a user knows their correct password, this process may take 10 seconds for them to unlock their own wallet and proceed."},{"link":"/v5/concepts/security/#security--pbkdf","text":"But since an attacker does not know the password, they must guess; and each guess also requires 10 seconds."},{"link":"/v5/concepts/security/#security--pbkdf","text":"So, if they wish to try guessing 1 million passwords, their computer would be completely tied up for 10 million seconds, or around 115 days."},{"link":"/v5/concepts/security/#security--pbkdf","text":"Without using an algorithm like this, a user would be able to log in instantly, however, 1 million passwords would only take a few seconds to attempt."},{"link":"/v5/concepts/security/#security--pbkdf","text":"Even secure passwords would likely be broken within a short period of time."},{"link":"/v5/concepts/security/#security--pbkdf","text":"There is no way the algorithm can be faster for a legitimate user without also being faster for an attacker."}]},{"title":"Security -- Key Derivation Functions -- Mitigating the User Experience","blocks":[{"link":"/v5/concepts/security/#security--pbkdf","text":"Rather than reducing the security (see below), a better practice is to make the user feel better about waiting."},{"link":"/v5/concepts/security/#security--pbkdf","text":"The Ethers encryption and decryption API allows the developer to incorporate a progress bar, by passing in a progress callback which will be periodically called with a number between 0 and 1 indication percent completion."},{"link":"/v5/concepts/security/#security--pbkdf","text":"In general a progress bar makes the experience feel faster, as well as more comfortable since there is a clear indication how much (relative) time is remaining."},{"link":"/v5/concepts/security/#security--pbkdf","text":"Additionally, using language like \"decrypting...\" in a progress bar makes a user feel like there time is not being needlessly wasted."}]},{"title":"Security -- Key Derivation Functions -- Work-Arounds (not recommended)","blocks":[{"link":"/v5/concepts/security/#security--pbkdf","text":"There are ways to reduce the time required to decrypt an Ethereum JSON Wallet, but please keep in mind that doing so discards nearly all security on that wallet."},{"link":"/v5/concepts/security/#security--pbkdf","text":"The scrypt algorithm is designed to be tuned."},{"link":"/v5/concepts/security/#security--pbkdf","text":"The main purpose of this is to increase the difficulty as time goes on and computers get faster, but it can also be tuned down in situations where the security is less important."}]},{"title":"Contributing and Hacking","blocks":[{"link":"/v5/contributing/#contributing","text":"The ethers.js library is something that I've written out of necessity, and has grown somewhat organically over time."},{"link":"/v5/contributing/#contributing","text":"Many things are the way they are for good (at the time, at least) reasons, but I always welcome criticism, and am completely willing to have my mind changed on things."},{"link":"/v5/contributing/#contributing","text":"Pull requests are always welcome, but please keep a few points in mind:."},{"link":"/v5/contributing/#contributing","text":"Backwards-compatibility-breaking changes will not be accepted; they may be considered for the next major version Security is important; adding dependencies require fairly convincing arguments as to why The library aims to be lean, so keep an eye on the dist/ethers.min.js file size before and after your changes Keep the PR simple and readable; only modify files in the docs.wrm/ and packages/*/src.ts/ folders, as this allows the changes to be easily verified Add test cases for both expected and unexpected input Any new features need to be supported by me (future issues, documentation, testing, migration), so anything that is overly complicated or specific may not be accepted."},{"link":"/v5/contributing/#contributing","text":"In general, please start an issue before beginning a pull request, so we can have a public discussion and figure out the best way to address the problem/feature."},{"link":"/v5/contributing/#contributing","text":":)."}]},{"title":"Contributing and Hacking -- Building","blocks":[{"link":"/v5/contributing/#contributing--building","text":"The build process for ethers is unfortunatly not super trivial, but I have attempted to make it as straight-forward as possible."},{"link":"/v5/contributing/#contributing--building","text":"It is a mono-repo which attempts to be compatibile with a large number of environments, build tools and platforms, which is why there are a some weird things it must do."},{"link":"/v5/contributing/#contributing--building","text":"There are several custom scripts in the misc/admin folder to help manage the monorepo."},{"link":"/v5/contributing/#contributing--building","text":"Developers working on contributing to ethers should not generally need to worry about those, since they are wrapped up behind npm run SCRIPT operations."}]},{"title":"Contributing and Hacking -- Building -- Making Changes","blocks":[{"link":"/v5/contributing/#contributing--updating","text":"Once your environment is set up, you should be able to simply start the auto-build feature, and make changes to the TypeScript source."}]},{"title":"Contributing and Hacking -- Building -- Creating Browser-Ready Files","blocks":[{"link":"/v5/contributing/#contributing--building","text":"To create files for use directly in a browser, the distribution files (located in packages/ethers/dist) need to be built which requires several intermediate builds, scripts and for various rollup scripts to execute."}]},{"title":"Contributing and Hacking -- Building -- Distribution","blocks":[{"link":"/v5/contributing/#contributing--building","text":"Most developers should not ever require this step, but for people forking ethers and creating alternates (for example if you have a non-EVM compatible chain but are trying to reuse this package)."},{"link":"/v5/contributing/#contributing--building","text":"This script will rebuild the entire ethers project, compare it against npm, re-write package versions, update internal hashes, re-write various TypeScript files (to get around some ES+TS limitations for Tree Shaking and linking), re-write map files, bundle stripped versions of dependencies and basically just a whole bunch of stuff."},{"link":"/v5/contributing/#contributing--building","text":"If you use this and get stuck, message me."}]},{"title":"Contributing and Hacking -- Building -- Do NOT check in dist files in a PR","blocks":[{"link":"/v5/contributing/","text":"For Pull Requests, please ONLY commit files in the docs.wrm/ and packages/*/src.ts/ folders."},{"link":"/v5/contributing/","text":"I will prepare the distribution builds myself and keeping the PR relevant makes it easier to verify the changes."}]},{"title":"Contributing and Hacking -- Building -- Publishing","blocks":[{"link":"/v5/contributing/#contributing--building","text":"Again, this should not be necessary for most developers."},{"link":"/v5/contributing/#contributing--building","text":"This step requires using the misc/admin/cmds/config-set script for a number of values, including private keys, NPM session keys, AWS access keys, GitHub API tokens, etc."},{"link":"/v5/contributing/#contributing--building","text":"The config file is encrypted with about 30 seconds of scrypt password-based key derivation function, so brute-forcing the file is quite expensive."},{"link":"/v5/contributing/#contributing--building","text":"The config file also contains a plain-text mnemonic."},{"link":"/v5/contributing/#contributing--building","text":"This is a money-pot."},{"link":"/v5/contributing/#contributing--building","text":"Place a tempting amount of ether or Bitcoin on this account and set up an e-mail alert for this account."},{"link":"/v5/contributing/#contributing--building","text":"If any attacker happens across your encrypted config, they will have instant access to the plain-text mnemonic, so they have the option to immediately steal the ether (i.e."},{"link":"/v5/contributing/#contributing--building","text":"the responsible-disclosure bond)."},{"link":"/v5/contributing/#contributing--building","text":"If you ever see this ether taken, your encrypted file is compromised! Rotate all your AWS keys, NPM session keys, etc."},{"link":"/v5/contributing/#contributing--building","text":"immedately."},{"link":"/v5/contributing/#contributing--building","text":"@TODO: document all the keys that need to be set for each step."}]},{"title":"Contributing and Hacking -- Documentation","blocks":[{"link":"/v5/contributing/#contributing--documentation","text":"The documents are generated using Flatworm documentation generation tool, which was written for the purpose of writing the documentation for ethers."},{"link":"/v5/contributing/#contributing--documentation","text":"Style Guide (this section will have much more coming):."},{"link":"/v5/contributing/#contributing--documentation","text":"Try to keep lines no longer than around 80 characters Avoid inline links in the source; use the externalLinks field in the config.js Prefix external links with link- Changing an anchor name must be well justified, as it will break all existing links to that section; flatworm will support symlinks in the future In general, I aim for consistency; look to similar situations throughout the documentation."}]},{"title":"Contributing and Hacking -- Documentation -- Building","blocks":[{"link":"/v5/contributing/#contributing--documentation","text":"To build the documentation, you should first follow the above steps to build the ethers library."},{"link":"/v5/contributing/#contributing--documentation","text":"Building the docs will generate several types of output:."},{"link":"/v5/contributing/#contributing--documentation","text":"A full set of HTML pages, linking across each other A single one-page HTML page with all pages linking to local anchors A full set of README.md pages organized to be browsable and linkable in GitHub A metadata dump for tool ingestion (still needs more work) (@TODO; only half done) The documentation as a LaTeX and generated PDF."}]},{"title":"Contributing and Hacking -- Documentation -- Evaluation","blocks":[{"link":"/v5/contributing/#contributing--documentation","text":"When building the documentation, all code samples are run through a JavaScript VM to ensure there are no typos in the example code, as well the exact output of results are injected into the output, so there is no need to keep the results and code in-sync."},{"link":"/v5/contributing/#contributing--documentation","text":"However, this can be a bit of a headache when making many small changes, so to build the documentation faster, you can skip the evaluation step, which will inject the code directly."}]},{"title":"Contributing and Hacking -- Documentation -- Previewing Changes","blocks":[{"link":"/v5/contributing/#contributing--documentation","text":"To preview the changes locally, you can use any standard web server and run from the /docs/ folder, or use the built-in web server."},{"link":"/v5/contributing/#contributing--documentation","text":"The same caveats as normal web development apply, such flushing browser caches after changing (and re-building) the docs."}]},{"title":"Cookbook","blocks":[{"link":"/v5/cookbook/","text":"A collection (that will grow over time) of common, simple snippets of code that are in general useful."}]},{"title":"React Native (and ilk)","blocks":[{"link":"/v5/cookbook/react-native/#cookbook-reactnative","text":"The React Native framework has become quite popular and has many popular forks, such as Expo."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative","text":"React Native is based on JavaScriptCore (part of WebKit) and does not use Node.js or the common Web and DOM APIs."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative","text":"As such, there are many operations missing that a normal web environment or Node.js instance would provide."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative","text":"For this reason, there is a Shims module provided to fill in the holes."}]},{"title":"React Native (and ilk) -- Installing","blocks":[{"link":"/v5/cookbook/react-native/#cookbook-reactnative-shims","text":"To use ethers in React Native, you must either provide shims for the needed missing functionality, or use the ethers.js shim."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative-shims","text":"It is HIGHLY RECOMMENDED you check out the security section below for instructions on installing packages which can affect the security of your application."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative-shims","text":"After installing packages, you may need to restart your packager and company."}]},{"title":"React Native (and ilk) -- Security","blocks":[{"link":"/v5/cookbook/react-native/#cookbook-reactnative-security","text":"The React Native environment does not contain a secure random source, which is used when computing random private keys."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative-security","text":"This could result in private keys that others could possibly guess, allowing funds to be stolen and assets manipulated."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative-security","text":"For this reason, it is HIGHLY RECOMMENDED to also install the React Native get-random-values, which must be included before the shims."},{"link":"/v5/cookbook/react-native/#cookbook-reactnative-security","text":"If it worked correctly you should not receive any warning in the console regarding missing secure random sources."}]},{"title":"Flatworm Docs","blocks":[{"link":"/v5/documentation/#flatworm","text":"The Flatworm Docs rendering engine is designed to be very simple, but provide enough formatting necessary for documenting JavaScript libraries."},{"link":"/v5/documentation/#flatworm","text":"A lot of its inspiration came from Read the Docs and the Sphinx project."}]},{"title":"Flatworm Docs -- Fragments","blocks":[{"link":"/v5/documentation/#flatworm-fragments","text":"Each page is made up of fragments."},{"link":"/v5/documentation/#flatworm-fragments","text":"A fragment is a directive, with an value and optional link, extensions and a body."},{"link":"/v5/documentation/#flatworm-fragments","text":"Many directives support markdown in their value and body."},{"link":"/v5/documentation/#flatworm-fragments","text":"A fragment's body continues until another fragment is encountered."}]},{"title":"Flatworm Docs -- Fragments -- _section: TITLE","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A section has its TITLE in an H1 font."},{"link":"/v5/documentation/#flatworm-directive","text":"Sections are linked to in Table of Contents and have a dividing line drawn above them."},{"link":"/v5/documentation/#flatworm-directive","text":"The body supports markdown."},{"link":"/v5/documentation/#flatworm-directive","text":"There should only be one _section: per page."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @inherit, @src, @nav, @note."}]},{"title":"Flatworm Docs -- Fragments -- _subsection: TITLE","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A subsection has its TITLE in an H2 font."},{"link":"/v5/documentation/#flatworm-directive","text":"Subsections are linked to in Table of Contents and have a dividing line drawn above them."},{"link":"/v5/documentation/#flatworm-directive","text":"The title and body support markdown."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @inherit, @src, @note."}]},{"title":"Flatworm Docs -- Fragments -- _heading: TITLE","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A heading has its TITLE in an H3 font."},{"link":"/v5/documentation/#flatworm-directive","text":"The title and body support markdown."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @inherit, @src, @note."}]},{"title":"Flatworm Docs -- Fragments -- _definition: TERM","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A definition has its TERM in normal text and the body is indented."},{"link":"/v5/documentation/#flatworm-directive","text":"The title and body support markdown."}]},{"title":"Flatworm Docs -- Fragments -- _property: SIGNATURE","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A property has its JavaScript SIGNATURE formatted."},{"link":"/v5/documentation/#flatworm-directive","text":"The body supports markdown and the return portion of the signature support markdown links."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @src."}]},{"title":"Flatworm Docs -- Fragments -- _note: BANNER","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A note is placed in a blue bordered-box to draw attention to it."},{"link":"/v5/documentation/#flatworm-directive","text":"The body supports markdown."}]},{"title":"Flatworm Docs -- Fragments -- _warning: BANNER","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A warning is placed in an orange bordered-box to draw attention to it."},{"link":"/v5/documentation/#flatworm-directive","text":"The body supports markdown."}]},{"title":"Flatworm Docs -- Fragments -- _code: CAPTION","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"Creates a Code block."},{"link":"/v5/documentation/#flatworm-directive","text":"The body does not support markdown, and will be output exactly as is, with the exception of Code Evaluation."},{"link":"/v5/documentation/#flatworm-directive","text":"If a line begins with a \"_\", it should be escaped with a \"\\\"."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @lang."}]},{"title":"Flatworm Docs -- Fragments -- _table: FOOTER","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"Creates a Table structured according to the body."},{"link":"/v5/documentation/#flatworm-directive","text":"Each cell contents supports markdown and variables supports markdown."},{"link":"/v5/documentation/#flatworm-directive","text":"Extensions: @style."}]},{"title":"Flatworm Docs -- Fragments -- _toc:","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A toc injects a Table of Contents, loading each line of the body as a filename and recursively loads the toc if present, otherwise all the sections and subsections."},{"link":"/v5/documentation/#flatworm-directive","text":"The body does not support markdown, as it is interpreted as a list of files and directories to process."}]},{"title":"Flatworm Docs -- Fragments -- _null:","blocks":[{"link":"/v5/documentation/#flatworm-directive","text":"A null is used to terminated a directive."},{"link":"/v5/documentation/#flatworm-directive","text":"For example, after a definition, the bodies are indented, so a null can be used to reset the indentation."},{"link":"/v5/documentation/#flatworm-directive","text":"The body supports markdown."}]},{"title":"Flatworm Docs -- Markdown","blocks":[{"link":"/v5/documentation/#flatworm-markdown","text":"The markdown is simple and does not have the flexibility of other dialects, but allows for bold, italic, underlined, monospaced, superscript and strike text, supporting links and lists."},{"link":"/v5/documentation/#flatworm-markdown","text":"Lists are rendered as blocks of a body, so cannot be used within a title or within another list."}]},{"title":"Flatworm Docs -- Code","blocks":[{"link":"/v5/documentation/#flatworm--code","text":"The code directive creates a monospace, contained block useful for displaying code samples."}]},{"title":"Flatworm Docs -- Code -- JavaScript Evaluation","blocks":[{"link":"/v5/documentation/#flatworm--code-eval","text":"For JavaScript files, the file is executed with some simple substitution."},{"link":"/v5/documentation/#flatworm--code-eval","text":"A bare //! on a line is replaced with the result of the last statement."},{"link":"/v5/documentation/#flatworm--code-eval","text":"Building will fail if an error is thrown."},{"link":"/v5/documentation/#flatworm--code-eval","text":"A bare //!error is replaced with the throw error."},{"link":"/v5/documentation/#flatworm--code-eval","text":"Building will fail if an error is not thrown."},{"link":"/v5/documentation/#flatworm--code-eval","text":"Also any code included between the lines // <hide> and // </hide> will be omitted from the output, which can be used to setup variables."}]},{"title":"Flatworm Docs -- Code -- Languages","blocks":[{"link":"/v5/documentation/#flatworm--code","text":"The language can be specified using the @lang extension."}]},{"title":"Flatworm Docs -- Tables","blocks":[{"link":"/v5/documentation/#flatworm--table","text":"The table directive consumes the entire body up until the next directive."},{"link":"/v5/documentation/#flatworm--table","text":"To terminate a table early to begin a text block, use a _null: directive."},{"link":"/v5/documentation/#flatworm--table","text":"Each line of the body should be Row Data or a Variable Declaration (or continuation of a Variable Declaration)."},{"link":"/v5/documentation/#flatworm--table","text":"Blank lines are ignored."}]},{"title":"Flatworm Docs -- Tables -- Row Data","blocks":[{"link":"/v5/documentation/#flatworm--table-row","text":"Each Row Data line must begin and end with a \"|\", with each gap representing the cell data, alignment with optional column and row spanning."}]},{"title":"Flatworm Docs -- Tables -- Alignment","blocks":[{"link":"/v5/documentation/#flatworm--table-alignment","text":"The alignment for a cell is determined by the whitespace surrounding the cell data."}]},{"title":"Flatworm Docs -- Tables -- Row and Column Spanning","blocks":[{"link":"/v5/documentation/#flatworm--table-spanning","text":"A column may end its content with any number of \"<\" which indicates how many additional columns to extend into."},{"link":"/v5/documentation/#flatworm--table-spanning","text":"If the cell content contains only a \"^\", then the row above is extended into this cell (into the same number of columns)."}]},{"title":"Flatworm Docs -- Tables -- Styles","blocks":[{"link":"/v5/documentation/#flatworm--table-style","text":"The @style extension for a table can be used to control its appearance."}]},{"title":"Flatworm Docs -- Tables -- Variables","blocks":[{"link":"/v5/documentation/#flatworm--table-variable","text":"Often the layout of a table is easier to express and maintain without uneven or changing content within it."},{"link":"/v5/documentation/#flatworm--table-variable","text":"So the content can be defined separately within a table directive using variables."},{"link":"/v5/documentation/#flatworm--table-variable","text":"A variable name must begin with a letter and must only contain letters and numbers."},{"link":"/v5/documentation/#flatworm--table-variable","text":"Variables are also useful when content is repeated throughout a table."},{"link":"/v5/documentation/#flatworm--table-variable","text":"A variable is declared by starting a line with \"$NAME:\", which consumes all lines until the next variable declaration or until the next table row line."},{"link":"/v5/documentation/#flatworm--table-variable","text":"A variable name must start with a letter and may consist of letters and numbers."},{"link":"/v5/documentation/#flatworm--table-variable","text":"(i.e."},{"link":"/v5/documentation/#flatworm--table-variable","text":"/[a-z][a-z0-9]*/i)."}]},{"title":"Flatworm Docs -- Configuration","blocks":[{"link":"/v5/documentation/#flatworm-config","text":"Configuration is optional (but highly recommended) and may be either a simple JSON file (config.json) or a JS file (config.js) placed in the top of the source folder."},{"link":"/v5/documentation/#flatworm-config","text":"TODO: example JSON and example JS."}]},{"title":"Flatworm Docs -- Extensions -- @inherit< markdown >","blocks":[{"link":"/v5/documentation/#flatworm--ext-inherit","text":"Adds an inherits description to a directive."},{"link":"/v5/documentation/#flatworm--ext-inherit","text":"The markdown may contain links."}]},{"title":"Flatworm Docs -- Extensions -- @lang< text >","blocks":[{"link":"/v5/documentation/#flatworm--ext-lang","text":"Set the language a code directive should be syntax-highlighted for."},{"link":"/v5/documentation/#flatworm--ext-lang","text":"If \"javascript\", the code will be evaluated."}]},{"title":"Flatworm Docs -- Extensions -- @nav< text >","blocks":[{"link":"/v5/documentation/#flatworm--ext-nav","text":"Sets the name in the breadcrumbs when not the current node."}]},{"title":"Flatworm Docs -- Extensions -- @note< markdown >","blocks":[{"link":"/v5/documentation/#flatworm--ext-note","text":"Adds a note to a directive."},{"link":"/v5/documentation/#flatworm--ext-note","text":"The markdown may contain links."},{"link":"/v5/documentation/#flatworm--ext-note","text":"If the directive already has an @INHERIT extension, that will be used instead and the @NOTE will be ignored."}]},{"title":"Flatworm Docs -- Extensions -- @src< key >","blocks":[{"link":"/v5/documentation/#flatworm--ext-src","text":"Calls the configuration getSourceUrl(key, VALUE) to get a URL which will be linked to by a link next to the directive."},{"link":"/v5/documentation/#flatworm--ext-src","text":"This extended directive function requires an advanced config.js Configuration file since it requires a JavaScript function."}]},{"title":"Flatworm Docs -- Extensions -- @style< text >","blocks":[{"link":"/v5/documentation/#flatworm--ext-style","text":"The Table Style to use for a table directive."}]},{"title":"Getting Started -- Installing","blocks":[{"link":"/v5/getting-started/#installing","text":"Ethers' various Classes and Functions are available to import manually from sub-packages under the @ethersproject organization but for most projects, the umbrella package is the easiest way to get started."}]},{"title":"Getting Started -- Importing -- Web Browser","blocks":[{"link":"/v5/getting-started/#importing","text":"It is generally better practice (for security reasons) to copy the ethers library to your own webserver and serve it yourself."},{"link":"/v5/getting-started/#importing","text":"For quick demos or prototyping though, you can load it in your Web Applications from our CDN."}]},{"title":"Getting Started -- Common Terminology","blocks":[{"link":"/v5/getting-started/#getting-started--glossary","text":"This section needs work..."}]},{"title":"Getting Started -- Connecting to Ethereum: Metamask","blocks":[{"link":"/v5/getting-started/#getting-started--connecting","text":"The quickest and easiest way to experiment and begin developing on Ethereum is to use Metamask, which is a browser extension that provides:."},{"link":"/v5/getting-started/#getting-started--connecting","text":"A connection to the Ethereum network (a Provider) Holds your private key and can sign things (a Signer)."}]},{"title":"Getting Started -- Connecting to Ethereum: RPC","blocks":[{"link":"/v5/getting-started/#getting-started--connecting-rpc","text":"The JSON-RPC API is another popular method for interacting with Ethereum and is available in all major Ethereum node implementations (e.g."},{"link":"/v5/getting-started/#getting-started--connecting-rpc","text":"Geth and Parity) as well as many third-party web services (e.g."},{"link":"/v5/getting-started/#getting-started--connecting-rpc","text":"INFURA)."},{"link":"/v5/getting-started/#getting-started--connecting-rpc","text":"It typically provides:."},{"link":"/v5/getting-started/#getting-started--connecting-rpc","text":"A connection to the Ethereum network (a Provider) Holds your private key and can sign thing (a Signer)."}]},{"title":"Getting Started -- Connecting to Ethereum: RPC -- Querying the Blockchain","blocks":[{"link":"/v5/getting-started/#getting-started--querying","text":"Once you have a Provider, you have a read-only connection to the blockchain, which you can use to query the current state, fetch historic logs, look up deployed code and so on."}]},{"title":"Getting Started -- Contracts","blocks":[{"link":"/v5/getting-started/#getting-started--contracts","text":"A Contract is an abstraction of program code which lives on the Ethereum blockchain."},{"link":"/v5/getting-started/#getting-started--contracts","text":"The Contract object makes it easier to use an on-chain Contract as a normal JavaScript object, with the methods mapped to encoding and decoding data for you."},{"link":"/v5/getting-started/#getting-started--contracts","text":"If you are familiar with Databases, this is similar to an Object Relational Mapper (ORM)."},{"link":"/v5/getting-started/#getting-started--contracts","text":"In order to communicate with the Contract on-chain, this class needs to know what methods are available and how to encode and decode the data, which is what the Application Binary Interface (ABI) provides."},{"link":"/v5/getting-started/#getting-started--contracts","text":"This class is a meta-class, which means its methods are constructed at runtime, and when you pass in the ABI to the constructor it uses it to determine which methods to add."},{"link":"/v5/getting-started/#getting-started--contracts","text":"While an on-chain Contract may have many methods available, you can safely ignore any methods you don't need or use, providing a smaller subset of the ABI to the contract."},{"link":"/v5/getting-started/#getting-started--contracts","text":"An ABI often comes from the Solidity or Vyper compiler, but you can use the Human-Readable ABI in code, which the following examples use."}]},{"title":"Hacking","blocks":[{"link":"/v5/hacking/","text":"Things to keep in mind:."}]},{"title":"Hacking -- Signing Messages -- Supported Platforms","blocks":[{"link":"/v5/hacking/","text":"..."}]},{"title":"Hacking -- Signing Messages -- Dependencies","blocks":[{"link":"/v5/hacking/","text":"Adding a dependency is non-trivial and will require fairly convincing arguments."},{"link":"/v5/hacking/","text":"Further, ALL dependencies for ethers, must be MIT licensed or public domain (CC0)."},{"link":"/v5/hacking/","text":"All contributions to ethers are then included under the MIT license."}]},{"title":"Hacking -- Signing Messages -- Printable ASCII (7-bit) Characters","blocks":[{"link":"/v5/hacking/","text":"All source and documentation files should ONLY use the printable ASCII set."},{"link":"/v5/hacking/","text":"This is for several reasons, bu..."},{"link":"/v5/hacking/","text":"Transmission over certain HTTP servers and proxies can mangle UTF-8 data Certain editors on some platforms, or in certain terminals cannot handle UTF-8 characters elegantly The ability to enter non-ASCII characters on some platforms require special keyboards, input devices or input methods to be installed, which either not be supported, or may require administrative priviledges."}]},{"title":"Hacking -- Signing Messages -- License","blocks":[{"link":"/v5/hacking/","text":"MIT..."}]},{"title":"Hacking -- Signing Messages -- Other Considerations","blocks":[{"link":"/v5/hacking/","text":"A common argument to Pull Requests is that they are simple, backwards compatible and."},{"link":"/v5/hacking/","text":"It is important to remember that a small change is something that we are required to support in perpetuity."},{"link":"/v5/hacking/","text":"For example, adding support for an obscure platform, such as adding a dot-file to the root of the package, now carries the implication that we will continue keeping that dot-file up-to-date as new versions of that platform are released."}]},{"title":"Documentation -- What is Ethers?","blocks":[{"link":"/v5/#preamble","text":"The ethers.js library aims to be a complete and compact library for interacting with the Ethereum Blockchain and its ecosystem."},{"link":"/v5/#preamble","text":"It was originally designed for use with ethers.io and has since expanded into a more general-purpose library."}]},{"title":"Documentation -- Features","blocks":[{"link":"/v5/#features","text":"Keep your private keys in your client, safe and sound Import and export JSON wallets (Geth, Parity and crowdsale) Import and export BIP 39 mnemonic phrases (12 word backup phrases) and HD Wallets (English, Italian, Japanese, Korean, Simplified Chinese, Traditional Chinese; more coming soon) Meta-classes create JavaScript objects from any contract ABI, including ABIv2 and Human-Readable ABI Connect to Ethereum nodes over JSON-RPC, INFURA, Etherscan, Alchemy, Cloudflare or MetaMask."},{"link":"/v5/#features","text":"ENS names are first-class citizens; they can be used anywhere an Ethereum addresses can be used Tiny (~88kb compressed; 284kb uncompressed) Complete functionality for all your Ethereum needs Extensive documentation Large collection of test cases which are maintained and added to Fully TypeScript ready, with definition files and full TypeScript source MIT License (including ALL dependencies); completely open source to do with as you please."}]},{"title":"Documentation -- Legacy Documentation","blocks":[{"link":"/v5/#documentation--legacy","text":"This section will be kept up to date, linking to documentation of older versions of the library."},{"link":"/v5/#documentation--legacy","text":"version 4.0 version 3.0."}]},{"title":"License and Copyright","blocks":[{"link":"/v5/license/#license","text":"The ethers library (including all dependencies) are available under the MIT License, which permits a wide variety of uses."}]},{"title":"License and Copyright -- Legacy Documentation -- MIT License","blocks":[{"link":"/v5/license/#license","text":"Copyright © 2019 Richard Moore."},{"link":"/v5/license/#license","text":"Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:."},{"link":"/v5/license/#license","text":"The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software."},{"link":"/v5/license/#license","text":"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT."},{"link":"/v5/license/#license","text":"IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."}]},{"title":"Migration: From Ethers v4","blocks":[{"link":"/v5/migration/ethers-v4/#migration-v4","text":"This document only covers the features present in v4 which have changed in some important way in v5."},{"link":"/v5/migration/ethers-v4/#migration-v4","text":"It does not cover all the new additional features that have been added and mainly aims to help those updating their older scripts and applications to retain functional parity."},{"link":"/v5/migration/ethers-v4/#migration-v4","text":"If you encounter any missing changes, please let me know and I'll update this guide."}]},{"title":"Migration: From Ethers v4 -- BigNumber -- Namespace","blocks":[{"link":"/v5/migration/ethers-v4/","text":"Since BigNumber is used quite frequently, it has been moved to the top level of the umbrella package."}]},{"title":"Migration: From Ethers v4 -- BigNumber -- Creating Instances","blocks":[{"link":"/v5/migration/ethers-v4/","text":"The bigNumberify method was always preferred over the constructor since it could short-circuit an object instantiation for [[BigNumber] objects (since they are immutable)."},{"link":"/v5/migration/ethers-v4/","text":"This has been moved to a static from class method."}]},{"title":"Migration: From Ethers v4 -- Contracts -- ENS Name Resolution","blocks":[{"link":"/v5/migration/ethers-v4/","text":"The name of the resolved address has changed."},{"link":"/v5/migration/ethers-v4/","text":"If the address passed into the constructor was an ENS name, the address will be resolved before any calls are made to the contract."},{"link":"/v5/migration/ethers-v4/","text":"The name of the property where the resolved address has changed from addressPromise to resolvedAddress."}]},{"title":"Migration: From Ethers v4 -- Contracts -- Gas Estimation","blocks":[{"link":"/v5/migration/ethers-v4/","text":"The only difference in gas estimation is that the bucket has changed its name from estimate to estimateGas."}]},{"title":"Migration: From Ethers v4 -- Contracts -- Functions","blocks":[{"link":"/v5/migration/ethers-v4/","text":"In a contract in ethers, there is a functions bucket, which exposes all the methods of a contract."},{"link":"/v5/migration/ethers-v4/","text":"All these functions are available on the root contract itself as well and historically there was no difference between contact.foo and contract.functions.foo."},{"link":"/v5/migration/ethers-v4/","text":"The original reason for the functions bucket was to help when there were method names that collided with other buckets, which is rare."},{"link":"/v5/migration/ethers-v4/","text":"In v5, the functions bucket is now intended to help with frameworks and for the new error recovery API, so most users should use the methods on the root contract."},{"link":"/v5/migration/ethers-v4/","text":"The main difference will occur when a contract method only returns a single item."},{"link":"/v5/migration/ethers-v4/","text":"The root method will dereference this automatically while the functions bucket will preserve it as an Result."},{"link":"/v5/migration/ethers-v4/","text":"If a method returns multiple items, there is no difference."},{"link":"/v5/migration/ethers-v4/","text":"This helps when creating a framework, since the result will always be known to have the same number of components as the Fragment outputs, without having to handle the special case of a single return value."}]},{"title":"Migration: From Ethers v4 -- Errors -- Namespace","blocks":[{"link":"/v5/migration/ethers-v4/","text":"All errors now belong to the Logger class and the related functions have been moved to Logger instances, which can include a per-package version string."},{"link":"/v5/migration/ethers-v4/","text":"Global error functions have been moved to Logger class methods."}]},{"title":"Migration: From Ethers v4 -- Interface","blocks":[{"link":"/v5/migration/ethers-v4/#migration-v4","text":"The Interface object has undergone the most dramatic changes."},{"link":"/v5/migration/ethers-v4/#migration-v4","text":"It is no longer a meta-class and now has methods that simplify handling contract interface operations without the need for object inspection and special edge cases."}]},{"title":"Migration: From Ethers v4 -- Interface -- Inspection","blocks":[{"link":"/v5/migration/ethers-v4/","text":"Interrogating properties about a function or event can now (mostly) be done directly on the Fragment object."}]},{"title":"Migration: From Ethers v4 -- Wallet -- Mnemonic Phrases","blocks":[{"link":"/v5/migration/ethers-v4/","text":"The mnemonic phrase and related properties have been merged into a single mnemonic object, which also now includes the locale."}]},{"title":"Migration Guide","blocks":[{"link":"/v5/migration/#migration","text":"Here are some migration guides when upgrading from older versions of Ethers or other libraries."}]},{"title":"Migration: From Web3.js","blocks":[{"link":"/v5/migration/web3/","text":"This migration guide focuses on migrating web3.js version 1.2.9 to ethers.js v5."}]},{"title":"Migration: From Web3.js -- Providers","blocks":[{"link":"/v5/migration/web3/","text":"In ethers, a provider provides an abstraction for a connection to the Ethereum Network."},{"link":"/v5/migration/web3/","text":"It can be used to issue read only queries and send signed state changing transactions to the Ethereum Network."}]},{"title":"Migration: From Web3.js -- Signers","blocks":[{"link":"/v5/migration/web3/","text":"In ethers, a signer is an abstraction of an Ethereum Account."},{"link":"/v5/migration/web3/","text":"It can be used to sign messages and transactions and send signed transactions to the Ethereum Network."},{"link":"/v5/migration/web3/","text":"In web3, an account can be used to sign messages and transactions."}]},{"title":"Migration: From Web3.js -- Contracts","blocks":[{"link":"/v5/migration/web3/","text":"A contract object is an abstraction of a smart contract on the Ethereum Network."},{"link":"/v5/migration/web3/","text":"It allows for easy interaction with the smart contact."}]},{"title":"Migration: From Web3.js -- Contracts -- Overloaded Functions","blocks":[{"link":"/v5/migration/web3/","text":"Overloaded functions are functions that have the same name but different parameter types."},{"link":"/v5/migration/web3/","text":"In ethers, the syntax to call an overloaded contract function is different from the non-overloaded function."},{"link":"/v5/migration/web3/","text":"This section shows the differences between web3 and ethers when calling overloaded functions."},{"link":"/v5/migration/web3/","text":"See issue #407 for more details."}]},{"title":"Migration: From Web3.js -- Numbers -- BigNumber","blocks":[{"link":"/v5/migration/web3/","text":"Convert to BigNumber:."}]},{"title":"Migration: From Web3.js -- Utilities -- Hash","blocks":[{"link":"/v5/migration/web3/","text":"Computing Keccak256 hash of a UTF-8 string in web3 and ethers:."}]},{"title":"Other Resources","blocks":[{"link":"/v5/other-resources/","text":"There is a lot of documentation on the internet to help you get started, learn more or cover advanced topics."},{"link":"/v5/other-resources/","text":"Here are a few resources to check out."}]},{"title":"Other Resources -- Ethereum Overview","blocks":[{"link":"/v5/other-resources/","text":"Official Ethereum Developer Documentations The Solidity Documentation, the defactor language for smart contracts as well as a resource for some of the core concepts of Ethereum."}]},{"title":"Other Resources -- Tutorials","blocks":[{"link":"/v5/other-resources/","text":"I do not manage or maintain these tutorials, but have happened across them."},{"link":"/v5/other-resources/","text":"If a link is dead or outdated, please let me know and I'll update it."},{"link":"/v5/other-resources/","text":"No links yet; send me some."}]},{"title":"Testing","blocks":[{"link":"/v5/testing/","text":"Testing is a critical part of any library which wishes to remain secure, safe and reliable."},{"link":"/v5/testing/","text":"Ethers currently has over 23k tests among its test suites, which are all made available for other projects to use as simple exported GZIP-JSON files."},{"link":"/v5/testing/","text":"The tests are run on every check-in and the results can been seen on the GitHub CI Action."},{"link":"/v5/testing/","text":"We also strive to constantly add new test cases, especially when issues arise to ensure the issue is present prior to the fix, corrected after the fix and included to prevent future changes from causing a regression."},{"link":"/v5/testing/","text":"A large number of the test cases were created procedurally by using known correct implementations from various sources (such as Geth) and written in different languages and verified with multiple libraries."},{"link":"/v5/testing/","text":"For example, the ABI test suites were generated by procedurally generating a list of types, for each type choosing a random (valid) value, which then was converted into a Solidity source file, compiled using solc and deployed to a running Parity node and executed, with its outputs being captured."},{"link":"/v5/testing/","text":"Similar to the how many of the hashing, event and selector test cases were created."}]},{"title":"Testing -- Supported Platforms","blocks":[{"link":"/v5/testing/#testing-supported","text":"While web technologies move quite fast, especially in the Web3 universe, we try to keep ethers as accessible as possible."},{"link":"/v5/testing/#testing-supported","text":"Currently ethers should work on almost any ES3 or better environment and tests are run against:."},{"link":"/v5/testing/#testing-supported","text":"node.js 8.x node.js 10.x node.js 12.x node.js 13.x Web Browsers (using UMD) Web Browsers (using ES modules)."},{"link":"/v5/testing/#testing-supported","text":"If there is an environment you feel has been overlooked or have suggestions, please feel free to reach out by opening an issue on Github."},{"link":"/v5/testing/#testing-supported","text":"We would like to add a test build for Expo and React as those developers often seem to encounter pain points when using ethers, so if you have experience or ideas on this, bug us."},{"link":"/v5/testing/#testing-supported","text":"The next Major version (probably summer 2021) will likely drop support for node 8.x and will require ES2015 for Proxy."},{"link":"/v5/testing/#testing-supported","text":"Certain features in JavaScript are also avoided, such as look-behind tokens in regular expressions, since these have caused conflicts (at import time) with certain JavaScript environments such as Otto."},{"link":"/v5/testing/#testing-supported","text":"Basically, the moral of the story is \"be inclusive and don't drop people needlessly\"."}]},{"title":"Testing -- Test Suites","blocks":[{"link":"/v5/testing/#testing-suites","text":"The test suites are available as gzipped JSON files in the @ethersproject/testcases, which makes it easy to install and import (both GZIP and JSON are quite easy to consume from most languages)."},{"link":"/v5/testing/#testing-suites","text":"Each test suite also has its schema available in this package."}]},{"title":"Testing -- Test Suite API","blocks":[{"link":"/v5/testing/#testing-api","text":"There are also convenience functions for those developing directly in TypeScript."}]},{"title":"Testing -- Test Suite API -- testcases.loadTests( tag ) => Array< TestCase >","blocks":[{"link":"/v5/testing/#testing-api","text":"Load all the given testcases for the tag."},{"link":"/v5/testing/#testing-api","text":"A tag is the string in the above list of test case names not including any extension (e.g."},{"link":"/v5/testing/#testing-api","text":"\"solidity-hashes\")."}]},{"title":"Testing -- Test Suite API -- testcases.TestCase.TEST_NAME","blocks":[{"link":"/v5/testing/#testing-api","text":"Most testcases have its schema available as a TypeScript type to make testing each property easier."}]},{"title":"Testing -- Test Suite API -- Deterministic Random Numbers (DRNG)","blocks":[{"link":"/v5/testing/#testing-api","text":"When creating test cases, often we want want random data from the perspective we do not case what values are used, however we want the values to be consistent across runs."},{"link":"/v5/testing/#testing-api","text":"Otherwise it becomes difficult to reproduce an issue."},{"link":"/v5/testing/#testing-api","text":"In each of the following the seed is used to control the random value returned."},{"link":"/v5/testing/#testing-api","text":"Be sure to tweak the seed properly, for example on each iteration change the value and in recursive functions, concatenate to the seed."}]},{"title":"Testing -- Test Suite API -- testcases.randomBytes( seed , lower [ , upper ] ) => Uint8Array","blocks":[{"link":"/v5/testing/","text":"Return at least lower random bytes, up to upper (exclusive) if specified, given seed."},{"link":"/v5/testing/","text":"If upper is omitted, exactly /lower bytes are returned."}]},{"title":"Testing -- Test Suite API -- testcases.randomHexString( seed , lower [ , upper ] ) => string< DataHexString >","blocks":[{"link":"/v5/testing/","text":"Identical to randomBytes, except returns the value as a DataHexString instead of a Uint8Array."}]},{"title":"Testing -- Test Suite API -- testcases.randomNumber( seed , lower , upper ) => number","blocks":[{"link":"/v5/testing/","text":"Returns a random number of at least lower and less than upper given seed."}]},{"title":"Testing -- Schemas","blocks":[{"link":"/v5/testing/#testing-schemas","text":"This section is still a work in progress, but will outline some of the more nuanced aspects of the test cases and their values."},{"link":"/v5/testing/#testing-schemas","text":"There will likely be an overhaul of the test cases in the next major version, to make code coverage testing more straight forward and to collapse some of the redundancy."},{"link":"/v5/testing/#testing-schemas","text":"For example, there is no longer a need to separate the ABI and ABIv2 test case and the accounts and transactions suites can be merged into one large collection."}]},{"title":"Testing -- Schemas -- Accounts","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Basic account information using a private key and computing various address forms."},{"link":"/v5/testing/#testing-schemas","text":"Tests were verified against [EthereumJS](https://github.com/ethereumjs) and custom scripts created to directly interact with Geth and cpp implementations."},{"link":"/v5/testing/#testing-schemas","text":"See: accounts.json.gz."}]},{"title":"Testing -- Schemas -- Contract Interface","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Procedurally generated test cases to test ABI coding."}]},{"title":"Testing -- Schemas -- Contract Signatures","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Computed ABI signatures and the selector hash."}]},{"title":"Testing -- Schemas -- Hierarchal Deterministic Node (BIP-32)","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Tests for BIP-32 HD Wallets."}]},{"title":"Testing -- Schemas -- ENS Namehash","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Test cases for the ENS Namehash Algorithm."}]},{"title":"Testing -- Schemas -- Solidity Hashes","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Tests for the non-standard packed form of the Solidity hash functions."},{"link":"/v5/testing/#testing-schemas","text":"These tests were created by procedurally generating random signatures and values that match those signatures, constructing the equivalent Soldity, compiling it and deploying it to a Parity node then evaluating the response."}]},{"title":"Testing -- Schemas -- Transactions","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Serialized signed and unsigned transactions with both EIP-155 enabled and disabled."}]},{"title":"Testing -- Schemas -- Units","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Unit conversion."}]},{"title":"Testing -- Schemas -- Wallets","blocks":[{"link":"/v5/testing/#testing-schemas","text":"Tests for the JSON keystore format."}]}],"indices":{"_to":["0/0","0/3","5/1","6/0","7/0","8/0","8/1","9/0","9/2","10/0","10/1","11/0","11/1","12/0","14/0","14/1","15/0","17/0","18/0","19/0","20/0","21/0","22/0","23/0","24/0","26/1","27/1","28/8","29/1","29/4","29/6","30/0","31/0","31/3","31/5","32/0","33/0","33/1","34/0","34/1","35/0","35/2","35/4","38/0","40/0","40/1","41/0","43/0","44/0","45/0","45/1","46/0","47/0","48/0","49/0","50/0","51/0","52/0","58/0","58/3","59/0","59/1","60/0","61/0","64/0","64/2","65/1","66/0","67/0","67/1","70/0","71/0","71/2","71/3","81/0","100/2","101/0","102/0","110/0","110/3","112/0","117/0","119/0","120/0","121/0","124/0","125/0","125/2","129/1","129/2","129/4","131/0","131/1","133/0","134/0","134/2","134/3","134/4","134/5","134/7","135/0","136/0","136/1","140/0","141/0","142/1","142/3","144/0","149/0","149/2","150/0","154/0","158/0","160/0","161/0","161/1","161/2","161/5","162/0","162/3","163/0","164/1","165/0","167/0","168/0","171/0","175/0","177/2","177/4","178/0","178/3","178/5","179/1","179/2","179/3","179/4","179/5","180/0","187/0","187/1","188/0","189/0","189/1","190/0","192/0","193/0","194/0","194/1","196/0","200/0","201/0","202/0","203/0","204/2","208/1","211/0","211/1","211/3","212/0","217/0","218/0","219/0","220/1","221/0","223/0","224/0","224/1","226/0","228/1","229/0","229/2","231/0","232/0","233/0","234/0","240/0","241/1","242/3","254/0","254/1","255/0","255/1","256/0","256/1","256/2","258/0","259/0","259/1","264/0","265/0","265/1","266/0","267/0","268/0","271/0","279/0","279/1","280/0","282/1","283/0","287/2","294/0","295/0","295/1","297/0","297/1","299/2","299/3","307/0","307/1","310/0","310/4","313/0","316/0","318/1","320/0","322/0","323/0","323/3","323/4","323/5","324/0","325/0","325/1","327/2","329/0","329/3","329/4","330/0","330/3","332/0","338/0","339/0","341/0","349/0","349/1","350/0","350/1","351/2","353/0","354/0","362/1","363/0","364/0","366/0","370/0","389/2","390/1","398/0","398/1","398/2","399/0","399/1","399/3","400/2","410/0","411/0","420/2","432/0","432/5","434/1","435/0","435/1","435/3","439/1","440/0","441/0","443/0","443/2","444/0","458/0","460/0","461/0","461/1","463/0","464/0","470/1","470/0","471/0","472/0","475/4","475/5","475/6","475/7","475/8","476/3","476/5","476/6","478/0","478/3","478/4","479/1","482/0","486/0","490/0","491/0","492/0","495/0","498/0","500/0","515/0","519/0","520/0","522/0","527/0","530/0","532/0","543/0","545/0","546/0","547/0","548/1","548/0","551/2","556/0","558/0","568/1","570/0","570/3","571/2","580/0","581/0","582/0","583/0","583/2","583/3","590/1","593/0","593/1","594/2","598/0","598/1","599/2","600/2","602/1","604/0","605/0","608/0","615/1","618/0","620/0","621/1","625/0","628/2","628/3","631/2","632/0","638/0","638/2","639/0","639/1","639/2","642/0","642/1","642/3","643/1","643/2","643/3","652/0","653/0","653/1","663/2","664/0","665/1","667/1","668/2","669/0","672/0","673/0","675/1","675/0","676/0","679/1","682/0","683/0","683/1","684/1","685/0","688/0","688/1","690/0","690/1","694/0","697/0","704/0","706/0","708/1","708/2","709/1","709/2","713/1","713/2","713/3","716/1","718/1","718/3","718/4","721/0","722/0","723/0","725/0","726/0","727/0","728/0","729/0","731/0","737/0","739/1","741/1","751/0","751/1","751/6","752/1","753/4","754/1","754/4","755/2","756/0","756/1","756/2","757/0","759/1","759/2","760/0","762/0","762/2","763/1","764/1","766/0","767/0","768/0","768/2","769/0","771/0","772/0","772/1","777/2","777/5","784/0","785/0","788/0","789/0","790/0","790/4","796/2","796/3","796/4","796/5","797/0","797/2","798/0","798/2","799/0","800/1","800/3","800/4","800/5","800/7","800/15","800/16","800/18","801/0","803/0","805/0","805/2","806/0","806/1","806/2","806/4","806/5","807/0","807/1","808/0","808/1","808/2","809/1","809/3","809/4","810/0","810/1","810/2","810/3","811/0","812/0","813/0","813/1","814/1","815/6","815/10","816/2","817/0","817/2","818/0","818/1","819/0","821/3","822/0","822/2","823/1","823/2","824/0","826/1","827/1","831/0","832/0","834/0","835/1","836/0","836/1","839/5","841/1","844/0","845/0","846/0","848/0","851/0","852/0","853/0","854/0","855/0","857/0","857/1","858/4","858/0","859/0","860/1","860/2","860/3","860/4","860/5","861/0","863/2","864/2","866/0","866/1","866/2","867/0","868/0","868/1","869/0","871/1","871/3","872/1","873/0","874/1","875/1","875/2","876/0","877/2","877/3","877/7","878/0","878/1","883/0","884/0","884/1","885/1","885/2","887/1","888/0","890/0","890/1","893/0","893/1","893/3","893/5","893/6","894/0","894/3","894/4","895/0","898/0","899/0","899/1","899/2","899/3","900/0","901/0","903/1","903/2","904/1","905/0","909/1"],"_deploy":["0/0","5/1","6/0","8/0","9/0","15/0","41/0","135/0","165/0","295/1","297/0","404/0","410/0","441/0"],"_contract":["0/0","0/1","0/2","0/3","1/0","2/0","3/0","4/0","5/1","5/0","6/0","7/0","7/1","8/0","9/0","9/1","10/0","10/1","11/0","11/1","12/0","12/1","12/4","13/0","14/0","15/0","16/0","17/0","18/0","19/0","20/0","21/0","22/0","23/0","24/0","25/0","26/1","28/0","29/1","29/0","31/1","31/0","33/0","34/0","35/0","37/0","38/0","39/0","40/0","41/0","45/0","45/1","46/0","46/1","46/4","54/0","63/0","65/0","65/1","65/2","134/1","165/0","206/0","206/1","240/0","240/1","241/2","273/0","295/1","297/0","297/1","322/1","398/0","398/2","399/3","400/2","410/0","441/0","442/0","631/2","632/1","638/0","638/2","711/1","797/1","797/2","798/0","799/0","860/0","860/1","860/3","860/5","868/0","871/4","875/1","877/0","877/1","877/3","877/4","879/1","886/0","887/1","905/0","906/0"],"_additional":["0/0","31/4","31/5","37/0","38/0","136/4","141/0","163/4","174/0","177/4","178/6","187/1","201/2","615/0","616/0","663/2","726/0","762/3","789/0","800/8","806/1","844/0","872/1"],"_information":["0/0","177/4","240/2","241/3","260/0","601/1","611/0","612/0","624/1","644/0","904/0"],"_is":["0/0","0/1","0/3","7/1","8/1","9/0","9/1","9/2","10/0","11/1","13/0","14/0","15/0","16/0","17/0","17/1","18/0","20/1","25/1","26/0","27/0","27/1","28/1","28/3","28/4","28/5","28/6","28/8","29/0","29/2","29/3","30/3","31/0","31/3","31/4","35/0","35/1","36/0","37/2","39/0","40/0","41/0","42/0","43/0","43/1","44/0","45/1","48/1","53/1","54/0","58/1","58/2","58/3","62/0","62/2","63/0","64/1","64/2","65/0","65/2","66/0","67/1","69/0","71/0","71/5","73/0","77/0","85/1","86/0","89/0","90/1","96/0","97/0","98/0","99/0","100/1","107/0","109/0","110/0","111/0","111/1","114/0","117/0","118/0","120/0","121/1","122/0","124/0","124/1","125/2","129/0","129/1","129/2","130/1","131/0","131/1","133/1","134/0","134/1","134/2","134/4","134/5","134/6","135/1","136/4","136/5","140/1","140/2","141/0","142/3","143/0","144/2","144/3","145/0","145/1","148/0","151/0","151/1","153/0","155/0","155/1","157/0","160/0","160/1","161/0","161/2","161/5","162/1","162/2","162/4","163/0","163/2","165/0","166/0","167/1","167/2","168/0","169/0","169/1","172/0","177/0","177/3","177/4","179/0","179/2","180/1","180/3","182/1","185/1","186/1","187/1","188/0","189/0","192/0","194/0","197/1","198/2","199/2","200/0","201/1","202/1","202/2","203/0","204/0","206/1","208/1","209/0","210/0","211/1","213/1","214/1","221/0","224/1","225/2","227/0","227/3","229/2","230/0","230/1","230/2","234/1","235/1","236/1","237/1","240/0","240/1","241/0","241/1","242/0","242/1","242/2","243/0","245/2","247/1","249/0","254/1","255/1","256/1","256/2","259/0","259/1","260/0","265/2","271/0","279/0","281/0","283/0","286/0","287/0","287/1","289/1","290/1","291/1","294/1","294/3","295/0","295/1","296/0","297/0","299/2","307/0","307/1","308/0","309/0","310/0","310/4","311/0","312/0","313/1","314/0","316/0","318/1","322/1","323/0","323/1","323/2","323/3","323/4","323/5","324/2","325/1","327/0","328/0","328/1","329/0","329/1","329/2","329/4","330/0","330/3","333/1","334/1","336/1","336/3","338/0","339/0","341/1","342/0","342/1","345/0","349/0","350/0","350/1","351/1","352/0","359/0","359/1","359/2","362/0","363/0","363/1","364/0","365/0","366/0","367/0","368/0","369/0","370/0","372/0","373/0","374/0","375/0","377/0","378/0","380/0","381/0","381/2","382/0","385/0","389/2","391/1","392/1","393/1","397/0","398/0","399/2","399/3","400/1","400/2","405/1","411/1","414/1","420/0","420/2","420/3","432/1","432/3","432/5","434/0","434/1","435/1","435/2","436/1","438/0","443/1","448/0","452/0","461/0","464/0","469/0","470/1","473/0","474/0","475/0","475/5","476/2","476/3","476/6","477/0","478/0","478/4","480/0","480/1","482/0","483/0","485/0","486/0","486/1","486/2","487/0","488/0","489/0","489/1","495/1","498/1","500/1","501/0","506/0","507/0","513/0","515/0","515/2","515/3","519/0","521/0","527/0","530/0","532/0","544/0","548/1","549/0","550/0","550/1","551/0","551/5","556/0","570/0","570/2","570/3","570/4","571/0","572/1","579/0","585/1","587/0","593/0","597/1","598/0","603/0","606/0","608/1","608/3","608/4","615/1","619/0","619/1","620/0","621/0","621/1","622/1","623/0","626/0","627/0","628/2","628/3","631/0","631/2","632/0","632/1","633/1","634/0","636/0","639/0","639/2","642/1","642/3","643/0","643/1","643/2","643/3","649/0","653/1","655/1","661/2","662/0","663/2","667/0","667/1","668/0","675/1","678/2","679/2","680/2","683/0","684/0","685/0","686/1","687/0","687/1","688/0","688/1","688/2","690/0","697/0","703/1","705/1","706/0","707/0","709/2","711/1","713/1","713/2","713/3","714/1","716/1","718/1","718/2","718/3","718/5","722/1","723/1","724/1","728/1","729/1","730/1","731/0","732/0","733/0","738/0","739/1","741/1","751/5","752/0","753/0","754/0","756/2","758/1","760/0","762/0","763/0","763/2","766/1","768/0","769/0","770/0","771/0","772/1","777/0","777/2","777/3","777/6","777/7","777/9","778/0","779/0","781/1","782/1","784/1","788/0","789/0","790/0","790/4","791/0","793/1","796/1","796/3","796/4","797/0","798/1","798/3","798/4","798/5","798/6","798/8","800/0","800/1","800/3","800/4","800/6","800/7","800/8","800/12","800/14","800/15","800/16","803/0","804/0","804/1","805/0","805/1","805/2","805/3","806/0","806/7","807/0","807/2","807/3","808/1","808/2","809/0","809/3","810/0","810/1","811/0","815/2","815/4","815/8","818/0","821/1","821/3","822/1","823/0","823/2","824/0","825/0","825/1","825/3","829/0","831/0","832/0","833/1","835/1","836/0","837/0","839/0","839/1","839/2","839/3","839/4","843/0","844/1","846/0","846/3","846/4","847/0","854/0","855/0","857/0","858/0","860/0","860/2","860/3","860/4","863/0","864/1","866/0","866/1","867/0","871/1","871/3","873/0","876/0","877/0","877/2","877/3","877/6","879/1","885/0","886/0","887/1","890/0","892/1","893/0","893/3","894/3","894/7","897/1","899/2","900/1","903/0","903/2"],"_needed":["0/0","66/1","125/2","141/0","189/1","260/0","262/0","329/0","329/1","330/0","330/2","350/1","615/1","632/0","822/0"],"_that":["0/0","5/1","10/0","12/4","14/0","17/0","17/1","18/0","19/0","20/0","21/0","28/2","28/8","31/5","33/0","34/0","35/0","37/2","40/0","43/0","43/1","44/0","46/4","47/0","48/0","49/0","59/1","62/2","66/0","71/2","71/3","85/1","89/0","106/0","109/0","118/0","122/0","125/2","127/0","130/1","134/4","134/5","141/0","161/3","161/6","163/1","164/1","177/4","179/3","181/0","191/0","201/1","211/2","220/1","226/0","226/1","231/1","242/1","242/2","245/2","256/0","256/1","258/0","265/1","265/2","271/0","273/0","279/0","287/2","288/0","292/0","297/0","302/0","305/0","306/0","313/0","313/1","328/0","351/2","359/0","373/0","400/2","418/0","419/0","429/0","434/2","435/1","435/2","440/0","441/0","442/0","448/0","449/0","474/0","475/5","476/2","476/6","477/0","477/1","478/0","478/1","478/3","482/0","515/0","516/0","556/0","572/1","578/0","602/1","608/4","622/0","626/0","627/1","643/3","650/0","661/2","663/0","664/0","665/1","668/0","669/0","688/0","688/1","688/2","696/0","738/0","739/0","751/2","751/4","751/5","756/1","756/2","762/1","762/2","798/1","798/2","798/4","798/5","798/6","800/13","800/14","800/16","805/1","806/0","808/0","809/0","809/3","815/10","816/2","820/0","821/2","823/1","851/2","857/0","866/0","866/1","866/2","872/1","876/0","877/2","879/1","887/0","909/1"],"_not":["0/0","27/1","28/8","29/1","29/5","35/0","35/1","37/2","64/1","64/2","66/0","66/1","71/1","71/2","85/1","99/0","117/0","120/0","125/2","134/5","141/0","142/1","167/1","174/0","177/3","177/4","180/1","185/1","189/0","190/0","213/1","214/1","224/0","225/1","226/1","227/1","227/3","228/0","230/0","230/1","231/1","244/1","287/2","289/1","290/1","291/1","294/1","312/0","322/1","323/3","324/1","324/2","325/1","327/2","329/0","329/3","330/0","333/1","336/1","336/3","348/2","378/1","381/1","391/1","392/1","398/2","399/2","413/1","414/1","415/1","461/1","476/3","476/4","476/6","476/0","489/1","536/1","570/4","571/2","572/1","590/1","593/1","594/2","598/1","599/2","600/2","601/1","602/1","608/3","619/1","620/0","621/0","622/1","623/0","627/0","627/1","631/0","631/2","635/0","636/0","642/0","642/3","648/0","650/0","663/2","674/1","675/1","682/0","686/0","689/0","696/0","718/1","722/2","723/2","751/4","752/4","774/1","777/4","777/6","777/8","784/1","790/3","797/0","798/4","800/3","800/15","805/0","806/3","807/3","808/0","809/3","810/0","810/3","813/0","814/0","815/0","821/1","823/0","823/3","833/1","835/1","837/0","839/4","850/0","864/2","871/3","872/1","892/0","897/1","899/0"],"_available":["0/0","26/1","28/1","54/0","63/0","163/2","163/4","166/0","179/0","187/1","310/1","420/3","639/0","649/1","692/0","741/0","741/1","854/0","858/0","860/3","860/5","870/0","877/1","893/1","895/0","895/1","898/0"],"_on":["0/0","11/1","12/4","23/0","28/0","30/1","31/3","31/4","33/1","34/1","45/1","46/4","51/0","54/0","58/3","62/0","63/0","65/0","65/1","71/2","71/3","71/5","132/0","136/5","142/2","149/2","161/0","165/0","167/2","187/0","187/2","201/1","204/2","225/2","226/1","230/2","232/0","240/2","241/3","242/1","242/2","249/0","262/0","265/3","287/0","287/1","287/2","310/1","330/3","351/0","364/0","398/2","399/0","443/0","443/1","449/0","476/1","476/3","476/6","515/0","583/0","608/2","627/1","633/0","652/0","653/0","654/0","675/1","675/0","693/0","713/1","713/2","732/0","733/0","751/5","752/2","753/2","754/2","755/0","768/2","790/2","790/3","796/5","797/0","800/8","800/10","804/1","805/0","808/0","808/2","809/1","809/3","810/3","815/5","821/1","822/1","839/1","857/0","859/0","860/0","860/1","860/3","860/5","864/2","877/1","877/3","880/0","883/0","886/0","890/0","893/2","894/1","894/3","894/4","899/3"],"_object":["0/0","14/0","15/0","26/1","28/1","28/7","29/1","31/2","40/0","41/0","65/0","81/0","144/1","149/1","149/2","154/1","162/4","174/0","177/2","177/4","240/0","243/0","245/1","262/0","297/1","314/0","359/1","359/2","364/0","371/0","372/0","376/0","377/0","379/0","380/0","384/0","385/0","396/0","397/0","400/0","400/1","420/1","443/1","446/0","449/0","473/0","476/2","480/0","480/1","487/0","488/0","489/0","489/1","505/0","528/0","529/0","530/0","530/1","550/0","552/1","570/2","570/3","572/1","615/0","631/2","636/0","650/0","651/0","652/0","654/0","655/1","655/0","662/0","704/0","860/1","860/2","874/0","879/0","879/1","880/0","881/0","886/0"],"_itself":["0/0","134/5","134/7","399/2","570/1","583/0","602/1","877/1"],"_mainly":["0/1","796/3","800/14","872/1"],"_the":["0/1","0/2","0/3","1/0","2/0","3/0","4/0","5/0","5/1","6/0","7/1","8/0","8/1","9/0","9/1","9/2","10/0","10/1","11/0","11/1","12/0","13/0","14/0","14/1","15/0","16/0","17/0","18/0","19/0","20/0","20/1","23/0","24/0","26/1","27/0","27/1","28/0","28/1","28/2","28/3","28/7","28/8","29/0","29/1","29/3","29/4","29/6","30/0","30/1","30/3","31/0","31/1","31/2","31/3","31/4","31/5","33/0","33/1","34/0","34/1","35/0","35/3","35/4","38/0","39/0","40/0","40/1","41/0","42/0","43/0","44/0","45/0","45/1","46/0","47/0","48/0","48/1","51/0","52/0","54/0","55/0","55/1","56/0","57/0","58/0","58/1","58/3","59/0","61/0","62/0","62/2","63/0","65/0","66/0","66/1","67/0","68/0","69/0","70/0","71/0","71/1","71/2","71/3","73/0","74/0","75/0","75/1","76/0","76/1","77/0","78/0","79/0","80/0","81/0","85/0","85/1","87/0","88/0","89/0","91/0","92/0","93/0","94/0","96/0","97/0","98/0","99/0","100/0","100/1","100/2","101/0","102/0","103/0","104/0","105/0","106/0","107/0","108/0","109/0","110/0","110/1","110/3","111/0","113/0","114/0","115/0","117/0","118/0","119/0","120/0","121/0","123/0","124/1","125/0","125/2","126/0","128/0","129/0","129/2","129/3","129/4","130/1","131/0","131/1","132/0","133/0","133/1","134/1","134/3","134/4","134/5","134/6","134/7","134/8","135/1","136/1","136/2","136/3","136/4","136/5","139/0","140/1","140/2","141/0","142/0","142/2","143/0","144/0","144/1","148/0","149/0","149/1","149/2","150/0","150/1","153/0","154/0","154/1","157/0","160/0","160/1","160/2","161/0","161/5","161/6","162/3","162/4","163/1","163/3","165/0","166/0","167/0","167/1","167/2","169/1","171/0","173/0","175/0","176/0","177/0","177/1","177/2","177/3","177/4","178/3","178/4","179/0","179/2","179/3","179/4","179/5","180/1","180/2","180/3","181/0","182/0","182/1","183/0","184/0","184/2","185/0","185/1","185/2","186/0","187/0","187/2","188/0","189/1","190/1","191/0","192/0","193/0","194/0","196/0","197/0","197/1","198/0","198/1","198/2","199/0","199/1","199/2","201/0","201/1","202/0","202/1","202/2","203/0","204/0","204/1","205/0","206/0","206/1","207/0","208/0","208/1","209/0","210/0","211/0","211/1","211/2","211/3","213/0","213/1","214/0","214/1","215/0","216/0","217/0","220/0","220/1","221/0","222/0","223/0","224/0","224/1","225/0","226/0","226/1","227/0","227/1","227/3","228/0","228/1","229/0","229/1","229/2","230/1","230/2","231/0","231/1","231/2","233/0","234/0","235/0","236/0","237/0","237/1","238/0","239/0","240/0","240/1","241/0","241/1","242/0","242/1","242/2","244/0","244/1","245/0","245/1","245/2","247/0","247/1","248/0","249/0","250/0","251/0","252/0","253/0","254/0","255/0","256/0","256/1","257/0","258/0","260/0","261/0","262/0","263/0","264/0","265/0","265/2","266/0","267/0","268/0","269/0","270/0","271/0","272/0","273/0","274/0","275/0","276/0","277/0","278/0","279/0","279/1","280/0","281/0","282/0","282/1","283/0","284/0","285/0","286/0","287/0","287/1","289/0","289/1","290/0","290/1","291/0","291/1","292/0","293/0","294/0","294/1","294/2","294/3","294/4","295/0","295/1","296/0","297/0","297/1","298/0","299/0","299/1","299/2","299/3","300/0","301/0","302/0","303/0","304/0","305/0","306/0","307/0","308/0","309/0","310/0","310/1","310/3","311/0","311/1","313/0","315/0","316/0","317/0","318/0","318/1","319/0","320/0","321/0","322/0","323/2","323/3","323/5","324/0","325/0","325/1","326/0","327/1","327/2","328/1","329/1","329/3","329/4","330/1","330/2","330/3","331/0","332/0","333/1","334/1","335/1","335/2","336/1","336/3","337/0","338/0","339/0","340/0","341/0","341/1","342/2","344/0","346/0","347/0","348/1","348/2","349/0","349/1","350/0","351/0","351/1","351/2","352/0","353/0","354/0","359/0","359/1","359/2","360/0","363/1","366/0","368/0","369/0","370/0","373/0","374/0","375/0","378/0","381/0","381/2","382/0","383/0","386/0","387/0","387/2","388/0","388/2","389/0","389/3","390/0","391/0","392/0","393/0","398/1","398/2","399/0","399/1","399/2","400/1","400/2","401/0","402/0","403/0","404/0","405/0","405/1","406/0","407/0","408/0","409/0","410/0","411/0","412/0","413/0","414/0","414/1","415/0","416/0","417/0","417/1","418/0","419/0","420/1","420/2","420/3","421/0","422/0","423/0","424/0","425/0","426/0","427/0","428/0","429/0","430/0","431/0","432/0","432/1","432/2","432/3","432/4","432/5","434/1","435/0","435/1","435/3","436/1","436/2","437/1","439/0","439/1","440/0","441/0","442/0","443/0","448/0","450/0","450/1","452/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","470/1","471/0","472/0","473/0","475/0","475/5","475/8","476/2","476/3","476/4","476/5","476/6","477/0","477/1","478/0","478/2","478/4","479/0","479/1","480/0","480/1","484/0","485/0","486/2","493/0","495/0","496/0","497/0","498/1","501/0","502/0","505/0","506/0","507/0","508/0","509/0","510/0","511/0","512/0","513/0","514/0","515/0","515/1","515/2","515/3","516/0","519/0","520/0","521/0","522/0","524/0","526/0","527/0","533/0","536/1","538/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","548/1","550/1","551/1","551/2","551/3","551/5","553/0","554/0","555/0","556/0","558/0","559/0","560/0","561/0","562/0","563/0","564/0","565/0","566/0","567/0","568/0","568/1","569/0","570/0","570/1","570/2","570/3","570/4","571/1","571/2","572/2","573/0","574/0","574/1","575/0","576/0","577/0","578/0","579/0","579/1","580/0","581/0","582/0","583/0","583/2","584/0","585/0","585/1","586/0","587/0","588/0","589/0","590/0","590/1","591/0","592/0","593/0","594/0","595/0","596/0","597/0","597/1","598/0","599/0","599/1","600/0","600/1","601/1","602/1","603/0","606/0","607/0","608/0","608/1","608/2","608/3","610/0","614/0","619/0","622/0","624/1","625/0","626/0","627/0","628/2","628/3","631/0","632/0","634/0","634/1","634/2","638/2","638/3","639/0","639/1","639/2","641/0","642/0","642/1","642/2","642/3","643/0","643/1","643/2","643/3","649/1","652/0","655/1","657/0","658/0","659/0","660/0","661/0","661/1","661/2","663/0","663/1","663/2","664/0","665/0","665/1","666/0","666/1","668/1","668/2","670/0","671/1","672/0","673/0","675/0","675/1","677/0","678/0","678/1","678/2","679/0","679/2","680/0","680/1","680/2","681/0","683/0","683/1","684/0","684/1","686/0","686/1","687/0","687/1","687/2","688/0","688/1","688/2","689/0","690/1","691/0","691/1","692/0","693/0","694/0","695/0","697/0","698/0","699/0","700/0","701/0","702/0","703/0","703/1","705/0","705/1","706/0","707/0","708/0","708/1","708/2","709/0","709/1","709/2","710/0","711/0","711/1","712/0","713/0","713/3","714/0","714/1","715/0","716/0","716/1","717/0","718/0","718/1","718/4","718/5","719/0","720/0","721/0","722/0","722/1","723/0","723/1","724/1","726/0","727/0","728/0","728/1","729/0","729/1","730/0","730/1","731/0","732/0","733/0","734/0","735/0","736/0","737/0","738/0","739/0","739/1","740/0","741/0","741/1","742/0","743/0","744/0","745/0","746/0","747/0","748/0","749/0","750/0","751/0","751/1","751/2","751/3","751/4","751/5","752/0","752/1","752/4","753/0","754/0","756/0","756/1","757/0","759/0","759/1","760/0","762/0","762/2","763/2","764/0","764/1","766/0","766/1","767/0","768/0","768/1","768/2","769/0","770/0","771/0","772/0","772/1","773/0","773/1","774/1","775/0","776/0","777/1","777/2","777/3","777/4","777/5","777/7","777/8","777/9","778/0","779/0","780/0","781/0","782/0","783/0","784/1","785/0","785/1","786/0","787/0","788/0","789/0","790/0","790/1","790/2","790/3","790/4","791/0","792/0","793/0","793/1","794/0","796/0","796/1","796/3","796/4","796/6","797/0","797/1","797/2","798/1","798/2","798/6","798/7","799/0","800/1","800/3","800/4","800/6","800/7","800/10","800/12","800/14","800/15","800/16","800/18","801/0","803/0","804/1","805/3","806/0","806/1","806/3","806/7","807/0","807/1","807/2","808/0","808/1","808/2","809/0","809/1","809/3","809/4","810/0","810/2","811/0","812/0","813/1","814/0","814/1","815/1","815/2","815/3","815/6","815/7","815/10","816/0","816/2","817/0","817/1","817/2","818/0","818/1","819/0","819/1","821/0","821/1","821/3","822/0","822/1","823/0","823/2","823/3","824/0","824/1","826/2","827/2","828/1","829/0","829/1","830/1","831/1","832/1","833/1","834/0","835/0","835/1","836/1","836/2","837/0","838/0","839/0","839/1","839/3","839/5","840/0","841/0","841/2","842/0","843/0","844/1","845/0","846/0","846/1","846/4","847/0","848/1","849/0","849/1","850/0","851/1","851/2","852/0","853/0","854/0","855/0","857/0","857/1","858/0","858/4","859/0","860/0","860/1","860/3","860/4","860/5","860/6","863/2","864/0","864/2","866/2","867/0","869/0","870/0","871/1","871/2","871/3","871/4","872/0","872/1","873/0","874/0","875/0","875/1","875/2","876/0","877/0","877/1","877/2","877/3","877/4","877/5","877/7","878/0","879/0","879/1","880/0","881/0","884/0","884/1","885/1","886/0","886/1","887/0","887/1","887/2","890/0","891/0","893/2","893/3","893/4","893/5","893/6","894/0","894/5","894/7","895/0","897/0","897/1","899/0","899/2","899/3","901/0","903/0","903/1","903/2","906/0","908/0","909/0","909/1","912/0"],"_bytecode":["0/1","1/0","2/0","3/0","5/0","65/0","65/2","80/0","81/0","82/0","83/0","84/0","85/0","86/0","88/0","91/0","124/1","129/1","129/2","129/4","134/1","134/3","134/4","136/4","410/0","757/0","758/0","759/0","759/1","764/0"],"_more":["0/1","141/0","160/1","174/1","179/5","185/2","186/1","201/0","201/1","204/2","227/2","231/1","240/2","241/3","242/2","265/3","398/2","476/4","536/1","558/0","583/1","594/1","624/2","632/0","638/3","639/0","642/2","681/1","714/1","751/4","751/6","759/0","759/2","764/1","769/0","798/8","800/1","800/18","807/2","816/1","817/2","867/1","868/0","887/3","890/0","903/0","903/1"],"_specifically":["0/1"],"_initcode":["0/1","0/2","0/3","1/0","5/1"],"_of":["0/1","0/2","1/0","2/0","3/0","6/0","7/0","10/0","10/1","11/0","11/1","12/0","12/4","15/0","20/0","20/1","21/0","26/0","27/0","28/0","28/7","28/8","30/0","30/1","31/2","31/3","31/5","32/0","33/0","33/1","34/1","35/0","36/0","41/0","45/0","45/1","46/0","46/4","48/0","48/1","49/0","55/0","56/0","57/0","59/0","60/0","62/2","65/0","65/2","71/2","71/4","75/1","76/1","77/0","80/0","82/0","83/0","89/0","90/0","91/0","92/0","93/0","94/0","95/0","99/0","101/0","102/0","103/0","105/0","108/0","113/0","114/0","116/0","123/0","126/0","127/0","128/0","129/0","129/2","134/1","134/7","136/1","136/4","141/0","142/1","142/2","143/0","146/0","152/0","156/0","160/0","160/1","161/5","161/6","163/1","165/0","170/0","177/0","177/3","177/4","178/5","179/4","180/0","180/1","180/2","180/3","181/0","182/1","185/1","185/2","191/0","194/0","197/1","204/0","204/1","204/2","205/0","206/0","207/0","208/0","209/0","210/0","211/0","211/1","213/0","214/0","215/0","216/0","220/0","222/0","223/0","225/0","226/0","230/2","234/0","237/0","237/1","238/0","239/0","241/0","242/0","242/1","245/0","245/1","245/2","247/0","248/0","250/0","251/0","252/0","253/0","254/0","254/1","255/0","255/1","256/0","256/1","256/2","257/0","258/0","259/1","260/0","261/0","263/0","269/0","270/0","272/0","273/0","275/0","276/0","277/0","278/0","282/1","283/0","284/0","288/0","289/0","290/0","291/0","292/0","294/4","297/1","298/0","299/0","299/2","300/0","302/0","303/0","305/0","306/0","307/0","307/1","309/0","310/0","311/1","315/0","318/0","319/0","320/0","322/0","324/0","327/1","328/0","328/1","329/1","330/1","343/0","344/0","345/0","346/0","347/0","349/0","350/0","351/0","353/0","354/0","359/1","367/0","368/0","369/0","369/1","370/0","375/0","375/1","382/0","382/1","383/0","388/0","389/0","390/1","391/0","392/0","393/0","398/0","399/1","399/3","405/1","410/0","413/1","416/0","420/2","421/0","428/0","430/0","432/0","432/1","432/2","432/4","434/0","434/1","436/2","443/0","443/1","445/0","450/0","451/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","471/0","472/0","474/0","475/0","476/0","476/2","476/4","477/2","478/2","478/3","479/0","479/1","482/0","483/0","484/0","484/1","489/1","493/0","494/0","495/0","496/0","497/0","498/0","498/1","499/0","500/0","501/0","502/0","503/0","504/0","506/0","507/0","513/0","516/0","519/0","521/0","523/0","525/0","527/0","530/2","534/0","535/0","536/0","537/0","538/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","546/0","547/0","548/0","551/0","551/1","551/3","552/0","552/1","553/0","554/0","555/0","556/0","559/0","560/0","562/0","563/0","564/0","565/0","568/0","568/1","569/0","570/1","570/2","570/3","570/4","571/1","575/0","578/0","579/0","581/0","582/0","583/0","583/2","587/0","594/0","595/0","596/0","597/0","598/0","599/0","599/1","600/0","600/1","601/0","602/0","602/1","603/0","608/2","615/1","621/1","624/1","626/0","628/1","631/2","632/0","633/1","634/0","634/1","634/2","638/0","638/3","639/1","639/2","642/2","643/0","649/0","649/1","651/0","655/0","661/2","665/1","666/0","666/1","667/0","667/1","668/0","668/1","671/0","671/1","672/0","673/0","675/0","679/2","682/0","683/0","684/0","684/1","687/0","688/0","688/1","689/0","698/0","705/1","708/1","708/2","709/2","710/0","713/1","714/0","714/1","715/0","716/0","716/1","718/5","727/0","731/0","733/0","736/0","739/0","740/0","741/1","751/2","752/1","754/1","755/2","756/0","758/0","759/0","759/1","762/3","763/2","766/1","771/0","776/0","777/0","777/2","777/6","777/8","785/0","786/0","787/0","792/0","794/0","796/1","796/3","797/0","798/0","798/6","800/0","800/1","800/2","800/4","800/6","800/10","803/0","804/0","805/3","806/0","806/6","808/2","809/0","810/1","813/1","815/1","815/2","815/5","816/0","817/1","817/2","818/0","818/1","820/0","821/1","822/1","824/1","825/0","826/1","827/1","830/1","833/1","835/0","835/1","837/0","837/1","839/1","841/2","844/0","844/1","846/0","846/5","847/0","860/0","860/5","866/2","868/1","869/0","870/0","871/1","871/2","871/3","871/4","873/0","875/0","875/2","877/0","877/7","882/0","885/0","886/0","889/0","890/0","891/0","893/0","893/4","893/5","893/6","894/7","897/1","899/2","901/0","902/0","903/0","903/1","909/0"],"_required":["0/1","30/3","33/0","58/2","60/0","135/1","142/2","177/4","208/1","226/0","255/0","279/1","318/1","329/0","330/0","330/1","345/0","398/1","399/0","476/4","570/0","570/4","632/0","643/0","752/1","758/0","766/0","797/0","800/16","808/0","866/1"],"_factory":["0/2","0/0","1/0","2/0","3/0","4/0","5/0","6/0","7/0","8/0","9/0"],"_sends":["0/2","71/0","175/0"],"_special":["0/2","679/2","864/2","877/7","879/1"],"_type":["0/2","28/0","28/3","29/0","33/1","34/1","114/0","136/4","140/1","140/0","217/0","279/1","351/1","369/0","370/0","383/0","386/0","387/0","388/0","389/0","389/2","390/0","391/0","392/0","393/0","395/0","396/0","397/0","398/1","405/1","575/0","578/0","580/0","581/0","582/0","634/0","893/5","898/0"],"_transaction":["0/2","8/0","8/1","9/0","9/1","9/2","10/1","15/0","28/8","30/0","30/1","30/3","31/0","31/3","31/5","34/0","35/0","35/2","41/0","58/1","58/0","59/0","59/1","61/0","62/2","71/2","71/5","75/0","76/0","134/2","134/3","174/0","175/0","177/0","177/1","177/2","177/3","177/4","178/2","178/5","208/1","208/0","209/0","223/0","225/0","226/0","226/1","227/0","227/1","227/2","227/3","228/0","228/1","229/0","229/1","229/2","230/1","230/2","230/0","242/0","242/1","242/3","260/0","261/0","262/0","263/0","269/0","270/0","271/0","272/0","276/0","277/0","279/0","280/0","281/0","282/0","283/0","284/0","285/0","286/0","287/0","287/1","288/0","289/0","290/0","291/0","292/0","293/0","294/0","294/1","294/2","294/4","295/0","295/1","296/0","297/0","297/1","298/0","299/3","300/0","301/0","302/0","303/0","304/0","305/0","306/0","307/0","309/0","310/2","318/0","319/0","320/0","322/1","324/0","324/2","325/0","325/1","329/3","329/0","330/1","330/0","412/0","415/0","419/0","426/0","427/0","428/0","429/0","430/0","431/0","441/0","515/1","639/0","639/2","641/0","642/0","642/1","642/3","643/0","643/2","643/3","696/0","697/0","698/0","699/0","700/0","701/0","702/0","703/0","704/0","705/0","705/1","706/0","707/0","708/0","708/1","709/0","709/2","710/0","711/0","712/0","713/0","713/2","714/0","715/0","716/0","716/1","717/0","718/0","718/1","718/5","803/0"],"_an":["0/2","7/0","10/0","14/1","16/0","28/4","29/3","29/4","31/5","34/0","36/0","38/0","40/1","42/0","60/0","61/0","62/2","65/0","65/1","65/2","77/0","78/0","79/0","81/0","82/0","83/0","84/0","85/1","86/0","90/0","100/0","100/2","110/0","110/1","110/2","111/1","114/0","117/0","120/0","129/4","130/0","134/2","134/3","135/1","136/4","149/2","160/0","162/4","163/0","163/2","163/4","180/2","194/0","195/0","197/0","197/1","210/0","211/1","211/2","212/0","214/1","217/1","226/0","226/1","231/0","240/0","246/0","265/1","265/2","295/1","297/0","310/0","312/0","313/1","314/0","323/5","327/0","329/2","330/3","333/1","334/0","335/0","336/0","342/1","345/0","350/0","352/0","358/0","359/1","365/0","367/0","367/1","370/0","374/0","378/1","390/1","391/1","398/0","398/1","399/3","405/1","414/0","420/0","432/0","434/0","434/1","434/2","435/0","435/2","435/3","436/1","437/0","443/1","446/0","447/0","451/0","461/0","470/1","475/6","480/0","480/1","482/0","489/1","495/1","500/1","515/0","529/0","530/2","532/0","534/0","535/0","536/0","537/0","551/1","570/2","570/3","571/0","584/0","593/0","615/0","615/1","616/0","617/0","628/0","628/3","631/2","633/0","634/0","635/0","636/0","638/0","640/0","643/3","651/0","652/0","653/0","654/0","655/0","662/0","671/1","675/1","679/2","681/1","688/1","693/0","696/0","705/0","708/1","709/1","709/2","713/2","718/4","718/5","731/0","751/1","752/0","752/1","756/2","759/0","761/0","762/0","762/3","770/0","777/5","777/8","784/0","784/1","790/4","796/1","796/5","798/6","803/0","805/1","806/1","806/3","806/5","806/7","808/0","809/3","809/4","815/5","816/2","825/1","826/0","827/0","828/0","832/0","839/2","839/4","848/0","851/2","852/1","860/0","860/1","860/2","860/5","860/6","866/2","868/1","871/4","874/0","875/1","877/5","884/0","885/0","885/2","886/0","887/1","894/3","899/1","903/1"],"_field":["0/3","37/2","319/0","320/0","327/2","329/4","570/3","571/2","816/2"],"_null":["0/3","37/2","64/1","64/2","85/1","134/3","177/4","213/1","214/1","227/0","227/3","228/0","230/1","264/0","265/0","265/1","289/1","290/1","291/1","294/1","295/1","297/0","338/1","368/1","373/1","387/1","388/1","391/1","392/1","393/1","668/1","668/2","688/1","703/1","722/1","723/1","781/1","782/1","798/4","836/0","836/1","841/1"],"_and":["0/3","1/0","2/0","3/0","7/1","9/0","9/1","11/1","27/0","27/1","28/1","28/2","28/6","28/8","29/4","30/0","31/5","32/0","33/0","34/0","35/0","38/0","45/1","61/0","62/1","62/0","65/1","65/2","66/1","67/0","67/1","69/0","70/0","71/3","78/0","79/0","80/0","85/1","106/0","109/0","117/0","118/0","119/0","122/0","129/2","129/3","129/4","130/1","134/3","134/7","136/5","140/1","142/2","144/2","145/0","149/2","150/1","151/0","155/0","160/1","161/0","163/0","163/2","163/3","164/0","166/0","166/1","167/2","168/0","175/0","177/1","177/3","177/4","178/2","178/5","179/1","179/2","179/3","180/3","187/0","187/1","189/0","190/1","192/0","194/0","197/1","198/1","199/1","201/0","201/1","204/1","204/2","211/0","211/2","211/3","220/1","224/1","227/3","229/1","229/2","230/1","240/0","242/3","243/0","244/1","245/2","256/1","265/1","265/3","279/1","287/1","287/2","294/1","297/1","301/0","307/0","310/0","310/2","310/4","311/0","323/0","323/1","323/2","325/0","325/1","328/1","328/2","329/1","329/3","330/1","330/3","331/0","332/0","334/1","341/1","348/1","349/0","351/1","361/0","362/1","388/0","389/3","398/1","398/2","398/3","399/0","400/2","417/1","418/0","419/0","432/1","432/3","433/0","434/1","435/2","436/1","439/1","443/2","444/0","461/0","464/0","465/0","466/0","467/0","468/0","469/0","473/0","475/7","475/8","476/0","476/2","476/4","478/3","479/0","479/1","480/1","482/0","483/1","484/0","485/0","486/1","487/0","488/0","489/0","489/1","501/0","515/0","515/1","515/2","527/0","544/0","549/0","551/0","551/1","551/3","551/5","552/1","556/0","568/1","570/1","574/1","575/0","585/1","588/0","590/1","593/0","601/1","602/1","608/0","608/1","614/0","615/0","616/0","617/0","618/0","624/1","628/2","631/2","634/1","639/2","642/3","645/0","646/0","649/1","650/0","651/2","658/1","659/1","660/0","664/0","667/1","668/1","675/1","679/2","682/0","684/0","690/1","694/0","695/0","696/0","703/1","708/1","709/2","713/3","716/1","718/5","719/0","739/0","751/1","751/3","751/4","751/6","752/0","753/0","753/1","754/0","754/1","754/4","756/0","756/1","757/0","759/1","759/2","760/0","762/0","764/0","766/0","769/0","772/0","772/1","773/1","774/1","775/0","777/0","777/2","777/3","777/5","777/6","777/8","780/0","784/1","786/0","787/0","790/0","790/2","790/3","790/4","791/0","793/0","794/0","796/1","796/3","796/5","797/0","797/1","797/2","798/1","798/3","798/4","800/0","800/2","800/3","800/6","800/7","800/12","800/16","801/0","804/0","805/0","805/1","805/2","805/3","806/0","806/2","806/3","807/1","808/2","809/0","809/1","809/3","809/4","810/1","811/0","812/0","813/0","813/1","813/2","814/0","814/1","815/5","817/2","818/0","819/0","819/1","821/0","821/1","822/2","823/1","824/1","825/1","825/2","826/1","827/1","827/2","828/1","829/0","829/1","830/1","833/1","834/1","835/0","835/1","837/0","839/5","842/0","844/0","846/0","846/2","846/5","847/0","847/1","851/2","854/0","855/0","857/0","857/1","858/0","858/1","858/4","859/0","860/1","860/3","860/4","863/0","864/0","864/2","866/0","867/0","867/1","868/0","868/1","870/0","871/1","871/2","871/3","872/1","872/2","877/1","877/3","878/0","879/1","881/0","884/1","885/1","885/2","887/2","889/0","892/1","893/0","893/2","893/3","893/4","893/5","893/6","894/1","894/4","894/5","894/7","895/0","899/3","902/0","903/0","903/1","903/2","904/0","904/1","906/0","909/1","910/0"],"_data":["0/3","5/0","10/1","31/5","80/0","85/1","89/0","112/0","125/0","125/2","126/0","132/0","134/3","134/4","134/7","135/0","135/1","136/0","136/3","136/4","175/0","203/0","206/0","207/0","225/0","250/0","251/0","254/0","259/0","260/0","261/0","265/0","268/0","270/0","274/0","275/0","276/0","285/0","290/0","293/0","301/0","302/0","303/0","319/0","323/1","324/0","326/0","328/1","340/0","347/0","349/0","351/2","353/0","354/0","398/2","399/3","408/0","409/0","410/0","412/0","413/0","414/0","415/0","416/0","419/0","426/0","427/0","429/0","472/0","479/1","482/0","490/0","491/0","495/0","496/0","497/0","498/0","500/0","507/0","523/0","525/0","527/0","528/0","528/1","529/0","529/1","530/0","530/1","530/2","550/0","560/0","561/0","562/0","563/0","564/0","565/0","568/0","569/0","570/0","570/1","572/0","573/0","574/0","575/0","576/0","577/0","578/0","580/0","581/0","582/0","591/0","592/0","593/0","594/0","598/0","604/0","605/0","632/0","632/1","634/2","639/1","639/2","657/0","658/0","659/0","661/0","663/2","664/0","665/0","666/0","667/1","670/0","671/0","676/0","701/0","705/0","711/0","711/1","714/0","715/0","718/0","739/0","751/6","753/4","763/1","796/1","797/0","797/2","798/0","798/1","800/6","800/10","841/2","842/0","843/0","860/1","860/3","864/2","899/0","901/0"],"_where":["0/3","9/0","62/1","189/1","199/2","209/0","210/0","351/0","351/1","359/1","367/0","480/1","485/0","578/0","653/1","684/0","713/3","760/0","798/2","808/2","875/2"],"_will":["0/3","5/1","6/0","9/0","10/1","12/1","12/4","14/0","14/1","28/1","28/8","29/0","29/3","30/1","31/4","35/2","38/0","40/0","40/1","46/1","46/4","59/1","71/4","93/0","94/0","99/0","100/0","100/1","127/0","130/1","144/2","145/0","151/0","155/0","167/2","177/4","179/3","182/0","185/0","185/2","202/1","202/2","204/0","217/1","220/1","224/0","227/1","230/0","230/2","233/0","245/2","247/1","271/0","284/0","287/1","294/3","310/3","323/1","327/2","327/0","333/2","334/1","335/1","338/0","341/1","342/1","342/2","349/1","351/0","351/2","368/1","369/1","386/0","389/3","398/2","413/1","414/1","415/1","417/1","434/2","435/2","439/1","443/2","461/1","470/1","475/5","476/5","495/1","500/1","502/1","515/2","515/3","529/1","550/1","571/2","571/0","572/2","578/0","590/1","593/1","594/2","597/1","598/1","599/1","599/2","600/1","600/2","601/1","609/0","626/0","628/3","634/1","634/2","649/1","653/1","658/1","659/1","661/1","663/2","665/1","671/1","684/1","687/2","688/2","691/1","693/0","694/0","695/0","718/4","732/0","733/0","756/1","761/0","762/2","766/1","768/2","772/1","773/1","774/0","774/1","776/0","777/5","785/1","793/1","796/3","800/3","804/1","807/1","809/3","813/1","814/1","815/6","816/1","816/2","817/1","818/1","820/0","833/1","839/2","839/4","839/5","849/1","851/2","852/0","863/0","866/2","869/0","875/1","877/4","877/5","877/7","894/5","903/0","903/1"],"_be":["0/3","8/1","9/0","9/1","9/2","10/1","14/1","27/0","28/1","28/8","29/0","29/4","30/0","30/1","30/3","31/4","31/5","33/0","34/0","35/2","37/1","40/1","55/1","59/1","60/0","61/0","62/2","64/0","66/0","66/1","67/0","70/0","71/3","71/4","75/1","76/1","81/0","100/1","108/0","109/0","118/0","122/0","125/0","125/2","129/1","129/4","130/0","131/0","132/1","134/1","134/4","135/0","135/1","136/2","136/3","138/0","144/1","144/2","145/0","149/1","149/2","151/0","154/1","155/0","162/3","164/1","167/2","171/1","177/1","178/3","178/5","179/3","179/5","180/2","182/0","185/0","186/1","187/0","189/0","194/0","194/1","197/0","198/1","198/2","199/1","202/1","202/2","208/1","211/0","211/2","212/0","217/1","224/1","226/0","226/1","229/0","229/1","232/0","233/0","239/0","245/0","245/2","247/1","255/0","256/1","265/1","271/0","279/0","279/1","282/1","287/1","287/2","294/3","297/1","299/3","310/0","311/0","313/1","318/1","323/1","323/5","327/2","329/0","329/4","330/0","330/2","334/1","338/0","338/1","341/1","342/1","348/1","349/0","350/0","351/0","353/0","354/0","359/2","361/0","368/1","369/1","373/0","373/1","375/1","382/1","387/1","387/2","388/1","388/2","389/3","400/1","400/2","410/0","411/0","412/0","413/0","413/1","414/1","415/1","420/0","420/1","432/0","435/1","435/2","436/2","439/1","444/0","444/1","445/0","450/0","475/6","475/7","475/8","476/4","476/5","476/6","477/1","479/1","481/0","486/0","486/1","486/2","495/1","500/1","502/1","515/1","516/0","517/0","528/1","529/1","530/1","533/0","551/2","551/3","551/5","552/1","556/0","571/2","575/0","590/1","602/1","608/1","608/3","615/1","618/0","642/2","642/3","649/1","658/1","659/1","661/1","663/2","665/1","666/1","674/1","676/0","682/0","683/1","684/0","684/1","688/0","688/1","694/0","705/0","708/2","713/2","713/3","714/1","718/1","718/4","756/1","758/0","759/1","760/0","761/0","762/0","762/1","762/2","763/1","764/1","767/0","772/1","773/1","774/1","776/0","796/6","797/0","797/1","797/2","798/0","800/1","800/4","800/5","800/7","800/13","800/16","804/0","804/1","806/4","806/5","806/6","806/7","807/1","808/1","808/2","809/3","810/1","811/0","812/0","815/0","815/10","816/2","817/2","818/1","823/1","823/2","824/0","826/3","833/1","833/2","836/1","837/1","839/5","840/0","841/2","845/0","846/1","847/0","849/0","849/1","851/2","852/0","863/1","864/2","867/0","868/1","869/0","871/2","871/4","875/1","877/7","880/0","884/1","885/1","885/2","894/7","899/0","899/3","903/1","903/2"],"_evaluated":["0/3","849/1"],"_result":["0/3","15/0","27/0","28/0","28/1","29/0","29/3","29/4","30/2","30/3","35/0","41/0","58/3","119/0","121/1","134/4","144/2","145/0","151/0","155/0","177/4","179/3","182/0","185/1","185/2","198/2","199/2","206/1","209/0","210/0","225/0","319/0","320/0","330/2","351/0","351/2","354/0","413/0","414/1","414/0","415/0","416/0","420/0","421/0","426/0","441/0","442/0","475/5","601/1","719/0","759/0","823/1","839/1","877/5","877/7"],"_becomes":["0/3","476/0","478/1","899/1"],"_new":["0/3","1/0","3/0","11/0","12/0","30/1","38/0","45/0","46/0","64/0","72/0","90/0","127/0","140/0","144/0","149/0","150/0","154/0","158/0","162/0","167/0","174/0","180/0","190/0","195/0","202/0","332/0","333/0","339/0","343/0","351/0","400/0","503/0","539/0","540/0","541/0","542/0","543/0","545/0","552/0","572/0","602/0","603/0","609/0","621/0","621/1","636/0","639/2","642/0","642/1","642/2","656/0","732/0","809/3","866/2","872/1","877/3","893/3"],"_code":["0/3","10/0","10/1","27/0","28/8","38/0","79/0","101/0","102/0","103/0","106/0","110/1","117/0","119/0","120/0","121/0","134/1","134/5","206/0","211/2","435/0","442/0","475/6","478/1","598/0","615/0","616/0","626/0","673/0","759/2","762/2","818/0","818/1","820/0","833/0","833/1","838/0","839/5","849/0","849/1","859/0","860/0","860/6","903/1"],"_deployed":["0/3","9/0","10/0","65/0","206/1","249/0","399/1","859/0","893/5"],"_as":["0/3","7/1","16/0","28/2","28/4","28/8","30/1","35/3","42/0","58/2","62/0","70/0","71/0","91/0","119/0","124/0","125/2","134/1","134/4","136/5","144/1","149/1","150/1","154/1","161/1","161/3","162/3","164/0","164/1","166/1","171/1","177/0","177/4","178/2","179/1","185/1","187/1","194/0","201/1","202/0","205/0","206/0","207/0","208/0","220/1","239/0","244/1","245/1","245/2","247/0","254/0","260/0","265/2","287/0","288/0","299/1","311/1","313/1","318/1","319/0","320/0","322/1","323/0","323/1","325/1","327/2","328/1","330/1","331/0","342/1","345/0","348/2","366/0","374/0","378/1","390/0","398/1","412/0","417/1","420/0","420/1","420/2","426/0","435/0","435/1","436/0","437/0","437/1","444/1","446/0","470/0","471/0","472/0","475/5","475/7","477/0","479/0","482/0","486/2","515/2","516/0","517/0","524/0","526/0","529/1","534/0","535/0","536/0","537/0","550/1","551/5","552/1","558/0","570/4","571/2","575/0","593/0","598/0","601/1","619/0","623/0","628/2","628/3","631/2","634/2","638/0","638/2","639/1","639/2","640/0","642/3","655/1","661/2","663/2","688/0","690/1","694/0","696/0","705/0","713/1","751/1","751/3","751/6","754/1","755/2","760/0","762/0","768/1","790/1","790/2","804/1","806/0","807/2","808/2","809/3","810/0","816/2","817/2","818/0","819/1","821/0","821/2","833/1","835/0","835/1","837/1","858/1","860/1","866/2","868/1","871/3","877/1","877/5","877/7","891/0","893/1","893/4","894/0","894/4","894/6","895/0","898/0","901/0"],"_contractfactory":["0/0","1/0","2/0","3/0","4/0","5/1","5/0","6/0","7/1","7/0","8/0","9/0","15/0","41/0","65/2"],"_creates":["1/0","161/1","180/0","204/1","572/0","651/0","798/0","833/0","834/0","838/0"],"_instance":["1/0","3/0","7/0","11/0","12/0","38/0","45/0","46/0","90/0","142/1","180/0","193/0","196/0","212/0","332/0","334/0","335/0","336/0","339/0","343/0","350/0","351/0","447/0","451/0","534/0","535/0","536/0","537/0","552/0","602/0","608/2","821/2"],"_for":["1/0","2/0","25/0","28/2","28/3","28/6","28/7","28/8","29/2","29/3","29/4","31/0","31/2","31/3","31/5","33/1","34/1","36/0","37/0","38/0","53/0","56/0","60/0","65/1","66/0","67/0","71/0","71/3","71/5","75/0","81/0","87/0","88/0","90/0","105/0","110/0","110/1","111/1","112/0","114/0","115/0","122/0","125/0","128/0","129/0","129/3","130/1","135/0","136/2","136/3","136/4","142/0","144/1","144/3","145/1","149/1","151/1","154/1","155/1","160/1","161/0","163/0","165/0","166/0","171/1","174/1","177/1","177/2","177/3","183/0","184/0","186/1","187/2","193/0","197/0","201/0","201/1","201/2","204/2","208/1","211/1","212/0","217/0","219/0","224/1","225/2","226/1","228/0","229/2","230/0","231/0","232/0","233/0","235/0","235/1","236/0","237/0","238/0","240/2","241/3","244/1","261/0","262/0","265/2","265/3","266/0","267/0","268/0","275/0","282/0","294/0","307/0","310/2","323/2","324/2","326/0","330/1","330/2","332/0","335/1","337/0","338/0","340/0","342/2","343/0","345/0","350/0","351/2","363/1","368/1","370/0","387/1","387/2","388/1","388/2","389/1","389/3","391/1","392/0","392/1","393/1","404/0","406/0","407/0","408/0","409/0","411/0","412/0","413/0","413/1","414/0","415/0","415/1","416/0","417/0","417/1","419/0","420/2","432/3","435/1","439/0","439/1","448/0","451/0","474/0","475/2","475/5","476/4","476/6","477/2","478/3","479/0","486/1","515/1","533/1","534/0","535/0","536/0","537/0","551/4","551/5","557/0","570/0","570/2","572/0","575/0","583/0","583/1","584/0","585/0","586/0","588/0","589/0","590/0","591/0","592/0","594/1","607/0","614/0","619/1","628/1","628/3","631/1","631/2","638/1","638/3","639/1","639/2","643/0","643/2","643/3","645/0","646/0","647/0","649/0","653/0","656/0","657/0","658/0","659/0","664/0","667/0","668/2","674/0","678/2","679/2","680/2","681/1","686/0","686/1","687/0","688/0","689/0","691/0","692/0","699/0","700/0","701/0","702/0","703/0","705/0","708/0","709/0","710/0","711/0","712/0","713/0","713/2","714/0","715/0","716/0","722/0","723/0","728/0","729/0","734/0","738/0","751/0","751/2","751/3","751/5","751/6","752/0","752/2","753/0","753/2","754/1","754/2","755/0","756/1","756/2","759/2","762/0","764/0","768/2","769/0","773/0","775/0","777/6","778/0","779/0","783/0","793/0","794/0","796/3","797/0","798/1","800/1","800/4","800/7","800/9","800/11","800/18","805/3","806/0","806/2","806/4","806/7","809/1","809/3","810/0","812/0","813/0","813/1","814/0","815/0","815/1","815/5","815/10","816/0","816/2","817/2","821/3","822/0","822/1","823/2","824/0","836/1","837/0","838/0","839/0","843/0","845/0","849/0","853/0","854/0","855/0","855/1","858/0","860/1","863/1","864/1","866/2","867/0","867/1","868/1","871/3","871/4","874/0","877/2","877/3","879/1","884/0","886/1","887/3","891/0","893/1","893/5","894/4","894/5","896/0","897/0","899/3","903/2","907/0","908/0","909/0","912/0"],"_described":["1/0"],"_by":["1/0","12/1","12/3","27/0","28/1","30/1","37/0","46/1","46/3","55/0","76/0","122/0","124/0","129/0","129/1","133/1","134/6","136/5","140/1","143/0","148/0","153/0","157/0","162/0","163/1","167/2","169/0","170/0","172/0","177/1","179/4","182/1","187/0","194/0","217/1","231/1","255/0","256/1","257/0","260/0","264/0","265/0","268/0","287/0","297/0","299/1","300/0","304/0","307/0","329/1","350/1","352/0","365/0","398/1","400/1","420/1","420/3","475/8","477/0","483/0","518/0","551/1","552/0","574/0","585/1","603/0","606/0","624/1","628/2","633/1","642/0","642/3","651/2","670/0","675/0","688/1","694/0","695/0","708/2","718/4","738/0","741/1","751/1","751/3","751/4","755/2","759/0","761/0","761/1","763/0","790/4","796/6","798/0","800/5","800/6","800/7","800/10","807/1","809/3","843/0","846/4","852/0","893/4","893/5","894/3","909/1"],"_interface":["1/0","3/0","4/0","7/1","16/0","42/0","77/0","160/0","335/1","345/0","349/1","352/0","398/0","398/1","398/2","399/0","400/0","401/0","402/0","403/0","404/0","405/0","406/0","407/0","408/0","409/0","410/0","411/0","412/0","413/0","414/0","415/0","416/0","418/0","419/0","432/0","515/1","753/1","754/1","766/1","860/3","879/0","879/1","905/0"],"_ethers":["1/0","38/0","67/0","69/0","70/0","78/0","79/0","100/0","129/0","129/4","133/0","134/8","141/0","144/0","149/0","154/0","158/0","160/1","162/0","163/1","167/0","177/0","179/0","180/0","190/0","194/0","195/0","202/0","203/0","204/0","204/1","211/2","310/0","327/1","332/0","333/0","334/0","335/0","336/0","343/0","351/0","352/0","362/0","363/0","364/0","365/0","371/0","372/0","376/0","377/0","379/0","380/0","384/0","385/0","396/0","397/0","400/2","400/0","436/0","437/0","438/0","439/0","440/0","441/0","442/0","451/0","473/0","476/2","476/4","478/1","478/2","478/3","487/0","488/0","489/0","490/0","491/0","492/0","493/0","494/0","495/0","496/0","497/0","498/0","499/0","500/0","501/0","502/0","503/0","504/0","505/0","506/0","507/0","508/0","509/0","510/0","511/0","512/0","513/0","514/0","518/0","519/0","520/0","521/0","522/0","523/0","524/0","525/0","526/0","528/0","529/0","560/0","561/0","562/0","563/0","564/0","565/0","566/0","567/0","568/0","569/0","571/1","572/0","580/0","581/0","582/0","584/0","588/0","589/0","590/0","604/0","605/0","606/0","608/0","608/2","609/0","614/0","626/0","649/1","650/0","651/0","652/0","653/0","654/0","655/0","656/0","663/0","664/0","665/0","666/0","670/0","671/0","672/0","673/0","675/0","677/0","678/0","679/0","680/0","681/0","685/0","686/0","687/0","688/0","689/0","690/0","691/0","693/0","694/0","695/0","717/0","718/0","719/0","720/0","741/0","741/1","742/0","743/0","744/0","745/0","746/0","747/0","748/0","749/0","750/0","751/2","757/0","759/0","766/0","766/1","807/1","809/0","809/3","810/0","810/3","812/0","813/0","813/1","816/0","817/0","822/0","854/0","855/0","863/1","863/2","867/0","867/1","870/0","872/0","877/0","882/0","883/0","884/0","885/0","887/1","887/2","889/0","893/1","894/0","894/1","894/4"],"_signer":["1/0","2/0","3/0","6/0","9/0","12/3","12/4","12/0","17/1","18/0","31/1","31/3","38/0","43/1","44/0","46/3","46/4","46/0","58/0","59/0","70/0","71/0","72/0","73/0","74/0","75/0","75/1","76/1","139/0","140/0","169/0","172/0","173/0","174/0","175/0","176/0","177/0","204/1","310/0","310/2","311/0","312/0","313/1","313/0","314/0","315/0","316/0","317/0","318/0","319/0","320/0","321/0","322/0","324/0","325/0","326/0","328/0","328/1","328/2","329/4","329/0","330/3","330/0","331/0","342/0","342/1","343/0","344/0","631/2","780/0","857/1","858/4","885/0"],"_consumes":["2/0","790/4","841/0","846/4"],"_output":["2/0","83/0","117/0","120/0","125/0","131/1","359/0","361/0","365/0","383/0","395/0","479/1","625/0","644/0","645/0","646/0","647/0","648/0","667/0","684/0","763/2","785/1","817/1","818/0","833/1","839/5"],"_solidity":["2/0","30/3","357/0","359/0","365/0","386/0","399/1","400/1","432/5","556/0","579/0","580/0","581/0","582/0","668/0","800/0","800/2","800/18","860/6","891/0","893/5","897/2","909/0"],"_compiler":["2/0","357/0","359/0","400/1","860/6"],"_extracting":["2/0"],"_abi":["2/0","16/0","26/1","28/0","31/5","38/0","42/0","54/0","63/0","349/0","351/0","352/0","353/0","354/0","355/0","356/0","357/0","358/0","359/0","359/1","359/2","360/0","367/0","398/0","399/2","400/0","400/1","400/2","417/1","432/1","579/0","632/1","860/3","860/4","860/5","860/6","868/0","893/5","903/2","905/0","906/0"],"_from":["2/0","19/0","28/8","30/3","47/0","55/1","58/0","59/0","64/1","64/0","86/0","90/0","93/0","110/0","161/3","173/0","179/2","186/0","191/0","194/0","198/2","202/2","204/0","208/1","209/0","210/0","241/2","266/0","281/0","282/1","296/0","310/2","319/0","320/0","327/2","329/3","329/4","333/0","334/0","335/0","336/0","350/1","351/1","351/2","359/0","363/1","371/0","376/0","379/0","384/0","396/0","400/0","413/0","414/0","415/0","416/0","426/0","431/0","434/1","442/0","450/1","451/0","462/0","476/3","479/1","498/0","521/0","534/0","535/0","536/0","537/0","552/0","571/2","572/0","583/2","588/0","589/0","590/0","624/0","624/1","628/3","653/0","661/1","682/0","694/0","707/0","708/1","708/2","714/1","717/0","719/0","732/0","751/5","767/0","774/1","819/0","824/1","839/5","854/0","855/1","860/6","868/0","871/4","872/0","874/1","875/2","876/0","882/0","883/0","887/1","893/3","893/4","895/0","899/0"],"_it":["2/0","14/1","27/1","28/1","30/1","30/2","30/3","31/0","32/0","35/0","40/1","58/3","65/1","66/1","71/0","71/3","81/0","85/1","99/0","110/1","124/0","129/1","129/3","134/5","136/3","141/0","142/3","144/3","145/1","151/1","155/1","161/0","161/1","161/2","161/6","163/0","163/1","167/2","177/0","177/3","179/1","185/1","187/1","189/1","192/0","194/0","202/2","233/0","242/2","260/0","271/0","280/0","287/2","288/0","297/0","299/1","299/3","306/0","309/0","310/2","310/4","323/0","323/1","323/5","327/1","327/2","328/0","329/2","329/3","329/4","330/3","334/1","341/1","342/1","348/1","366/0","373/1","375/1","382/1","389/3","399/3","420/2","432/1","434/1","435/2","436/1","452/0","476/0","476/2","476/5","477/1","478/3","482/0","486/0","515/0","519/0","521/0","532/0","570/4","571/1","571/2","585/1","608/1","624/2","628/2","642/3","658/1","659/1","661/2","663/2","666/0","668/1","671/1","672/0","675/1","682/0","688/0","713/2","713/3","718/3","718/4","719/0","720/0","746/0","751/5","756/0","756/2","766/1","769/0","771/0","777/5","789/0","791/0","798/0","800/6","800/15","805/2","806/0","808/2","810/0","810/1","813/1","814/1","816/2","822/1","823/2","823/3","831/0","832/0","833/2","835/1","846/0","852/1","855/0","855/1","858/3","860/1","860/4","866/1","867/1","872/1","873/0","874/0","877/5","879/1","884/1","885/1","886/1","892/1","895/0","899/1","909/1"],"_allowing":["2/0","29/4","36/0","67/0","351/2","762/2","823/1"],"_various":["2/0","143/0","227/2","231/0","359/1","398/0","399/3","477/2","479/1","570/0","574/0","618/0","812/0","813/1","854/0","893/4","904/0"],"_formats":["2/0","349/0","355/0","361/0","399/3","433/0"],"_solc":["2/0","893/5"],"_has":["2/0","10/0","12/1","26/0","31/1","46/1","68/0","122/0","129/3","134/3","134/8","161/4","161/6","177/1","179/3","208/0","224/0","227/1","228/0","228/1","229/2","230/1","230/2","240/0","271/0","288/0","289/1","290/1","291/1","294/0","294/1","297/0","318/0","327/2","348/1","359/1","390/0","435/1","476/0","477/2","482/0","483/0","516/2","516/3","551/5","552/1","571/2","608/1","622/0","626/0","627/1","641/0","642/0","680/2","683/1","696/0","753/0","754/0","790/2","805/0","809/0","821/0","826/0","827/0","828/0","829/0","830/0","851/2","867/1","873/0","874/1","875/0","875/2","876/0","879/0","879/1","893/1","894/3","895/1"],"_emitted":["2/0","65/1","242/1","271/0","304/0","400/1"],"_over":["2/0","184/1","187/0","475/5","476/1","477/2","642/1","724/0","777/5","797/2","809/0","820/0","864/2","868/0","874/0","893/1"],"_its":["2/0","10/1","26/0","28/1","129/4","134/5","161/6","200/1","268/0","310/4","323/0","361/0","378/1","420/1","420/3","528/0","529/0","602/0","605/0","627/1","632/0","643/0","668/0","668/1","674/0","683/0","684/0","696/0","762/2","793/0","800/8","824/1","826/0","827/0","828/0","829/0","830/0","844/0","845/0","860/4","867/0","876/0","893/1","893/5","895/1","898/0"],"_life":["2/0","328/1","799/0"],"_fromsolidity":["2/0"],"_compileroutput":["2/0"],"_returns":["3/0","8/0","9/0","11/0","12/0","20/1","28/1","31/0","33/0","34/0","45/0","46/0","48/1","55/0","56/0","57/0","60/0","61/0","64/0","82/0","96/0","97/0","98/0","99/0","134/4","162/0","169/0","170/0","174/0","175/0","185/1","202/0","205/0","206/0","207/0","208/0","212/0","217/0","218/0","219/0","220/0","221/0","222/0","223/0","224/0","225/0","226/0","227/0","228/0","230/0","230/1","237/0","238/0","243/0","313/0","314/0","315/0","316/0","317/0","318/0","319/0","320/0","321/0","322/0","324/0","325/0","333/0","364/0","371/0","406/0","407/0","411/0","412/0","413/0","414/0","415/0","416/0","436/0","437/0","438/0","439/0","441/0","442/0","451/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","471/0","472/0","473/0","487/0","488/0","489/0","494/0","495/0","497/0","498/0","499/0","500/0","518/0","519/0","521/0","534/0","535/0","536/0","537/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","546/0","547/0","548/0","549/0","552/0","561/0","562/0","563/0","564/0","565/0","569/0","573/0","574/0","575/0","576/0","577/0","578/0","580/0","581/0","582/0","606/0","610/0","632/1","655/0","662/0","663/0","664/0","665/0","670/0","671/0","672/0","673/0","675/0","720/0","735/0","736/0","737/0","738/0","877/4","877/6","901/0","902/0"],"_with":["3/0","7/1","8/0","9/0","10/1","11/1","13/0","26/1","28/1","31/3","31/5","33/0","34/0","39/0","45/1","55/1","68/0","69/0","70/0","74/0","75/1","76/1","134/7","144/0","144/3","145/1","149/0","149/2","150/0","151/1","154/0","155/1","162/4","166/0","177/4","179/1","189/1","194/0","210/0","211/3","227/0","231/1","241/1","260/0","262/0","271/0","294/3","294/4","297/1","299/3","310/4","319/0","320/0","321/0","325/0","326/0","328/1","329/1","333/0","334/1","341/1","350/0","350/1","363/0","398/0","398/1","399/0","399/1","399/3","414/0","434/0","435/0","435/1","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","461/1","462/0","463/0","475/0","475/1","476/2","479/0","480/0","480/1","492/0","494/0","495/0","499/0","518/0","519/0","521/0","532/0","537/0","539/0","540/0","541/0","542/0","543/0","545/0","551/1","565/0","568/1","570/2","570/3","578/0","588/0","598/0","602/0","615/0","616/0","617/0","628/0","628/2","636/0","642/3","643/3","649/1","658/1","659/1","661/0","667/1","668/0","668/1","674/1","680/0","681/0","685/0","693/0","695/0","713/2","714/1","718/0","719/0","725/0","740/0","751/0","751/6","752/1","753/1","754/1","758/0","766/0","766/1","768/0","769/0","774/1","785/0","785/1","786/0","792/0","793/0","794/0","797/1","798/8","800/10","807/1","810/1","815/2","816/2","817/2","825/1","833/1","833/2","839/0","839/1","839/3","842/0","844/0","846/2","846/4","846/5","858/0","860/1","860/2","860/3","867/0","867/1","868/1","871/4","877/2","877/3","886/1","893/4","893/5","894/6","904/1","910/0"],"_same":["3/0","7/1","35/3","136/3","150/1","184/2","330/1","400/2","437/1","477/1","551/5","619/0","655/1","680/1","688/0","690/1","819/1","844/1","877/7","887/0"],"_but":["3/0","12/0","27/1","28/8","35/1","46/0","117/0","120/0","135/1","141/0","160/1","177/0","177/4","185/2","200/1","225/1","226/1","271/0","310/2","329/0","330/0","342/1","413/1","415/1","478/4","479/1","515/1","583/0","602/0","602/1","607/0","628/3","636/0","642/0","661/1","680/1","684/0","686/0","688/1","690/0","709/2","768/0","798/8","800/1","800/15","804/1","805/0","806/3","808/0","808/2","809/1","809/2","810/0","813/0","824/0","837/0","847/0","854/0","860/6","871/3","887/0","892/0","903/0"],"_different":["3/0","168/0","477/1","680/1","688/0","713/1","887/0","887/1","893/4"],"_connect":["3/0","12/0","46/0","150/0","162/3","167/0","174/0","312/0","339/0","628/3","721/0","868/0"],"_this":["5/1","6/0","7/1","8/0","9/0","11/1","12/1","12/4","13/0","14/0","14/1","15/0","16/0","17/0","17/1","18/0","22/0","23/0","24/0","25/0","28/8","29/1","29/2","29/4","29/5","30/1","31/1","31/5","35/1","35/2","35/3","39/0","40/0","40/1","41/0","42/0","43/0","43/1","44/0","45/1","46/1","46/4","50/0","51/0","52/0","53/0","55/0","55/1","56/0","58/2","58/3","59/1","62/1","67/1","75/1","76/1","85/1","87/0","88/0","89/0","91/0","92/0","93/0","94/0","95/0","99/0","101/0","102/0","103/0","105/0","106/0","108/0","109/0","111/0","111/1","114/0","115/0","116/0","118/0","123/0","128/0","129/0","131/1","134/1","134/4","134/6","136/2","138/0","142/2","161/6","163/3","169/0","170/0","171/1","173/0","177/1","177/2","182/1","183/0","185/1","186/0","186/1","187/1","188/0","189/0","190/0","192/0","194/1","196/0","198/0","199/0","200/0","200/1","201/2","204/0","204/2","208/1","211/1","215/0","221/0","224/1","225/2","227/1","227/3","230/1","230/2","231/1","232/0","233/0","234/1","235/0","236/0","241/1","242/1","244/1","247/1","249/0","250/0","252/0","253/0","254/0","254/1","255/1","256/0","256/1","256/2","257/0","258/0","259/0","259/1","260/0","261/0","262/0","263/0","269/0","270/0","271/0","272/0","273/0","274/0","275/0","276/0","277/0","278/0","280/0","281/0","282/0","282/1","283/0","284/0","286/0","287/0","287/2","289/0","289/1","290/0","290/1","291/0","291/1","292/0","295/0","295/1","296/0","297/0","298/0","299/1","300/0","301/0","302/0","303/0","304/0","305/0","306/0","307/0","307/1","308/0","309/1","312/0","313/1","313/2","315/0","316/0","318/0","318/1","319/0","320/0","322/0","322/1","323/2","323/3","323/5","324/1","324/2","325/0","325/1","327/0","328/1","329/0","329/1","330/0","330/1","330/2","333/2","335/1","337/0","338/0","338/1","340/0","344/0","345/0","346/0","347/0","349/1","350/1","355/0","362/0","363/0","363/1","364/0","365/0","368/0","368/1","369/0","369/1","370/0","373/0","374/0","375/0","378/0","381/0","381/2","382/0","387/1","388/1","388/2","389/2","390/1","391/1","392/1","393/1","398/2","413/1","415/1","420/2","435/2","444/0","470/1","474/0","475/6","475/7","477/2","478/1","478/3","530/3","550/1","551/5","556/0","571/0","572/1","585/0","586/0","587/0","591/0","592/0","593/1","594/2","595/0","596/0","597/0","597/1","598/1","599/0","599/1","599/2","600/0","600/1","600/2","601/0","602/1","608/3","608/4","615/1","619/1","621/0","621/1","624/1","624/2","627/1","628/1","628/2","631/1","632/1","633/1","634/1","638/1","638/3","642/1","642/3","643/1","643/2","643/3","649/0","653/1","655/1","657/0","658/0","659/0","661/2","663/2","674/0","674/1","678/1","679/1","684/1","686/1","687/2","688/2","689/0","690/0","690/1","691/1","694/0","695/0","697/0","698/0","699/0","700/0","701/0","702/0","703/0","705/1","708/1","708/2","711/1","713/1","714/1","716/1","718/2","732/0","733/0","734/0","739/1","759/1","759/2","760/0","761/1","762/1","762/3","763/1","763/2","764/1","770/0","774/1","777/5","777/6","777/8","778/0","779/0","780/0","781/0","781/1","782/0","782/1","783/0","784/0","785/1","788/0","789/0","793/1","796/3","796/5","796/6","797/2","798/7","798/8","800/0","800/1","800/5","800/6","800/12","804/0","804/1","805/0","805/2","805/3","806/0","806/2","806/5","808/2","809/3","813/0","813/1","813/2","815/0","815/1","815/4","815/5","815/8","816/1","818/1","821/3","823/1","823/2","844/1","852/1","856/0","860/2","860/3","860/4","864/1","869/0","871/1","871/2","872/0","872/2","874/1","877/5","877/7","883/0","887/2","894/4","895/1","903/0"],"_use":["5/1","6/0","28/8","29/1","29/2","31/3","100/2","119/0","127/0","134/1","136/1","142/3","160/1","160/2","161/0","164/1","192/0","193/0","199/2","200/1","211/1","223/0","231/0","256/0","283/0","299/2","311/1","335/2","339/0","349/1","398/2","440/0","443/0","450/1","475/0","476/6","478/1","566/0","567/0","593/1","594/2","598/1","599/2","600/2","663/2","722/0","722/2","723/0","723/2","739/1","766/0","768/0","768/2","780/0","781/0","782/0","783/0","784/0","804/0","806/0","812/0","813/2","816/2","819/0","821/1","822/0","841/1","853/0","857/0","859/0","860/1","860/5","860/6","864/0","867/1","871/1","871/4","877/3","893/1"],"_string":["5/0","13/0","14/0","29/3","39/0","40/0","57/0","80/0","83/0","89/0","90/1","92/0","95/0","103/0","105/0","108/0","113/0","119/0","121/0","123/0","144/1","149/1","149/2","154/1","170/0","175/0","188/0","193/0","206/0","207/0","213/0","214/0","215/0","216/0","217/0","218/0","219/0","225/0","244/1","245/1","247/0","249/0","250/0","251/0","254/0","258/0","259/0","261/0","264/0","265/0","268/0","270/0","273/0","274/0","275/0","276/0","280/0","281/0","285/0","290/0","293/0","295/0","296/0","297/0","299/0","301/0","302/0","303/0","313/0","319/0","321/0","322/0","323/0","323/2","323/5","324/0","326/0","337/0","340/0","341/0","344/0","346/0","347/0","351/1","353/0","354/0","359/1","359/2","359/0","362/0","363/1","363/0","364/0","365/0","368/0","369/0","371/0","375/0","376/0","379/0","382/0","384/0","386/1","387/2","387/0","388/0","389/3","389/0","396/0","400/0","400/1","405/1","405/0","408/0","409/0","410/0","412/0","413/0","423/0","424/0","425/0","428/0","429/0","430/0","436/0","437/0","439/0","440/0","441/0","442/0","445/0","471/0","472/0","475/8","482/0","483/0","489/0","490/0","491/0","492/0","496/0","497/0","498/0","499/0","500/0","501/0","506/0","507/0","508/0","515/2","515/3","517/0","518/0","519/0","520/0","521/0","524/0","526/0","528/0","536/0","546/0","547/0","551/0","551/1","556/0","560/0","561/0","562/0","563/0","564/0","565/0","566/0","567/0","568/0","569/0","573/0","575/0","576/0","577/0","580/0","581/0","582/0","585/0","586/0","587/0","591/0","592/0","593/0","594/0","595/0","597/0","598/0","601/0","604/0","605/0","622/0","626/0","634/2","657/0","658/0","659/0","661/0","663/0","664/0","665/0","666/0","667/0","668/0","668/1","670/0","671/0","674/1","675/0","683/0","688/0","689/0","694/0","697/0","705/0","706/0","707/0","714/0","715/0","718/0","721/0","722/0","723/0","726/0","734/0","735/0","737/0","738/0","739/0","760/0","768/0","784/0","792/0","793/0","794/0","800/12","800/15","800/16","800/17","878/0","889/0","897/1","901/0"],"_hex":["5/0","80/0","89/0","175/0","206/0","207/0","225/0","244/1","250/0","251/0","254/0","261/0","268/0","270/0","274/0","275/0","276/0","285/0","290/0","293/0","301/0","302/0","303/0","319/0","324/0","340/0","347/0","353/0","408/0","409/0","410/0","412/0","413/0","472/0","482/0","483/0","489/0","490/0","491/0","492/0","496/0","497/0","498/0","499/0","500/0","507/0","528/0","546/0","560/0","561/0","562/0","563/0","564/0","565/0","568/0","569/0","576/0","577/0","580/0","581/0","582/0","591/0","592/0","593/0","594/0","598/0","604/0","605/0","657/0","658/0","659/0","661/0","665/0","666/0","671/0","705/0","714/0","715/0","718/0","739/0","901/0"],"_datahexstring":["5/0","28/6","80/0","89/0","108/0","132/1","175/0","206/0","207/0","225/0","250/0","251/0","254/0","261/0","268/0","270/0","274/0","275/0","276/0","285/0","290/0","293/0","301/0","302/0","303/0","319/0","324/0","340/0","347/0","353/0","408/0","409/0","410/0","411/1","412/0","413/0","434/0","472/0","481/0","482/0","485/0","488/0","489/1","491/0","496/0","497/0","498/0","500/0","502/0","507/0","528/0","529/1","560/0","561/0","562/0","563/0","564/0","565/0","568/0","569/0","576/0","577/0","580/0","581/0","582/0","591/0","592/0","593/0","594/0","598/0","604/0","605/0","657/0","658/0","659/0","661/0","665/0","666/0","671/0","705/0","714/0","715/0","718/0","739/0","901/0"],"_if":["6/0","8/1","9/2","11/1","14/1","15/0","17/0","17/1","18/0","20/1","25/1","28/1","28/3","29/0","29/3","30/3","31/4","31/5","35/2","37/2","40/1","41/0","43/0","43/1","44/0","45/1","48/1","53/1","58/2","64/1","64/2","71/2","71/3","89/0","96/0","97/0","98/0","99/0","125/2","140/1","140/2","144/2","145/0","151/0","155/0","160/1","161/6","162/1","163/2","167/1","167/2","169/1","176/0","177/4","180/1","180/3","184/2","185/1","186/1","201/1","202/1","202/2","204/0","206/1","213/1","214/1","227/0","227/1","227/3","228/0","230/1","235/1","236/1","237/1","240/1","243/0","245/2","247/1","262/0","265/2","271/0","287/1","289/1","290/1","291/1","294/1","294/2","295/1","297/0","308/0","309/0","312/0","314/0","322/1","323/0","323/1","323/5","324/2","325/1","327/1","329/2","329/3","329/4","330/2","330/3","333/1","334/1","336/1","336/3","339/0","341/1","348/1","351/2","381/2","405/1","414/1","420/1","420/3","432/1","434/1","436/1","438/0","441/0","464/0","465/0","466/0","467/0","468/0","469/0","470/1","473/0","476/6","478/3","486/1","486/2","487/0","488/0","489/0","489/1","495/1","498/1","500/1","519/0","521/0","544/0","549/0","553/0","571/1","590/1","596/0","597/0","597/1","606/0","608/4","619/0","620/0","621/0","622/1","623/0","628/3","632/1","638/1","639/2","642/2","643/1","643/3","650/0","662/0","671/1","675/1","703/1","709/2","713/2","718/1","718/2","718/4","718/5","732/0","733/0","766/1","768/2","772/1","777/1","777/6","777/8","781/1","782/1","784/1","789/0","790/1","791/0","793/1","796/5","798/4","798/5","798/6","800/15","800/16","806/2","806/4","813/0","813/2","815/6","815/8","823/3","833/2","835/0","839/2","839/4","844/1","849/1","851/2","860/2","872/2","875/1","877/6","892/1","894/3","894/4","900/0","900/1"],"_any":["6/0","26/0","27/1","28/7","28/8","28/0","31/2","31/3","35/1","35/0","37/2","64/1","64/2","117/0","120/0","121/1","122/0","133/0","134/7","136/3","164/1","171/0","177/4","187/2","191/0","192/0","198/0","204/2","211/0","218/0","219/0","225/1","239/0","240/1","241/2","242/0","245/0","264/0","265/0","265/2","287/1","301/0","310/4","324/1","329/1","329/2","330/1","338/0","359/2","362/0","375/1","382/1","391/1","420/2","432/0","435/2","436/2","438/0","443/1","475/5","480/0","483/0","502/1","504/0","552/1","570/2","574/0","578/0","583/3","602/1","624/1","634/2","648/0","651/0","653/0","654/0","655/0","666/1","675/1","682/0","693/0","694/0","695/0","709/2","719/0","720/0","756/1","761/0","762/2","777/5","777/8","792/0","796/5","798/4","798/6","809/3","815/6","819/0","823/3","839/5","844/0","860/5","868/0","871/1","871/3","871/4","872/2","875/1","893/0","894/1","897/1"],"_instances":["6/0","450/0","533/0","572/1","874/0","878/0"],"_blockchain":["6/0","10/0","27/0","27/1","30/1","62/2","142/0","203/0","244/0","338/0","413/1","476/2","558/0","583/3","638/0","752/1","755/2","797/0","859/0","860/0","867/0"],"_return":["7/0","12/1","12/4","19/0","20/0","21/0","27/0","29/0","29/1","30/2","31/5","35/0","37/0","46/1","46/4","47/0","48/0","49/0","58/1","79/0","80/0","177/4","192/0","227/3","329/1","330/1","405/0","408/0","409/0","410/0","434/2","443/2","478/0","501/0","502/0","503/0","504/0","523/0","524/0","525/0","526/0","588/0","589/0","590/0","602/0","603/0","660/0","684/1","739/0","791/0","793/0","794/0","830/1","877/7","900/0"],"_attached":["7/0","9/0","11/0","14/0","40/0","45/0","211/0"],"_address":["7/0","7/1","9/0","11/0","13/0","14/0","14/1","38/0","39/0","40/0","40/1","45/0","64/1","64/2","64/0","134/3","147/0","165/0","169/0","205/0","206/0","207/0","208/0","208/1","211/1","211/2","213/0","214/0","214/1","216/0","217/0","217/1","240/0","240/1","241/1","249/0","258/0","264/0","273/0","280/0","281/0","282/1","295/0","296/0","297/0","297/1","313/0","319/0","320/0","321/0","328/1","329/4","337/0","342/2","343/0","344/0","346/0","389/2","424/2","430/2","432/4","434/0","434/1","434/2","435/0","435/1","435/2","435/3","436/0","436/1","436/2","437/0","438/0","439/0","440/0","441/0","442/0","506/0","578/0","595/0","663/0","663/2","664/0","697/0","706/0","707/0","708/2","784/0","784/1","809/4","875/0","875/1","875/2","904/0"],"_using":["7/1","29/3","29/4","30/3","38/0","58/1","75/1","76/1","100/0","117/0","120/0","124/0","125/0","127/0","132/0","132/1","150/0","163/1","167/0","167/2","176/0","177/2","201/2","204/0","213/0","225/0","310/4","319/0","323/5","325/0","326/0","327/1","331/0","333/2","341/0","361/0","363/1","398/3","400/1","435/0","504/0","523/0","524/0","525/0","526/0","550/1","565/0","571/1","572/1","579/0","587/0","601/1","621/1","642/0","655/1","661/2","672/0","673/0","718/4","720/0","738/0","751/1","752/4","756/1","768/0","769/0","780/0","790/4","796/6","800/12","806/5","807/3","815/1","816/0","840/0","846/1","893/4","893/5","894/2","894/4","904/0"],"_constructor":["7/1","8/0","9/0","14/1","17/0","18/0","26/1","40/1","43/0","44/0","150/1","367/1","369/2","370/0","374/0","375/0","376/0","377/0","382/0","404/0","410/0","450/0","533/0","653/0","860/4","874/0","875/1"],"_signerorprovider":["7/1"],"_passed":["7/1","8/0","9/0","54/0","63/0","116/0","164/1","342/2","359/2","411/0","426/0","552/1","634/2","637/0","760/0","767/0","776/0","780/0","790/4","875/1"],"_in":["7/1","12/1","12/3","28/2","28/3","30/0","31/3","31/5","35/2","36/0","37/2","38/0","46/1","46/3","55/1","66/0","67/0","68/0","70/0","71/3","75/1","76/1","85/1","102/0","109/0","118/0","126/0","129/1","129/3","130/0","131/0","131/1","133/0","134/0","134/3","134/5","134/7","134/8","140/1","141/0","144/2","145/0","151/0","155/0","161/0","161/6","166/0","168/0","177/1","179/0","185/0","185/2","187/1","192/0","203/0","211/2","213/0","220/1","223/0","227/3","230/2","239/0","242/3","244/0","257/0","260/0","265/2","271/0","272/0","274/0","277/0","278/0","284/0","286/0","289/0","290/0","291/0","294/0","297/0","298/0","299/1","301/0","302/0","305/0","306/0","307/0","308/0","309/1","310/0","318/1","322/1","323/0","323/2","323/5","324/2","327/2","329/0","330/0","330/1","351/0","362/1","401/0","402/0","403/0","422/0","427/0","432/0","432/5","435/2","438/0","443/0","444/0","475/2","475/3","475/5","475/6","476/3","478/2","480/0","480/1","486/2","493/0","495/0","496/0","497/0","498/0","515/0","515/1","515/2","516/2","516/3","517/0","530/0","532/0","548/1","550/1","551/1","551/5","552/1","554/0","571/2","574/1","580/0","581/0","582/0","584/0","601/1","608/1","608/3","609/0","624/1","626/0","628/3","633/1","634/2","638/0","638/2","641/0","643/2","649/0","649/1","650/0","653/1","663/2","668/0","668/1","668/2","676/0","682/0","684/0","684/1","688/1","702/0","703/1","710/0","711/1","712/0","716/1","726/0","731/0","741/1","756/0","760/0","762/2","764/1","767/0","772/1","774/1","776/0","777/0","785/0","785/1","792/0","794/0","796/0","796/3","797/0","797/1","798/1","798/2","798/4","798/5","798/6","798/7","800/0","800/6","800/13","800/14","800/16","806/5","807/1","807/2","807/3","808/0","808/2","809/2","809/3","809/4","810/2","812/0","814/0","816/2","817/2","818/0","819/0","820/0","821/3","822/0","823/1","823/3","825/2","826/0","826/1","827/0","827/1","828/0","829/0","831/0","832/0","847/0","850/0","855/1","858/0","860/3","860/4","860/6","861/0","864/2","866/1","868/0","871/1","871/2","871/4","872/0","876/0","877/0","877/3","884/0","885/0","885/2","887/1","889/0","893/2","893/4","894/0","894/6","895/0","895/1","896/0","897/1","899/2","899/3","903/0","903/1"],"_when":["7/1","23/0","24/0","51/0","52/0","55/1","62/0","70/0","127/0","132/0","134/2","134/4","135/1","161/2","163/4","174/0","177/0","179/2","231/0","259/0","271/0","342/1","350/0","351/2","352/0","365/0","378/1","432/0","475/0","476/2","478/3","515/0","515/1","515/2","515/3","579/0","608/3","615/1","627/1","633/1","642/0","642/1","643/0","667/1","676/0","679/1","683/0","751/1","762/0","790/4","796/4","797/0","798/0","818/0","818/1","823/0","846/3","850/0","860/4","877/2","877/4","877/7","882/0","887/2","893/3","894/4","899/0"],"_creating":["7/1","38/0","189/1","350/0","378/1","450/0","515/0","533/1","533/0","756/0","812/0","813/0","874/0","877/7","899/0"],"_attach":["7/0","11/0","45/0"],"_unsigned":["8/0","34/0","61/0","551/1","551/5","696/0","697/0","698/0","699/0","700/0","701/0","702/0","703/0","706/0","718/1","910/0"],"_which":["8/0","9/0","10/1","12/1","12/4","15/0","26/0","27/0","28/8","29/1","30/3","34/0","36/0","38/0","41/0","46/1","46/4","54/0","58/3","61/0","63/0","64/0","67/1","68/0","69/0","70/0","81/0","85/1","107/0","108/0","110/3","126/0","129/0","131/0","134/1","134/5","135/0","135/1","136/4","141/0","142/0","142/1","144/2","145/0","149/2","151/0","155/0","160/1","163/2","163/3","163/4","169/0","172/0","174/0","175/0","177/1","178/4","185/0","194/0","195/0","198/1","198/2","199/1","201/0","204/1","211/2","212/0","217/0","218/0","219/0","220/1","224/0","227/3","230/0","230/2","233/0","240/0","249/0","258/0","279/1","297/0","297/1","301/0","310/0","310/4","322/0","323/3","324/0","324/2","325/0","329/1","335/1","338/0","341/0","342/0","345/0","349/0","350/0","351/0","352/0","353/0","354/0","359/1","359/2","363/1","364/0","365/0","369/0","390/1","391/1","392/1","398/0","398/2","399/1","399/3","400/1","400/2","410/0","411/0","412/0","413/0","422/0","426/0","427/0","434/1","435/1","440/0","443/0","443/1","443/2","444/0","445/0","475/5","475/7","475/8","476/2","476/3","476/6","477/1","477/2","478/0","478/4","480/0","483/0","501/0","506/0","507/0","513/0","515/3","516/0","517/0","530/0","532/0","550/0","551/1","552/1","556/0","558/0","575/0","583/0","598/0","603/0","609/0","626/0","628/3","632/0","634/2","638/1","639/0","642/0","654/0","663/2","665/1","667/0","668/0","674/1","675/1","676/0","678/1","679/2","680/1","680/2","683/1","684/0","685/0","686/1","688/0","688/2","705/0","708/1","713/2","714/1","716/1","718/1","741/1","751/1","751/4","751/5","752/0","752/1","753/1","758/0","760/0","762/0","763/0","763/2","769/0","772/1","774/0","780/0","785/1","788/0","789/0","790/1","790/2","790/4","792/0","796/3","797/2","798/1","800/10","804/0","805/3","807/1","810/1","812/0","816/0","818/1","822/1","823/0","823/2","839/5","844/0","846/4","852/0","857/0","859/0","860/0","860/3","860/4","860/6","864/2","868/1","870/0","872/0","877/0","877/2","878/0","881/0","893/0","893/1","893/5","895/0"],"_would":["8/0","33/0","34/0","60/0","125/2","189/1","226/0","258/0","387/2","388/2","413/0","441/0","442/0","476/6","477/1","478/0","478/3","551/5","632/0","684/0","690/1","713/2","806/4","806/5","806/6","821/2","894/4"],"_args":["8/0","9/0","28/0","29/0","31/5","31/0","33/0","34/0","35/0","37/0","234/0","421/0","426/0","611/0","612/0","613/0","776/0"],"_optional":["8/1","9/2","144/0","149/0","150/0","154/0","240/0","279/1","348/0","362/0","414/0","434/0","588/0","615/0","616/0","719/0","756/1","786/0","825/1","842/0","847/0"],"_overrides":["8/1","8/0","9/2","9/0","28/7","28/8","28/0","29/6","29/0","31/2","31/3","31/0","33/0","33/1","34/0","34/1","35/4","35/0","55/0","56/0","57/0","58/0","59/0","60/0","61/0"],"_specified":["8/1","9/2","144/1","149/1","150/1","154/1","163/2","167/1","167/2","180/1","287/0","329/2","336/1","336/3","414/1","417/1","435/0","444/1","486/1","489/1","515/1","516/0","519/0","521/0","585/1","635/0","641/0","675/1","682/0","709/1","732/0","733/0","756/1","840/0","900/0"],"_they":["8/1","9/2","29/1","67/0","161/3","184/2","190/1","201/1","220/1","312/0","322/1","324/2","325/1","350/1","399/3","417/1","696/0","751/4","752/1","753/1","754/1","796/2","796/5","797/0","800/15","806/3","806/4","809/1","809/3","810/3","815/6","866/0","868/1","874/0"],"_can":["8/1","9/1","9/2","27/0","28/8","30/3","31/5","35/2","55/1","59/1","62/0","62/1","64/0","67/0","67/1","81/0","122/0","129/4","131/0","132/1","134/1","134/5","135/0","135/1","136/3","142/2","149/2","164/1","171/1","178/3","178/5","179/5","180/2","186/1","194/0","197/0","204/1","211/2","212/0","224/1","256/1","287/2","297/1","310/0","310/2","310/4","313/1","330/2","331/0","338/1","345/0","348/1","349/0","350/0","363/1","375/1","382/1","399/3","400/2","410/0","411/0","412/0","420/0","420/1","435/2","444/0","444/1","452/0","475/0","475/7","475/8","478/4","479/1","481/0","486/2","516/0","530/1","556/0","575/0","602/1","608/1","618/0","624/2","631/1","632/1","638/1","642/3","643/3","666/1","668/1","668/2","683/1","688/0","705/0","714/1","716/1","718/1","760/0","762/0","767/0","780/0","796/1","796/6","797/1","798/0","804/0","805/1","806/0","806/7","808/2","809/4","818/1","819/0","822/1","836/1","839/5","840/0","845/0","846/1","855/1","857/1","858/4","859/0","860/5","860/6","864/2","868/1","878/0","880/0","884/1","885/1","885/2","893/2","903/2"],"_used":["8/1","9/2","15/0","28/4","28/8","29/4","31/5","35/2","41/0","55/0","55/1","59/1","64/0","66/0","67/1","110/0","117/0","120/0","122/0","124/0","129/4","134/1","134/2","135/1","140/2","144/2","145/0","149/2","151/0","155/0","162/2","163/1","163/3","167/2","169/1","171/1","178/3","178/5","179/5","180/1","184/0","186/1","187/0","189/0","194/0","194/1","196/0","197/1","200/1","202/1","211/2","212/0","224/1","234/1","239/0","242/2","245/2","254/0","256/1","257/0","295/1","297/0","297/1","299/3","300/0","307/0","310/0","310/1","319/0","320/0","327/2","329/1","330/2","336/1","336/3","338/0","349/0","350/0","351/0","352/0","365/0","373/0","412/0","432/0","441/0","461/0","475/8","477/0","478/3","479/1","498/1","505/0","516/0","517/0","527/0","530/0","556/0","558/0","570/0","571/2","574/0","575/0","579/0","583/2","598/0","602/1","607/0","608/3","618/0","641/0","642/2","649/0","653/1","663/2","665/1","676/0","683/1","688/0","688/1","703/1","705/0","713/1","713/2","716/1","718/1","718/2","718/4","730/0","767/0","772/1","774/1","777/2","788/0","789/0","790/0","790/4","797/0","797/1","800/12","803/0","805/3","823/0","836/0","836/1","837/1","839/5","845/0","851/2","868/1","873/0","884/1","885/1","885/2","899/0","899/2"],"_override":["8/1","9/2","165/0","190/0","190/1","350/1"],"_endowment":["8/1","9/2","374/0"],"_value":["8/1","9/2","28/1","28/8","29/0","31/3","37/2","58/1","58/2","89/0","90/0","91/0","107/0","108/0","109/0","114/0","116/0","118/0","125/2","126/0","132/1","179/2","184/1","191/0","192/0","207/0","208/1","241/0","242/0","244/1","256/1","265/2","286/0","318/1","326/0","334/1","341/1","351/1","374/1","420/0","420/1","420/2","431/0","436/2","443/2","452/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","470/1","471/0","472/0","475/5","476/3","480/0","484/0","484/1","492/0","509/0","510/0","511/0","512/0","513/0","514/0","515/2","518/0","519/0","520/0","521/0","522/0","534/0","535/0","536/0","536/1","537/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","548/0","548/1","549/0","552/0","574/1","574/0","578/0","617/0","621/0","623/0","626/0","634/0","634/1","634/2","639/1","652/0","664/0","684/0","684/1","691/0","702/0","712/0","720/0","760/0","776/0","777/6","790/2","792/0","793/0","798/4","800/10","800/12","800/14","800/15","800/16","801/0","825/1","825/2","852/0","877/7","893/5","899/2","899/3","901/0"],"_nonce":["8/1","9/2","31/3","71/0","72/0","73/0","74/0","75/0","76/0","177/1","208/1","229/2","254/0","282/0","297/1","318/1","330/3","641/0","642/0","698/0","708/0","783/0"],"_gaslimit":["8/1","9/2","28/8","31/3","256/0","283/0","330/3","699/0","709/0","781/0"],"_or":["8/1","9/2","11/1","11/0","12/0","13/0","19/0","28/4","28/8","30/3","33/1","34/1","35/2","37/2","38/0","39/0","45/1","45/0","46/0","47/0","55/1","59/0","64/0","64/1","64/2","90/1","90/0","99/0","108/0","110/2","112/0","114/0","129/1","129/4","130/0","132/1","134/5","134/7","135/0","136/0","136/3","136/4","142/1","144/1","149/1","149/2","154/1","161/6","162/3","164/1","165/0","167/0","168/0","169/0","171/1","177/1","178/0","180/2","194/0","195/0","197/0","213/1","214/1","222/0","224/1","227/0","227/3","228/0","256/1","264/0","265/0","265/1","265/2","279/0","280/0","309/0","310/4","311/1","322/1","325/1","353/0","354/0","363/0","365/0","368/0","371/0","376/0","379/0","381/2","384/0","392/0","396/0","398/3","400/0","400/1","408/0","415/1","417/1","429/0","432/1","432/2","432/4","434/1","436/1","439/1","439/0","445/0","446/0","470/1","475/8","478/1","480/0","480/1","481/0","484/1","486/0","488/0","490/0","491/0","502/0","519/0","521/0","585/1","602/1","608/3","620/0","621/0","628/2","628/3","631/2","632/1","633/1","634/0","638/0","638/1","643/1","659/1","661/1","663/2","666/1","676/0","688/1","703/1","718/4","719/0","731/0","751/1","751/6","760/0","763/1","767/0","772/1","777/5","777/6","777/8","784/0","796/1","796/2","798/7","800/8","804/0","806/4","809/3","815/5","819/0","821/1","821/2","822/0","837/1","841/2","846/0","846/4","847/0","855/1","860/5","860/6","863/1","864/2","868/0","871/1","871/2","871/3","871/4","880/0","882/0","890/0","892/0","892/1","894/1","894/3","894/4"],"_gasprice":["8/1","9/2","28/8","31/3","284/0","330/3","700/0","709/1","710/0","782/0"],"_get":["8/0","56/0","85/0","147/0","150/0","162/0","169/0","192/0","193/0","205/0","206/0","207/0","208/0","209/0","210/0","212/0","217/0","218/0","219/0","220/1","220/0","221/0","222/0","223/0","227/0","228/0","313/0","315/0","316/0","317/0","318/0","406/0","407/0","408/0","409/0","436/0","437/0","441/0","442/0","574/0","575/0","653/0","735/0","736/0","784/0","788/0","789/0","808/2","813/1","813/2","823/2","852/0","854/0","890/0"],"_getdeploytransaction":["8/0"],"_unsignedtransaction":["8/0","34/0","61/0","696/0","697/0","698/0","699/0","700/0","701/0","702/0","703/0","706/0"],"_uses":["9/0","26/1","134/5","179/1","211/1","434/1","475/4","478/2","556/0","652/0","678/1","679/1","718/2","769/0","860/4","870/0"],"_into":["9/0","54/0","62/0","63/0","81/0","84/1","85/0","88/0","100/2","101/0","116/0","125/0","129/1","129/4","135/0","359/2","400/2","410/0","414/1","435/0","435/1","435/3","485/0","493/0","496/0","515/2","515/3","528/0","529/0","550/1","637/0","674/0","680/2","684/0","687/2","688/2","691/1","716/1","737/0","757/0","759/0","767/0","780/0","790/0","790/4","818/0","844/0","844/1","867/1","875/1","881/0","893/5","903/2"],"_once":["9/0","24/0","52/0","129/1","161/4","179/3","233/0","242/2","288/0","294/0","327/2","476/0","571/2","732/0","733/0","777/7","777/9","800/16","811/0","859/0"],"_mined":["9/0","9/1","71/5","177/3","222/0","226/1","227/1","228/0","228/1","229/0","230/0","230/1","230/2","242/1","244/1","258/0","271/0","288/0","289/0","289/1","290/0","290/1","291/0","291/1","292/0","294/1","298/0","306/0","641/0","642/0"],"_found":["9/1","603/0"],"_at":["9/1","26/0","26/1","28/8","31/3","85/0","85/1","124/1","169/0","184/2","198/1","199/1","207/0","233/0","244/1","249/0","299/3","315/0","639/1","684/1","686/1","688/2","709/1","709/2","735/0","741/0","762/1","796/1","798/4","798/8","804/1","809/1","860/4","894/6","900/0","902/0"],"_deploytransaction":["9/1","15/0","41/0"],"_no":["9/1","20/1","25/1","28/8","48/1","53/1","109/0","118/0","134/5","144/2","145/0","151/0","155/0","162/1","167/2","169/1","200/1","206/1","235/1","236/1","237/1","245/2","363/0","435/2","452/0","492/0","551/3","639/2","643/3","649/1","766/1","772/1","800/7","800/15","806/7","816/2","818/0","871/4","877/1","877/6","879/1","892/2","903/2"],"_interactions":["9/1","766/0"],"_should":["9/1","29/5","30/3","66/1","109/0","118/0","138/0","160/1","160/2","190/1","192/0","198/1","198/2","199/1","199/2","282/1","287/2","329/1","329/2","330/1","330/2","335/2","350/0","373/0","476/4","476/6","516/0","570/4","572/1","593/0","642/2","674/1","679/2","682/0","684/1","739/1","777/5","777/6","777/8","781/0","782/0","783/0","784/0","788/0","789/0","796/2","796/3","796/5","797/2","800/13","804/0","810/3","811/0","813/0","815/0","817/0","823/3","826/3","833/2","841/2","849/0","864/0","877/3","894/1"],"_made":["9/1","36/0","161/2","179/2","679/2","713/2","758/0","825/0","875/1","893/1"],"_until":["9/1","62/2","177/3","224/0","224/1","228/1","230/0","230/2","720/0","759/1","825/3","841/0","846/4"],"_promise":["9/0","14/0","19/0","28/0","29/0","31/0","33/0","34/0","35/0","40/0","47/0","55/0","56/0","57/0","58/0","59/0","60/0","61/0","171/0","175/0","176/0","198/0","205/0","206/0","207/0","208/0","209/0","210/0","212/0","213/0","214/0","217/0","218/0","219/0","220/0","221/0","222/0","223/0","224/0","225/0","226/0","227/0","228/0","229/0","230/0","279/1","280/0","281/0","282/0","283/0","284/0","285/0","286/0","287/0","294/0","313/0","313/1","315/0","316/0","317/0","318/0","319/0","320/0","321/0","322/0","324/0","325/0","326/0","330/0","334/0","341/0","578/0","654/0","719/0","720/0","776/0","777/7","777/9","784/0"],"_abstraction":["10/0","65/0","65/2","160/0","203/0","310/0","860/0","884/0","885/0","886/0"],"_been":["10/0","71/3","161/4","161/6","179/3","227/1","228/0","228/1","230/1","271/0","288/0","289/1","290/1","291/1","292/0","294/0","294/1","306/0","327/2","390/0","571/2","578/0","641/0","642/0","696/0","753/0","754/0","773/1","872/1","873/0","874/1","878/0","878/1","881/0","893/2","894/3"],"_may":["10/1","28/7","28/8","31/2","37/1","70/0","71/2","75/1","76/1","107/0","108/0","130/0","134/7","144/1","144/2","145/0","149/1","151/0","154/1","155/0","162/3","163/1","164/1","168/0","177/1","185/2","187/1","194/1","201/2","211/2","220/1","226/1","227/2","227/3","239/0","245/0","259/0","265/1","271/0","279/1","312/0","322/1","324/2","325/1","329/0","330/0","339/0","353/0","354/0","359/2","361/0","373/1","374/0","387/1","388/1","398/3","400/1","400/2","413/1","415/1","432/0","436/2","439/1","445/0","475/6","476/6","478/1","486/0","486/1","486/2","515/1","517/0","528/1","552/1","593/0","602/1","608/3","627/1","628/1","638/3","661/1","663/1","669/0","683/1","684/0","688/1","690/0","713/3","758/0","764/1","772/1","774/1","785/1","798/2","798/8","800/1","800/4","800/7","806/2","809/3","822/2","844/0","846/5","847/0","848/1","851/1","860/5","864/2"],"_sent":["10/1","31/0","161/2","163/3","177/0","208/0","208/1","227/3","279/0","282/1","318/0","628/3","642/0","708/1","708/2"],"_transactions":["10/1","65/1","71/0","71/2","71/3","178/5","208/0","209/0","210/0","257/0","260/0","261/0","262/0","263/0","282/1","287/2","298/0","299/1","307/0","309/1","310/0","310/2","318/0","318/1","331/0","415/1","631/2","642/3","708/2","884/1","885/1","885/2","903/2","910/0"],"_trigger":["10/1","31/5"],"_run":["10/1","26/0","26/1","59/0","142/1","772/1","773/1","776/0","777/9","790/4","810/3","818/0","819/0","893/2","894/1"],"_input":["10/1","55/1","370/0","421/0","426/0","515/0","667/0","774/0","809/3","864/2"],"_useful":["11/1","45/1","70/0","75/1","76/1","135/0","225/2","288/0","342/1","363/1","398/3","413/1","415/1","417/0","515/0","515/2","515/3","551/5","572/2","607/0","615/1","619/1","621/1","751/6","752/0","805/0","820/0","838/0","846/3"],"_there":["11/1","28/8","29/0","31/4","32/0","45/1","62/1","62/2","136/4","142/0","164/0","206/1","226/1","242/3","329/4","350/0","420/3","475/2","475/3","475/5","476/1","479/0","517/0","533/1","558/0","618/0","628/0","633/0","633/1","676/0","683/0","692/0","709/2","713/3","718/5","777/8","800/7","800/13","800/15","806/7","807/2","807/3","808/0","810/1","810/2","818/0","821/2","821/3","826/3","877/0","877/1","877/2","877/6","890/0","894/3","896/0","903/1","903/2"],"_are":["11/1","20/0","21/0","25/1","26/1","28/2","28/8","29/6","32/0","33/1","34/1","35/4","36/0","45/1","48/0","49/0","53/1","58/2","62/1","62/2","66/0","67/0","139/0","141/0","142/0","150/1","161/3","161/6","163/1","163/2","163/3","163/4","164/0","178/0","179/2","180/3","184/1","184/2","201/1","204/0","220/1","231/2","235/1","236/1","242/3","260/0","262/0","279/1","288/0","310/3","327/1","328/0","350/1","390/1","392/1","417/0","420/1","432/3","435/1","443/0","475/1","475/2","475/3","475/5","475/7","475/8","476/1","479/0","479/1","485/0","517/0","533/1","553/0","558/0","559/0","568/1","571/1","574/1","601/1","607/0","608/0","618/0","619/1","621/1","628/3","651/2","667/0","669/0","676/0","682/0","688/0","688/1","692/0","696/0","709/2","713/3","751/3","751/4","752/4","758/0","762/0","762/2","777/2","777/4","777/8","790/1","790/3","790/4","796/5","797/0","798/7","800/0","800/10","800/13","803/0","805/1","808/0","809/1","809/2","810/1","810/2","810/3","813/0","816/0","818/0","820/0","821/2","826/1","827/1","836/1","837/1","841/3","846/3","854/0","860/2","860/3","860/4","863/2","866/0","866/1","866/2","868/1","870/0","874/0","875/1","877/1","882/0","887/0","890/1","893/1","893/2","894/1","894/6","895/0","896/0","899/0","900/1"],"_multiple":["11/1","45/1","161/2","162/0","179/1","179/2","184/2","669/0","679/1","688/0","756/0","758/0","759/0","772/1","793/1","877/6","893/4"],"_similar":["11/1","45/1","363/0","478/3","486/0","690/0","769/0","816/2","860/2","893/6"],"_identical":["11/1","29/6","33/1","34/1","35/4","45/1","200/0","241/1","420/1","482/0","901/0"],"_copies":["11/1","45/1","871/1","871/2"],"_network":["11/1","30/1","31/0","34/0","45/1","61/0","65/0","71/2","71/3","144/0","144/1","149/0","149/1","150/0","150/1","154/0","154/1","160/0","162/0","162/1","162/3","164/1","165/0","167/0","167/2","185/2","190/0","193/0","195/0","202/0","202/2","208/1","209/0","210/0","221/0","224/0","226/0","226/1","229/0","245/1","245/2","246/0","247/0","247/1","248/0","249/0","256/1","279/0","287/1","310/0","398/2","399/0","640/0","642/0","708/1","708/2","766/0","778/0","796/0","796/3","796/4","796/5","857/1","858/4","884/0","884/1","885/1","886/0"],"_you":["11/1","45/1","62/0","71/2","142/1","142/3","144/3","145/1","151/1","155/1","165/0","204/0","310/3","327/1","339/0","478/3","478/4","571/1","608/4","628/2","628/3","751/5","752/4","756/2","757/0","768/2","796/3","803/0","811/0","813/0","813/2","815/8","817/0","818/1","819/0","822/0","822/1","822/2","823/3","855/1","859/0","860/1","860/2","860/4","860/5","860/6","868/1","872/2","890/0","894/3","894/4"],"_wish":["11/1","29/1","45/1","339/0","690/0","806/4"],"_interact":["11/1","26/1","45/1","398/0","399/0","461/1","752/1","904/1"],"_each":["11/1","28/1","45/1","84/0","126/0","161/3","163/0","168/0","179/1","179/2","201/1","232/0","234/0","261/0","262/0","265/1","307/0","353/0","354/0","359/1","361/0","367/0","370/0","398/1","399/3","411/1","420/0","480/0","480/1","528/1","530/1","570/3","608/1","639/2","642/3","661/2","674/0","674/1","708/1","733/0","737/0","751/1","751/2","751/5","756/1","756/2","758/0","759/0","777/0","777/4","788/0","789/0","798/2","798/3","800/8","806/3","815/10","817/2","825/0","834/1","835/0","841/2","842/0","893/5","895/1","898/0","899/2","899/3"],"_them":["11/1","45/1","71/3","142/1","443/2","790/2","806/2","826/1","827/1","892/0"],"_name":["11/0","13/0","14/1","28/1","28/0","29/0","31/5","31/0","33/0","33/1","34/0","34/1","35/0","37/0","39/0","40/1","45/0","100/1","113/0","122/0","123/0","124/0","144/1","149/1","154/1","164/1","211/0","211/1","211/2","212/0","213/1","214/0","214/1","215/0","232/0","233/0","234/0","235/0","236/0","237/0","238/0","245/1","245/2","247/0","247/1","280/0","321/0","327/2","327/0","330/3","368/0","387/0","420/1","420/2","420/3","423/0","428/0","432/1","517/0","556/0","569/0","570/3","571/2","571/0","578/0","617/0","634/1","652/0","740/0","784/0","790/2","791/0","792/0","793/0","794/0","816/2","846/2","846/4","846/5","850/0","875/0","875/1","875/2","876/0","887/0","898/0"],"_addressorname":["11/0","45/0","784/0"],"_connected":["12/0","38/0","46/0","144/0","149/0","154/0","158/0","161/1","162/0","167/0","172/0","180/0","188/0","202/0","221/0","310/4","316/0","325/1","332/0","338/0","339/0","631/2"],"_providerorsigner":["12/0","38/0","46/0"],"_passing":["12/1","12/3","46/1","46/3","234/0","550/1","631/2","761/1","807/1"],"_provider":["12/1","12/0","17/0","17/1","38/0","43/0","43/1","46/1","46/0","70/0","74/0","140/0","142/3","143/0","144/1","144/0","147/0","148/0","149/1","149/0","150/0","153/0","154/0","157/0","158/0","160/0","160/2","161/0","162/0","166/0","167/0","169/0","170/0","171/0","173/0","177/0","177/2","179/0","179/5","180/1","180/2","180/3","180/0","181/0","182/0","183/0","184/0","185/0","185/1","186/0","186/1","187/0","188/0","189/1","189/0","190/0","191/0","194/0","194/1","195/0","196/0","197/0","198/0","199/0","200/0","201/0","202/0","203/0","204/1","204/2","205/0","206/0","207/0","208/0","209/0","210/0","211/3","212/0","213/0","214/0","220/0","221/0","222/0","223/0","224/0","225/0","226/0","227/0","228/0","229/0","230/0","232/0","233/0","234/0","235/0","236/0","237/0","238/0","243/0","312/0","325/1","328/1","332/0","338/0","339/0","343/0","631/2","732/0","733/0","751/1","751/2","751/0","756/0","756/1","779/0","797/1","857/1","858/4","859/0","884/0"],"_downgraded":["12/1","46/1"],"_only":["12/1","27/0","28/7","29/0","29/6","33/1","34/1","35/3","35/4","37/1","46/1","134/5","141/0","163/2","163/4","177/0","179/3","187/1","203/0","227/3","231/1","233/0","234/1","243/0","260/0","299/1","299/3","309/1","314/0","323/1","329/3","342/1","350/1","390/1","420/3","435/1","464/0","465/0","466/0","467/0","468/0","469/0","473/0","475/2","475/5","487/0","488/0","489/0","544/0","548/1","549/0","590/1","631/2","645/0","646/0","647/0","650/0","652/0","668/2","682/0","741/1","763/2","790/4","806/0","806/5","809/3","814/0","817/2","826/3","844/1","846/2","859/0","864/0","872/0","876/0","877/4","884/1"],"_read":["12/1","27/0","28/7","29/6","33/1","34/1","35/3","35/4","46/1","96/0","203/0","342/1","632/0","652/0","800/16","824/1","859/0","884/1"],"_access":["12/1","28/8","29/4","46/1","58/3","134/7","136/0","136/1","149/2","177/4","178/3","187/1","203/0","227/2","398/2","479/0","753/4","754/4","755/2","762/3","815/1","815/6"],"_constant":["12/2","27/0","30/0","46/2","381/0"],"_calls":["12/2","28/8","46/2","65/1","171/1","330/3","574/0","631/2","852/0","875/1"],"_act":["12/4","46/4"],"_behalf":["12/4","46/4"],"_ens":["13/0","14/1","39/0","40/1","165/0","211/0","211/2","211/3","212/0","213/0","249/0","280/0","321/0","330/3","569/0","868/1","875/1","875/0","908/0"],"_was":["13/0","14/1","15/0","17/0","17/1","18/0","31/5","39/0","40/1","41/0","43/0","43/1","44/0","54/0","63/0","173/0","177/3","191/0","200/1","226/1","227/3","230/2","256/0","289/0","290/0","291/0","292/0","295/1","298/0","299/1","302/0","305/0","306/0","307/0","309/0","360/0","435/0","435/1","441/0","476/6","583/0","590/1","628/0","633/0","635/0","642/2","665/1","684/0","685/0","686/0","686/1","688/2","713/2","800/15","816/0","867/1","874/0","875/1","877/1","877/2","893/5"],"_constructed":["13/0","39/0","860/4"],"_resolve":["14/0","40/0","211/3","214/0","230/0","321/0","578/0","654/0","784/0"],"_provided":["14/1","17/0","17/1","18/0","20/1","25/1","37/2","40/1","43/0","43/1","44/0","48/1","53/1","64/1","64/2","130/0","132/1","144/2","145/0","151/0","155/0","161/5","162/1","169/1","180/3","231/1","235/1","236/1","237/1","334/1","341/1","342/2","486/2","608/0","667/1","692/0","718/2","751/3","821/3","871/3"],"_equal":["14/1","40/1","329/4","389/2","464/0","470/1","620/0","688/0","708/2","800/15"],"_resolved":["14/1","14/0","40/1","40/0","182/0","330/2","777/7","777/9","784/1","875/0","875/1","875/2"],"_resolvedaddress":["14/0","40/0","875/2"],"_deployment":["15/0","41/0","129/3","134/1","373/0","374/0","410/0"],"_response":["15/0","31/0","41/0","58/0","161/5","177/0","185/2","186/0","198/2","227/0","229/0","263/0","288/0","325/0","413/0","909/1"],"_transactionresponse":["15/0","31/0","31/4","41/0","58/0","177/2","177/4","210/0","227/0","229/0","263/0","288/0","297/1","325/0"],"_had":["17/1","43/1"],"_events":["19/0","20/1","25/1","31/5","47/0","48/1","53/1","58/2","64/0","201/0","220/1","231/0","236/0","236/1","237/0","238/0","239/0","240/2","241/3","242/3","402/0","797/1","797/2","800/0","800/2","800/3","800/4","800/5","800/7","800/13"],"_match":["19/0","36/0","47/0","161/6","213/1","240/0","264/0","265/0","265/1","593/0","597/1","599/1","600/1","626/0","792/0","798/2","798/5","798/6","800/15","909/1"],"_event":["19/0","20/0","20/1","21/0","22/0","23/0","24/0","25/0","25/1","30/3","31/5","36/0","37/0","37/1","47/0","48/0","48/1","49/0","50/0","51/0","52/0","53/0","53/1","201/0","231/1","231/0","232/0","233/0","234/0","235/0","236/0","237/0","238/0","241/1","242/1","365/0","367/1","368/0","369/2","370/0","378/0","378/1","379/0","380/0","402/0","407/0","409/0","414/0","417/1","418/0","421/0","422/0","423/0","424/0","432/1","432/2","731/0","800/4","800/5","800/6","800/7","800/14","800/18","871/4","880/0","893/6"],"_query":["19/0","47/0","64/0","220/1","797/2","859/0"],"_filter":["19/0","36/0","37/0","47/0","64/0","220/0","240/0","240/1","241/0","241/1","242/0","242/3","264/0","265/0","266/0","267/0","268/0","301/0","411/0","797/2","798/1","798/2","801/0"],"_queryfilter":["19/0","47/0"],"_block":["19/0","28/8","31/5","47/0","178/2","205/0","206/0","207/0","208/0","209/0","210/0","222/0","225/0","230/2","242/1","244/0","244/1","250/0","251/0","252/0","253/0","254/0","255/0","256/0","257/0","258/0","259/0","260/0","261/0","262/0","263/0","266/0","267/0","268/0","269/0","270/0","271/0","277/0","278/0","289/0","289/1","290/0","290/1","291/0","291/1","292/0","298/0","299/3","302/0","305/0","306/0","307/0","308/0","315/0","318/0","628/3","732/0","752/0","833/0","838/0","841/1"],"_hash":["19/0","47/0","175/0","177/0","177/1","177/2","177/4","218/0","227/0","228/0","230/0","242/0","250/0","251/0","268/0","270/0","276/0","290/0","294/4","302/0","303/0","323/4","323/5","365/0","378/1","409/0","418/0","425/0","442/0","507/0","559/0","560/0","566/0","567/0","568/0","576/0","577/0","661/2","705/0","718/1","739/0","739/1","800/6","800/7","800/12","889/0","906/0","909/0"],"_fromblockorblockhash":["19/0","47/0"],"_toblock":["19/0","47/0","267/0"],"_array":["19/0","21/0","31/5","47/0","49/0","82/0","83/0","84/0","116/0","126/0","128/0","147/0","170/0","180/2","181/0","210/0","220/0","238/0","241/0","261/0","263/0","265/2","265/0","275/0","304/0","323/3","323/5","353/0","354/0","359/1","370/0","383/0","388/0","389/3","391/0","391/1","392/0","393/0","401/0","402/0","403/0","405/1","405/0","411/0","420/0","420/2","446/0","480/0","490/0","493/0","494/0","495/0","496/0","503/0","504/0","523/0","525/0","530/2","570/3","672/0","673/0","737/0","780/0","789/0","792/0","794/0","796/3","798/6","897/0","900/0"],"_number":["20/0","28/4","33/0","48/0","55/0","56/0","60/0","88/0","91/0","93/0","94/0","99/0","101/0","102/0","108/0","111/0","144/1","149/1","154/1","182/0","184/0","185/0","186/0","205/0","208/0","222/0","223/0","226/0","237/0","237/1","244/1","245/2","248/0","252/0","253/0","255/0","256/0","257/0","269/0","272/0","277/0","278/0","282/1","282/0","283/0","284/0","286/0","287/0","289/0","291/0","292/0","298/0","300/0","305/0","306/0","307/0","315/0","316/0","317/0","318/0","320/0","373/0","392/0","431/0","443/0","447/0","448/0","451/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/1","470/0","471/0","472/0","473/0","475/8","476/0","476/1","477/0","477/1","477/2","478/0","482/0","483/0","509/0","510/0","511/0","512/0","513/0","514/0","516/0","519/0","521/0","522/0","532/0","534/0","535/0","536/0","537/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","548/0","549/0","551/0","551/1","551/3","554/0","555/0","599/0","600/1","600/0","623/0","628/1","673/0","684/1","684/0","698/0","703/0","708/2","708/0","709/0","710/0","712/0","713/0","716/0","725/0","727/0","728/0","729/0","730/0","731/0","736/0","777/8","781/0","782/0","783/0","806/0","807/1","810/1","815/1","844/0","844/1","877/7","888/0","893/4","902/0"],"_listeners":["20/0","21/0","25/0","48/0","49/0","53/0","234/0","235/1","236/0","237/0","237/1","238/0"],"_subscribed":["20/0","21/0","48/0","49/0"],"_total":["20/1","48/1","180/1","237/1","257/0"],"_count":["20/1","20/0","48/1","48/0","75/0","76/0","208/0","237/0","318/0","516/0","620/0"],"_all":["20/1","25/0","25/1","48/1","53/0","53/1","116/0","127/0","163/1","166/0","170/0","177/0","177/4","178/4","234/0","235/1","236/0","236/1","244/1","257/0","262/0","278/0","279/1","288/0","301/0","304/0","328/0","330/2","362/0","401/0","402/0","403/0","434/2","475/7","476/4","478/0","478/4","493/0","494/0","496/0","499/0","529/1","574/1","601/1","602/0","609/0","644/0","653/0","654/0","694/0","695/0","739/0","751/4","752/1","758/0","758/1","762/2","763/0","768/0","772/0","773/1","774/0","777/5","790/3","790/4","792/0","794/0","796/5","798/4","800/10","808/0","815/8","815/10","816/2","817/2","818/0","835/0","846/4","858/0","863/1","863/2","864/0","868/1","870/0","871/2","872/1","877/0","877/1","878/0","893/1","897/0"],"_listener":["20/0","21/0","22/0","23/0","24/0","31/5","48/0","49/0","50/0","51/0","52/0","232/0","233/0","234/0","235/0","235/1","237/0","238/0"],"_listenercount":["20/0","48/0","237/0"],"_list":["21/0","49/0","116/0","128/0","170/0","181/0","209/0","238/0","261/0","263/0","275/0","298/0","307/0","383/0","570/1","684/0","740/0","792/0","794/0","835/1","837/1","893/5","897/1"],"_unsubscribe":["22/0","25/0","50/0","53/0","64/0"],"_off":["22/0","50/0","235/0","648/0"],"_subscribe":["23/0","24/0","51/0","52/0","64/0"],"_calling":["23/0","24/0","51/0","52/0","58/3","62/0","199/2","225/2","319/0","520/0","522/0","578/0","627/1","887/2"],"_occurs":["23/0","24/0","51/0","52/0","642/1","643/1","709/2","796/4"],"_unsubscribed":["25/1","53/1"],"_remove":["25/0","31/5","53/0","235/0","236/0","791/0","792/0","793/0","794/0"],"_removealllisteners":["25/0","53/0","236/0"],"_meta":["26/0","29/3","54/0","63/0","322/1","759/2","860/4","868/0","879/1"],"_class":["26/0","29/3","54/0","63/0","67/1","75/1","76/1","189/0","192/0","193/0","310/1","310/4","311/0","328/2","331/0","349/1","399/0","452/0","550/1","571/2","571/0","572/2","601/1","621/1","627/1","636/0","773/0","773/1","774/0","860/3","860/4","868/1","874/1","878/0","878/1","879/1"],"_properties":["26/0","26/1","31/4","31/5","32/0","38/0","149/2","162/4","165/0","177/4","240/0","275/0","288/0","294/3","328/0","328/1","329/1","329/3","330/1","345/0","359/1","419/0","486/0","502/1","570/2","601/1","602/0","618/0","649/0","650/0","654/0","717/0","880/0","881/0"],"_determined":["26/0","140/1","167/2","348/1","843/0"],"_time":["26/0","26/1","135/0","185/2","200/1","233/0","299/3","727/0","728/0","729/0","753/0","777/5","804/1","805/1","806/0","806/6","807/2","807/3","808/0","808/2","809/0","809/1","820/0","894/6"],"_determine":["26/1","35/2","62/0","440/0","638/2","772/1","800/15","860/4"],"_what":["26/1","95/0","399/2","796/1","800/15","801/0","860/3","867/0","899/0"],"_methods":["26/1","27/0","30/0","31/2","32/0","33/1","34/1","38/0","54/0","63/0","163/3","165/0","178/0","178/4","178/6","211/0","231/0","239/0","338/0","394/0","444/0","452/0","479/1","533/1","572/2","628/2","688/2","777/2","797/2","860/1","860/3","860/4","860/5","864/2","877/0","877/3","878/1","879/1"],"_so":["26/1","28/8","66/1","163/1","199/2","200/1","260/0","313/1","339/0","399/3","400/2","420/0","420/2","432/3","435/1","452/0","476/3","476/5","477/1","478/4","601/1","608/1","628/2","642/2","649/1","668/1","751/2","763/2","796/2","796/4","798/2","800/7","800/15","806/0","806/4","808/0","809/3","809/4","815/2","815/6","818/0","818/1","836/1","837/1","846/1","859/0","871/1","877/3","894/4"],"_following":["26/1","133/0","162/4","197/1","239/0","245/0","294/3","386/0","432/0","626/0","694/0","695/0","796/6","860/6","871/1","899/2"],"_sections":["26/1","826/1","835/0"],"_describe":["26/1","181/0"],"_generic":["26/1","612/0","630/0","704/0"],"_ways":["26/1","683/1","808/0"],"_added":["26/1","109/0","118/0","131/1","868/1","872/1"],"_during":["26/1","28/8","58/1","163/1","271/0","334/1","341/1","342/2","373/0","374/0","638/1","730/0","766/0","777/5","796/3","806/0"],"_method":["27/0","28/1","28/7","28/0","29/2","29/0","30/0","31/4","31/5","31/0","32/0","33/0","33/1","34/0","34/1","35/3","35/0","166/0","171/0","178/3","190/1","198/1","199/1","227/1","227/3","228/1","230/1","230/2","242/2","324/1","325/0","327/2","327/0","333/2","339/0","361/0","413/1","415/1","435/1","461/0","478/4","583/2","601/1","627/1","652/0","653/0","653/1","682/0","784/0","785/1","788/0","789/0","858/0","874/0","874/1","877/2","877/4","877/5","877/6"],"_evaluates":["27/0"],"_small":["27/0","129/2","759/1","806/0","818/1","866/1"],"_amount":["27/0","28/8","31/3","58/0","59/0","60/0","61/0","142/2","226/0","256/0","257/0","283/0","286/0","300/0","632/0","643/0","727/0","803/0","806/0","815/5"],"_evm":["27/0","28/8","30/3","65/0","129/0","129/2","178/5","349/0","399/2","757/0","813/0"],"_against":["27/0","30/1","179/2","739/1","813/1","894/1","904/1"],"_current":["27/0","30/1","58/0","59/0","62/0","75/0","76/0","185/1","200/1","317/0","333/1","614/0","672/0","673/0","677/0","708/2","850/0","859/0"],"_state":["27/0","27/1","30/1","35/0","35/1","62/0","97/0","178/5","201/1","225/1","226/1","299/0","299/3","310/0","375/0","381/1","381/2","382/0","796/5","859/0","884/1"],"_computed":["27/0","486/2","502/1","576/0","684/0","687/0","687/2","688/2","691/0","691/1","714/1","800/0","800/6","906/0"],"_asking":["27/0"],"_single":["27/0","28/1","29/0","84/1","86/0","299/3","405/1","475/2","475/3","493/0","496/0","668/1","668/2","678/1","678/2","790/2","798/5","806/0","817/2","877/4","877/7","881/0"],"_node":["27/0","28/8","30/1","35/0","71/2","79/0","80/0","100/1","101/0","102/0","103/0","105/0","106/0","107/0","108/0","109/0","110/0","111/0","112/0","113/0","114/0","115/0","116/0","117/0","118/0","119/0","120/0","121/0","122/0","123/0","124/0","125/0","126/0","127/0","128/0","140/1","160/0","166/0","167/2","168/0","169/0","176/0","177/1","178/0","187/1","187/2","224/0","224/1","588/0","589/0","590/0","591/0","592/0","593/0","594/0","595/0","596/0","597/0","598/0","599/0","600/0","601/0","602/0","603/0","628/3","642/3","643/0","643/1","821/1","821/2","850/0","858/0","893/5","894/2","894/5","907/0","909/1"],"_therefore":["27/1","122/0","134/5","477/1","482/0","639/2"],"_free":["27/1","35/1","751/5","752/2","753/2","754/2","755/0","871/1","894/3"],"_does":["27/1","35/1","66/1","71/1","71/2","95/0","117/0","120/0","125/2","174/0","177/4","185/1","213/1","214/1","225/1","324/1","329/3","333/1","378/1","381/1","399/2","663/2","689/0","762/3","806/3","806/0","821/1","823/0","833/1","835/1","837/0","872/1"],"_require":["27/1","28/8","29/5","130/1","168/0","220/1","225/1","398/2","558/0","572/1","608/4","638/2","668/0","790/2","809/3","813/0","863/0","864/2","894/5"],"_ether":["27/1","31/3","225/1","328/1","374/0","475/3","475/5","508/0","513/0","515/0","515/1","515/2","516/2","516/3","519/0","520/0","521/0","522/0","639/1","709/1","815/5","815/6","815/8"],"_cannot":["27/1","30/2","62/2","97/0","225/1","310/2","311/0","342/0","450/0","533/0","631/2","690/0","800/7","837/1","864/2"],"_make":["27/1","81/0","211/2","328/1","476/3","583/3","615/0","639/0","771/0","777/8","796/1","796/2","804/0","807/0","810/0","811/0","898/0","903/1"],"_changes":["27/1","796/0","809/3","811/0","814/1","818/1","819/0","872/2","879/0","893/3"],"_depends":["28/0"],"_returned":["28/1","28/2","28/5","28/6","31/3","31/4","85/1","161/3","177/2","179/3","191/0","213/1","214/1","217/1","237/1","294/1","405/1","529/1","718/1","731/0","777/7","777/9","899/2","900/1"],"_directly":["28/1","125/0","129/1","136/2","189/0","311/0","349/1","450/0","533/0","550/1","572/1","790/3","800/10","812/0","818/1","880/0","896/0","904/1"],"_otherwise":["28/1","28/5","35/3","109/0","118/0","125/2","197/0","230/2","245/2","279/0","405/1","619/0","688/0","718/2","777/3","777/4","790/1","835/0","871/4","899/1"],"_parameter":["28/1","37/2","342/1","362/0","363/0","386/0","387/0","387/2","388/0","389/0","390/0","391/1","635/0","663/2","756/1","790/2","887/0"],"_positionally":["28/1"],"_named":["28/1","134/8","242/3","420/1","420/2","517/0","763/0"],"_also":["28/1","62/2","134/5","135/1","160/1","161/0","162/3","163/2","163/4","194/1","201/2","227/3","297/1","329/2","359/2","400/2","433/1","476/6","479/1","517/0","597/1","607/0","628/2","634/1","638/1","643/3","653/1","713/2","754/0","797/2","800/16","806/3","806/7","808/2","815/3","823/2","839/5","846/3","881/0","893/3","894/6","895/1","896/0"],"_values":["28/2","28/8","36/0","125/2","185/2","211/0","271/0","350/1","353/0","410/0","411/0","412/0","413/0","414/0","415/0","416/0","418/0","420/1","421/0","426/0","443/0","443/2","444/0","444/1","461/0","475/4","486/2","505/0","515/0","553/0","570/2","573/0","574/1","576/0","580/0","581/0","582/0","624/1","633/0","654/0","696/0","790/3","792/0","794/0","800/10","815/1","823/2","899/0","903/0","909/1"],"_have":["28/2","58/3","71/3","134/0","141/0","163/2","187/1","214/1","227/2","292/0","299/1","306/0","309/1","330/2","333/1","333/2","342/2","345/0","399/1","475/8","478/3","578/0","639/1","642/3","663/1","679/2","680/1","686/0","688/0","689/0","709/1","716/1","751/4","756/0","763/0","768/0","768/2","773/1","798/2","803/0","809/1","809/4","810/0","813/0","815/6","816/1","826/1","827/1","837/0","859/0","860/5","872/0","872/1","877/7","878/0","878/1","881/0","887/0","892/0","894/3","894/4","894/6","898/0"],"_simple":["28/2","65/1","129/2","172/0","211/1","342/0","550/0","608/0","753/1","756/0","766/0","767/0","790/1","809/3","820/0","824/0","837/0","839/0","847/0","866/0","893/1"],"_meaning":["28/2","680/1"],"_javascript":["28/2","28/3","28/4","231/1","359/2","364/0","443/0","448/0","449/0","470/0","475/4","548/0","548/1","623/0","818/0","824/0","830/0","839/0","849/1","852/1","860/1","868/0","894/6"],"_types":["28/2","29/1","326/0","353/0","354/0","362/0","363/0","364/0","365/0","389/1","399/3","515/2","570/3","572/0","573/0","574/1","574/0","575/0","576/0","578/0","580/0","581/0","582/0","633/1","664/0","800/2","800/9","800/10","800/11","800/13","817/1","887/0","893/5"],"_fairly":["28/2","138/0","139/0","572/1","809/3","863/0"],"_straight":["28/2","753/1","810/0","903/1"],"_forward":["28/2","31/3","213/1","753/1","810/0","903/1"],"_strings":["28/2","231/1","405/1","515/0","550/1","551/0","552/1","667/0","668/0","668/1","668/2","669/0","676/0","688/0","801/0"],"_booleans":["28/2"],"_numbers":["28/3","443/0","443/1","448/0","475/0","475/4","475/7","548/1","846/2","846/5","899/0"],"_safe":["28/3","364/0","443/0","448/0","470/1","476/3","478/4","618/0","623/0","649/0","688/1","796/5","868/0","893/0"],"_range":["28/3","443/0","448/0","480/0","480/1","687/0"],"_less":["28/4","178/0","178/4","260/0","470/1","600/1","808/2","902/0"],"_than":["28/4","35/0","242/2","470/1","477/1","495/1","500/1","536/1","551/3","632/0","639/0","669/0","687/1","720/0","807/0","816/2","902/0"],"_bits":["28/4","460/0","532/0","551/1","551/3","551/5","554/0"],"_such":["28/4","58/2","162/3","164/1","171/1","178/2","194/0","247/0","311/1","313/1","322/1","325/1","328/1","345/0","348/2","366/0","446/0","479/0","515/2","601/1","628/2","631/2","634/2","638/0","638/2","640/0","663/2","751/1","751/6","760/0","762/2","790/1","790/2","819/1","821/0","821/2","866/2","893/4","894/6"],"_int24":["28/4"],"_uint48":["28/4"],"_normal":["28/4","29/3","70/0","189/1","359/2","819/1","821/2","829/0","860/1"],"_bignumber":["28/5","33/0","56/0","60/0","205/0","223/0","226/0","256/0","257/0","283/0","284/0","286/0","300/0","307/0","315/0","317/0","320/0","373/0","431/0","443/1","443/2","443/0","444/0","447/0","450/0","450/1","451/0","452/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","471/0","472/0","473/0","476/2","476/4","476/0","478/4","509/0","510/0","511/0","512/0","513/0","514/0","515/2","521/0","522/0","709/0","710/0","712/0","781/0","782/0","873/0","874/0","888/0"],"_bytes":["28/6","29/4","99/0","323/0","323/1","323/2","323/3","434/0","446/0","480/0","481/0","487/0","488/0","489/1","493/0","494/0","495/0","495/1","496/0","497/0","498/0","499/0","500/0","500/1","501/0","502/0","503/0","506/0","507/0","524/0","526/0","529/0","535/0","560/0","561/0","562/0","563/0","564/0","568/1","589/0","658/1","659/1","668/0","668/1","668/2","669/0","670/0","671/1","672/0","675/0","684/0","684/1","686/0","693/0","694/0","695/0","701/0","711/0","717/0","758/0","800/10","801/0","805/3","900/0","900/1"],"_both":["28/6","515/1","739/0","800/16","809/3","895/0","910/0"],"_fixed":["28/6","461/0","532/0","534/0","535/0","536/0","537/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","549/0","550/0","551/1","551/5","552/0","553/0","554/0","555/0","556/0","557/0","633/1","800/8","800/9","805/3","806/0"],"_length":["28/6","102/0","114/0","134/7","136/4","136/5","392/0","420/2","480/1","489/1","489/0","495/0","495/1","497/0","498/1","500/0","500/1","503/0","527/0","568/1","668/0","668/1","671/1","688/0","689/0","758/0","800/8","800/9","805/3"],"_dynamic":["28/6","392/0","800/8","800/11","800/13"],"_include":["28/7","31/2","129/3","178/2","259/0","477/2","570/4","609/0","634/1","634/2","688/1","726/0","741/1","759/2","798/0","878/0"],"_msg":["28/8","374/1"],"_sender":["28/8","297/1"],"_caller":["28/8","179/3"],"_execution":["28/8","120/0","178/5","294/2","342/2","638/1","709/2","786/0","787/0","803/0"],"_callvalue":["28/8"],"_exectuiont":["28/8"],"_price":["28/8","31/3","177/1","223/0","227/3","284/0","317/0","639/1","642/0","642/1","642/2","700/0","710/0","782/0","803/0"],"_pay":["28/8","31/3","229/2","284/0","639/1","803/0"],"_per":["28/8","31/3","284/0","513/0","710/0","758/0","762/3","763/2","803/0","826/3","878/0"],"_gas":["28/8","31/3","33/0","60/0","177/1","223/0","226/0","227/3","256/0","257/0","283/0","284/0","300/0","307/0","317/0","320/0","373/0","515/1","631/2","638/0","638/1","639/1","639/2","642/0","642/1","642/2","643/0","643/2","699/0","700/0","709/0","709/1","709/2","710/0","762/3","781/0","782/0","802/0","803/0","876/0"],"_theoretically":["28/8"],"_since":["28/8","29/1","54/0","63/0","67/0","109/0","118/0","142/1","226/1","287/2","292/0","306/0","328/1","349/1","350/0","366/0","478/1","663/2","668/2","669/0","683/1","690/0","751/4","752/4","758/0","777/5","797/0","800/4","806/3","807/2","810/3","852/1","867/1","873/0","874/0","877/7","894/6"],"_going":["28/8"],"_fee":["28/8","30/0","755/2"],"_charged":["28/8"],"_still":["28/8","67/1","138/0","327/0","363/1","571/0","602/1","663/2","763/2","770/0","817/2","903/0"],"_requires":["28/8","30/0","31/1","177/0","178/5","179/4","187/1","297/1","342/1","479/0","570/1","669/0","751/1","753/4","800/16","806/1","806/3","812/0","815/1","852/1"],"_report":["28/8"],"_tx":["28/8","34/0","61/0","230/0","718/0"],"_most":["28/8","29/5","134/1","160/2","163/3","165/0","177/4","178/4","179/0","211/1","222/0","244/1","310/3","335/2","349/1","350/0","398/2","413/1","415/1","417/0","443/2","461/1","475/1","476/4","551/5","572/1","572/2","593/1","594/2","598/1","599/2","600/2","642/3","690/1","692/0","752/0","766/0","796/3","800/1","800/3","813/0","815/0","854/0","877/3","879/0","895/0","898/0"],"_developers":["28/8","29/5","254/1","255/1","256/2","259/1","299/2","307/1","349/1","398/2","398/3","413/1","415/1","417/0","476/4","572/1","572/2","593/1","594/2","598/1","599/2","600/2","607/0","690/1","796/3","800/1","800/3","804/0","810/3","813/0","815/0","894/4"],"_allow":["28/8","31/3","78/0","142/1","478/0","628/2","676/0","688/0","724/0","728/0","729/0","784/0","797/0"],"_processes":["28/8"],"_metering":["28/8"],"_like":["28/8","149/2","177/4","258/0","446/0","476/0","481/0","486/0","488/0","493/0","494/0","495/0","496/0","497/0","498/0","499/0","500/0","501/0","502/0","524/0","526/0","529/0","535/0","561/0","562/0","563/0","564/0","589/0","670/0","675/0","701/0","711/0","717/0","761/0","803/0","806/5","807/3","894/4"],"_gasleft":["28/8"],"_meaningful":["28/8"],"_blocktag":["28/8","205/0","206/0","207/0","208/0","225/0","244/0","244/1","266/0","267/0","315/0","318/0","631/2"],"_tag":["28/8","105/0","205/0","206/0","207/0","208/0","225/0","244/0","266/0","267/0","315/0","318/0","897/0","897/1"],"_simulate":["28/8"],"_hypothetical":["28/8"],"_historic":["28/8","859/0"],"_analysis":["28/8","32/0"],"_note":["28/8","62/0","145/0","151/0","155/0","163/0","168/0","201/1","323/0","339/0","366/0","669/0","674/0","682/0","758/0","770/0","826/4","827/3","828/2","831/0","851/0","851/2"],"_many":["28/8","60/0","62/1","67/0","142/0","161/1","163/2","163/3","166/1","178/0","201/2","220/1","244/1","324/2","328/1","399/1","443/0","444/0","475/0","479/0","479/1","530/0","558/0","637/0","649/1","668/1","690/0","751/5","766/1","777/8","796/3","805/1","809/1","818/1","821/0","821/2","825/2","844/0","858/1","860/5","893/6"],"_backends":["28/8","161/2","161/5","177/3","179/1","179/2","179/4","181/0","204/2","220/1","227/2","244/1","628/2","631/2","756/0"],"_do":["28/8","29/1","142/1","177/3","190/0","348/2","631/2","648/0","722/2","723/2","777/8","796/2","800/15","810/1","814/0","868/1","871/1","892/0","899/0"],"_support":["28/8","67/0","178/4","200/1","231/1","244/1","435/1","449/0","631/2","772/1","785/1","816/2","825/2","827/2","828/1","829/1","830/1","833/1","835/1","866/1","866/2","894/5"],"_paid":["28/8","30/0","163/4","753/4"],"_plans":["28/8"],"_database":["28/8"],"_storage":["28/8","207/0","668/0","797/0"],"_processing":["28/8","614/0","719/0"],"_requirements":["28/8","256/1"],"_much":["28/8","201/1","211/2","242/2","751/6","805/2","806/0","807/2","816/1"],"_higher":["28/8","129/1","184/1","349/0","351/2","642/0","751/6","752/4","753/4","754/4","797/2"],"_m":["28/0","29/0","31/0","33/0","34/0","35/0","37/0","129/0","627/0","629/0","633/0","634/0","635/0","636/0","637/0","642/0","643/0","686/0","829/0","871/0","898/0"],"_e":["28/0","29/0","31/0","33/0","34/0","35/0","37/0","70/0","165/0","211/0","615/0","616/0","627/0","628/0","629/0","630/0","631/0","632/0","633/0","634/0","635/0","636/0","637/0","638/0","639/0","640/0","641/0","642/0","643/0","644/0","647/0","685/0","686/0","687/0","688/0","689/0","690/0","691/0","760/0","763/0","826/0","827/0","828/0","829/0","830/0","831/0","832/0","834/0","875/0","898/0","908/0"],"_t":["28/0","29/0","31/0","33/0","34/0","35/0","37/0","627/0","629/0","631/0","633/0","634/0","635/0","637/0","638/0","639/0","640/0","642/0","643/0","683/0","686/0","687/0","690/0","691/0","692/0","801/0","814/0","826/0","827/0","828/0","829/0","830/0","833/0","834/0","871/0","898/0"],"_h":["28/0","29/0","31/0","33/0","34/0","35/0","583/0","588/0","589/0","590/0","602/0","603/0"],"_o":["28/0","29/0","31/0","33/0","34/0","35/0","357/0","359/0","615/0","616/0","627/0","628/0","629/0","630/0","631/0","632/0","638/0","640/0","641/0","645/0","647/0","648/0","686/0","687/0","688/0","689/0","690/0","691/0","801/0","814/0","833/0","834/0"],"_d":["28/0","29/0","31/0","33/0","34/0","35/0","583/0","588/0","589/0","590/0","602/0","603/0","627/0","631/0","634/0","637/0","639/0","641/0","642/0","643/0","644/0","679/0","681/0","685/0","690/0","801/0","899/0"],"_n":["28/0","29/0","31/0","33/0","34/0","35/0","37/0","165/0","211/0","357/0","359/0","476/0","477/0","615/0","616/0","627/0","630/0","631/0","632/0","633/0","634/0","635/0","636/0","637/0","638/0","639/0","640/0","641/0","642/0","643/0","645/0","646/0","678/0","679/0","680/0","681/0","686/0","687/0","688/0","689/0","690/0","753/0","814/0","830/0","831/0","832/0","833/0","875/0","898/0","899/0","908/0"],"_a":["28/0","29/0","31/0","33/0","34/0","35/0","37/0","129/0","142/0","145/0","151/0","155/0","163/0","355/0","356/0","357/0","359/0","360/0","435/0","451/0","492/0","494/0","495/0","497/0","498/0","499/0","500/0","501/0","502/0","524/0","526/0","529/0","535/0","561/0","562/0","563/0","564/0","589/0","631/0","633/0","634/0","635/0","637/0","638/0","642/0","643/0","646/0","653/0","670/0","675/0","685/0","687/0","691/0","717/0","751/0","753/0","760/0","763/0","830/0","831/0","832/0","833/0","864/0","896/0","898/0"],"_always":["29/0","100/1","179/2","359/1","478/4","658/1","659/1","713/3","718/3","800/5","800/6","809/1","809/2","874/0","877/7"],"_even":["29/0","478/2","482/0","668/0","758/0","806/6"],"_simplifies":["29/1","142/1","189/1","349/1"],"_frameworks":["29/1","877/3"],"_need":["29/1","34/0","142/1","190/0","349/1","350/0","413/1","415/1","443/2","461/1","593/1","594/2","598/1","599/2","600/2","663/2","668/2","683/1","796/3","800/3","809/3","810/3","812/0","815/10","818/0","822/2","860/5","879/1","903/2"],"_inspect":["29/1"],"_unwrap":["29/1"],"_simplified":["29/1","749/0","868/0"],"_functions":["29/1","29/0","35/3","160/1","403/0","417/0","432/0","434/2","444/0","475/8","476/3","476/6","478/0","478/2","479/1","559/0","579/1","614/0","649/0","692/0","805/0","854/0","877/0","877/1","877/2","877/3","877/5","878/0","878/1","887/0","887/2","896/0","899/3","909/0"],"_another":["29/2","71/4","71/5","112/0","134/0","185/0","226/1","271/0","477/1","478/0","570/4","661/1","763/1","825/3","837/1","858/0"],"_error":["29/2","29/4","199/2","294/3","294/4","312/0","329/2","333/1","436/1","470/1","489/1","495/1","500/1","608/0","614/0","615/0","615/1","616/0","617/0","619/0","620/0","621/0","622/1","623/0","624/0","624/1","626/0","628/0","628/3","630/0","638/0","638/3","640/0","642/1","643/1","643/3","647/0","671/1","675/1","675/0","683/1","683/0","684/0","685/0","686/1","686/0","687/2","687/0","688/2","688/0","689/0","690/0","691/1","691/0","692/0","693/0","694/0","695/0","709/2","718/5","725/0","727/0","731/0","761/0","777/5","777/8","784/1","786/0","787/0","839/2","839/3","839/4","877/3","878/1"],"_recovery":["29/2","440/0","877/3"],"_example":["29/3","38/0","71/5","112/0","129/3","135/2","162/3","177/1","186/1","310/2","323/2","342/2","387/2","388/2","432/3","475/2","476/6","478/3","486/1","515/1","551/4","628/1","628/3","631/1","643/3","678/2","679/2","680/2","681/1","713/2","806/2","813/0","818/0","836/1","847/1","866/2","893/5","899/3","903/2"],"_function":["29/3","58/3","100/2","192/0","297/1","323/5","330/2","350/0","351/1","359/2","367/1","368/0","369/2","370/0","381/0","383/0","384/0","385/0","403/0","406/0","408/0","412/0","413/0","415/0","416/0","417/1","419/0","427/0","428/0","429/0","430/0","432/1","432/2","432/4","432/5","435/2","560/0","579/0","634/2","637/0","674/0","675/1","683/1","684/1","684/0","687/2","688/2","691/1","718/2","769/0","796/6","815/2","852/1","880/0","887/1"],"_invalid":["29/3","436/1","617/0","632/1","633/0","634/0","638/0","640/0","650/0","683/0","684/0","685/0","693/0","694/0","695/0","777/6"],"_utf":["29/3","29/4","568/1","669/0","672/0","674/1","675/0","675/1","676/0","679/2","680/2","683/1","683/0","684/0","685/0","686/0","687/0","688/0","691/0","692/0","693/0","695/0","864/2","889/0"],"_call":["29/3","31/3","33/1","34/1","35/0","59/0","62/0","225/0","225/1","294/3","319/0","328/2","329/1","342/2","351/0","364/0","413/0","416/0","442/0","631/2","638/0","711/1","720/0","777/4","887/1"],"_above":["29/3","29/6","33/1","34/1","35/4","38/0","197/0","239/0","388/2","649/1","817/0","826/1","827/1","844/1","871/2","897/1"],"_throw":["29/3","312/0","322/1","324/2","325/1","329/2","351/2","470/1","616/0","617/0","621/0","671/1","693/0","777/6","777/8","786/0","787/0","793/1","839/3"],"_exception":["29/3","231/1","294/3","638/0","833/1"],"_allows":["29/4","65/1","70/0","125/0","127/0","135/0","136/0","163/3","171/0","177/4","187/0","201/0","204/2","211/0","231/0","287/2","435/1","443/1","532/0","663/2","688/0","751/1","756/1","757/0","759/1","759/2","760/0","763/1","798/1","800/5","807/1","809/3","837/0","886/1"],"_low":["29/4","227/3","398/2","476/3","479/0","572/1","751/3"],"_level":["29/4","129/0","129/1","134/8","349/0","351/2","398/2","476/3","479/0","572/1","625/0","682/0","756/0","797/2","873/0"],"_reason":["29/4","165/0","201/2","477/0","638/3","684/0","685/0","686/0","687/2","687/0","688/2","688/0","689/0","690/0","691/1","691/0","754/4","821/3","823/2","877/2"],"_alternate":["29/4"],"_strategy":["29/4"],"_operations":["29/6","35/4","82/0","83/0","84/0","129/2","129/3","204/2","211/3","244/1","310/0","310/1","310/4","330/3","342/1","345/0","349/1","443/0","443/1","443/2","452/0","461/0","475/8","476/3","479/0","479/1","558/0","619/0","631/2","752/1","810/3","821/2","879/1"],"_non":["30/0","149/2","230/1","335/1","393/1","432/1","444/0","579/0","580/0","581/0","582/0","598/0","602/1","639/2","663/1","663/2","688/0","708/1","724/0","800/0","800/2","800/3","800/4","800/5","800/16","813/0","863/0","864/2","887/1","909/0"],"_signed":["30/0","34/0","61/0","229/1","310/0","324/0","440/0","461/0","551/0","551/1","551/5","552/1","553/0","568/1","570/0","570/1","663/0","664/0","696/0","713/2","884/1","885/1","910/0"],"_payment":["30/0"],"_form":["30/0","666/1","672/0","673/0","676/0","677/0","678/0","678/1","679/0","679/1","680/0","681/0","909/0"],"_miner":["30/0","30/1","255/0","258/0","259/0","642/3"],"_verified":["30/1","329/4","574/1","809/3","893/4","904/1"],"_every":["30/1","134/8","242/1","351/0","626/0","893/2"],"_entire":["30/1","134/5","278/0","763/2","813/1","841/0"],"_well":["30/1","164/0","166/1","288/0","398/1","552/1","558/0","583/0","639/1","639/2","694/0","754/1","807/2","816/2","818/0","858/1","877/1","891/0"],"_who":["30/1","800/1"],"_compute":["30/1","31/5","297/1","439/0","478/3","565/0","570/0","590/1","602/1","661/0","663/2","666/0","718/1","718/4","797/2","806/0"],"_after":["30/1","31/0","185/0","226/1","350/1","475/5","773/1","809/3","819/1","822/2","836/1","893/3"],"_executing":["30/1","32/0","35/0","225/0"],"_logged":["30/3","36/0"],"_log":["30/3","31/5","220/0","240/0","241/1","269/0","270/0","271/0","272/0","273/0","274/0","275/0","276/0","277/0","278/0","301/0","304/0","378/1","414/0","418/0","421/0","422/0","423/0","424/0","425/0","611/0","612/0","613/0","625/0","644/0","645/0","646/0","647/0","751/6","798/0","798/2","798/4","798/5","798/6","806/5"],"_then":["30/3","37/2","64/1","64/2","194/0","265/2","476/6","598/0","663/2","703/1","790/4","844/1","863/2","893/5","909/1"],"_queried":["30/3","202/2","643/0"],"_receipt":["30/3","31/4","31/5","228/0","230/0","294/3","294/4","294/0","295/0","296/0","297/0","298/0","299/0","300/0","301/0","302/0","303/0","304/0","305/0","306/0","307/0","308/0","309/0"],"_write":["30/0","31/2","32/0","33/1","34/1","58/1","96/0","631/2","813/1"],"_limit":["31/3","177/1","256/0","283/0","373/0","639/1","643/2","643/0","699/0","709/0","728/0","729/0","731/0","751/6","752/4","753/4","754/4","781/0"],"_consume":["31/3","93/0","110/3","777/5","791/0","792/0","793/0","794/0","895/0"],"_unused":["31/3","709/2"],"_wei":["31/3","284/0","286/0","475/3","475/5","475/8","513/0","515/0","515/1","515/2","516/2","516/3","642/2","702/0","710/0","712/0"],"_wait":["31/4","224/1","230/0","294/0","725/0","732/0"],"_called":["31/4","334/1","341/1","450/0","533/0","636/0","777/3","777/7","777/9","807/1"],"_logs":["31/5","65/1","220/0","266/0","267/0","268/0","278/0","301/0","304/0","648/0","797/0","859/0"],"_included":["31/5","66/0","177/1","260/0","274/0","294/0","298/0","299/1","301/0","302/0","305/0","307/0","309/1","318/1","477/1","601/1","608/1","608/2","650/0","793/1","798/1","800/10","800/16","823/2","839/5","863/2","871/2","893/3"],"_description":["31/5","95/0","417/1","418/0","419/0","421/0","422/0","423/0","424/0","425/0","426/0","427/0","428/0","429/0","430/0","431/0","583/2","800/18","848/0"],"_parsed":["31/5","400/1","521/0"],"_arguments":["31/5","772/0","772/1","774/1","777/8","790/0","790/3","790/4","809/3","863/0"],"_decode":["31/5","349/0","351/0","354/0","398/1","414/0","415/0","416/0","417/1","461/0","523/0","525/0","529/0","860/3"],"_parse":["31/5","79/0","100/2","400/1","418/0","419/0","515/2","521/0","522/0","670/0","717/0","719/0","790/0"],"_topics":["31/5","36/0","240/0","265/0","275/0","301/0","411/0","414/0","414/1","798/6","800/4","800/7","800/0","890/0"],"_eventsignature":["31/5"],"_full":["31/5","96/0","262/0","299/3","362/0","363/0","388/0","435/1","502/0","817/2","868/1"],"_signature":["31/5","198/0","199/0","322/0","326/0","351/1","365/0","424/0","430/0","432/2","432/3","440/0","484/0","485/0","486/0","501/0","502/0","660/0","663/0","663/1","664/0","665/1","665/0","683/1","703/1","718/0","718/1","718/4","718/5","800/4","800/5","800/6","800/7","800/16","830/0","830/1"],"_removelistener":["31/5"],"_getblock":["31/5","209/0"],"_occurred":["31/5","629/0"],"_gettransaction":["31/5","227/0"],"_gettransactionreceipt":["31/5","228/0"],"_several":["32/0","160/1","164/0","242/3","288/0","517/0","533/1","676/0","692/0","810/2","812/0","817/1","864/1"],"_options":["32/0","160/1","162/4","162/0","333/0","341/0","490/0","649/1","720/0","727/0","728/0","729/0","730/0","731/0","732/0","733/0","769/0","772/0","773/1","777/4","777/5","777/6","789/0","790/0","790/1","790/2","790/4","792/0","794/0"],"_analyze":["32/0","751/6"],"_results":["32/0","65/1","117/0","179/2","756/0","806/0","818/0","893/2"],"_without":["32/0","59/0","135/1","163/1","204/2","299/3","310/2","476/5","598/0","631/2","762/2","806/5","806/7","846/0","871/1","871/3","877/7","879/1"],"_actually":["32/0","35/1","59/0","300/0","435/1","688/2"],"_estimate":["33/0","60/0","226/0","226/1","320/0","631/2","876/0"],"_units":["33/0","60/0","517/0","519/0","521/0","911/0"],"_execute":["33/0","34/0","117/0","120/0","121/0","220/1","310/0","310/4","631/2","767/0","812/0"],"_depending":["33/1","34/1","476/6","751/5","800/8"],"_estimategas":["33/0","60/0","226/0","320/0","329/1","876/0"],"_big":["33/0","56/0","60/0","205/0","223/0","226/0","256/0","257/0","283/0","284/0","286/0","300/0","307/0","315/0","317/0","320/0","373/0","431/0","443/0","444/0","447/0","449/0","451/0","453/0","454/0","455/0","456/0","457/0","458/0","459/0","460/0","462/0","463/0","464/0","465/0","466/0","467/0","468/0","469/0","470/0","471/0","472/0","473/0","475/7","475/8","476/0","476/1","477/0","477/1","477/2","478/0","492/0","509/0","510/0","511/0","512/0","513/0","514/0","521/0","522/0","699/0","700/0","702/0","709/0","710/0","712/0","781/0","782/0","888/0"],"_represents":["34/0","84/0","106/0","110/1","112/0","246/0","265/1","337/0","340/0","359/1","418/0","452/0","516/3","516/4","550/0","691/0","696/0"],"_submitted":["34/0","61/0"],"_populate":["34/0","61/0","177/2","177/4","324/1","330/0"],"_populatetransaction":["34/0","61/0","325/0","329/1","330/0"],"_unsignedtx":["34/0","61/0"],"_rather":["35/0","477/1","807/0"],"_change":["35/0","35/1","97/0","225/1","271/0","327/0","339/0","381/1","452/0","571/0","764/1","796/0","796/2","796/3","796/4","866/1","899/3"],"_possible":["35/0","58/3","141/0","161/1","192/0","476/3","688/0","713/2","716/1","800/15","806/0","810/0","894/0"],"_ask":["35/0"],"_pretend":["35/0"],"_changing":["35/0","310/0","312/0","816/2","819/1","846/0","884/1"],"_some":["35/2","71/4","134/4","163/4","177/3","211/3","231/1","348/2","398/3","476/4","558/0","628/2","628/3","631/2","688/1","753/0","777/6","798/8","804/0","805/0","805/1","806/0","810/1","813/1","839/0","864/2","872/0","882/0","891/0","892/2","903/0","903/1"],"_cases":["35/2","62/1","160/1","486/2","628/3","633/1","668/1","688/1","809/3","868/1","879/1","893/3","893/4","893/6","899/0","903/0","903/1","905/0","908/0"],"_fail":["35/2","643/3","839/2","839/4"],"_succeed":["35/2"],"_static":["35/0","59/0","62/0","97/0","190/1","328/1","450/1","533/1","572/2","631/2","653/0","653/1","777/2","788/0","789/0","874/1"],"_callstatic":["35/0","59/0"],"_up":["36/0","179/4","214/0","224/1","256/1","307/0","335/1","474/0","478/0","668/2","679/2","751/0","751/5","752/2","753/2","754/2","755/0","758/0","798/0","798/2","800/4","800/7","806/1","806/4","810/3","811/0","815/5","825/0","841/0","859/0","866/2","869/0","900/0"],"_bloom":["36/0","301/0","798/1"],"_efficient":["36/0","797/0","798/1"],"_searching":["36/0"],"_entries":["36/0","212/0","574/1"],"_filters":["36/0","37/0","63/0","64/0","265/3","798/0"],"_optionally":["37/0","141/0","190/1","332/0","624/0","666/0","672/0","673/0","718/0","719/0","740/0","758/0"],"_filtering":["37/0","240/2","241/3","797/0","798/1"],"_constraints":["37/0"],"_indexed":["37/1","227/3","275/0","362/1","366/0","390/0","480/1","797/0","798/0","798/1","798/2","800/4","800/6","800/7","800/8","800/16","800/17"],"_parameters":["37/1","130/1","164/1","370/0","383/0","387/1","388/1","390/1","392/1","393/1","421/0","426/0","443/2","637/0"],"_filtered":["37/1","798/4","800/5","800/7","800/16"],"_matches":["37/2","64/1","64/2","240/1","418/0","419/0","422/0","427/0","798/4"],"_v":["37/0","628/0","632/0","634/0","688/0","689/0","760/0"],"_see":["38/0","174/1","187/2","240/2","241/3","265/3","356/0","357/0","406/0","407/0","408/0","409/0","411/0","412/0","413/0","414/0","415/0","416/0","433/1","435/3","594/1","681/1","741/1","807/0","815/8","887/3","904/2"],"_addition":["38/0","242/3"],"_contact":["38/0","877/1","886/1"],"_automatically":["38/0","71/0","124/1","131/1","167/2","177/1","256/1","342/2","417/1","439/1","550/1","774/1","785/1","877/5"],"_add":["38/0","141/0","232/0","233/0","453/0","478/3","478/4","539/0","773/0","809/3","860/4","893/3","894/4"],"_defined":["38/0","129/0","478/0","552/0","552/1","583/3","760/0","846/1"],"_erc20":["39/0","40/0","41/0","42/0","43/0","44/0","45/0","46/0","47/0","48/0","49/0","50/0","51/0","52/0","53/0","55/0","56/0","57/0","58/0","59/0","60/0","61/0","64/0"],"_here":["54/0","63/0","104/0","117/0","120/0","433/0","799/0","882/0","890/1"],"_depend":["54/0","63/0","310/1","515/0"],"_decimal":["55/0","108/0","132/1","445/0","476/0","516/0","516/2","516/3","532/0","550/0","555/0"],"_places":["55/0","516/0","516/2","516/3"],"_erc":["55/0","56/0"],"_token":["55/0","55/1","56/0","57/0","643/3","754/4"],"_parseunits":["55/1","515/2","521/0","522/0"],"_taking":["55/1","800/6"],"_user":["55/1","335/1","475/8","478/0","515/0","515/1","515/2","628/3","674/0","722/0","805/0","806/2","806/5","806/7","807/0","807/3"],"_formatunits":["55/1","515/3","519/0","520/0"],"_utils":["55/1","351/0","352/0","362/0","363/0","364/0","365/0","371/0","372/0","376/0","377/0","379/0","380/0","384/0","385/0","396/0","397/0","400/0","436/0","437/0","438/0","439/0","440/0","441/0","442/0","487/0","488/0","489/0","490/0","491/0","492/0","493/0","494/0","495/0","496/0","497/0","498/0","499/0","500/0","501/0","502/0","503/0","504/0","518/0","519/0","520/0","521/0","522/0","523/0","524/0","525/0","526/0","528/0","529/0","560/0","561/0","562/0","563/0","564/0","565/0","566/0","567/0","568/0","569/0","572/0","580/0","581/0","582/0","584/0","604/0","605/0","606/0","609/0","650/0","651/0","652/0","653/0","654/0","655/0","656/0","663/0","664/0","665/0","666/0","670/0","671/0","672/0","673/0","675/0","677/0","678/0","679/0","680/0","681/0","685/0","686/0","687/0","688/0","689/0","690/0","691/0","693/0","694/0","695/0","717/0","718/0","719/0","720/0"],"_displaying":["55/1","515/0","515/3","838/0"],"_amounts":["55/1"],"_ui":["55/1","168/0","796/5"],"_decimals":["55/0","536/1","537/0","543/0","551/0","551/1","551/3","551/5","552/1","555/0"],"_balance":["56/0","205/0","229/2","315/0","515/1","515/3","754/4"],"_owner":["56/0"],"_getbalance":["56/0","205/0","315/0"],"_symbol":["57/0","508/0"],"_transfers":["58/0"],"_tokens":["58/0","59/0","60/0","61/0","643/3","754/1","815/1","894/6"],"_target":["58/0","59/0","60/0","61/0","113/0","114/0","134/5","136/2","224/0","255/0","619/0","621/0","763/1","763/0"],"_boolean":["58/1","59/0","97/0","98/0","109/0","118/0","176/0","234/0","243/0","271/0","308/0","309/0","314/0","372/0","374/0","377/0","378/0","380/0","381/0","385/0","390/0","397/0","438/0","464/0","465/0","466/0","467/0","468/0","469/0","473/0","487/0","488/0","489/0","544/0","549/0","553/0","606/0","662/0","724/0","791/0"],"_inaccessible":["58/1"],"_operation":["58/1","83/0","84/0","84/1","85/0","85/1","86/0","87/0","88/0","89/0","98/0","109/0","118/0","132/0","204/1","335/1","342/2","443/0","619/0","622/1","627/0","631/0","633/0","690/1","796/3"],"_other":["58/2","70/0","134/4","141/0","164/0","178/2","187/0","204/2","231/1","328/1","399/1","399/3","453/0","454/0","455/0","464/0","465/0","466/0","467/0","468/0","476/2","477/2","478/1","478/3","539/0","540/0","541/0","542/0","602/0","638/0","651/2","653/1","661/0","720/0","767/0","790/3","801/0","817/2","837/0","866/0","871/4","877/2","882/0","890/0","893/1"],"_techniques":["58/2","398/3","759/2"],"_chain":["58/3","65/1","144/1","149/1","154/1","242/1","245/2","248/0","287/0","287/1","294/0","316/0","598/0","640/0","653/0","703/0","703/1","713/0","713/3","716/1","718/4","718/5","797/0","813/0","860/1","860/3","860/5"],"_contracts":["58/3","165/0","225/2","399/0","399/1","479/0","515/0","860/0","886/0","891/0"],"_transfer":["58/3","58/0","59/0","60/0","61/0","64/0","423/2","424/2","428/2","430/2","432/2","432/4"],"_why":["58/3","475/0","476/0","477/0","806/0","809/3","810/1"],"_rw":["58/0"],"_performs":["59/0","80/0","129/2","213/0","619/0"],"_dry":["59/0"],"_transferring":["59/0"],"_signing":["59/0","177/3","322/1","324/2","656/0","657/0","658/0","659/0","660/0","661/0","662/0","703/1"],"_sending":["59/0","171/0","174/0","286/0","325/1","330/1","515/1","515/2","639/1"],"_preflight":["59/1"],"_check":["59/1","329/0","619/0","620/0","621/0","622/0","623/0","650/0","653/0","739/0","814/0","822/1","890/1","893/2"],"_successful":["59/1","309/0"],"_how":["60/0","163/3","350/1","398/0","475/6","725/0","800/0","801/0","807/2","844/0","860/3","893/6"],"_could":["61/0","226/1","299/3","823/1","874/0"],"_perform":["62/0","174/0","204/1","690/1"],"_taken":["62/0","109/0","118/0","287/2","667/0","815/8"],"_account":["62/0","71/2","169/1","170/0","171/1","176/0","178/2","229/2","310/0","313/0","318/0","319/0","320/0","331/0","337/0","345/0","348/1","639/0","639/1","639/2","643/3","708/1","709/1","713/2","768/2","769/0","780/0","783/0","790/2","815/5","885/0","885/2","904/0"],"_best":["62/0","223/0","642/3","643/0","643/2","661/2","796/1","796/4","809/4"],"_ethereum":["62/0","65/0","134/0","134/2","140/2","142/0","142/1","148/0","157/0","160/0","161/0","164/0","166/0","169/0","178/0","178/4","211/0","211/1","217/1","246/0","310/0","328/1","336/1","399/0","435/0","435/1","443/0","475/0","475/5","479/0","527/0","530/0","560/0","584/0","640/0","752/0","752/1","766/0","804/0","805/0","805/1","808/0","857/0","857/1","858/0","858/4","860/0","867/0","868/0","868/1","884/0","884/1","885/0","885/1","886/0","891/0"],"_provide":["62/1","163/4","329/0","330/0","476/6","598/0","638/3","752/1","756/2","797/0","821/2","822/0","824/0"],"_false":["62/1","109/0","118/0","624/0","666/0","724/1","784/0","790/1"],"_positives":["62/1"],"_negatives":["62/1"],"_eventually":["62/2"],"_consistent":["62/2","160/0","204/2","899/0"],"_model":["62/2","614/0"],"_means":["62/2","134/5","475/5","668/0","688/0","751/4","762/1","860/4"],"_certain":["62/2","141/0","178/0","345/0","631/2","682/0","683/1","684/0","864/2","894/6"],"_consistency":["62/2","816/2"],"_modes":["62/2"],"_known":["62/2","342/1","596/0","597/0","597/1","651/2","796/5","877/7","893/4"],"_actual":["62/2","187/2","198/2","294/4","306/0","800/10"],"_attempted":["62/2","185/0","810/0"],"_estimating":["62/0","320/0","643/0"],"_fromaddress":["64/1","64/0"],"_toaddress":["64/2","64/0"],"_way":["65/1","161/0","200/1","435/1","649/0","676/0","688/0","688/1","762/2","766/0","800/15","806/7","809/1","809/4","854/0","857/0","872/0"],"_serialize":["65/1","527/0","530/0","718/0"],"_deserialize":["65/1"],"_their":["65/1","67/1","168/0","168/1","201/2","350/1","476/0","517/0","570/1","580/0","581/0","582/0","694/0","751/1","751/4","751/5","756/0","792/0","794/0","796/2","800/5","800/10","806/2","806/4","825/2","872/1","903/0"],"_facilitates":["65/2"],"_deploying":["65/2","134/2","909/1"],"_interaction":["65/0","753/1","886/1"],"_experimental":["66/0","138/0","327/0","571/0","769/0","770/0"],"_package":["66/0","741/1","813/0","813/1","854/0","866/2","873/0","878/0","895/1"],"_features":["66/0","163/4","809/3","868/0","872/0","872/1","894/6"],"_ready":["66/0","224/0","812/0","868/1"],"_base":["66/0","389/0","435/1","471/0","472/0","523/0","524/0","525/0","526/0","532/0","550/0"],"_library":["66/0","77/0","160/1","194/0","204/1","350/0","352/0","444/0","476/0","476/3","476/5","476/6","477/0","477/1","477/2","478/0","478/3","607/0","608/0","608/1","608/2","741/1","751/2","771/0","809/0","809/3","817/0","855/0","867/0","867/1","869/0","870/0","893/0"],"_api":["66/1","77/0","142/0","144/2","144/3","144/0","145/0","145/1","149/2","149/0","150/0","151/0","151/1","154/0","155/0","155/1","163/0","163/1","163/2","163/4","164/1","166/0","167/0","177/0","187/0","190/0","191/0","192/0","193/0","198/0","201/1","204/2","211/2","231/0","342/1","751/0","751/1","751/2","751/3","751/4","751/5","752/1","752/2","754/2","755/0","756/1","756/2","797/1","797/2","799/0","807/1","815/1","858/0","877/3","896/0"],"_considered":["66/1","138/0","299/3","682/0","809/3"],"_stable":["66/1","676/0"],"_follow":["66/1","330/1","642/3","790/2","817/0"],"_semver":["66/1"],"_versioning":["66/1"],"_applications":["66/1","231/0","335/2","624/1","752/0","756/2","797/0","855/1","872/1"],"_requiring":["66/1"],"_specify":["66/1","149/2","163/0","164/1","165/0","198/1","199/1","327/1","398/0","478/0","515/1","571/1","642/0","643/2","713/3","718/3","800/4"],"_exact":["66/1","327/1","571/1","818/0"],"_version":["66/1","327/1","571/1","579/0","609/0","649/1","809/3","869/1","878/0","883/0","894/5","903/1"],"_removed":["67/0","233/0","235/1","236/1","271/0","494/0","499/0","602/0","649/1"],"_brainwallets":["67/0"],"_v4":["67/0","872/0"],"_unsafe":["67/0","539/0","540/0","541/0","542/0","548/0","688/2"],"_easily":["67/0","81/0","400/2","608/1","798/8","809/3"],"_guessed":["67/0"],"_attackers":["67/0"],"_steal":["67/0","815/6"],"_funds":["67/0","67/1","639/0","667/1","796/1","823/1"],"_offered":["67/1"],"_ensure":["67/1","125/2","192/0","476/6","608/4","618/0","621/1","642/3","818/0","893/3"],"_older":["67/1","869/0","872/1","882/0"],"_systems":["67/1","663/2"],"_brain":["67/1","67/0","68/0","69/0"],"_wallets":["67/1","139/0","313/1","333/2","868/0","907/0","912/0"],"_recover":["67/1","351/2","440/0","665/0"],"_assets":["67/1","328/1","667/1","823/1"],"_wallet":["67/0","68/0","69/0","140/0","310/4","311/1","315/0","316/0","322/1","325/1","331/0","332/0","333/0","334/0","335/0","336/0","337/0","338/0","339/0","340/0","341/0","345/0","515/1","583/0","584/0","790/2","805/1","806/2","808/0"],"_brainwallet":["67/0","68/0","69/0"],"_generates":["68/0"],"_slightly":["68/0","168/0"],"_improved":["68/0"],"_experience":["68/0","475/5","805/0","807/2","807/0","894/4"],"_generated":["68/0","273/0","333/0","440/0","762/2","816/0","817/2","893/5","905/0"],"_mnemonic":["68/0","90/1","90/0","92/0","333/2","336/0","348/1","348/2","348/0","583/3","585/0","586/0","587/0","588/0","596/0","597/1","601/1","604/0","605/0","606/0","737/0","738/0","768/0","768/2","769/0","815/3","815/6","868/0","881/0"],"_generate":["68/0","69/0","100/0","117/0","120/0","189/1","777/2","788/0","789/0","817/1"],"_username":["68/0","69/0","722/0"],"_password":["68/0","69/0","176/0","334/0","335/0","341/0","588/0","604/0","723/0","768/0","768/1","768/2","769/0","805/3","806/1","806/2","806/3","815/2"],"_progress":["68/0","69/0","334/1","334/0","341/1","341/0","807/1","807/2","807/3","903/0"],"_callback":["68/0","69/0","199/2","199/0","200/0","351/2","807/1"],"_progresscallback":["68/0","69/0"],"_compatible":["69/0","164/0","194/0","195/0","196/0","197/0","201/0","399/1","400/1","435/1","583/3","649/1","813/0","866/0"],"_v3":["69/0"],"_earlier":["69/0"],"_legacy":["69/0","703/1","718/2","869/0"],"_generatelegacy":["69/0"],"_eip1193bridge":["70/0"],"_exposed":["70/0","187/0","476/6","478/4","766/1"],"_standard":["70/0","160/0","194/1","198/1","199/1","331/0","435/1","570/2","574/0","579/0","580/0","581/0","582/0","583/0","583/3","614/0","738/0","753/1","754/1","796/2","819/0","909/0"],"_eip":["70/0","194/1","195/0","197/0","198/0","217/0","218/0","219/0","287/0","287/1","326/0","568/0","570/0","573/0","575/0","576/0","577/0","663/2","664/0","703/1","713/1","716/1","718/2","718/4","910/0"],"_interacting":["70/0","75/1","76/1","166/0","479/0","754/1","858/0","867/0"],"_libraries":["70/0","141/0","204/2","231/1","328/1","349/0","351/2","476/1","476/2","477/1","477/2","478/1","478/3","688/1","824/0","882/0","893/4"],"_i":["70/0","142/0","145/0","151/0","155/0","163/0","355/0","356/0","357/0","359/0","360/0","435/0","627/0","629/0","631/0","633/0","634/0","635/0","636/0","638/0","639/0","641/0","642/0","643/0","645/0","646/0","685/0","686/0","690/0","751/0","753/0","772/0","826/0","827/0","828/0","830/0","833/0","864/0","871/0","896/0","907/0"],"_p1193":["70/0"],"_bridge":["70/0"],"_noncemanager":["71/0","71/1","71/3","72/0","73/0","74/0","75/0","76/0"],"_designed":["71/0","313/1","772/1","808/1","824/0","867/1"],"_manage":["71/0","201/1","810/2","892/0"],"_increasing":["71/0","806/1"],"_currently":["71/1","206/1","244/1","684/0","893/1","894/1"],"_handle":["71/1","683/1","774/0","864/2","877/7"],"_re":["71/1","271/0","366/0","813/1","819/1"],"_broadcast":["71/1"],"_attempt":["71/2","435/0","638/0","688/1","806/5"],"_send":["71/2","171/0","175/0","178/3","199/0","200/0","229/0","310/0","310/2","320/0","325/0","631/2","643/3","884/1","885/1","892/2"],"_lot":["71/2","478/2","479/0","824/1","890/0"],"_control":["71/2","762/0","845/0","899/2"],"_pool":["71/2","227/1","227/2","642/1"],"_drop":["71/2","694/0","894/5","894/7"],"_your":["71/2","142/1","144/3","145/1","149/2","151/1","155/1","161/5","201/1","475/6","478/1","608/4","628/2","751/0","751/6","756/2","768/2","771/0","796/1","796/5","803/0","809/3","811/0","815/6","815/8","822/1","822/2","855/0","855/1","857/1","858/4","868/0","868/1"],"_future":["71/3","71/4","271/0","583/3","764/1","785/1","809/3","816/2","893/3"],"_nice":["71/3"],"_remembered":["71/3"],"_watched":["71/3"],"_rebroadcasting":["71/3"],"_appear":["71/3"],"_dropped":["71/3","161/6","220/1"],"_feature":["71/4","327/0","571/0","770/0","809/4","811/0"],"_sort":["71/4"],"_failure":["71/4","796/1"],"_mode":["71/4"],"_often":["71/5","260/0","432/5","628/2","667/0","797/0","846/0","860/6","894/4","899/0"],"_dependent":["71/5"],"_being":["71/5","73/0","163/3","204/2","224/0","226/1","244/1","319/0","320/0","570/3","608/2","619/1","624/0","636/0","641/0","806/7","807/3","893/5"],"_first":["71/5","169/1","179/2","197/1","199/2","323/5","420/3","435/1","475/0","665/1","684/0","769/0","772/1","773/1","798/8","800/4","800/6","817/0","868/1"],"_manager":["71/0","72/0","73/0","74/0","75/0","76/0"],"_create":["72/0","83/0","90/0","144/0","149/0","150/0","154/0","158/0","195/0","196/0","332/0","333/0","334/0","335/0","336/0","339/0","343/0","350/0","351/0","364/0","366/0","400/0","550/1","609/0","614/0","615/0","639/2","656/0","771/0","812/0","868/0"],"_whose":["73/0","100/1","435/1"],"_managed":["73/0","169/0","170/0"],"_associated":["74/0","321/0","773/1","871/1"],"_set":["75/0","129/2","177/4","211/0","240/0","241/0","271/0","282/1","345/0","399/3","460/0","475/5","478/0","615/0","616/0","624/0","625/0","652/0","737/0","755/2","774/0","798/2","798/4","798/5","798/6","811/0","815/1","815/5","815/10","817/2","849/0","864/0"],"_outside":["75/1","76/1","443/0","687/0"],"_settransactioncount":["75/0"],"_void":["75/0","76/0","199/0","200/0","342/0","343/0","344/0","611/0","612/0","613/0","619/0","620/0","621/0","622/0","623/0","624/0","625/0","650/0","652/0","740/0","773/0","774/0","776/0","780/0","785/0"],"_bump":["76/0"],"_increment":["76/0"],"_incrementtransactioncount":["76/0"],"_application":["77/0","161/5","194/0","398/0","515/0","607/0","751/0","796/1","796/3","822/1","860/3"],"_programming":["77/0","759/2"],"_formal":["77/0"],"_specification":["77/0","326/0"],"_assembler":["78/0","129/4","133/1","134/6","757/0","759/0","760/0"],"_utilities":["78/0","81/0","398/3","558/0","607/0","608/0","649/0","766/0","766/1","771/0"],"_parsing":["78/0","100/0","417/0","772/0","800/13"],"_assembling":["78/0"],"_asm":["78/0","79/0","80/0","82/0","83/0","90/0","100/0","129/0","129/1","129/4","133/0","134/8","757/0","759/0"],"_dialect":["78/0","100/0","129/0","129/4","133/0","134/8","757/0","759/0"],"_source":["78/0","101/0","102/0","103/0","106/0","240/0","313/1","333/1","400/2","811/0","816/2","823/0","847/0","864/0","868/1","893/5"],"_file":["78/0","79/0","100/0","100/2","129/4","187/0","187/1","400/2","758/0","809/3","815/2","815/3","815/8","839/0","847/0","852/1","866/2","893/5"],"_format":["79/0","83/0","350/1","359/0","361/0","365/0","366/0","395/0","400/2","405/1","405/0","435/0","435/1","435/2","435/3","436/2","438/0","485/0","501/0","502/0","515/3","519/0","520/0","534/0","535/0","536/0","536/1","537/0","538/0","545/0","550/1","550/0","551/0","551/1","552/1","552/0","553/0","554/0","555/0","556/0","671/0","764/1","785/1","912/0"],"_assembly":["79/0","80/0","117/0","120/0","125/0","129/1","129/2","138/0"],"_abstract":["79/0","80/0","100/0","100/2","311/0","619/1","619/0","627/1"],"_syntax":["79/0","80/0","100/0","100/2","117/0","120/0","130/0","130/1","758/0","849/0","887/1"],"_tree":["79/0","80/0","100/0","100/2","813/1"],"_resulting":["80/0"],"_representation":["80/0","323/0","482/0","484/0","498/0","499/0","500/0","519/0","521/0","523/0","525/0","528/0","546/0","547/0","550/0","601/0","667/0","671/0","680/1","705/1"],"_assemble":["80/0","129/4","757/0","759/0"],"_disassembler":["81/0","764/0"],"_easy":["81/0","211/0","476/3","583/3","771/0","886/1","895/0"],"_convert":["81/0","435/3","475/8","515/0","604/0","605/0","888/0"],"_examined":["81/0"],"_program":["81/0","129/1","131/0","134/0","134/2","134/4","134/5","134/7","134/8","135/0","762/0","762/1","762/2","763/2","764/0","860/0"],"_structure":["81/0","326/0","530/0","570/3","570/4","798/1"],"_given":["82/0","85/0","90/0","186/1","242/1","265/2","411/0","412/0","413/0","414/0","415/0","416/0","434/1","442/0","716/1","762/0","764/0","766/1","777/6","800/15","805/3","897/0","900/0","902/0"],"_disassemble":["82/0","129/4","757/0"],"_formatted":["83/0","405/0","435/1","519/0","785/0","830/0"],"_formatbytecode":["83/0"],"_index":["84/0","111/0","169/0","272/0","277/0","278/0","298/0","593/0","599/0","684/0","686/1","735/0","736/0"],"_collapsing":["84/0"],"_multi":["84/0","792/0"],"_byte":["84/0","85/1","132/1","136/1","411/1","435/1","479/0","480/0","480/1","485/0","639/2","665/1","668/0","668/2","683/0","685/0","686/1","688/0","690/0","758/0","762/0"],"_push":["84/1","85/1","89/0","94/0","99/0","109/0","118/0","125/2","132/0"],"_offset":["85/0","85/1","88/0","101/0","114/0","124/1","127/0","134/7","136/1","498/0","684/0","684/1","762/3"],"_ensures":["85/1","161/6","204/2","602/1","708/1"],"_contained":["85/1","838/0"],"_within":["85/1","106/0","129/3","134/1","136/2","400/2","432/1","434/1","448/0","607/0","614/0","736/0","806/6","837/1","846/0","846/1"],"_case":["85/1","109/0","118/0","134/0","177/1","227/3","297/0","323/2","323/4","323/5","434/0","434/1","436/1","483/1","517/0","608/3","663/2","772/1","877/7","897/1","897/0","898/0","899/0","903/2"],"_getoperation":["85/0"],"_command":["86/0","129/4","168/0","628/2","757/0","766/1","767/0","771/0","772/0","772/1","773/0","774/1","777/0","790/0","790/2","790/3","790/4"],"_disassembled":["86/0","764/0"],"_stream":["86/0"],"_opcode":["87/0","89/0","90/0","91/0","92/0","93/0","94/0","95/0","96/0","97/0","98/0","99/0","115/0","116/0","130/0","638/0"],"_pushvalue":["89/0"],"_numeric":["90/0","475/4","623/0","633/0","633/1","800/10"],"_x60":["90/1"],"_push1":["90/1","90/2"],"_valueormnemonic":["90/0"],"_items":["93/0","94/0","877/6"],"_stack":["93/0","94/0","107/0","110/0","110/3","132/0","136/5","137/0"],"_delta":["93/0"],"_onto":["94/0","756/1"],"_alpha":["94/0"],"_short":["95/0","211/0","668/0","668/1","806/6","874/0"],"_doc":["95/0"],"_true":["96/0","97/0","98/0","109/0","118/0","243/0","271/0","308/0","314/0","381/2","438/0","464/0","465/0","466/0","467/0","468/0","469/0","473/0","487/0","488/0","489/0","544/0","549/0","553/0","606/0","662/0","760/0","784/1","790/1","791/0"],"_accesses":["96/0"],"_memory":["96/0","769/0","805/3","806/0"],"_ismemory":["96/0"],"_isstatic":["97/0"],"_jumper":["98/0"],"_jump":["98/0","124/0","129/3","134/5","759/2"],"_isjump":["98/0"],"_ispush":["99/0"],"_root":["100/1","165/0","299/0","575/0","763/0","866/2","877/1","877/3","877/5"],"_scopenode":["100/1","127/0","128/0"],"_start":["101/0","809/4","811/0","846/5"],"_characters":["102/0","323/2","435/1","483/1","669/0","680/1","682/0","689/0","816/2","864/2","864/0"],"_end":["102/0","267/0","498/0","632/0","709/2","842/0","844/0"],"_todo":["104/0","130/2","131/2","132/2","135/2","137/0","147/0","355/0","360/0","765/0","795/0","801/0","815/10","817/2","847/1"],"_place":["104/0","110/0","110/1","110/2","111/1","124/0","476/3","815/5"],"_diagram":["104/0"],"_showing":["104/0"],"_hierarchy":["104/0"],"_nodes":["104/0","126/0","128/0","142/1","178/4","187/0","593/0","598/0","642/3","755/2","868/0"],"_unique":["105/0","432/1"],"_lifetime":["105/0"],"_process":["105/0","129/2","690/0","719/0","772/0","776/0","805/3","806/2","810/0","835/1"],"_location":["106/0","135/1","244/0","762/1"],"_valuenode":["107/0","116/0","126/0"],"_manipulate":["107/0"],"_literal":["108/0","109/0","111/0","118/0","119/0","132/0","132/1","136/5"],"_literalnode":["108/0","109/0","111/0","118/0"],"_datanode":["109/0","118/0","125/0","126/0"],"_context":["109/0","118/0","638/3"],"_verbatim":["109/0","118/0","126/0"],"_popnode":["110/0","111/0"],"_store":["110/0","668/2"],"_holder":["110/0","110/1","110/2","111/1"],"_implicit":["110/0","110/1","111/1"],"_pop":["110/0"],"_explicit":["110/2"],"_indicates":["110/3","258/0","369/0","516/0","679/2","684/0","844/0"],"_expected":["110/3","620/0","635/0","639/2","643/3","686/1","777/8","809/3"],"_position":["110/3","131/0","207/0","762/0","762/2","798/2","798/4","798/5","798/6","798/7"],"_representing":["111/0","240/0","400/0","509/0","510/0","511/0","512/0","513/0","514/0","515/2","842/0"],"_linknode":["112/0","113/0","114/0","122/0","127/0"],"_link":["112/0","113/0","114/0","136/0","136/4","136/5","194/1","608/3","628/3","816/2","825/1","852/0","892/1"],"_foo":["112/0","877/1"],"_bar":["112/0","807/1","807/2","807/3"],"_label":["113/0","124/0","131/0","763/0"],"_whether":["114/0","374/0","378/0","381/0","390/0","800/8","871/4"],"_opcodenode":["115/0","116/0"],"_operands":["116/0"],"_evaluationnode":["117/0","119/0","121/0"],"_insert":["117/0","126/0"],"_evaluation":["117/0","119/0","121/0","818/1","818/0","833/1","839/0"],"_evaluate":["119/0"],"_produce":["119/0","664/0"],"_script":["119/0","121/0","767/0","810/3","813/1","815/1","839/0"],"_executionnode":["120/0"],"_ignored":["121/1","133/1","758/1","841/3","851/2"],"_labellednode":["122/0","123/0"],"_targeted":["122/0"],"_labelled":["122/0","123/0","135/1","136/1","763/1"],"_labelnode":["124/0"],"_referencing":["124/0"],"_mylabel":["124/0"],"_jumpdest":["124/1","131/1","135/1"],"_inserted":["124/1","125/0","414/1"],"_mydata":["125/0"],"_padded":["125/2","500/0","800/10"],"_regarded":["125/2"],"_impact":["125/2","624/2","688/0","762/2"],"_anything":["125/2","265/1","809/3"],"_past":["125/2","632/0","684/1"],"_child":["126/0","128/0","134/5","134/7","136/3","570/4","598/0","603/0","654/0"],"_represent":["126/0","386/0","475/4","532/0","556/0","678/1","704/0"],"_piece":["126/0"],"_frame":["127/0"],"_reference":["127/0","651/2"],"_resolving":["127/0"],"_locations":["127/0"],"_myscope":["127/0"],"_scope":["127/0","128/0","134/5","134/7","134/8","136/2","136/3","763/0","800/1"],"_statements":["128/0"],"_provides":["129/0","136/4","160/1","177/0","186/0","398/1","398/2","476/4","766/0","797/2","800/2","805/2","857/0","858/3","860/3","884/0"],"_quick":["129/0","800/0","855/1"],"_high":["129/0","479/0","756/0"],"_overview":["129/0","800/0","804/0","891/0"],"_grammar":["129/0"],"_compiled":["129/1","893/5"],"_language":["129/1","399/1","556/0","587/0","741/1","807/3","840/0","849/0","891/0"],"_hand":["129/1"],"_coded":["129/1"],"_needs":["129/1","350/1","817/2","856/0","860/3","868/1"],"_assembled":["129/1","131/1","762/0","763/0","763/1","763/2"],"_very":["129/2","328/0","328/1","475/1","476/2","608/1","628/2","713/3","753/0","754/0","806/0","824/0"],"_intentionally":["129/2","608/1","769/0"],"_closely":["129/2","231/1","759/0"],"_related":["129/2","187/2","330/3","878/0","881/0"],"_underlying":["129/2","204/2","351/1","476/5","800/1"],"_embedding":["129/3","134/1"],"_programs":["129/3","763/0"],"_bootstrap":["129/3"],"_runtime":["129/3","134/1","860/4"],"_embedded":["129/3","134/0","134/5","135/0"],"_computing":["129/3","365/0","823/0","889/0","904/0"],"_necessary":["129/3","160/1","679/1","718/1","815/0","824/0"],"_offsets":["129/3","762/2","764/0"],"_line":["129/4","168/0","628/2","757/0","767/0","771/0","772/0","790/0","790/2","790/3","790/4","826/1","827/1","833/2","835/0","839/1","841/2","842/0","846/4"],"_human":["129/4","247/0","356/0","360/0","362/0","362/1","400/2","405/1","583/2","667/0","667/1","757/0","764/1","860/6","868/0"],"_readable":["129/4","247/0","356/0","360/0","362/0","400/2","405/1","515/0","583/2","667/0","667/1","757/0","764/1","809/3","860/6","868/0"],"_ish":["129/4"],"_opcodes":["129/4","130/1","130/0"],"_literals":["129/4","132/0"],"_s":["129/0","165/0","211/0","357/0","359/0","628/0","631/0","635/0","636/0","639/0","643/0","686/0","691/0","830/0","864/0","875/0","898/0","908/0"],"_either":["130/0","165/0","180/2","197/0","445/0","481/0","530/1","659/1","661/1","763/1","822/0","847/0","864/2"],"_functional":["130/0","130/1","872/1"],"_instructional":["130/0","130/1"],"_recommended":["130/1","142/3","144/3","145/1","151/1","155/1","163/0","713/3","718/3","751/5","753/0","756/2","808/0","822/1","823/2","847/0"],"_raise":["130/1"],"_warning":["130/1","646/0","761/0","823/3","832/0"],"_examples":["130/2","131/2","132/2","265/3","386/0","516/1","531/0","759/0","764/0","765/0","795/0","798/8","860/6"],"_jumped":["131/0","762/0"],"_point":["131/1","475/4","548/0","550/0","714/1"],"_labels":["131/0","135/1","136/0","136/2","136/4","762/0"],"_puts":["132/0"],"_executed":["132/0","134/4","713/2","777/0","839/0","893/5"],"_enter":["133/0","766/1","864/2"],"_comment":["133/0","478/0"],"_text":["133/0","219/0","523/0","525/0","560/0","671/0","671/1","672/0","673/0","815/3","815/6","829/0","837/0","841/1","849/0","850/0","853/0"],"_semi":["133/0"],"_colon":["133/0"],"_comments":["133/0"],"_common":["134/0","134/1","144/1","149/1","154/1","164/0","164/1","165/0","178/0","178/4","211/1","242/2","245/1","245/2","310/3","323/4","324/2","475/1","476/6","485/0","517/0","558/0","633/1","692/0","766/0","820/0","821/1","856/0","866/0"],"_one":["134/0","165/0","197/0","197/1","204/0","211/1","311/1","348/1","350/0","369/1","476/0","476/2","509/0","511/0","600/1","608/2","626/0","642/1","684/0","688/2","767/0","772/1","798/6","817/2","826/3","903/2"],"_init":["134/1","134/2","134/3","295/1","297/0","442/0"],"_contains":["134/3","260/0","345/0","436/1","505/0","639/2","650/0","815/3","844/1"],"_installed":["134/4","762/1","864/2"],"_important":["134/5","328/0","476/2","667/1","800/13","805/2","808/2","809/3","866/1","872/0"],"_jumps":["134/5"],"_relative":["134/5","762/2","807/2"],"_own":["134/5","142/1","144/3","145/1","151/1","155/1","201/1","476/0","751/0","751/4","771/0","806/2","855/0"],"_parent":["134/5","251/0","593/0","594/0"],"_scopes":["134/5","134/7","134/0","136/0","136/3","763/1"],"_enforced":["134/6","642/3"],"_segment":["134/7","135/0","135/1","136/0","136/3","136/4","763/1"],"_respect":["134/7"],"_anywhere":["134/7","211/2","868/1"],"_top":["134/8","230/2","847/0","873/0"],"_arbitrary":["135/0"],"_lookup":["135/0","213/0","213/1"],"_tables":["135/0","841/0"],"_constants":["135/0","433/1","505/0","506/0","507/0","508/0","509/0","510/0","511/0","512/0","513/0","514/0"],"_empty":["135/1","768/0"],"_adds":["135/1","329/3","330/3","848/0","851/0"],"_item":["136/1","877/4"],"_foobar":["136/1","136/5","386/1","387/2","388/2"],"_must":["136/2","165/0","182/0","197/1","201/1","229/1","265/1","299/3","312/0","313/2","322/1","323/5","324/2","325/1","328/2","329/4","477/1","515/1","536/1","551/2","551/3","639/1","642/0","708/2","709/1","758/0","762/1","777/4","798/2","798/5","798/6","800/16","806/3","810/1","816/2","822/0","823/2","842/0","846/2","846/5","863/1"],"_reachable":["136/2"],"_inside":["136/3"],"_respectively":["136/4"],"_accessed":["136/5","351/2","420/0","420/1","760/0","790/3","797/0"],"_pushed":["136/5"],"_links":["136/0","751/0","816/2","830/1","837/0","848/1","851/1","892/2"],"_exampl":["137/0"],"_placeholders":["137/0","414/1"],"_module":["138/0","178/5","821/3"],"_ledger":["139/0","140/0"],"_hardware":["139/0","140/0","313/1"],"_popular":["139/0","148/0","166/0","435/0","821/0","858/0"],"_brand":["139/0"],"_ledgersigner":["139/0","140/0"],"_connects":["140/0","179/1","201/0","756/0"],"_left":["140/1","140/2","777/5","800/10"],"_unspecified":["140/1","140/2","202/1","202/2","240/1","781/1","782/1"],"_environment":["140/1","333/1","622/0","767/0","811/0","821/2","823/0","894/1","894/3"],"_default":["140/1","140/2","142/3","145/0","151/0","155/0","160/2","161/0","162/0","163/1","167/1","179/4","182/1","202/1","217/1","245/2","260/0","329/3","330/3","336/1","350/0","352/0","584/0","722/1","723/1","724/1","728/1","729/1","730/1","741/1","751/2","756/0","756/1","761/0","763/0","768/0","772/1","796/3","800/3"],"_hid":["140/1"],"_browser":["140/1","741/1","812/0","819/1","855/0","857/0"],"_u2f":["140/1"],"_path":["140/2","140/0","188/0","336/1","336/0","584/0","586/0","597/0","597/1","599/1","600/1","601/1","603/0"],"_now":["141/0","866/2","877/3","878/0","879/1","880/0","881/0"],"_modular":["141/0"],"_ancillary":["141/0"],"_packages":["141/0","608/3","809/3","812/0","814/0","822/1","822/2","854/0"],"_part":["141/0","185/1","242/1","254/0","350/0","390/1","420/2","476/0","688/1","713/1","763/2","821/1","893/0"],"_core":["141/0","891/0"],"_functionality":["141/0","160/0","398/1","476/4","476/6","477/1","608/2","608/4","822/0","868/1"],"_situations":["141/0","683/1","692/0","713/3","808/2","816/2"],"_services":["142/0","142/2","161/1","162/0","163/0","163/1","163/2","163/4","166/1","178/2","201/2","751/3","756/0","858/1"],"_offer":["142/0","197/1","752/1","753/1","754/1"],"_web":["142/0","150/0","166/1","200/1","201/0","202/0","819/0","819/1","821/1","821/2","855/1","855/0","858/1","894/0","894/2"],"_accessing":["142/0"],"_these":["142/1","142/3","178/2","178/3","349/1","398/3","444/1","461/1","479/1","486/2","558/0","579/1","607/0","608/0","614/0","649/1","713/3","751/3","751/4","797/1","800/10","877/1","892/0","894/6","909/1"],"_providers":["142/1","142/0","144/0","149/0","154/0","158/0","160/0","167/0","179/1","180/0","180/2","184/2","190/0","195/0","197/0","202/0","312/0","479/0","884/0"],"_connecting":["142/1","168/0","857/0","858/0"],"_development":["142/1","819/1"],"_cluster":["142/1"],"_however":["142/2","312/0","322/1","324/2","325/1","420/2","435/1","435/2","475/3","593/0","642/3","690/1","713/3","769/0","806/5","818/1","899/0"],"_reliance":["142/2"],"_third":["142/2","166/1","756/0","858/1"],"_party":["142/2","166/1","661/1","661/2","756/0","858/1"],"_reduce":["142/2","185/2","434/1","808/0"],"_resilience":["142/2"],"_security":["142/2","324/2","682/0","688/0","688/1","805/2","807/0","808/0","808/2","809/3","822/1","823/0","855/0"],"_increase":["142/2","808/2"],"_trust":["142/2","756/0"],"_mitigate":["142/3"],"_issues":["142/3","328/1","434/1","796/3","809/3","893/3"],"_p":["142/0","145/0","151/0","155/0","163/0","435/0","528/0","529/0","627/0","631/0","637/0","638/0","641/0","642/0","643/0","685/0","690/0","751/0","814/0","833/0","858/0","896/0","907/0"],"_etherscanprovider":["143/0","144/0","631/2"],"_backed":["143/0","148/0","153/0","157/0","162/0","172/0","751/1"],"_combination":["143/0","777/6"],"_etherscan":["143/0","144/3","144/0","145/1","628/3","751/1","752/0","752/2","868/0"],"_apis":["143/0","168/0","479/0","751/6","754/1","754/4","821/1"],"_apikey":["144/0","144/2","145/0","149/0","149/2","150/0","150/1","151/0","154/0","155/0","190/0","191/0","192/0","193/0"],"_id":["144/1","149/1","149/2","154/1","245/2","248/0","287/0","287/1","316/0","560/0","640/0","703/0","703/1","713/0","713/3","716/1","718/4","718/5","753/2"],"_shared":["144/2","145/0","151/0","155/0","163/1","661/0","751/4","752/4"],"_key":["144/2","144/3","144/0","145/0","145/1","149/0","150/0","151/0","151/1","154/0","155/0","155/1","163/0","163/2","163/4","190/0","191/0","192/0","193/0","219/0","310/4","329/2","331/0","332/0","333/0","340/0","347/0","420/2","420/3","435/1","439/1","439/0","440/0","565/0","590/0","591/0","592/0","598/0","601/0","602/0","602/1","634/2","653/0","656/0","657/0","658/0","659/0","660/0","661/1","661/2","661/0","662/0","665/0","665/1","666/0","666/1","726/0","751/1","751/4","751/5","752/2","754/2","755/0","756/1","760/0","769/0","805/3","805/0","815/2","852/0","857/1","858/4","904/0"],"_reduced":["144/2","145/0","151/0","155/0","601/1"],"_performance":["144/2","145/0","151/0","155/0","751/0","751/6","756/2"],"_throttled":["144/2","145/0","151/0","155/0","751/4"],"_requests":["144/2","145/0","151/0","155/0","163/3","185/2","201/0","220/1","809/2","814/0","866/0"],"_highly":["144/3","145/1","151/1","155/1","163/0","718/3","751/5","753/0","755/2","756/2","822/1","823/2","847/0"],"_production":["144/3","145/1","151/1","155/1","161/0","163/0","624/1"],"_register":["144/3","145/1","151/1","155/1","231/0","740/0"],"_homestead":["144/0","146/0","149/0","152/0","154/0","156/0","158/1","159/0","162/1","245/2","247/0","713/2"],"_keys":["145/0","151/0","155/0","163/1","163/0","211/0","348/2","583/0","590/1","751/0","751/2","751/3","751/4","756/1","815/1","815/8","815/10","823/0","823/1","868/0"],"_mainnet":["146/0","152/0","156/0","158/0","159/0","162/2","164/1","796/1"],"_ropsten":["146/0","152/0","156/0","164/1","713/2","796/1"],"_proof":["146/0","152/0","156/0","254/0","299/3"],"_work":["146/0","152/0","156/0","211/3","254/0","398/1","785/1","808/0","817/2","856/0","894/1","903/0"],"_testnet":["146/0","152/0","156/0"],"_rinkeby":["146/0","152/0","156/0"],"_authority":["146/0","152/0","156/0"],"_ouml":["146/0","152/0","156/0"],"_rli":["146/0","152/0","156/0"],"_clique":["146/0","152/0","156/0"],"_kovan":["146/0","152/0","156/0"],"_supported":["146/0","152/0","156/0","159/0","312/0","322/1","324/2","325/1","435/2","436/2","438/0","553/0","566/0","567/0","631/0","809/3","864/2","894/0"],"_networks":["146/0","152/0","156/0","159/0","164/0","165/0","287/2","713/1","796/2"],"_explain":["147/1","358/0","433/0","799/0","801/0","802/0"],"_history":["147/0"],"_gethistory":["147/0"],"_infuraprovider":["148/0","149/0","150/0"],"_infura":["148/0","149/0","150/0","151/1","166/2","628/2","751/1","753/0","753/2","858/2","868/0"],"_service":["148/0","163/0","211/0","751/1","751/2","751/5","753/0","754/0","756/1","756/2"],"_project":["149/2","753/2","813/1","824/1"],"_projectid":["149/2"],"_projectsecret":["149/2"],"_secret":["149/2","598/0","661/0"],"_public":["149/2","340/0","362/1","439/1","439/0","440/0","478/2","592/0","658/0","659/0","661/1","665/0","666/0","666/1","809/4","863/1"],"_sources":["149/2","333/0","348/2","823/3","893/4"],"_server":["149/2","201/1","628/0","628/3","819/0"],"_further":["149/2","212/0","863/1"],"_secure":["149/2","333/0","333/1","628/3","724/0","806/6","823/0","823/3","893/0"],"_quotas":["149/2"],"_websocketprovider":["150/0","201/0","202/0"],"_socket":["150/0","201/0","202/0"],"_endpoint":["150/0"],"_getwebsocketprovider":["150/0"],"_alchemyprovider":["153/0","154/0"],"_alchemy":["153/0","154/0","155/1","628/2","751/1","754/0","754/2","868/0"],"_cloudflareprovider":["157/0","158/0"],"_cloudflare":["157/0","158/0","628/3","868/0"],"_gateway":["157/0","755/0"],"_connection":["160/0","167/0","201/0","719/0","721/0","722/0","723/0","724/0","725/0","726/0","857/1","858/4","859/0","871/4","884/0"],"_providing":["160/0","860/5"],"_concise":["160/0"],"_js":["160/1","187/1","194/0","198/2","199/0","204/0","204/1","476/6","476/0","477/0","809/0","809/3","816/2","821/1","821/2","822/0","847/0","847/1","852/1","867/0","883/0","894/2"],"_cover":["160/1","709/1","872/1","890/0"],"_vast":["160/1","796/3"],"_majority":["160/1","161/6"],"_includes":["160/1","242/1","261/0","262/0","263/0","288/0","301/0","530/3","708/1","718/4","751/5","881/0"],"_classes":["160/1","190/0","311/1","312/0","313/2","322/1","324/2","325/1","328/1","328/0","329/0","330/0","398/3","619/1","739/1","854/0","868/0"],"_sub":["160/1","189/0","190/0","201/0","310/1","310/4","311/1","312/0","313/2","322/1","324/2","325/1","328/2","328/0","329/0","330/0","454/0","540/0","627/1","739/1","854/0"],"_classing":["160/1"],"_custom":["160/1","164/0","164/1","165/0","178/5","329/0","330/0","675/1","683/1","683/0","687/2","688/2","691/1","810/2","904/1"],"_configuration":["160/1","168/0","178/5","183/0","847/0","852/0","852/1"],"_users":["160/2","163/1","461/1","751/4","796/2","796/5","877/3"],"_safest":["161/0"],"_easiest":["161/0","854/0","857/0"],"_begin":["161/0","475/5","685/0","690/0","758/0","841/1","842/0","846/2","857/0"],"_developing":["161/0","857/0","896/0"],"_robust":["161/0","753/0","754/0"],"_enough":["161/0","161/5","435/1","639/1","686/0","689/0","709/1","824/0"],"_fallbackprovider":["161/1","179/0","180/0"],"_backend":["161/1","161/3","161/6","171/1","179/5","182/0","201/0","628/3","751/3"],"_request":["161/2","176/0","179/2","198/1","198/0","199/1","199/0","200/1","200/0","279/0","280/0","281/0","282/0","283/0","284/0","285/0","286/0","287/0","319/0","320/0","324/0","325/0","329/0","330/0","628/3","751/6","809/4"],"_simultaneously":["161/2"],"_responses":["161/3","161/6","182/0","751/4","751/6"],"_checked":["161/3"],"_agree":["161/3","161/5","179/4","182/0"],"_quorum":["161/4","179/1","179/3","179/4","180/1","180/0","182/0","185/1"],"_reached":["161/4","179/3"],"_become":["161/6","821/0"],"_out":["161/6","476/5","638/0","687/0","709/2","751/2","800/1","809/0","809/4","822/1","871/4","890/1","894/3"],"_sync":["161/6","335/0","818/0"],"_compromised":["161/6","815/8"],"_favor":["161/6","649/1"],"_url":["162/3","167/0","189/1","189/0","190/0","191/0","193/0","202/0","202/1","719/0","721/0","852/0"],"_http":["162/3","167/0","167/2","628/3","724/0","864/2"],"_localhost":["162/3","167/2","202/1"],"_wss":["162/3"],"_com":["162/3","904/1"],"_getdefaultprovider":["162/0"],"_acquire":["163/0"],"_across":["163/1","278/0","608/0","815/6","817/2","892/0","899/0"],"_throttle":["163/1"],"_periods":["163/1"],"_load":["163/1","855/1","897/0"],"_realizing":["163/1"],"_monitoring":["163/2"],"_usage":["163/2","618/0","751/1","752/4","753/4","754/4","755/2","775/0","777/1","786/0"],"_metrics":["163/2","752/4","753/4","754/4","755/2"],"_tracking":["163/3","751/6"],"_specifying":["163/4","265/3","406/0","407/0","408/0","409/0","411/0","412/0","413/0","414/0","415/0","416/0","432/0","762/2"],"_official":["164/0","739/1","741/0","891/0"],"_projects":["164/0","751/1","751/3","854/0","893/1"],"_accept":["164/1","443/2","774/1"],"_networkish":["164/1","167/0","245/0"],"_definition":["164/1","387/2","829/0","836/1","868/1"],"_registry":["165/0","249/0"],"_intercept":["165/0"],"_dev":["165/0"],"_manually":["165/0","350/0","400/2","643/2","854/0"],"_json":["166/0","167/0","168/0","169/0","170/0","171/0","172/0","173/0","174/0","177/0","178/4","187/0","189/1","189/0","190/0","191/0","198/1","198/2","199/1","199/2","201/0","334/0","335/0","341/0","345/0","357/0","359/0","359/1","359/2","364/0","400/0","400/1","405/1","574/0","719/0","753/1","754/1","785/1","790/2","808/0","847/0","847/1","858/0","868/0","893/1","895/0","904/2","912/0"],"_rpc":["166/0","167/0","168/0","169/0","170/0","171/0","172/0","173/0","174/0","177/0","178/4","187/0","189/1","189/0","190/0","191/0","198/1","198/2","199/1","199/2","201/0","574/0","753/1","754/1","780/0","858/0","868/0"],"_major":["166/0","649/1","809/3","858/0","894/5","903/1"],"_implementations":["166/0","178/0","858/0","893/4","904/1"],"_geth":["166/1","178/1","178/5","178/6","187/0","628/2","858/1","868/0","893/4","904/1"],"_parity":["166/1","178/1","178/5","178/6","187/0","484/0","858/1","868/0","872/1","893/5","909/1"],"_jsonrpcprovider":["166/0","167/0","169/0","170/0","171/0","172/0","173/0","178/3","189/1","193/0","310/4"],"_connectioninfo":["167/0"],"_urlorconnectioninfo":["167/0","167/1","719/0"],"_querying":["167/2","859/0"],"_eth":["167/2","574/0"],"_chaindid":["167/2"],"_falling":["167/2"],"_back":["167/2"],"_networkid":["167/2"],"_info":["167/0","612/0","645/0","719/0","785/0"],"_implementation":["168/0","187/2","329/3","330/3"],"_specific":["168/0","171/1","178/0","212/0","244/0","268/0","350/1","434/1","559/0","628/3","683/1","762/1","805/0","809/3"],"_flags":["168/0","760/0","772/0","773/1","777/5","777/6","790/0","790/1","790/4"],"_settings":["168/0"],"_enable":["168/0"],"_unlock":["168/0","176/0","806/2"],"_accounts":["168/0","170/0","345/0","780/0","903/2","904/2","904/0"],"_expose":["168/0"],"_please":["168/1","327/1","571/1","800/18","808/0","809/2","809/4","814/0","868/1","872/2","892/1","894/3"],"_consult":["168/1","638/2"],"_documentation":["168/1","187/2","800/18","809/3","816/0","816/2","817/0","817/2","818/0","818/1","864/0","868/1","869/0","871/1","890/0","891/0"],"_local":["168/0","187/0","387/0","628/3","817/2"],"_jsonrpcsigner":["169/0","172/0","177/2","310/4","311/1"],"_addressorindex":["169/0","169/1"],"_getsigner":["169/0","310/4"],"_addresses":["170/0","301/0","433/0","435/0","435/1","590/1","598/0","602/1","868/1"],"_listaccounts":["170/0"],"_raw":["171/0","293/0","322/0","326/0","485/0","486/0","501/0","502/0"],"_messages":["171/0","310/0","310/2","331/0","568/1","885/1","885/2"],"_debugging":["171/1","178/2","211/2","415/1","611/0","624/2","644/0","752/0","754/1","754/4","766/0"],"_management":["171/1","178/2"],"_params":["171/0","198/1","199/1","615/0","616/0"],"_established":["173/0","224/0"],"_checks":["174/0","329/3","650/0","739/0"],"_getuncheckedsigner":["174/1"],"_details":["174/1","177/0","177/2","177/3","262/0","265/3","594/1","887/3"],"_unchecked":["174/0","175/0","177/0"],"_connectunchecked":["174/0"],"_jsonrpcuncheckedsigner":["174/0","177/0"],"_resolves":["175/0","217/0","218/0","219/0","279/1","294/0","313/0","322/0","324/0","325/0","330/3","341/0","654/0"],"_opaque":["175/0","177/1"],"_senduncheckedtransaction":["175/0"],"_locked":["176/0"],"_populating":["177/0"],"_before":["177/0","182/0","299/1","661/2","719/0","725/0","727/0","732/0","733/0","809/3","809/4","823/2","875/1"],"_returning":["177/0","341/0","628/3","719/0","792/0"],"_adjusted":["177/1"],"_discarded":["177/1"],"_remedy":["177/2","475/7","643/2"],"_immediately":["177/2","177/3","177/4","815/6"],"_queries":["177/2","751/6","797/0","884/1"],"_respond":["177/3"],"_instead":["177/3","190/1","211/2","262/0","311/1","335/2","450/1","478/3","615/1","631/2","634/2","668/1","674/1","763/1","800/4","851/2","901/0"],"_defer":["177/3"],"_releasing":["177/3"],"_responsible":["177/3","815/7"],"_uncheckedsigner":["177/4"],"_mock":["177/4","413/1"],"_quickly":["177/4","593/0"],"_vs":["178/1","476/0","484/0","486/1","718/4","796/1"],"_admin":["178/2","810/2","815/1"],"_deeper":["178/2"],"_exploration":["178/2"],"_swarm":["178/2"],"_whisper":["178/2"],"_including":["178/4","269/0","270/0","292/0","306/0","307/0","362/0","388/0","551/0","552/1","644/0","693/0","796/5","815/1","868/0","868/1","870/0","871/1","871/3","897/1"],"_trace":["178/5","754/4"],"_debug":["178/5","611/0","644/0"],"_internal":["178/5","530/0","532/0","813/1"],"_cache":["178/5"],"_etc":["178/5","362/1","366/0","389/2","476/0","628/2","667/1","815/1","815/8"],"_advanced":["179/0","398/3","476/4","751/6","754/1","754/4","759/2","852/1","890/0"],"_configured":["179/1","214/1","608/4","642/3"],"_priority":["179/1","179/2","180/3","184/0","184/2"],"_weight":["179/1","179/5","180/3","186/0"],"_dispatched":["179/2"],"_randomly":["179/2"],"_chosen":["179/2","184/2","476/0"],"_lower":["179/2","184/1","185/2","797/0","797/2","900/0","900/1","901/0","902/0"],"_selected":["179/2","772/1"],"_compared":["179/2","676/0"],"_others":["179/2","741/1","823/1"],"_accepted":["179/3","809/3"],"_rounded":["179/4","543/0"],"_give":["179/5"],"_influence":["179/5"],"_fallback":["179/0","180/0","181/0","183/0","184/0","185/0","186/0","756/1"],"_half":["180/1","182/1","691/1","817/2"],"_sum":["180/1","182/1","307/0"],"_weights":["180/1","182/1"],"_fallbackproviderconfig":["180/2","181/0","183/0","184/0","185/0","186/0"],"_defaults":["180/3","642/3","675/1"],"_configurations":["181/0"],"_configs":["181/0"],"_providerconfigs":["181/0"],"_config":["181/0","183/0","184/0","185/0","186/0","815/1","815/2","815/3","815/6","816/2","847/0","852/1"],"_upon":["182/0","399/3"],"_priorities":["184/1"],"_favoured":["184/1"],"_share":["184/2"],"_random":["184/2","333/0","503/0","805/3","823/0","823/2","823/3","893/5","899/0","899/2","900/0","901/0","902/0","909/1"],"_timeout":["185/0","230/0","629/0","725/0","727/0"],"_ms":["185/0","730/1"],"_affect":["185/1","822/1"],"_counted":["185/1"],"_traffic":["185/2","628/3","751/3"],"_stall":["185/0","224/0","228/1"],"_stalltimeout":["185/0"],"_trusted":["186/1"],"_ipcprovider":["187/0","188/0"],"_filename":["187/0","835/0"],"_system":["187/0","187/1"],"_complications":["187/1"],"_due":["187/1","224/0","435/1","548/1","688/0"],"_permissions":["187/1","667/1","751/1"],"_notes":["187/2","474/0"],"_websites":["187/2"],"_ipc":["187/0","188/0"],"_intended":["189/0","287/2","877/3"],"_classed":["189/0"],"_suffice":["189/1"],"_little":["189/1","254/1","255/1","256/2","259/1","299/2","307/1","475/1"],"_extra":["189/1","259/0"],"_effort":["189/1"],"_urljsonrpcprovider":["189/0","190/0","191/0"],"_geturl":["190/1","192/0","193/0"],"_getapikey":["190/1","191/0","192/0"],"_inheritedclass":["191/0"],"_examine":["192/0"],"_valid":["192/0","229/1","287/1","329/3","438/0","480/0","480/1","482/0","487/0","489/0","489/1","528/1","552/1","606/0","621/0","687/0","688/2","690/0","737/0","893/5"],"_modified":["192/0","684/0"],"_inheriting":["192/0","193/0"],"_inheritingclass":["192/0","193/0"],"_web3provider":["194/0","195/0","196/0"],"_meant":["194/0","593/0","771/0"],"_ease":["194/0"],"_moving":["194/0"],"_web3":["194/0","195/0","196/0","197/0","198/2","199/0","204/0","204/1","883/0","885/2","887/2","889/0","894/0"],"_based":["194/0","322/1","330/3","769/0","815/2","821/1"],"_wrapping":["194/0"],"_existing":["194/0","399/1","447/0","816/2"],"_web3httpprovider":["194/0"],"_web3ipcprovider":["194/0"],"_web3wsprovider":["194/0"],"_exposing":["194/0","476/4"],"_rest":["194/0"],"_wrap":["194/1"],"_wraps":["195/0"],"_external":["195/0","197/0","198/0","199/0","200/0","816/2"],"_externalprovider":["195/0","197/0","197/1","198/0","199/0","200/0"],"_web3compatibleprovider":["196/0"],"_mentioned":["197/0"],"_signatures":["197/1","714/0","715/0","716/0","906/0","909/1"],"_matching":["197/1","220/0","266/0","267/0","268/0","417/1","593/0"],"_follows":["198/0","199/0","231/1"],"_payload":["198/1","199/1","574/0"],"_minimum":["198/1","199/1","728/0"],"_differs":["198/2"],"_wrapped":["198/2","199/2","810/3"],"_semantics":["199/2"],"_async":["199/0","476/3"],"_sendasync":["199/0","200/0"],"_historically":["200/1","877/1"],"_synchronous":["200/1"],"_browsers":["200/1","894/2"],"_deprecated":["200/1"],"_quite":["200/1","607/0","628/2","753/0","797/0","805/1","815/2","821/0","873/0","894/0","895/0"],"_long":["200/1","323/2","323/3","495/0","495/1","500/1","501/0","585/1","668/2","669/0","696/0","725/0","806/0"],"_ago":["200/1","244/1"],"_websocket":["201/0","201/1","201/2","753/1","754/1"],"_persistent":["201/0"],"_multiplexing":["201/0"],"_pub":["201/0"],"_immediate":["201/0"],"_dispatching":["201/0"],"_newer":["201/1"],"_running":["201/1","224/1","759/0","778/0","779/0","893/5"],"_infrastructure":["201/1","755/2"],"_websockets":["201/1"],"_intensive":["201/1","805/3"],"_resources":["201/1","220/1","890/1","890/0"],"_maintain":["201/1","677/0","846/0","892/0"],"_client":["201/1","628/3","868/0"],"_charge":["201/2","871/1"],"_fees":["201/2","478/3"],"_endpoints":["201/2","752/1"],"_ws":["202/1"],"_coming":["204/0","816/1","868/0"],"_biggest":["204/0","476/2"],"_differences":["204/0","476/2","887/2"],"_encounter":["204/0","310/3","475/0","872/2","894/4"],"_strong":["204/1"],"_division":["204/1","633/1"],"_between":["204/1","334/1","341/1","349/0","475/8","476/2","480/1","515/0","674/1","718/5","807/1","839/5","877/1","887/2"],"_those":["204/1","350/1","800/1","810/3","872/1","894/4","896/0","909/1"],"_lumps":["204/1"],"_together":["204/1","593/0","738/0","798/3"],"_separation":["204/2"],"_concerns":["204/2"],"_stricted":["204/2"],"_subset":["204/2","860/5"],"_larger":["204/2","551/3"],"_variety":["204/2","583/0","631/1","870/0"],"_operate":["204/2","335/1"],"_able":["204/2","590/1","800/16","806/5","811/0"],"_rely":["204/2","583/0"],"_assumption":["204/2","328/1"],"_height":["205/0","206/0","222/0","244/1","252/0","269/0","289/0","305/0"],"_latest":["205/0","206/0","207/0","208/0","225/0","244/1","315/0","318/0"],"_getcode":["206/0"],"_bytes32":["207/0","668/0","670/0","671/0"],"_pos":["207/0"],"_addr":["207/0"],"_getstorageat":["207/0"],"_ever":["208/0","282/1","318/0","708/2","813/0","815/8"],"_next":["208/1","233/0","649/1","809/3","841/0","846/4","852/0","894/5","903/1"],"_gettransactioncount":["208/0","318/0"],"_hashes":["209/0","260/0","261/0","688/0","813/1","897/2","909/0"],"_objects":["210/0","231/1","231/2","359/1","476/3","530/2","651/2","868/0","874/0"],"_getblockwithtransactions":["210/0"],"_blockwithtransactions":["210/0","262/0"],"_naming":["211/0"],"_remember":["211/0","866/1"],"_refer":["211/1","800/18"],"_nearly":["211/2","808/0"],"_accepts":["211/2","359/2","435/2","634/2"],"_simplify":["211/2","400/2","608/0","799/0","879/1"],"_reading":["211/2"],"_simpler":["211/2"],"_offers":["211/3","751/2"],"_basic":["211/3","722/0","722/2","723/0","723/2","724/0","777/4","904/0"],"_help":["211/3","479/1","614/0","775/0","777/2","786/0","788/0","789/0","810/2","872/1","877/2","877/3","890/0"],"_names":["211/3","231/1","362/0","363/0","578/0","792/0","868/1","877/2","897/1"],"_ensresolver":["212/0"],"_inquire":["212/0"],"_about":["212/0","477/2","642/2","796/3","800/1","800/3","807/0","810/3","815/2","880/0"],"_resolver":["212/0","214/1","215/0","216/0","217/0","218/0","219/0"],"_getresolver":["212/0"],"_reverse":["213/0"],"_registrar":["213/0"],"_exist":["213/1","329/3"],"_lookupaddress":["213/0"],"_looks":["214/0"],"_owned":["214/1","331/0","345/0"],"_resolvename":["214/0","321/0","578/0"],"_multicoin":["217/0"],"_stored":["217/0","218/0","219/0","475/7","767/0"],"_cointype":["217/0","217/1"],"_getaddress":["217/0","313/0","436/0","437/1","784/0"],"_coint":["217/0"],"_cointtype":["217/0"],"_content":["218/0","628/3","719/0","844/0","844/1","846/0","846/1","846/3"],"_getcontenthash":["218/0"],"_entry":["219/0","265/1","265/2","271/0"],"_gettext":["219/0"],"_keep":["220/1","271/0","808/0","809/2","809/3","816/2","818/0","861/0","868/0","894/0"],"_mind":["220/1","271/0","684/1","800/13","808/0","809/1","809/2","861/0"],"_discard":["220/1"],"_old":["220/1","642/1"],"_too":["220/1","227/3","637/0","777/8"],"_broad":["220/1"],"_getlogs":["220/0","411/0"],"_getnetwork":["221/0"],"_recently":["222/0","227/3","244/1"],"_getblocknumber":["222/0"],"_guess":["223/0","643/0","806/1","806/3","823/1"],"_getgasprice":["223/0","317/0"],"_heen":["224/0"],"_ignoring":["224/0"],"_errors":["224/0","351/2","434/1","475/5","609/0","614/0","624/0","624/1","626/0","627/0","628/0","629/0","630/0","631/0","632/0","633/0","634/0","635/0","636/0","637/0","638/0","639/0","640/0","641/0","642/0","643/0","645/0","646/0","647/0","683/1","878/0"],"_active":["224/0"],"_yet":["224/0","227/3","642/0","777/4","892/2"],"_testing":["224/1","606/0","809/3","893/0","898/0","903/1"],"_attaching":["224/1"],"_scripts":["224/1","767/0","810/2","812/0","872/1","904/1"],"_smoothly":["224/1"],"_getters":["225/2"],"_submit":["226/0"],"_accurate":["226/1"],"_accounted":["226/1"],"_affected":["226/1"],"_relevant":["226/1","814/1"],"_unknown":["227/0","245/2","247/1","329/2","615/0","616/0","630/0","777/5"],"_search":["227/1","266/0","267/0","268/0","417/1","418/0","419/0","653/1"],"_restrictive":["227/2"],"_consider":["228/1","475/6"],"_waitfortransaction":["228/1","230/0"],"_below":["228/1","572/2","625/0","751/0","807/0","822/1"],"_transactionreceipt":["228/0","294/0","638/1"],"_submits":["229/0"],"_correct":["229/2","739/1","806/2","893/4"],"_sufficient":["229/2","476/4"],"_sendtransaction":["229/0","325/0","329/1"],"_transactionhash":["230/0","276/0","294/4","303/0"],"_confirms":["230/1","230/2","230/0","294/0","294/1"],"_blocking":["230/1"],"_blocks":["230/2","244/1","292/0","294/0","299/1","306/0","309/1","732/0","758/0","760/0","837/1"],"_txreceipt":["230/0"],"_eventemitter":["231/0"],"_obeserver":["231/0"],"_pattern":["231/0","434/1"],"_callbacks":["231/0"],"_occur":["231/0","593/0","627/1","628/1","632/1","633/1","638/1","733/0","751/4","877/4"],"_emitter":["231/1","231/0"],"_complex":["231/1","265/3","558/0","796/1"],"_normalized":["231/2","432/3","484/0","501/0","574/1","663/2","673/0"],"_internally":["231/2","234/1","435/2","476/4","477/0","478/2","478/3","479/1","756/0","756/1","800/10"],"_triggered":["232/0","233/0","271/0"],"_eventname":["232/0","233/0","234/0","235/0","235/1","236/0","236/1","237/0","237/1","238/0","239/0"],"_notify":["234/0"],"_generally":["234/1","254/1","255/1","256/2","259/1","299/2","307/1","329/0","330/0","417/0","443/2","476/4","634/1","642/2","661/1","688/1","810/3","855/0"],"_emit":["234/0"],"_topic":["240/0","241/0","365/0","378/1","409/0","411/0","411/1","418/0","422/0","425/0","798/2","798/4","798/5","798/6","798/7","800/4","800/6","800/7","800/15"],"_eventfilters":["240/2","241/3"],"_sets":["241/0","798/2","850/0"],"_omitted":["241/1","486/0","486/1","486/2","498/1","756/1","839/5","900/1"],"_isprovider":["243/0"],"_specifies":["244/0","367/0"],"_earliest":["244/1"],"_pending":["244/1"],"_prepared":["244/1"],"_mining":["244/1","259/0"],"_negative":["244/1","445/0","509/0","553/0"],"_hexidecimal":["244/1"],"_ensaddress":["245/2","249/0"],"_populated":["245/2"],"_chainid":["248/0","287/0","330/3","703/0","713/0","718/2","718/3"],"_previous":["251/0","679/2"],"_parenthash":["251/0"],"_timestamp":["253/0","291/0"],"_mine":["254/0"],"_property":["254/1","255/1","256/2","259/1","299/1","299/2","309/1","351/2","480/1","570/3","570/4","638/3","639/2","649/0","652/0","800/8","830/0","875/2","898/0"],"_interest":["254/1","255/1","256/2","259/1","307/1"],"_difficulty":["255/0","808/2"],"_met":["255/0"],"_maximum":["256/0","283/0","514/0","729/0"],"_permitted":["256/0","283/0"],"_voted":["256/1"],"_down":["256/1","475/1","628/3","808/2"],"_miners":["256/1"],"_adjust":["256/1"],"_bandwidth":["256/1"],"_gasused":["257/0","300/0"],"_coinbase":["258/0"],"_subsidy":["258/0"],"_reward":["258/0"],"_go":["258/0"],"_choose":["259/0"],"_extradata":["259/0"],"_substantially":["260/0","624/2"],"_condition":["265/1","638/2","798/2","798/3"],"_treated":["265/2","323/0","323/1","761/0"],"_starting":["266/0","846/4"],"_inclusive":["266/0","267/0","480/1","894/7"],"_criteria":["266/0","267/0","268/0"],"_fromblock":["266/0"],"_blockhash":["268/0","270/0","290/0","302/0"],"_blocknumber":["269/0","289/0","305/0"],"_org":["271/0"],"_orphaned":["271/0"],"_indicate":["271/0","643/3"],"_likely":["271/0","350/1","398/2","478/3","713/2","796/2","800/1","806/6","894/5","903/1"],"_again":["271/0","732/0","733/0","815/0"],"_near":["271/0"],"_transactionlogindex":["272/0"],"_transactionindex":["277/0","298/0"],"_logindex":["278/0"],"_describes":["279/0"],"_processed":["279/0","351/1","684/0","777/4","800/8","803/0"],"_fields":["279/1","324/1","325/0"],"_transactionrequest":["279/0","280/0","281/0","282/0","283/0","284/0","285/0","286/0","287/0","319/0","320/0","324/0","325/0","329/1","329/3","329/0","330/1","330/0"],"_unit":["284/0","516/0","519/0","521/0","710/0","803/0","911/0"],"_authorized":["287/0"],"_disable":["287/1"],"_dangerous":["287/2"],"_care":["287/2"],"_replayed":["287/2"],"_were":["287/2","426/0","877/2","893/4","893/5","893/6","904/1","909/1"],"_possibly":["287/2","335/1","752/0","823/1"],"_initial":["292/0","783/0"],"_confirmations":["292/0","306/0"],"_serialized":["293/0","359/1","601/0","705/1","716/1","717/0","718/0","718/1","910/0"],"_failed":["294/2","638/1","638/2"],"_status":["294/3","294/4","299/1","309/0","775/0"],"_rejected":["294/3","615/1","684/0"],"_original":["294/4","363/1","366/0","800/14","877/2"],"_created":["297/0","333/2","350/0","352/0","400/2","583/0","756/1","893/4","893/6","904/1","909/1"],"_getcontractaddress":["297/1","441/0"],"_utility":["297/1","323/5","330/2","649/0","757/0","766/0"],"_contractaddress":["297/0"],"_intermediate":["299/0","812/0"],"_byzantium":["299/1","308/0","309/1"],"_hard":["299/1","308/0","309/1","769/0"],"_fork":["299/1","308/0","309/1"],"_replaced":["299/1","839/1","839/3"],"_verify":["299/3","593/0","663/0","664/0","814/1"],"_transition":["299/3"],"_fraud":["299/3"],"_considering":["299/3"],"_logsbloom":["301/0"],"_ordered":["307/0"],"_cumulative":["307/0"],"_cumulativegasused":["307/0"],"_post":["308/0","309/1"],"_reverted":["309/0","709/2"],"_sign":["310/0","310/2","322/0","323/4","324/0","326/0","331/0","342/0","631/2","660/0","665/1","718/1","751/0","751/5","752/2","753/2","754/2","755/0","857/1","858/4","885/1","885/2"],"_largely":["310/1"],"_metamask":["310/2","857/0","868/0"],"_broadcasting":["310/2"],"_signers":["310/3","310/0","885/0"],"_knows":["310/4","806/2"],"_private":["310/4","331/0","332/0","333/0","347/0","435/1","439/1","439/0","583/0","590/1","591/0","598/0","602/0","602/1","634/2","656/0","657/0","661/1","665/1","666/1","796/1","815/1","823/0","823/1","857/1","858/4","868/0","904/0"],"_acquired":["310/4","751/4"],"_instantiated":["311/0","619/1","773/1","777/3"],"_concrete":["311/1"],"_voidsigner":["311/1","325/1","342/0","343/0","344/0"],"_implement":["312/0","313/2","322/1","324/2","325/1","579/1","788/0","789/0"],"_simply":["312/0","399/3","796/4","811/0"],"_around":["313/1","475/5","753/0","754/0","806/4","813/1","816/2"],"_asynchronous":["313/1","328/1","335/2","476/2"],"_issigner":["314/0"],"_getchainid":["316/0"],"_cost":["320/0","639/1","639/2","643/1","762/3","797/0","806/1"],"_ensname":["321/0"],"_message":["322/0","322/1","323/0","323/1","568/0","568/1","615/0","616/0","617/0","620/0","622/0","623/0","624/1","663/0","775/0","784/0","786/0","787/0","813/2"],"_signmessage":["322/0"],"_rawsignature":["322/0","326/0","501/0"],"_converted":["323/0","323/5","435/2","439/1","444/0","462/0","463/0","568/1","694/0","893/5"],"_utf8":["323/0","672/0","673/0","675/0","685/0","686/0","687/0","688/0","689/0","690/0","691/0","693/0","694/0","695/0"],"_binary":["323/1","349/0","350/1","398/0","398/2","475/4","479/1","482/0","530/2","790/1","860/3"],"_x1234":["323/2","531/0"],"_equivalent":["323/3","432/3","520/0","522/0","694/0","909/1"],"_x12":["323/3"],"_x34":["323/3"],"_arrayify":["323/5","490/0"],"_missing":["324/1","325/0","486/2","502/1","620/0","621/0","635/0","636/0","686/0","821/2","822/0","823/3","872/2"],"_reasons":["324/2","628/1","631/1","684/0","809/1","855/0","864/1"],"_clients":["324/2","796/3"],"_signtransaction":["324/0"],"_populates":["325/0"],"_offline":["325/1"],"_signs":["326/0"],"_typed":["326/0","523/0","525/0","570/0","572/0","573/0","574/0","575/0","576/0","577/0","578/0","664/0"],"_domain":["326/0","570/1","570/2","573/0","574/1","574/0","576/0","577/0","578/0","664/0","863/1"],"_signtypeddata":["326/0","327/2","574/0"],"_spcify":["327/2","571/2"],"_renamed":["327/2","420/2","571/2"],"_bit":["327/2","551/0","571/2","668/0","800/1","818/1","864/0"],"_immutable":["328/0","339/0","452/0","476/2","651/2","874/0"],"_deals":["328/1","642/3"],"_critical":["328/1","893/0"],"_potentially":["328/1"],"_valuable":["328/1"],"_crypto":["328/1"],"_keeping":["328/1","684/1","814/1","866/2"],"_throughout":["328/1","527/0","558/0","816/2","846/3"],"_cycle":["328/1","733/0"],"_helps":["328/1","398/1","877/7"],"_prevent":["328/1","667/1","713/1","893/3"],"_serious":["328/1"],"_extend":["328/2","844/0"],"_super":["328/2","777/4","810/0"],"_overridden":["329/0","330/0","703/1"],"_behaviour":["329/0","330/0","653/1","751/6","796/3"],"_copy":["329/1","330/1","504/0","578/0","651/0","655/0","855/0","871/0","871/1"],"_checktransaction":["329/0","330/1","330/3"],"_procedure":["330/1"],"_fill":["330/1","821/3"],"_promises":["330/2"],"_resolveproperties":["330/2","654/0"],"_inherits":["331/0","848/0"],"_externally":["331/0","345/0"],"_eoa":["331/0","346/0","347/0","348/0"],"_privatekey":["332/0","347/0","591/0","656/0","657/0"],"_cryptographically":["333/0"],"_entropy":["333/0","333/1","605/0"],"_thrown":["333/1","436/1","489/1","495/1","500/1","609/0","615/1","622/1","718/5","839/2","839/4"],"_createrandom":["333/0"],"_encrypted":["334/0","335/0","815/2","815/6","815/8"],"_decryption":["334/1","341/1","807/1"],"_indicating":["334/1","341/1","803/0"],"_towards":["334/1","341/1"],"_completion":["334/1","341/1","807/1"],"_fromencryptedjson":["334/0","335/2"],"_synchronously":["335/1"],"_lock":["335/1"],"_trivial":["335/1","810/0","863/0"],"_duration":["335/1"],"_fromencryptedjsonsync":["335/0"],"_phrase":["336/0","585/0","588/0","604/0","605/0","606/0","881/0"],"_wordlist":["336/3","336/0","587/0","588/0","605/0","606/0","734/0","735/0","736/0","737/0","738/0","739/1","739/0","740/0","742/0","743/0","744/0","745/0","746/0","747/0","748/0","749/0","750/0"],"_english":["336/3","741/1","743/0","868/0"],"_frommnemonic":["336/0","588/0"],"_desired":["339/0","713/3"],"_uncompressed":["340/0","439/1","658/0","665/0","666/1","868/1"],"_publickey":["340/0","592/0","658/0"],"_encrypt":["341/0"],"_carried":["342/1"],"_along":["342/2","399/1","478/1","714/1","760/0"],"_minimal":["345/0","363/1","363/0","365/0"],"_performed":["345/0","796/1"],"_encoding":["345/0","398/2","399/0","523/0","524/0","525/0","526/0","527/0","579/0","860/1"],"_externallyownedaccount":["345/0"],"_hd":["348/1","348/2","583/0","584/0","586/0","591/0","592/0","593/0","594/0","595/0","596/0","597/0","598/0","599/0","600/0","601/0","602/0","603/0","868/0","907/0"],"_encode":["348/2","349/0","353/0","398/1","399/3","410/0","411/0","412/0","413/0","461/0","524/0","526/0","528/0","573/0","663/2","669/0","688/1","716/1","860/3"],"_extended":["348/2","590/0","601/0","844/1","852/1"],"_abicoder":["349/0","350/0","351/0","352/0","353/0","354/0"],"_collection":["349/0","367/0","398/0","649/0","752/1","754/1","820/0","868/1","903/2"],"_coders":["349/0"],"_interoperate":["349/0","399/3"],"_never":["349/1","350/0","616/0","617/0","775/0","786/0","787/0","796/2"],"_greatly":["349/1"],"_coder":["349/0","351/1","351/0","352/0","353/0","354/0"],"_coercion":["350/0"],"_loaded":["350/0"],"_universally":["350/0"],"_coerced":["350/1"],"_decoded":["350/1","414/0","415/0","416/0","426/0","523/0","525/0","670/0"],"_coercefunc":["351/0"],"_describing":["351/1","359/1"],"_throws":["351/2","619/0","620/0","623/0","650/0","675/1"],"_contain":["351/2","536/1","669/0","823/0","846/2","848/1","851/1"],"_coerce":["351/0"],"_func":["351/0","719/0","720/0"],"_imported":["352/0"],"_defaultabicoder":["352/0"],"_according":["353/0","354/0","580/0","581/0","582/0","604/0","605/0","737/0","834/0"],"_paramtype":["353/0","354/0","361/0","370/0","383/0","386/0","387/0","388/0","389/0","390/0","391/0","392/0","393/0","395/0","396/0","397/0"],"_expand":["355/0"],"_section":["355/0","474/0","804/1","816/1","816/2","822/1","826/0","826/3","856/0","869/0","887/2","903/0"],"_b":["355/0","356/0","357/0","359/0","360/0","476/0","477/0","632/0","643/0","644/0","685/0","763/0","831/0","832/0","907/0"],"_j":["357/0","359/0"],"_fragments":["358/0","367/0","398/0","398/1","401/0","402/0","403/0","404/0","406/0","407/0","408/0","409/0","411/0","412/0","413/0","414/0","415/0","416/0","432/0","825/0"],"_fragment":["359/1","361/0","362/0","363/1","363/0","364/0","365/0","366/0","367/0","368/0","369/0","370/0","371/0","372/0","373/0","374/0","375/0","376/0","377/0","378/0","379/0","380/0","381/0","382/0","383/0","384/0","385/0","401/0","402/0","403/0","404/0","406/0","407/0","408/0","409/0","411/0","412/0","413/0","414/0","415/0","416/0","422/0","427/0","432/0","432/6","825/1","825/3","877/7","880/0"],"_deserialized":["359/2"],"_article":["360/1"],"_humanb":["360/0"],"_modifiers":["362/0","366/0"],"_white":["362/1"],"_space":["362/1","558/0"],"_aid":["362/1"],"_readability":["362/1"],"_fragmenttypes":["362/0","363/0","364/0","365/0"],"_except":["363/0","482/0","486/0","901/0"],"_unnecessary":["363/0","492/0","550/1"],"_whitespace":["363/0","585/1","737/0","738/0","758/1","843/0"],"_storing":["363/1"],"_fully":["363/1","417/1","435/1","627/1","678/1","709/2","868/1"],"_reconstruct":["363/1"],"_thinsp":["363/1"],"_stringify":["364/0"],"_sighash":["365/0","366/0","395/0","408/0","419/0","427/0","429/0","432/4","432/5"],"_insufficient":["366/0","638/0","639/0","642/1","709/2"],"_discards":["366/0","808/0"],"_anonymous":["366/0","378/0","378/1","800/2","800/3","800/4","800/5","800/7"],"_statemutability":["366/0","375/0","382/0"],"_constructorfragment":["368/1","376/0","377/0","404/0"],"_inputs":["370/0"],"_param":["370/0","383/0","386/0","387/0","388/0","389/0","390/0","391/0","392/0","393/0","395/0","396/0","397/0"],"_objectorstring":["371/0","376/0","379/0","384/0","396/0"],"_tra":["372/0","376/0","377/0","379/0","380/0","384/0","385/0","394/0","395/0","396/0","397/0"],"_lal":["372/0","377/0","380/0","385/0"],"_al":["372/0","377/0","380/0","385/0"],"_isfragment":["372/0"],"_receive":["374/0","435/2","823/3"],"_payable":["374/0","375/2","382/2"],"_mutability":["375/0","381/2","382/0"],"_nonpayable":["375/2","382/2"],"_la":["376/0","379/0","384/0","394/0","395/0","396/0","397/0"],"_isconstructorfragment":["377/0"],"_inject":["378/1","818/1"],"_topic0":["378/1"],"_eventfragment":["379/0","380/0","390/1","402/0","407/0","422/0"],"_iseventfragment":["380/0"],"_pure":["381/2","382/2"],"_view":["381/2","382/2"],"_outputs":["383/0","877/7","893/5"],"_functionfragment":["384/0","385/0","403/0","406/0","427/0"],"_isfunctionfragment":["385/0"],"_unnamed":["387/1","388/1"],"_tuple":["388/0","389/3","393/0","393/1"],"_symbols":["388/0"],"_primitive":["389/1"],"_uint256":["389/2","424/2","430/2","432/3","514/0","800/12"],"_arrays":["389/3","392/0","392/1","527/0"],"_basetype":["389/0"],"_marked":["390/0"],"_applies":["390/1"],"_children":["391/0","593/0","602/1"],"_arraychildren":["391/0"],"_arraylength":["392/0"],"_components":["393/0","398/0","417/1","529/1","551/0","600/1","796/5","877/7"],"_outputtype":["395/0"],"_isparamtype":["397/0"],"_organize":["398/1"],"_component":["398/1","528/1","532/0","599/1"],"_decoding":["398/2","399/0","860/1"],"_convenient":["398/2"],"_framework":["398/3","821/0","877/7"],"_tool":["398/3","752/0","816/0","817/2"],"_find":["398/3","572/2"],"_abstracts":["399/0"],"_standards":["399/1"],"_organically":["399/1","809/0"],"_evolved":["399/1"],"_side":["399/1","478/1"],"_languages":["399/1","400/1","653/1","741/0","840/0","893/4","895/0"],"_adopted":["399/1"],"_remain":["399/1","893/0"],"_understand":["399/2","796/3","805/0","805/2"],"_agreed":["399/3"],"_expect":["399/3"],"_typing":["400/2","434/1"],"_referenced":["400/2"],"_getfunction":["406/0"],"_getevent":["407/0"],"_selector":["408/0","429/0","432/5","893/6","906/0"],"_getsighash":["408/0"],"_geteventtopic":["409/0"],"_encoded":["410/0","411/0","412/0","413/0","524/0","526/0","528/0","529/0","570/0","580/0","581/0","582/0","632/1","670/0","705/1"],"_concatenated":["410/0","485/0"],"_pass":["410/0","687/2","688/2","691/1","759/0","860/4"],"_encodedeploy":["410/0"],"_nibble":["411/1","436/1","485/0"],"_encodefiltertopics":["411/0"],"_encodefunctiondata":["412/0"],"_normally":["413/0"],"_authors":["413/1","871/4"],"_encodefunctionresult":["413/0"],"_decodeeventlog":["414/0"],"_inspecting":["415/1"],"_decodefunctiondata":["415/0"],"_decodefunctionresult":["416/0"],"_parselog":["418/0"],"_logdescription":["418/0","421/0","422/0","423/0","424/0","425/0"],"_parsetransaction":["419/0","717/0"],"_transactiondescription":["419/0","426/0","427/0","428/0","429/0","430/0","431/0"],"_positional":["420/0","420/1"],"_argument":["420/0","436/1","617/0","620/0","634/0","634/1","635/0","637/0","650/0","772/1","773/1","866/0"],"_additionally":["420/1","716/1","807/3"],"_reserved":["420/2","691/0","800/4"],"_collision":["420/3"],"_matched":["429/0"],"_ambiguous":["432/1","663/2","696/0"],"_uint":["432/3","432/4","800/10"],"_topichash":["432/4"],"_referred":["432/5"],"_xa9059cbb":["432/6"],"_checksumming":["433/0"],"_addresszero":["433/1","506/0"],"_nibbles":["434/0","482/0","483/0","501/0","506/0","507/0","658/1","659/1","758/0"],"_mixed":["434/0","434/1","436/1"],"_checksum":["434/1","434/2","435/0","436/0","436/1","606/0"],"_uppercase":["434/1"],"_lowercase":["434/1"],"_letters":["434/1","846/2","846/5"],"_risk":["434/1"],"_introduced":["434/1"],"_cut":["434/1"],"_paste":["434/1"],"_icap":["435/0","435/2","435/3","437/0"],"_early":["435/0","751/3","841/1"],"_introduce":["435/0"],"_banking":["435/0"],"_industry":["435/0"],"_iban":["435/0","435/1"],"_country":["435/0"],"_xe":["435/0"],"_encodes":["435/1","573/0"],"_fit":["435/1","668/1"],"_adapted":["435/1"],"_large":["435/1","475/7","608/3","810/1","868/1","893/4","903/2"],"_preferred":["435/1","797/2","874/0"],"_select":["435/1"],"_compatibly":["435/1"],"_general":["435/2","807/2","809/4","816/2","820/0","867/1"],"_longer":["435/2","495/1","500/1","649/1","816/2","879/1","903/2"],"_widely":["435/2"],"_anymore":["435/2"],"_geticapaddress":["435/3","437/0"],"_c":["435/0","633/0","637/0","638/0","639/0","641/0","642/0","643/0","678/0","680/0","686/0","690/0","772/0","833/0","858/0","864/0"],"_hexstring":["436/1","445/0","482/0","483/0","491/0","492/0","499/0","546/0"],"_supports":["437/1","476/3","789/0","826/2","830/1","831/1","832/1","834/1","836/2"],"_restrictions":["437/1"],"_icapaddress":["437/0"],"_isaddress":["438/0"],"_publicorprivatekey":["439/0"],"_compressed":["439/1","659/0","666/1","666/0","868/1"],"_derivation":["439/1","769/0","805/0","815/2"],"_computeaddress":["439/0"],"_ecdsa":["440/0"],"_digest":["440/0","561/0","562/0","563/0","564/0","568/0","660/0","665/1","665/0"],"_recoveraddress":["440/0"],"_create2":["442/0"],"_getcreate2address":["442/0"],"_salt":["442/0"],"_initcodehash":["442/0"],"_safely":["443/1","444/0","475/8","860/5"],"_mathematical":["443/1","461/0","475/8"],"_magnitude":["443/1"],"_take":["444/0","805/1","806/2","806/5","806/0"],"_ambiguously":["444/0"],"_numberish":["444/0","451/0","492/0","699/0","700/0","702/0"],"_bignumberish":["444/0","515/3","699/0","700/0","702/0"],"_byteslike":["446/0","481/0","493/0","496/0","528/1","701/0","711/0"],"_uint8array":["446/0","490/0","493/0","494/0","495/0","503/0","523/0","525/0","672/0","900/0","901/0"],"_bigint":["449/0"],"_environments":["449/0","810/1","894/6"],"_int":["449/0"],"_abignumberish":["451/0","492/0"],"_othervalue":["453/0","454/0","455/0","464/0","465/0","466/0","467/0","468/0","539/0","540/0","541/0","542/0"],"_times":["455/0","541/0","731/0","793/1"],"_mul":["455/0","541/0"],"_div":["456/0","457/0","542/0"],"_divisor":["456/0","457/0","532/0"],"_remainder":["457/0"],"_mod":["457/0","551/2"],"_power":["458/0"],"_exponent":["458/0"],"_pow":["458/0"],"_absolute":["459/0","762/0"],"_abs":["459/0"],"_beyond":["460/0"],"_bitcount":["460/0"],"_least":["460/0","809/1","900/0","902/0"],"_significant":["460/0"],"_zero":["460/0","469/0","495/0","500/0","506/0","507/0","510/0","544/0","608/1","633/1","639/2","784/1","784/0"],"_mask":["460/0"],"_two":["461/0","477/1","512/0","679/2","716/1","800/2"],"_complement":["461/0","462/0","463/0"],"_elegant":["461/0"],"_width":["461/0","532/0","551/0","551/1","551/2","551/3","552/1","554/0"],"_while":["461/0","476/4","479/0","860/5","877/5","894/0"],"_efficiently":["461/0"],"_preserving":["461/0"],"_twos":["462/0","463/0"],"_bitwidth":["462/0","463/0"],"_fromtwos":["462/0"],"_totwos":["463/0"],"_eq":["464/0"],"_lt":["465/0"],"_le":["466/0"],"_lte":["466/0"],"_gt":["467/0"],"_ge":["468/0"],"_gte":["468/0"],"_iszero":["469/0","544/0"],"_greater":["470/1","687/1"],"_max":["470/1","514/0"],"_integer":["470/1","475/5"],"_min":["470/1","809/3"],"_tonumber":["470/0"],"_tostring":["471/0","547/0"],"_prefixed":["472/0","568/1","668/0"],"_tohexstring":["472/0","546/0"],"_isbignumber":["473/0"],"_couple":["474/0"],"_questions":["474/0"],"_come":["474/0"],"_frequently":["474/0","478/0","751/4","873/0"],"_problem":["475/0","628/2","796/3","809/4"],"_dealing":["475/0","476/2","667/1"],"_concept":["475/0"],"_currencies":["475/1"],"_broken":["475/1","476/6","806/6"],"_granularity":["475/1"],"_cents":["475/2"],"_dollar":["475/2"],"_ieee":["475/4"],"_double":["475/4"],"_precision":["475/4"],"_floating":["475/4","548/0"],"_holes":["475/5","821/3"],"_problematic":["475/5","478/1"],"_because":["475/5","477/0","684/0","800/13"],"_rounding":["475/5","548/1"],"_demonstrate":["475/6"],"_issue":["475/6","628/2","628/3","777/5","809/4","884/1","887/3","893/3","894/3","899/1"],"_just":["475/0","608/0","688/2","813/1"],"_manipulated":["475/7","823/1"],"_parseether":["475/8","522/0"],"_etherstring":["475/8"],"_formatether":["475/8","520/0"],"_representations":["475/8","479/1","688/0"],"_displayed":["475/8"],"_entered":["475/8"],"_handled":["475/8"],"_everyone":["476/0"],"_favourite":["476/0"],"_someone":["476/0","476/6"],"_identity":["476/0","560/0"],"_editor":["476/0"],"_vi":["476/0"],"_emacs":["476/0"],"_npm":["476/1","608/3","810/3","813/1","815/1","815/8"],"_nature":["476/2"],"_capturing":["476/3"],"_immutability":["476/3"],"_protects":["476/3"],"_us":["476/3","478/0","894/4"],"_mistakes":["476/3"],"_myriad":["476/3"],"_second":["476/4","756/1"],"_rare":["476/4","688/1","713/3","877/2"],"_easier":["476/5","814/1","846/0","860/1","898/0"],"_swap":["476/5"],"_impacting":["476/5"],"_consumers":["476/5"],"_bn":["476/6","476/0","477/0"],"_greatest":["476/6"],"_denominator":["476/6"],"_replacing":["476/6","642/0"],"_anyone":["476/6"],"_bigdecimal":["476/0"],"_elliptic":["477/0","714/0","715/0","716/0"],"_regardless":["477/1","643/3"],"_we":["477/1","637/0","668/1","668/2","809/4","866/1","866/2","893/3","894/0","894/4","899/0"],"_leverage":["477/1"],"_adding":["477/1","809/3","863/0","866/2"],"_mean":["477/1"],"_offering":["477/1"],"_saved":["477/2"],"_kb":["477/2","868/1"],"_size":["477/2","741/1","809/3"],"_separate":["477/2","903/2"],"_purposes":["477/2","551/5"],"_comes":["478/0","860/6"],"_desire":["478/0"],"_global":["478/0","610/0","755/2","878/1"],"_live":["478/1"],"_fact":["478/2"],"_plus":["478/3"],"_break":["478/3","816/2"],"_tries":["478/3"],"_logic":["478/3","515/0","762/2"],"_prototype":["478/4"],"_tomycustombignumber":["478/4"],"_globally":["478/4"],"_manipulation":["479/0"],"_normalize":["479/1","622/0"],"_typedarray":["480/0"],"_prefix":["483/0","527/0","685/0","690/0","690/1","693/0","694/0","695/0","758/0","816/2"],"_followed":["483/0","551/1"],"_insensitive":["483/1"],"_hexadecimal":["483/1"],"_co":["484/0"],"_ordinate":["484/0"],"_compact":["484/0","759/2","867/0"],"_recoveryparam":["484/0","486/2","663/2"],"_signaturelike":["486/0"],"_redundant":["486/0","755/2"],"_likewise":["486/2"],"_isbytes":["487/0"],"_isbyteslike":["488/0"],"_invalidargument":["489/1","495/1","500/1"],"_ishexstring":["489/0"],"_converts":["490/0","491/0","492/0","759/0"],"_datahexstringorarrayish":["490/0"],"_arrayish":["490/0","491/0"],"_uint8":["490/0","493/0","494/0","495/0","503/0","672/0","900/0"],"_hexstringorarrayish":["491/0"],"_hexlify":["491/0"],"_leading":["492/0","494/0","499/0"],"_zeros":["492/0","494/0","499/0","800/10"],"_hexvalue":["492/0"],"_concatenates":["493/0","496/0"],"_arrayofbyteslike":["493/0","496/0"],"_concat":["493/0","496/0"],"_abtyeslike":["494/0"],"_strip":["494/0","499/0"],"_stripzeros":["494/0"],"_abyteslike":["494/0","495/0","495/1","497/0","498/0","498/1","499/0","500/0","500/1","524/0","526/0","529/0","535/0","561/0","562/0","563/0","564/0","589/0","670/0","675/0","717/0"],"_prepended":["495/0"],"_already":["495/1","500/1","641/0","642/0","684/0","684/1","692/0","766/1","796/3","851/2"],"_pad":["495/0","500/0"],"_zeropad":["495/0"],"_hexconcat":["496/0"],"_hexdatalength":["497/0"],"_slice":["498/0","776/0"],"_endoffset":["498/0","498/1"],"_hexdataslice":["498/0"],"_hexstripzeros":["499/0"],"_hexzeropad":["500/0"],"_asignaturelike":["501/0","502/0"],"_concatenating":["501/0"],"_join":["501/0","738/0"],"_joinsignature":["501/0"],"_expanded":["502/0","804/1","867/1"],"_split":["502/0","674/1","737/0"],"_splitsignature":["502/0"],"_asignaturelikeorbyteslike":["502/0"],"_randombytes":["503/0","900/0","901/0"],"_shuffled":["504/0"],"_fisher":["504/0"],"_yates":["504/0"],"_shuffle":["504/0"],"_contants":["505/0"],"_commonly":["505/0","676/0"],"_hashzero":["507/0"],"_xi":["508/0"],"_ethersymbol":["508/0"],"_negativeone":["509/0"],"_weiperether":["513/0"],"_maxuint256":["514/0"],"_friendly":["515/0"],"_usually":["515/0","550/1","762/0","776/0","805/3"],"_machine":["515/0"],"_maths":["515/0"],"_prices":["515/1"],"_gwei":["515/1","642/2"],"_display":["515/0"],"_bitcoin":["516/3","516/4","583/0","815/5"],"_satoshi":["516/3","516/4"],"_grouped":["518/0"],"_digits":["518/0","519/0","521/0"],"_separated":["518/0","585/1"],"_commify":["518/0"],"_textdata":["523/0","525/0"],"_base58":["523/0","524/0"],"_uin8":["523/0","525/0"],"_uin8array":["523/0","525/0"],"_base64":["525/0","526/0"],"_recursive":["527/0","530/0","651/0","899/3"],"_nested":["527/0"],"_structures":["527/0","530/0","570/1"],"_structured":["528/0","529/0","834/0"],"_rlp":["528/0","529/0","632/1","705/1"],"_r":["528/0","529/0","615/0","616/0","628/0","630/0","631/0","632/0","633/0","634/0","635/0","637/0","640/0","641/0","642/0","643/0","646/0","647/0","685/0","687/0","688/0","689/0","691/0","753/0","814/0","829/0","830/0","831/0","832/0","834/0","858/0","899/0"],"_l":["528/0","529/0","627/0","633/0","634/0","638/0","642/0","643/0","688/0","760/0","763/0","772/0","826/0","827/0","828/0"],"_dataobject":["528/0","529/0"],"_recursively":["530/3","578/0","653/0","835/0"],"_nesting":["530/3"],"_xdead":["531/0"],"_xbeef":["531/0"],"_fixednumber":["532/0","533/0","533/1","534/0","535/0","536/0","537/0","538/0","539/0","540/0","541/0","542/0","543/0","544/0","545/0","546/0","547/0","548/0","549/0","550/1"],"_fractional":["532/0"],"_frombytes":["535/0"],"_permits":["536/1","870/0"],"_fromstring":["536/0"],"_fromvalue":["537/0"],"_fixedformat":["538/0","550/0","552/0","552/1","553/0","554/0","555/0","556/0"],"_fixedvalue":["539/0","540/0","541/0","542/0","543/0","545/0"],"_addunsafe":["539/0"],"_subunsafe":["540/0"],"_mulunsafe":["541/0"],"_divunsafe":["542/0"],"_round":["543/0"],"_toformat":["545/0"],"_approximate":["548/1"],"_float":["548/0"],"_tounsafefloat":["548/0"],"_isfixednumber":["549/0"],"_composed":["551/0","678/0","678/1","680/0"],"_three":["551/0"],"_ness":["551/0","553/0"],"_begins":["551/1","658/1","659/1","833/2"],"_ufixed":["551/1","551/5"],"_congruent":["551/2"],"_fixed128x18":["551/5","552/0"],"_wide":["551/5","583/0","870/0"],"_fixed32x0":["551/5"],"_int32":["551/5"],"_ufixed32x0":["551/5"],"_uint32":["551/5"],"_shorthand":["551/5","557/0"],"_ufixed128x18":["551/5"],"_points":["555/0","673/0","716/1","809/2","894/4"],"_recreate":["556/0"],"_fixed128x80":["557/0"],"_hashing":["558/0","579/0","893/6"],"_algorithms":["558/0","579/0"],"_usages":["558/0"],"_facilitate":["558/0"],"_cryptographic":["559/0"],"_family":["559/0"],"_computes":["560/0","568/0","661/2","666/0","718/0","805/3"],"_keccak256":["560/0","561/0","581/0","705/1","800/6","800/12","889/0"],"_ripemd":["562/0"],"_ripemd160":["562/0"],"_sha2":["563/0","564/0","566/0","567/0","582/0"],"_sha256":["563/0","566/0","582/0"],"_sha512":["564/0","567/0"],"_hmac":["565/0"],"_algorithm":["565/0","566/0","567/0","579/1","805/3","806/0","806/5","806/7","808/1","908/0"],"_computehmac":["565/0"],"_supportedalgorithm":["566/0","567/0"],"_personal":["568/0","568/1"],"_x19ethereum":["568/1"],"_hashmessage":["568/0"],"_namehash":["569/0","908/0"],"_typeddataencoder":["570/0","571/2","572/0","573/0","574/0","575/0","576/0","577/0","578/0"],"_members":["570/1"],"_mapping":["570/3"],"_descriptions":["570/3"],"_eip712domain":["570/4"],"_unless":["570/4","703/1","796/2"],"_encoder":["570/0","572/0","573/0","574/0","575/0","576/0","577/0","578/0"],"_exported":["571/2","571/0","893/1"],"_hashed":["573/0","577/0","676/0","798/1","800/12","800/13"],"_getpayload":["574/0"],"_constructs":["575/0"],"_directed":["575/0"],"_acyclic":["575/0"],"_graph":["575/0"],"_primarytype":["575/0"],"_payloads":["575/0"],"_primary":["575/0"],"_getprimarytype":["575/0"],"_hashdomain":["577/0"],"_leaf":["578/0"],"_replacedwith":["578/0"],"_resolvenames":["578/0"],"_packencoded":["579/0"],"_tightly":["579/0","579/1"],"_packed":["579/0","580/0","581/0","582/0","909/0"],"_packing":["579/1"],"_respective":["580/0","581/0","582/0"],"_pack":["580/0"],"_soliditypack":["580/0"],"_soliditykeccak256":["581/0"],"_soliditysha256":["582/0"],"_hierarchal":["583/0","583/2","907/0"],"_desterministic":["583/0"],"_lends":["583/0"],"_blockchains":["583/0","667/1","804/0"],"_secp256k1":["583/0"],"_detailed":["583/1","800/18"],"_technical":["583/1"],"_understanding":["583/1"],"_bip":["583/2","583/3","604/0","605/0","868/0","907/0"],"_deterministic":["583/2","899/0","907/0"],"_derive":["583/2","598/0","603/0"],"_seed":["583/2","589/0","604/0","899/2","899/3","900/0","901/0","902/0"],"_sequences":["583/2","683/0","688/0","688/1","693/0","694/0","695/0"],"_words":["583/2","585/1","668/0","738/0","739/0"],"_adapt":["583/3"],"_defaultpath":["584/0"],"_locale":["585/1","587/0","734/0","737/0","738/0","881/0"],"_hdnode":["588/0","589/0","590/0","590/1","591/0","592/0","593/0","594/0","595/0","596/0","597/0","598/0","599/0","600/0","601/0","602/0","603/0"],"_fromseed":["589/0"],"_extendedkey":["590/0","590/1","601/0"],"_neutered":["590/1"],"_fromextendedkey":["590/0","601/1"],"_compresses":["592/0"],"_fingerprint":["593/0","594/0","594/1","628/3"],"_collisions":["593/0"],"_software":["593/0","871/1","871/2","871/3","871/4"],"_parentfingerprint":["594/0"],"_ec":["598/0"],"_multiply":["598/0"],"_ability":["598/0","864/2"],"_hardened":["598/0","602/1"],"_chaincode":["598/0"],"_last":["599/1","839/1"],"_depth":["600/0"],"_serialization":["601/1","718/2"],"_serializing":["601/1"],"_deserializing":["601/1"],"_preserved":["602/0"],"_leak":["602/1","796/1"],"_derived":["602/1"],"_neuter":["602/0"],"_deriving":["603/0"],"_derivepath":["603/0"],"_mnemonictoseed":["604/0"],"_mnemonictoentropy":["605/0"],"_isvalidmnemonic":["606/0"],"_extensively":["607/0"],"_few":["608/0","754/0","777/8","806/5","809/2","890/1"],"_logging":["608/0","625/0"],"_standardize":["608/0"],"_facilities":["608/0"],"_logger":["608/1","609/0","610/0","611/0","612/0","613/0","615/0","616/0","617/0","619/0","620/0","621/0","622/0","623/0","624/0","625/0","627/0","628/0","629/0","630/0","631/0","632/0","633/0","634/0","635/0","636/0","637/0","638/0","639/0","640/0","641/0","642/0","643/0","644/0","645/0","646/0","647/0","648/0","878/0","878/1"],"_dependencies":["608/1","809/3","813/1","863/1","863/0","868/1","870/0"],"_light":["608/1"],"_censorship":["608/2","614/0","624/0"],"_relies":["608/2"],"_bundled":["608/3"],"_bundling":["608/4"],"_properly":["608/4","667/1","899/3"],"_singleton":["610/0"],"_globallogger":["610/0"],"_warnings":["613/0","645/0","646/0","761/1","761/0","796/5"],"_warn":["613/0"],"_honor":["614/0"],"_detecting":["614/0"],"_makeerror":["615/0"],"_u":["615/0","616/0","629/0","630/0","631/0","632/0","633/0","634/0","635/0","637/0","639/0","642/0","643/0","644/0","683/0","686/0","687/0","689/0","690/0","691/0","692/0","753/0","760/0","830/0"],"_k":["615/0","616/0","630/0","640/0","680/0","681/0","760/0"],"_w":["615/0","616/0","630/0","636/0","640/0","646/0"],"_throwerror":["616/0","787/0"],"_throwargumenterror":["617/0"],"_actions":["618/0"],"_validation":["618/0","640/0"],"_kind":["619/0","621/0","871/3"],"_unsupported":["619/0","622/1","631/0","796/5"],"_checknew":["619/0","621/0"],"_ensuring":["619/1"],"_checkabstract":["619/0"],"_expectedcount":["620/0"],"_unexpected":["620/0","637/0","690/0","809/3"],"_checkargumentcount":["620/0"],"_callers":["621/1"],"_correctly":["622/0","674/0","739/0","823/3"],"_functioning":["622/0"],"_checknormalize":["622/0"],"_fault":["623/0","633/0"],"_uint53":["623/0"],"_checksafeuint53":["623/0"],"_preventing":["624/0","628/3"],"_uncensored":["624/0"],"_prevents":["624/1"],"_leaking":["624/1"],"_masking":["624/1"],"_making":["624/2","756/0","771/0","811/0","818/1"],"_difficult":["624/2","769/0","899/1"],"_setcensorship":["624/0"],"_censor":["624/0"],"_permanent":["624/0"],"_suppress":["625/0"],"_particular":["625/0","871/3"],"_setloglevel":["625/0"],"_loglevel":["625/0"],"_codes":["626/0","628/3"],"_implemented":["627/0","627/1"],"_superclass":["627/1"],"_communicating":["628/0"],"_cors":["628/2"],"_hardest":["628/2"],"_diagnose":["628/2"],"_fix":["628/2","893/3"],"_beneficial":["628/2"],"_familiarize":["628/2"],"_yourself":["628/2","855/0"],"_configure":["628/2"],"_conifguration":["628/2"],"_files":["628/2","741/1","809/3","812/0","813/1","814/0","835/1","839/0","864/0","868/1","871/1","893/1","895/0"],"_dashboards":["628/2"],"_specifing":["628/2"],"_allowed":["628/2","727/0","772/1","777/6"],"_origins":["628/2"],"_ssl":["628/3"],"_trying":["628/3","813/0"],"_via":["628/3"],"_serving":["628/3"],"_https":["628/3","904/1"],"_website":["628/3"],"_firewall":["628/3"],"_reaching":["628/3"],"_ddos":["628/3"],"_mitigation":["628/3"],"_proxy":["628/3","894/5"],"_operates":["628/3"],"_behind":["628/3","790/4","810/3","894/6"],"_agents":["628/3"],"_detected":["628/3"],"_bot":["628/3"],"_happen":["631/1"],"_cause":["632/0","638/2","638/3","777/5","796/1","796/5"],"_buffer":["632/0"],"_erroneously":["632/1"],"_malformed":["632/1"],"_f":["632/0","633/0","639/0","645/0","648/0","678/0","679/0","680/0","681/0","683/0","685/0","687/0","692/0","753/0","760/0","834/0"],"_overrun":["632/0","689/0"],"_done":["633/0","817/2","880/0"],"_overflow":["633/1"],"_arithmetic":["633/1"],"_underflow":["633/1"],"_sensitive":["634/2"],"_redacted":["634/2"],"_g":["634/0","635/0","636/0","637/0","643/0","644/0","646/0","686/0","687/0","688/0","691/0","760/0","830/0","899/0"],"_x":["637/0","638/0","641/0","685/0","690/0"],"_getter":["638/0"],"_resulted":["638/0"],"_revert":["638/0","754/4"],"_estimation":["638/1","876/0"],"_waiting":["638/1","807/0"],"_statement":["638/2","839/1"],"_attempting":["639/0","643/3","732/0","733/0"],"_costs":["639/0"],"_intrinsic":["639/1","639/2"],"_expired":["641/0"],"_bribe":["642/1"],"_prefer":["642/1"],"_replacement":["642/2","642/0","695/0"],"_protocol":["642/3"],"_unmined":["642/3"],"_propagated":["642/3"],"_practice":["642/3","661/2","796/4","807/0","855/0"],"_enabled":["642/3","761/1","910/0"],"_underpriced":["642/0"],"_unable":["643/1"],"_unwilling":["643/1"],"_predict":["643/1"],"_situation":["643/2"],"_unpredictable":["643/0"],"_levels":["644/0","645/0","646/0","647/0","648/0"],"_informational":["645/0"],"_handling":["649/0","667/1","683/1","683/0","692/0","796/0","879/1"],"_platform":["649/0","866/2"],"_es3":["649/1","894/1"],"_built":["649/1","812/0","819/0"],"_es2015":["649/1","894/5"],"_checkproperties":["650/0"],"_anobject":["651/0","652/0","654/0","655/0","655/1","662/0"],"_frozen":["651/1"],"_copied":["651/2"],"_deep":["651/0"],"_deepcopy":["651/0"],"_defineproperty":["652/0"],"_define":["652/0","760/0"],"_definereadonly":["652/0"],"_inheritance":["653/0"],"_aconstructor":["653/0"],"_ancestors":["653/0","653/1"],"_mimic":["653/1"],"_getstatic":["653/0"],"_retruns":["654/0"],"_shallow":["655/0"],"_assign":["655/1"],"_shallowcopy":["655/0"],"_signingkey":["656/0","657/0","658/0","659/0","660/0","661/0","662/0"],"_x04":["658/1","665/1"],"_x02":["659/1"],"_x03":["659/1"],"_compressedpublickey":["659/0"],"_signdigest":["660/0"],"_ecdh":["661/0"],"_otherkey":["661/0","661/1"],"_symmetric":["661/2"],"_computesharedsecret":["661/0"],"_issigningkey":["662/0"],"_producing":["663/0"],"_canonical":["663/1","680/0","680/1","681/0","682/0"],"_completely":["663/2","806/4","809/1","868/1"],"_verifymessage":["663/0"],"_verifytypeddata":["664/0"],"_gave":["665/1"],"_recoverpublickey":["665/0"],"_compressing":["666/0"],"_computepublickey":["666/0"],"_granted":["667/0","871/1"],"_loss":["667/1","796/1"],"_incorrect":["667/1"],"_deal":["668/1","871/1"],"_prefixing":["668/1"],"_terminate":["668/1","841/1"],"_word":["668/1","668/2","735/0","736/0","737/0","868/0"],"_termination":["668/2"],"_bytes32string":["668/0"],"_fewer":["669/0","751/6"],"_international":["669/0"],"_represented":["670/0","675/0"],"_parsebytes32string":["670/0"],"_exceeds":["671/1"],"_formatbytes32string":["671/0"],"_normalizing":["672/0","676/0","800/6"],"_unicodenormalizationform":["672/0","673/0","676/0","677/0","678/0","679/0","680/0","681/0"],"_toutf8bytes":["672/0"],"_codepoints":["673/0","678/1","679/1","679/2","683/0","684/0","687/0"],"_toutf8codepoints":["673/0"],"_splits":["674/0"],"_perceived":["674/0"],"_character":["674/0","678/1","679/1","679/2","688/0","688/1","695/0","737/0"],"_codepoint":["674/0","678/2","679/2","680/2","684/0","687/0","687/1","688/2","691/0"],"_accounting":["674/0"],"_surrogate":["674/0","674/1","691/0","691/1","693/0"],"_pairs":["674/0","674/1","691/0","693/0","760/0"],"_confused":["674/1"],"_destroys":["674/1"],"_splitting":["674/1"],"_codeunit":["674/1"],"_onerror":["675/1","675/0"],"_toutf8string":["675/0"],"_forms":["676/0","904/0"],"_unicode":["676/0","677/0","678/0","679/0","680/0","681/0"],"_normalization":["676/0","677/0","678/0","679/0","680/0","681/0"],"_eacute":["678/2","679/2"],"_x00e9":["678/2"],"_nfc":["678/0"],"_decomposed":["679/0","681/0"],"_compose":["679/1"],"_x0065":["679/2"],"_letter":["679/2","680/2","846/2","846/5"],"_x0301":["679/2"],"_diacritic":["679/2"],"_acute":["679/2"],"_accent":["679/2"],"_nfd":["679/0"],"_equivalence":["680/0","681/0","682/0"],"_folds":["680/1"],"_syntactic":["680/1"],"_semantic":["680/1"],"_roman":["680/2"],"_numeral":["680/2"],"_x2160":["680/2"],"_folded":["680/2","682/0"],"_capital":["680/2"],"_x0049":["680/2"],"_nfkc":["680/0","681/1"],"_nfkd":["681/0"],"_thus":["682/0"],"_achieve":["682/0"],"_homoglyph":["682/0"],"_attacks":["682/0","713/1"],"_converting":["683/0"],"_possibility":["683/0"],"_encountered":["684/0","685/0","825/3"],"_badcodepoint":["684/0"],"_skip":["684/1","818/1"],"_consumed":["684/1","709/2","773/1"],"_errorfunction":["684/0"],"_bad":["684/0","685/0","690/0","690/1"],"_sequence":["685/0","686/0","689/0","690/0","693/0"],"_utf8errorreason":["685/0","686/0","687/0","688/0","689/0","690/0","691/0"],"_begun":["686/0"],"_did":["686/0"],"_continuation":["686/0","686/1","690/0","694/0","695/0","841/2"],"_ofset":["686/1"],"_continue":["686/0","690/0","866/2"],"_x10ffff":["687/1"],"_badcountpoint":["687/2","688/2","691/1"],"_variable":["688/0","841/2","846/2","846/4","846/5"],"_overlong":["688/0","688/1","693/0","694/0"],"_distinguished":["688/0"],"_formed":["688/0"],"_circumvent":["688/1"],"_produced":["688/1"],"_lazy":["688/1"],"_terminating":["688/1"],"_char":["688/1"],"_arrived":["688/2"],"_through":["688/2","769/0","790/3","818/0"],"_remaining":["689/0","807/2"],"_differently":["690/0"],"_want":["690/1","800/1","899/0"],"_trap":["690/1"],"_f16":["691/0"],"_utf16":["691/0"],"_funcs":["693/0","694/0","695/0"],"_utf8errorfuncs":["693/0","694/0","695/0"],"_consuming":["694/0","695/0"],"_final":["694/0","759/0"],"_permit":["694/0","871/1"],"_ignore":["694/0","761/0","860/5"],"_replace":["695/0"],"_fffd":["695/1"],"_flexible":["696/0"],"_disabled":["703/1","910/0"],"_identifier":["705/0"],"_order":["708/1","792/0","794/0","860/3"],"_replayability":["708/1"],"_refunded":["709/2"],"_complete":["709/2","777/7","777/9","867/0","868/1"],"_effects":["709/2"],"_replay":["713/1","713/3"],"_unintended":["713/2"],"_almost":["713/3","894/1"],"_portion":["714/0","715/0","716/0","830/1"],"_curve":["714/0","715/0","716/0"],"_accurately":["714/1"],"_coordinate":["714/1","716/1"],"_refine":["716/1"],"_parses":["717/0"],"_present":["718/1","790/1","791/0","835/0","872/0","893/3"],"_explicitly":["718/4"],"_implicitly":["718/4"],"_mismatch":["718/5"],"_serializetransaction":["718/0"],"_fetch":["719/0","859/0"],"_body":["719/0","825/1","825/2","825/3","826/2","827/2","828/1","829/0","829/1","830/1","831/1","832/1","833/1","834/0","835/0","835/1","836/2","837/1","841/0","841/2"],"_processfun":["719/0"],"_fetchjson":["719/0"],"_processfunc":["719/0"],"_repeatedly":["720/0"],"_pollfunc":["720/0","732/0","733/0"],"_polloptions":["720/0"],"_undefined":["720/0","731/0"],"_poll":["720/0","733/0"],"_authentication":["722/0","722/2","723/0","723/2","724/0"],"_insecure":["724/0"],"_allowinsecureauthentication":["724/0"],"_rejecting":["725/0"],"_headers":["726/0"],"_elapse":["727/0"],"_triggering":["727/0"],"_exponential":["728/0","729/0","730/0"],"_backoff":["728/0","729/0","730/0"],"_floor":["728/0"],"_ceiling":["729/0"],"_interval":["730/0"],"_calculation":["730/0"],"_retry":["731/0"],"_retrylimit":["731/0"],"_polling":["732/0","733/0"],"_onceblock":["732/0"],"_oncepoll":["733/0"],"_getword":["735/0"],"_getwordindex":["736/0"],"_individual":["737/0","751/1"],"_joining":["738/0"],"_map":["739/0","813/1"],"_directions":["739/0"],"_lists":["739/0","837/0","837/1"],"_validate":["739/1","777/8","790/4"],"_wordlists":["739/0","740/0","741/0","742/0","743/0","744/0","745/0","746/0","747/0","748/0","749/0","750/0"],"_overriding":["740/0"],"_registered":["740/0"],"_increases":["741/1"],"_dist":["741/1","809/3","812/0","814/0"],"_czech":["742/0"],"_cz":["742/0"],"_en":["743/0"],"_spanish":["744/0"],"_es":["744/0","813/1","894/2"],"_french":["745/0"],"_fr":["745/0"],"_italian":["746/0","868/0"],"_japanese":["747/0","868/0"],"_ja":["747/0"],"_korean":["748/0","868/0"],"_ko":["748/0"],"_chinese":["749/0","750/0","868/0"],"_zh":["749/0","750/0"],"_cn":["749/0"],"_traditional":["750/0","868/0"],"_tw":["750/0"],"_tl":["751/0"],"_dr":["751/0"],"_ndash":["751/0"],"_improve":["751/0"],"_track":["751/1"],"_works":["751/2"],"_box":["751/2","831/0","832/0"],"_community":["751/3"],"_resource":["751/3","891/0"],"_prototyping":["751/3","855/1"],"_aggressively":["751/4"],"_retries":["751/4","751/6"],"_slower":["751/4"],"_tier":["751/5"],"_advantages":["751/5"],"_rate":["751/6","752/4","753/4","754/4"],"_concurrent":["751/6"],"_faster":["751/6","806/7","807/2","808/2","818/1"],"_timeouts":["751/6"],"_metric":["751/6"],"_tuning":["751/6"],"_customer":["751/6","752/4","753/4","754/4","755/2"],"_archive":["751/6","753/4"],"_explorer":["752/0"],"_developer":["752/0","800/16","807/1","891/0"],"_building":["752/0","810/0","817/1","817/0","818/0","819/1","839/2","839/4"],"_extensive":["752/1","868/1"],"_benefits":["752/3","753/3","754/3","755/1"],"_reliable":["753/0","754/0","893/0"],"_makes":["753/1","769/0","807/2","807/3","814/1","860/1","895/0"],"_tools":["753/1","810/1"],"_versatile":["753/1"],"_upgrade":["753/4"],"_years":["754/0"],"_assist":["754/1"],"_metadata":["754/4","817/2"],"_pocket":["755/0"],"_decentralized":["755/2"],"_stake":["755/2"],"_opposed":["755/2"],"_paying":["755/2"],"_monthly":["755/2"],"_incentivized":["755/2"],"_cryptoeconomic":["755/2"],"_incentives":["755/2"],"_verifies":["756/0"],"_maximize":["756/2"],"_deployable":["757/0"],"_mnemonics":["757/0","764/0","768/0","769/0"],"_bin":["758/0"],"_passes":["759/0","769/0"],"_stage":["759/0"],"_approximating":["759/0"],"_portions":["759/1","871/2"],"_massaged":["759/1"],"_tweaked":["759/1"],"_stabilizes":["759/1"],"_destinations":["759/2"],"_scripting":["760/0","767/0"],"_somekey":["760/0"],"_y":["760/0"],"_flag":["760/0","762/2","791/0"],"_loops":["762/0"],"_flow":["762/0"],"_byt":["762/2"],"_independent":["762/2"],"_moved":["762/2","873/0","874/1","878/0","878/1"],"_incur":["762/3"],"_though":["762/3","855/1"],"_pic":["762/0"],"_option":["763/1","777/5","777/6","789/0","793/0","793/1","815/6"],"_usual":["763/2"],"_impacts":["763/2"],"_shows":["764/0","775/0","786/0","787/0","887/2"],"_sandbox":["766/0"],"_learning":["766/0"],"_managing":["766/0"],"_repl":["766/1"],"_eval":["767/0"],"_commands":["767/0"],"_variables":["767/0","834/1","839/5","846/1","846/3","846/0"],"_phrases":["768/0","868/0","881/0"],"_prompt":["768/2"],"_decrypt":["768/2","769/0","808/0"],"_xxx":["769/0","770/0"],"_scrypt":["769/0","805/3","808/1","815/2"],"_slow":["769/0","805/1"],"_brute":["769/0","806/1","815/2"],"_force":["769/0","806/1"],"_attack":["769/0","802/0","806/1"],"_far":["769/0"],"_passwords":["769/0","806/4","806/5","806/6"],"_hence":["770/0"],"_cli":["771/0","772/0","772/1","775/0","777/0","777/2","777/5","790/4"],"_handles":["772/0"],"_instantiates":["772/0"],"_plugin":["772/0","772/1","773/0","773/1","774/0","777/0","777/3","777/4","777/5","778/0","779/0","780/0","781/0","782/0","783/0","784/0","785/0","786/0","787/0","788/0","789/0"],"_standalone":["772/1"],"_exactly":["772/1","800/10","833/1","900/1"],"_addplugin":["773/0","774/1"],"_pluginclass":["773/0","774/0"],"_dedicated":["774/0"],"_conjunction":["774/1","797/1"],"_setplugin":["774/0"],"_screen":["775/0","777/2","786/0","788/0","789/0"],"_terminates":["775/0"],"_show":["775/0"],"_showusage":["775/0"],"_argv":["776/0"],"_manages":["777/0"],"_phases":["777/0"],"_requested":["777/2"],"_gethelp":["777/2","788/0"],"_getoptionhelp":["777/2","789/0"],"_prepareoptions":["777/3","777/4","777/7","790/4"],"_understands":["777/5"],"_bail":["777/5"],"_preparearguments":["777/7","777/9"],"_sense":["777/8"],"_allowzero":["784/1","784/0"],"_raised":["784/1"],"_dumps":["785/0"],"_contents":["785/0","826/1","827/1","834/1","835/0"],"_console":["785/0","823/3"],"_header":["785/0"],"_nicely":["785/0"],"_style":["785/0","816/1","834/2","845/0","853/0"],"_plugins":["785/1"],"_dump":["785/0","817/2"],"_stops":["786/0","787/0"],"_throwusageerror":["786/0"],"_subclass":["788/0","789/0"],"_argparser":["790/0","790/3","790/4","791/0","792/0","793/0","794/0"],"_arg":["790/0","791/0","792/0","793/0","794/0"],"_parser":["790/0","791/0","792/0","793/0","794/0"],"_yes":["790/1"],"_leaving":["790/4"],"_prepareargs":["790/4"],"_consumeflag":["791/0"],"_consumemultioptions":["792/0"],"_usageerror":["793/1"],"_consumeoption":["793/0"],"_consumeoptions":["794/0"],"_incredibly":["796/1"],"_slight":["796/1"],"_seem":["796/1","894/4"],"_confusing":["796/1"],"_worst":["796/1"],"_misrepresent":["796/1"],"_action":["796/1","871/4","893/2"],"_luckily":["796/2"],"_tricked":["796/2"],"_mistake":["796/2"],"_worry":["796/3","800/3","810/3"],"_surrounding":["796/3","843/0"],"_page":["796/3","796/4","817/2","825/0","826/3"],"_reloading":["796/3"],"_refresh":["796/4"],"_reset":["796/5","836/1"],"_banners":["796/5"],"_accomplished":["796/6"],"_pieces":["798/0"],"_correspondingly":["798/2"],"_refers":["798/2"],"_ed":["798/3","798/7"],"_sound":["798/8","868/0"],"_complicated":["798/8","809/3"],"_understood":["798/8"],"_comprehensive":["800/0"],"_intersting":["800/1"],"_learn":["800/1","890/0"],"_technology":["800/1"],"_slot":["800/6"],"_bytes5":["800/10"],"_shorter":["800/10"],"_right":["800/10"],"_consequences":["800/13"],"_kept":["800/13","869/0"],"_lost":["800/14"],"_tell":["800/15"],"_twice":["800/16"],"_someevent":["800/17"],"_searchby":["800/17"],"_cleartext":["800/17"],"_happens":["801/0","815/6"],"_retain":["801/0","872/1"],"_things":["801/0","809/1","810/1","857/1","861/0"],"_vectors":["802/0"],"_somewhat":["803/0","809/0"],"_bid":["803/0"],"_willing":["803/0","809/1"],"_brief":["804/0"],"_aspects":["804/0","903/0"],"_aware":["804/0"],"_sparse":["804/1"],"_moment":["804/1"],"_goes":["804/1","808/2"],"_basics":["804/0"],"_technique":["805/0"],"_implications":["805/0"],"_people":["805/1","813/0","894/7"],"_concerned":["805/1"],"_encrypting":["805/1"],"_decrypting":["805/1","807/3"],"_intentional":["805/2"],"_stronger":["805/2"],"_cpu":["805/3","806/0"],"_pseudo":["805/3"],"_series":["805/3"],"_goal":["806/0"],"_computer":["806/0","806/4"],"_scale":["806/1"],"_attacker":["806/1","806/3","806/7","815/6"],"_computers":["806/1","808/2"],"_seconds":["806/2","806/3","806/4","806/5","815/2"],"_proceed":["806/2"],"_know":["806/3","860/3","872/2","892/1"],"_try":["806/4","816/2","894/0"],"_guessing":["806/4"],"_million":["806/4","806/5"],"_tied":["806/4"],"_days":["806/4"],"_instantly":["806/5"],"_period":["806/6"],"_legitimate":["806/7"],"_reducing":["807/0"],"_better":["807/0","855/0","894/1"],"_feel":["807/0","807/2","807/3","894/3"],"_encryption":["807/1"],"_incorporate":["807/1"],"_periodically":["807/1"],"_indication":["807/1","807/2"],"_percent":["807/1"],"_comfortable":["807/2"],"_clear":["807/2"],"_needlessly":["807/3","894/7"],"_wasted":["807/3"],"_mitigating":["807/0"],"_doing":["808/0"],"_tuned":["808/1","808/2"],"_main":["808/2","877/4"],"_purpose":["808/2","816/0","867/1","871/3"],"_arounds":["808/0"],"_something":["809/0","866/1"],"_ve":["809/0"],"_written":["809/0","816/0","893/4"],"_necessity":["809/0"],"_grown":["809/0"],"_good":["809/1"],"_welcome":["809/1","809/2"],"_criticism":["809/1"],"_am":["809/1"],"_my":["809/1"],"_changed":["809/1","872/0","875/0","875/2","876/0"],"_pull":["809/2","809/4","814/0","866/0"],"_backwards":["809/3","866/0"],"_compatibility":["809/3"],"_breaking":["809/3"],"_convincing":["809/3","863/0"],"_aims":["809/3","867/0","872/1"],"_lean":["809/3"],"_eye":["809/3"],"_pr":["809/3","814/1","814/0"],"_modify":["809/3","871/1"],"_docs":["809/3","814/0","817/1","819/0","819/1","824/0","824/1"],"_wrm":["809/3","814/0"],"_src":["809/3","814/0","826/4","827/3","828/2","830/2","852/0"],"_ts":["809/3","813/1","814/0"],"_folders":["809/3","814/0"],"_test":["809/3","868/1","893/1","893/3","893/4","893/5","893/6","894/4","895/0","895/1","896/0","897/1","897/0","898/0","899/0","903/0","903/1","903/2","905/0","908/0"],"_me":["809/3","813/2","872/2","892/1","892/2"],"_migration":["809/3","872/0","882/0","883/0"],"_overly":["809/3"],"_beginning":["809/4"],"_discussion":["809/4"],"_figure":["809/4"],"_contributing":["809/0","810/3"],"_hacking":["809/0","861/0"],"_build":["810/0","810/1","811/0","817/0","818/1","894/4"],"_unfortunatly":["810/0"],"_mono":["810/1"],"_repo":["810/1"],"_attempts":["810/1"],"_compatibile":["810/1"],"_platforms":["810/1","864/2","894/0"],"_weird":["810/1"],"_misc":["810/2","815/1"],"_folder":["810/2","819/0","847/0"],"_monorepo":["810/2"],"_working":["810/3"],"_auto":["811/0"],"_typescript":["811/0","813/1","868/1","896/0","898/0"],"_distribution":["812/0","813/0","814/1"],"_located":["812/0"],"_builds":["812/0","814/1"],"_rollup":["812/0"],"_step":["813/0","815/1","815/10","818/1"],"_forking":["813/0"],"_alternates":["813/0"],"_reuse":["813/0"],"_rebuild":["813/1"],"_compare":["813/1"],"_versions":["813/1","866/2","869/0","882/0"],"_update":["813/1","872/2","892/1"],"_limitations":["813/1"],"_shaking":["813/1"],"_linking":["813/1","817/2","869/0"],"_bundle":["813/1"],"_stripped":["813/1"],"_basically":["813/1","894/7"],"_whole":["813/1"],"_bunch":["813/1"],"_stuff":["813/1"],"_stuck":["813/2"],"_commit":["814/0"],"_prepare":["814/1"],"_myself":["814/1"],"_cmds":["815/1"],"_session":["815/1","815/8"],"_aws":["815/1","815/8"],"_github":["815/1","817/2","893/2","894/3","904/1"],"_forcing":["815/2"],"_expensive":["815/2"],"_plain":["815/3","815/6"],"_money":["815/4"],"_pot":["815/4"],"_tempting":["815/5"],"_mail":["815/5"],"_alert":["815/5"],"_instant":["815/6"],"_disclosure":["815/7"],"_bond":["815/7"],"_rotate":["815/8"],"_immedately":["815/9"],"_document":["815/10","872/0"],"_publishing":["815/0"],"_documents":["816/0"],"_flatworm":["816/0","816/2","824/0"],"_generation":["816/0"],"_writing":["816/0"],"_guide":["816/1","872/2","882/0","883/0"],"_lines":["816/2","839/5","841/3","846/4"],"_avoid":["816/2"],"_inline":["816/2"],"_externallinks":["816/2"],"_anchor":["816/2"],"_justified":["816/2"],"_symlinks":["816/2"],"_aim":["816/2"],"_look":["816/2","859/0","894/6"],"_steps":["817/0"],"_html":["817/2"],"_pages":["817/2"],"_anchors":["817/2"],"_readme":["817/2"],"_md":["817/2"],"_organized":["817/2"],"_browsable":["817/2"],"_linkable":["817/2"],"_ingestion":["817/2"],"_latex":["817/2"],"_pdf":["817/2"],"_samples":["818/0","838/0"],"_vm":["818/0"],"_typos":["818/0"],"_injected":["818/0"],"_headache":["818/1"],"_preview":["819/0"],"_locally":["819/0"],"_caveats":["819/1"],"_apply":["819/1"],"_flushing":["819/1"],"_caches":["819/1"],"_previewing":["819/0"],"_grow":["820/0"],"_snippets":["820/0"],"_cookbook":["820/0"],"_react":["821/0","821/1","822/0","823/0","823/2","894/4"],"_native":["821/0","821/1","822/0","823/0","823/2"],"_forks":["821/0"],"_expo":["821/0","894/4"],"_javascriptcore":["821/1"],"_webkit":["821/1"],"_dom":["821/1"],"_shims":["821/3","822/0","823/2"],"_ilk":["821/0"],"_shim":["822/0"],"_instructions":["822/1"],"_installing":["822/1","822/2","822/0","854/0"],"_restart":["822/2"],"_packager":["822/2"],"_company":["822/2"],"_stolen":["823/1"],"_install":["823/2","895/0"],"_worked":["823/3"],"_regarding":["823/3"],"_rendering":["824/0"],"_engine":["824/0"],"_formatting":["824/0"],"_documenting":["824/0"],"_inspiration":["824/1"],"_came":["824/1"],"_sphinx":["824/1"],"_directive":["825/1","836/0","838/0","841/0","841/1","846/1","848/0","849/0","851/0","851/2","852/0","852/1","853/0"],"_extensions":["825/1","826/4","827/3","828/2","830/2","833/3","834/2"],"_directives":["825/2"],"_markdown":["825/2","826/2","827/2","828/1","829/1","830/1","831/1","832/1","833/1","834/1","835/1","836/2","837/0","848/1","848/0","851/1","851/0"],"_continues":["825/3"],"_title":["826/0","827/0","827/2","828/0","828/1","829/1","837/1"],"_h1":["826/0"],"_font":["826/0","827/0","828/0"],"_linked":["826/1","827/1","852/0"],"_table":["826/1","827/1","834/0","835/0","841/0","841/1","845/0","846/0","846/1","846/3","846/4","853/0"],"_dividing":["826/1","827/1"],"_drawn":["826/1","827/1"],"_inherit":["826/4","827/3","828/2","848/0","851/2"],"_nav":["826/4","850/0"],"_subsection":["827/0"],"_h2":["827/0"],"_subsections":["827/1","835/0"],"_heading":["828/0"],"_h3":["828/0"],"_term":["829/0"],"_indented":["829/0","836/1"],"_placed":["831/0","832/0","847/0"],"_blue":["831/0"],"_bordered":["831/0","832/0"],"_draw":["831/0","832/0"],"_attention":["831/0","832/0"],"_banner":["831/0","832/0"],"_orange":["832/0"],"_escaped":["833/2"],"_lang":["833/3","840/0","849/0"],"_caption":["833/0"],"_cell":["834/1","842/0","843/0","844/1"],"_footer":["834/0"],"_toc":["835/0"],"_injects":["835/0"],"_loading":["835/0"],"_loads":["835/0"],"_interpreted":["835/1"],"_directories":["835/1"],"_terminated":["836/0"],"_bodies":["836/1"],"_indentation":["836/1"],"_flexibility":["837/0"],"_dialects":["837/0"],"_bold":["837/0"],"_italic":["837/0"],"_underlined":["837/0"],"_monospaced":["837/0"],"_superscript":["837/0"],"_strike":["837/0"],"_supporting":["837/0"],"_rendered":["837/1"],"_monospace":["838/0"],"_substitution":["839/0"],"_bare":["839/1","839/3"],"_hide":["839/5"],"_setup":["839/5"],"_java":["839/0"],"_extension":["840/0","845/0","851/2","857/0","897/1"],"_row":["841/2","842/0","844/1","844/0","846/4"],"_declaration":["841/2","846/4"],"_blank":["841/3"],"_gap":["842/0"],"_alignment":["842/0","843/0"],"_column":["842/0","844/0"],"_spanning":["842/0","844/0"],"_columns":["844/0","844/1"],"_appearance":["845/0"],"_styles":["845/0"],"_layout":["846/0"],"_express":["846/0","871/3"],"_uneven":["846/0"],"_separately":["846/1"],"_repeated":["846/3"],"_declared":["846/4"],"_consist":["846/5"],"_z0":["846/7"],"_highlighted":["849/0"],"_breadcrumbs":["850/0"],"_getsourceurl":["852/0"],"_import":["854/0","868/0","894/6","895/0"],"_under":["854/0","863/2","870/0"],"_ethersproject":["854/0","895/0"],"_organization":["854/0"],"_umbrella":["854/0","873/0"],"_started":["854/0","890/0"],"_webserver":["855/0"],"_serve":["855/0"],"_demos":["855/1"],"_our":["855/1"],"_cdn":["855/1"],"_terminology":["856/0"],"_quickest":["857/0"],"_experiment":["857/0"],"_holds":["857/1","858/4"],"_typically":["858/3"],"_thing":["858/4"],"_lives":["860/0"],"_mapped":["860/1"],"_familiar":["860/2"],"_databases":["860/2"],"_relational":["860/2"],"_mapper":["860/2"],"_orm":["860/2"],"_communicate":["860/3"],"_don":["860/5","894/7"],"_smaller":["860/5"],"_vyper":["860/6"],"_dependency":["863/0"],"_mit":["863/1","863/2","865/0","868/1","870/0","871/0"],"_licensed":["863/1"],"_cc0":["863/1"],"_contributions":["863/2"],"_license":["863/2","865/0","868/1","870/0","871/0"],"_printable":["864/0"],"_ascii":["864/0","864/2"],"_bu":["864/1"],"_transmission":["864/2"],"_servers":["864/2"],"_proxies":["864/2"],"_mangle":["864/2"],"_editors":["864/2"],"_terminals":["864/2"],"_elegantly":["864/2"],"_keyboards":["864/2"],"_devices":["864/2"],"_administrative":["864/2"],"_priviledges":["864/2"],"_perpetuity":["866/1"],"_obscure":["866/2"],"_dot":["866/2"],"_carries":["866/2"],"_implication":["866/2"],"_date":["866/2","869/0"],"_released":["866/2"],"_considerations":["866/0"],"_ecosystem":["867/0"],"_originally":["867/1"],"_io":["867/1"],"_export":["868/0"],"_crowdsale":["868/0"],"_backup":["868/0"],"_soon":["868/0"],"_abiv2":["868/0","903/2"],"_citizens":["868/1"],"_tiny":["868/1"],"_maintained":["868/1"],"_open":["868/1"],"_copyright":["870/0","871/0","871/2","871/4"],"_richard":["871/0"],"_moore":["871/0"],"_permission":["871/1","871/2"],"_hereby":["871/1"],"_person":["871/1"],"_obtaining":["871/1"],"_restriction":["871/1"],"_limitation":["871/1"],"_rights":["871/1"],"_merge":["871/1"],"_publish":["871/1"],"_distribute":["871/1"],"_sublicense":["871/1"],"_sell":["871/1"],"_persons":["871/1"],"_whom":["871/1"],"_furnished":["871/1"],"_subject":["871/1"],"_conditions":["871/1"],"_notice":["871/2"],"_shall":["871/2","871/4"],"_substantial":["871/2"],"_warranty":["871/3"],"_implied":["871/3"],"_limited":["871/3"],"_warranties":["871/3"],"_merchantability":["871/3"],"_fitness":["871/3"],"_noninfringement":["871/3"],"_holders":["871/4"],"_liable":["871/4"],"_claim":["871/4"],"_damages":["871/4"],"_liability":["871/4"],"_tort":["871/4"],"_arising":["871/4"],"_dealings":["871/4"],"_covers":["872/0"],"_v5":["872/0","877/3","883/0"],"_updating":["872/1"],"_let":["872/2","892/1"],"_ll":["872/2","892/1"],"_namespace":["873/0","878/0"],"_bignumberify":["874/0"],"_circuit":["874/0"],"_instantiation":["874/0"],"_addresspromise":["875/2"],"_resolution":["875/0"],"_difference":["876/0","877/1","877/4","877/6"],"_bucket":["876/0","877/0","877/2","877/3","877/5"],"_exposes":["877/0"],"_collided":["877/2"],"_buckets":["877/2"],"_dereference":["877/5"],"_preserve":["877/5"],"_having":["877/7"],"_belong":["878/0"],"_undergone":["879/0"],"_dramatic":["879/0"],"_inspection":["879/1","880/0"],"_edge":["879/1"],"_interrogating":["880/0"],"_mostly":["880/0"],"_merged":["881/0","903/2"],"_guides":["882/0"],"_upgrading":["882/0"],"_focuses":["883/0"],"_migrating":["883/0"],"_smart":["886/0","886/1","891/0"],"_overloaded":["887/0","887/1","887/2"],"_internet":["890/0"],"_documentations":["891/0"],"_defactor":["891/0"],"_concepts":["891/0"],"_tutorials":["892/0"],"_happened":["892/0"],"_dead":["892/1"],"_outdated":["892/1"],"_wishes":["893/0"],"_tests":["893/1","893/2","894/1","897/0","904/1","907/0","909/0","909/1","912/0"],"_among":["893/1"],"_suites":["893/1","893/5","895/0","903/2"],"_gzip":["893/1","895/0"],"_seen":["893/2"],"_ci":["893/2"],"_strive":["893/3"],"_constantly":["893/3"],"_especially":["893/3","894/0"],"_arise":["893/3"],"_prior":["893/3"],"_corrected":["893/3"],"_causing":["893/3"],"_regression":["893/3"],"_procedurally":["893/4","893/5","905/0","909/1"],"_generating":["893/5","909/1"],"_choosing":["893/5"],"_captured":["893/5"],"_technologies":["894/0"],"_move":["894/0"],"_fast":["894/0"],"_universe":["894/0"],"_accessible":["894/0"],"_umd":["894/2"],"_modules":["894/2"],"_overlooked":["894/3"],"_suggestions":["894/3"],"_reach":["894/3"],"_opening":["894/3"],"_pain":["894/4"],"_ideas":["894/4"],"_bug":["894/4"],"_probably":["894/5"],"_summer":["894/5"],"_avoided":["894/6"],"_regular":["894/6"],"_expressions":["894/6"],"_caused":["894/6"],"_conflicts":["894/6"],"_otto":["894/6"],"_moral":["894/7"],"_story":["894/7"],"_gzipped":["895/0"],"_testcases":["895/0","897/0","898/0","900/0","901/0","902/0"],"_suite":["895/1","896/0"],"_schema":["895/1","898/0"],"_convenience":["896/0"],"_loadtests":["897/0"],"_testcase":["897/0","898/0"],"_perspective":["899/0"],"_runs":["899/0"],"_reproduce":["899/1"],"_sure":["899/3"],"_tweak":["899/3"],"_iteration":["899/3"],"_concatenate":["899/3"],"_drng":["899/0"],"_upper":["900/0","900/1","901/0","902/0"],"_exclusive":["900/0"],"_randomhexstring":["901/0"],"_randomnumber":["902/0"],"_outline":["903/0"],"_nuanced":["903/0"],"_overhaul":["903/1"],"_coverage":["903/1"],"_collapse":["903/1"],"_redundancy":["903/1"],"_schemas":["903/0"],"_ethereumjs":["904/1"],"_cpp":["904/1"],"_gz":["904/2"],"_coding":["905/0"],"_constructing":["909/1"],"_soldity":["909/1"],"_compiling":["909/1"],"_evaluating":["909/1"],"_conversion":["911/0"],"_keystore":["912/0"]}} |