@ethersproject/contracts
Advanced tools
Comparing version 5.0.2 to 5.0.3
@@ -1,1 +0,1 @@ | ||
export declare const version = "contracts/5.0.2"; | ||
export declare const version = "contracts/5.0.3"; |
@@ -1,2 +0,2 @@ | ||
export const version = "contracts/5.0.2"; | ||
export const version = "contracts/5.0.3"; | ||
//# sourceMappingURL=_version.js.map |
@@ -1,1 +0,1 @@ | ||
export declare const version = "contracts/5.0.2"; | ||
export declare const version = "contracts/5.0.3"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = "contracts/5.0.2"; | ||
exports.version = "contracts/5.0.3"; | ||
//# sourceMappingURL=_version.js.map |
{ | ||
"author": "Richard Moore <me@ricmoo.com>", | ||
"dependencies": { | ||
"@ethersproject/abi": "^5.0.0", | ||
"@ethersproject/abstract-provider": "^5.0.0", | ||
"@ethersproject/abstract-signer": "^5.0.0", | ||
"@ethersproject/address": "^5.0.0", | ||
"@ethersproject/bignumber": "^5.0.0", | ||
"@ethersproject/bytes": "^5.0.0", | ||
"@ethersproject/constants": "^5.0.0", | ||
"@ethersproject/logger": "^5.0.0", | ||
"@ethersproject/properties": "^5.0.0" | ||
"@ethersproject/abi": "^5.0.3", | ||
"@ethersproject/abstract-provider": "^5.0.3", | ||
"@ethersproject/abstract-signer": "^5.0.3", | ||
"@ethersproject/address": "^5.0.3", | ||
"@ethersproject/bignumber": "^5.0.6", | ||
"@ethersproject/bytes": "^5.0.4", | ||
"@ethersproject/constants": "^5.0.3", | ||
"@ethersproject/logger": "^5.0.5", | ||
"@ethersproject/properties": "^5.0.3" | ||
}, | ||
@@ -34,5 +34,5 @@ "description": "Contract abstraction meta-class for ethers.", | ||
}, | ||
"tarballHash": "0xf945693cde08e5b70dcae8b6ebb56e0e4b09b5da5a54f0cb1f4c1999e5ffa347", | ||
"tarballHash": "0xbb157719e14c1a0eedf43a06ece1ebd6bb882fe701ff40996c21e2216e4a41a3", | ||
"types": "./lib/index.d.ts", | ||
"version": "5.0.2" | ||
"version": "5.0.3" | ||
} |
Ethereum Contract Meta-Class | ||
============================ | ||
**EXPERIMENTAL** | ||
This sub-module is part of the [ethers project](https://github.com/ethers-io/ethers.js). | ||
Please see the [ethers](https://github.com/ethers-io/ethers.js) repository | ||
for more informations. | ||
It is creating (at run-time) an object which interacts with an on-chain | ||
contract as a native JavaScript object. | ||
API | ||
--- | ||
If you are familiar with ORM for Databases, this is similar, but for smart contracts. | ||
`@TODO` | ||
For more information, see the [documentation](https://docs.ethers.io/v5/api/contract/). | ||
Importing | ||
--------- | ||
Most users will prefer to use the [umbrella package](https://www.npmjs.com/package/ethers), | ||
but for those with more specific needs, individual components can be imported. | ||
```javascript | ||
const { | ||
Contract, | ||
ContractFactory, | ||
RunningEvent, | ||
// Types | ||
ContractInterface, | ||
Overrides, | ||
PayableOverrides, | ||
CallOverrides, | ||
PopulatedTransaction, | ||
EventFilter, | ||
ContractFunction, | ||
Event, | ||
ContractReceipt, | ||
ContractTransaction | ||
} = require("@ethersproject/contract"); | ||
``` | ||
License | ||
@@ -15,0 +50,0 @@ ------- |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
174018
53
Updated@ethersproject/abi@^5.0.3
Updated@ethersproject/bytes@^5.0.4
Updated@ethersproject/logger@^5.0.5