mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 11:38:12 +00:00
updated "deposit" method description, updated icap example contract abi
This commit is contained in:
parent
fbb9a41bec
commit
b19e46c0d3
2
dist/web3-light.js
vendored
2
dist/web3-light.js
vendored
@ -4032,7 +4032,7 @@ var transferToAddress = function (from, address, value, callback) {
|
||||
};
|
||||
|
||||
/**
|
||||
* Should be used to deposit funds in ClientReceipt contract
|
||||
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
|
||||
*
|
||||
* @method deposit
|
||||
* @param {String} address
|
||||
|
2
dist/web3-light.js.map
vendored
2
dist/web3-light.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/web3.js
vendored
2
dist/web3.js
vendored
@ -4032,7 +4032,7 @@ var transferToAddress = function (from, address, value, callback) {
|
||||
};
|
||||
|
||||
/**
|
||||
* Should be used to deposit funds in ClientReceipt contract
|
||||
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
|
||||
*
|
||||
* @method deposit
|
||||
* @param {String} address
|
||||
|
2
dist/web3.js.map
vendored
2
dist/web3.js.map
vendored
File diff suppressed because one or more lines are too long
@ -17,17 +17,17 @@
|
||||
"inputs" : [
|
||||
{
|
||||
"indexed" : true,
|
||||
"name" : "_from",
|
||||
"name" : "from",
|
||||
"type" : "address"
|
||||
},
|
||||
{
|
||||
"indexed" : false,
|
||||
"name" : "_id",
|
||||
"indexed" : true,
|
||||
"name" : "to",
|
||||
"type" : "bytes32"
|
||||
},
|
||||
{
|
||||
"indexed" : false,
|
||||
"name" : "_value",
|
||||
"name" : "value",
|
||||
"type" : "uint256"
|
||||
}
|
||||
],
|
||||
|
@ -73,7 +73,7 @@ var transferToAddress = function (from, address, value, callback) {
|
||||
};
|
||||
|
||||
/**
|
||||
* Should be used to deposit funds in ClientReceipt contract
|
||||
* Should be used to deposit funds to generic Exchange contract (must implement deposit(bytes32) method!)
|
||||
*
|
||||
* @method deposit
|
||||
* @param {String} address
|
||||
|
Loading…
x
Reference in New Issue
Block a user