diff --git a/www/docs/API/contract.md b/www/docs/API/contract.md index 7c0f0782d..987c4114e 100644 --- a/www/docs/API/contract.md +++ b/www/docs/API/contract.md @@ -42,37 +42,37 @@ Saves the address of the contract deployed on network that will be used for inte _address_ - address of the contract. -
+

contract.**connect**(providerOrAccount) => void Attaches to new Provider or Account -
+

contract.**deployed**() => _Promise < Contract >_ If the Contract object is the result of a ContractFactory deployment, this method will wait for the transaction to be resolved. -
+

contract.**call**(method, args, options) => _Promise < Result >_ Calls a method on a contract. -
+

contract.**invoke**(method, args, options) => _Promise < InvokeFunctionResponse >_ Invokes a method on a contract. -
+

contract.**estimate**(method, args, options) => _Promise < any >_ Estimates a method on a contract. -
+

contract.**populate**(method, args, options) => _Invocation_