2020-06-10 06:56:58 +03:00
|
|
|
-----
|
|
|
|
|
2020-07-03 08:54:56 +03:00
|
|
|
Documentation: [html](https://docs.ethers.io/)
|
2020-06-10 06:56:58 +03:00
|
|
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
Migration: From Ethers v4
|
|
|
|
=========================
|
|
|
|
|
|
|
|
BigNumber
|
|
|
|
---------
|
|
|
|
|
|
|
|
### Namespace
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4
|
|
|
|
ethers.utils.BigNumber
|
|
|
|
ethers.utils.BigNumberish
|
|
|
|
|
|
|
|
// v5
|
|
|
|
ethers.BigNumber
|
|
|
|
ethers.BigNumberish
|
|
|
|
```
|
|
|
|
|
|
|
|
### Creating Instances
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4
|
|
|
|
new ethers.utils.BigNumber(someValue)
|
|
|
|
ethers.utils.bigNumberify(someValue);
|
|
|
|
|
|
|
|
// v5
|
|
|
|
// - Constructor is private
|
|
|
|
// - Removed `bigNumberify`
|
|
|
|
ethers.BigNumber.from(someValue)
|
|
|
|
```
|
|
|
|
|
|
|
|
Contracts
|
|
|
|
---------
|
|
|
|
|
|
|
|
```
|
|
|
|
// @TODO
|
|
|
|
```
|
|
|
|
|
|
|
|
Errors
|
|
|
|
------
|
|
|
|
|
|
|
|
### Namespace
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4
|
|
|
|
ethers.errors.UNKNOWN_ERROR
|
|
|
|
ethers.errors.*
|
|
|
|
|
|
|
|
errors.setCensorship(censorship, permanent)
|
|
|
|
errors.setLogLevel(logLevel)
|
|
|
|
|
|
|
|
errors.checkArgumentCount(count, expectedCount, suffix)
|
|
|
|
errors.checkNew(self, kind)
|
|
|
|
errors.checkNormalize()
|
|
|
|
errors.throwError(message, code, params)
|
|
|
|
errors.warn(...)
|
|
|
|
errors.info(...)
|
|
|
|
|
|
|
|
// v5
|
|
|
|
ethers.utils.Logger.errors.UNKNOWN_ERROR
|
|
|
|
ethers.utils.Logger.errors.*
|
|
|
|
|
|
|
|
Logger.setCensorship(censorship, permanent)
|
|
|
|
Logger.setLogLevel(logLevel)
|
|
|
|
|
|
|
|
const logger = new ethers.utils.Logger(version);
|
|
|
|
logger.checkArgumentCount(count, expectedCount, suffix)
|
|
|
|
logger.checkNew(self, kind)
|
|
|
|
logger.checkNormalize()
|
|
|
|
logger.throwError(message, code, params)
|
|
|
|
logger.warn(...)
|
|
|
|
logger.info(...)
|
|
|
|
```
|
|
|
|
|
|
|
|
Interface
|
|
|
|
---------
|
|
|
|
|
|
|
|
### Functions
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4 (example: "transfer(address to, uint amount)")
|
|
|
|
interface.functions.transfer.encode(to, amount)
|
|
|
|
interface.functions.transfer.decode(callData)
|
|
|
|
|
|
|
|
// v5
|
2020-07-03 08:54:56 +03:00
|
|
|
interface.encodeFunctionData("transfer", [ to, amount ])
|
|
|
|
interface.decodeFunctionResult("transfer", data)
|
2020-06-10 06:56:58 +03:00
|
|
|
|
|
|
|
// Or you can use any compatible signature or Fragment objects.
|
|
|
|
// Notice that signature normalization is performed for you,
|
|
|
|
// e.g. "uint" and "uint256" will be automatically converted
|
2020-07-03 08:54:56 +03:00
|
|
|
interface.encodeFunctionData("transfer(address,uint)", [ to, amount ])
|
|
|
|
interface.decodeFunctionResult("transfer(address to, uint256 amount)", data)
|
2020-06-10 06:56:58 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Events
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4 (example: Transfer(address indexed, address indexed, uint256)
|
|
|
|
interface.events.Transfer.encodeTopics(values)
|
|
|
|
interface.events.Transfer.decode(data, topics)
|
|
|
|
|
|
|
|
// v5
|
|
|
|
interface.encodeFilterTopics("Transfer", values)
|
|
|
|
interface.encodeEventLog("Transfer", data, topics)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Inspection
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4
|
|
|
|
interface.functions.transfer.name
|
|
|
|
interface.functions.transfer.inputs
|
|
|
|
interface.functions.transfer.outputs
|
|
|
|
interface.functions.transfer.payable
|
|
|
|
interface.functions.transfer.gas
|
|
|
|
|
|
|
|
// v5
|
|
|
|
const functionFragment = interface.getFunction("transfer")
|
|
|
|
functionFragment.name
|
|
|
|
functionFragment.inputs
|
|
|
|
functionFragment.outputs
|
|
|
|
functionFragment.payable
|
|
|
|
functionFragment.gas
|
|
|
|
|
|
|
|
|
|
|
|
// v4; type is "call" or "transaction"
|
|
|
|
interface.functions.transfer.type
|
|
|
|
|
|
|
|
// v5; constant is true (i.e. "call") or false (i.e. "transaction")
|
|
|
|
functionFragment.constant
|
|
|
|
|
|
|
|
|
|
|
|
// v4
|
|
|
|
interface.events.Transfer.anonymous
|
|
|
|
interface.events.Transfer.inputs
|
|
|
|
interface.events.Transfer.name
|
|
|
|
|
|
|
|
// v5
|
|
|
|
const eventFragment = interface.getEvent("Transfer");
|
|
|
|
eventFragment.anonymous
|
|
|
|
eventFragment.inputs
|
|
|
|
eventFragment.name
|
|
|
|
|
|
|
|
|
|
|
|
// v4
|
|
|
|
const functionSig = interface.functions.transfer.signature
|
|
|
|
const sighash = interface.functions.transfer.sighash
|
|
|
|
|
|
|
|
const eventSig = interface.events.Transfer.signature
|
|
|
|
const topic = interface.events.Transfer.topic
|
|
|
|
|
|
|
|
// v5
|
|
|
|
const functionSig = functionFragment.format()
|
|
|
|
const sighash = interface.getSighash(functionFragment)
|
|
|
|
|
|
|
|
const eventSig = eventFragment.format()
|
|
|
|
const topic = interface.getTopic(eventFragment)
|
|
|
|
```
|
|
|
|
|
|
|
|
Utilities
|
|
|
|
---------
|
|
|
|
|
|
|
|
### Renaming
|
|
|
|
|
|
|
|
```
|
|
|
|
// @TODO
|
|
|
|
```
|
|
|
|
|
|
|
|
Wallet
|
|
|
|
------
|
|
|
|
|
|
|
|
### Mnemonic Phrases
|
|
|
|
|
|
|
|
```
|
|
|
|
// v4
|
|
|
|
wallet.mnemonic
|
|
|
|
wallet.path
|
|
|
|
|
|
|
|
// v5
|
|
|
|
// - Mnemonic phrase and path are a Mnemonic object
|
|
|
|
// - Note: wallet.mnemonic is null if there is no mnemonic
|
|
|
|
wallet.mnemonic.phrase
|
|
|
|
wallet.mnemonic.path
|
|
|
|
```
|
|
|
|
|