Home
last modified time | relevance | path

Searched refs:beneficiary (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/contracts/chequebook/contract/
H A Dchequebook.sol8 // Cumulative paid amount in wei to each beneficiary
19 /// @param beneficiary beneficiary address
25 …function cash(address beneficiary, uint256 amount, uint8 sig_v, bytes32 sig_r, bytes32 sig_s) publ…
28 require(amount > sent[beneficiary]);
30 bytes32 hash = keccak256(address(this), beneficiary, amount);
33 // and the cumulative amount on the last cashed cheque to beneficiary.
34 uint256 diff = amount - sent[beneficiary];
37 sent[beneficiary] = amount;
38 beneficiary.transfer(diff);
43 // Compensate beneficiary.
[all …]
H A Dchequebook.go208 func (_Chequebook *ChequebookTransactor) Cash(opts *bind.TransactOpts, beneficiary common.Address, …
209 return _Chequebook.contract.Transact(opts, "cash", beneficiary, amount, sig_v, sig_r, sig_s)
215 func (_Chequebook *ChequebookSession) Cash(beneficiary common.Address, amount *big.Int, sig_v uint8…
216 …return _Chequebook.Contract.Cash(&_Chequebook.TransactOpts, beneficiary, amount, sig_v, sig_r, sig…
222 func (_Chequebook *ChequebookTransactorSession) Cash(beneficiary common.Address, amount *big.Int, s…
223 …return _Chequebook.Contract.Cash(&_Chequebook.TransactOpts, beneficiary, amount, sig_v, sig_r, sig…
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/contracts/chequebook/
H A Dcheque.go259 sent, found := self.sent[beneficiary]
262 self.sent[beneficiary] = sent
271 Beneficiary: beneficiary,
306 input := append(contract.Bytes(), beneficiary.Bytes()...)
403 beneficiary common.Address member
407 func NewOutbox(chbook *Chequebook, beneficiary common.Address) *Outbox {
408 return &Outbox{chbook, beneficiary}
413 return self.chequeBook.Issue(self.beneficiary, amount)
466 beneficiary: beneficiary,
557 tally, err := self.session.Sent(self.beneficiary)
[all …]
H A Dapi.go46 func (self *Api) Issue(beneficiary common.Address, amount *big.Int) (cheque *Cheque, err error) {
51 return ch.Issue(beneficiary, amount)
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/core/
H A Devm.go41 var beneficiary common.Address
43 beneficiary, _ = chain.Engine().Author(header) // Ignore error, we're past header validation
45 beneficiary = *author
52 Coinbase: beneficiary,
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/core/
H A Devm.go41 beneficiary common.Address
47 beneficiary, _ = chain.Engine().Author(header) // Ignore error, we're past header validation
49 beneficiary = *author
58 Coinbase: beneficiary,
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/evmc/include/evmc/
H A Dmocked_host.hpp92 address beneficiary; member
97 return selfdestructed == other.selfdestructed && beneficiary == other.beneficiary; in operator ==()
264 void selfdestruct(const address& addr, const address& beneficiary) noexcept override in selfdestruct() argument
267 recorded_selfdestructs.push_back({addr, beneficiary}); in selfdestruct()
H A Devmc.hpp371 virtual void selfdestruct(const address& addr, const address& beneficiary) noexcept = 0;
451 void selfdestruct(const address& addr, const address& beneficiary) noexcept final in selfdestruct() argument
453 host->selfdestruct(context, &addr, &beneficiary); in selfdestruct()
691 const evmc_address* beneficiary) noexcept in selfdestruct() argument
693 Host::from_context(h)->selfdestruct(*addr, *beneficiary); in selfdestruct()
/dports/lang/solidity/solidity_0.8.11/test/evmc/
H A Dmocked_host.hpp101 address beneficiary; member
106 return selfdestructed == other.selfdestructed && beneficiary == other.beneficiary; in operator ==()
274 void selfdestruct(const address& addr, const address& beneficiary) noexcept override in selfdestruct() argument
277 recorded_selfdestructs.push_back({addr, beneficiary}); in selfdestruct()
H A Devmc.hpp451 virtual void selfdestruct(const address& addr, const address& beneficiary) noexcept = 0;
537 void selfdestruct(const address& addr, const address& beneficiary) noexcept final in selfdestruct() argument
539 host->selfdestruct(context, &addr, &beneficiary); in selfdestruct()
794 const evmc_address* beneficiary) noexcept in selfdestruct() argument
796 Host::from_context(h)->selfdestruct(*addr, *beneficiary); in selfdestruct()
/dports/lang/solidity/solidity_0.8.11/docs/examples/
H A Dblind-auction.rst22 the bidding period, the contract has to be called manually for the beneficiary
33 address payable public beneficiary;
69 /// beneficiary address `beneficiaryAddress`.
74 beneficiary = beneficiaryAddress;
134 /// to the beneficiary.
160 beneficiary.transfer(highestBid);
205 address payable public beneficiary;
249 beneficiary = beneficiaryAddress;
328 /// to the beneficiary.
336 beneficiary.transfer(highestBid);
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/mymoney/onlinetasks/sepa/
H A Dsepaonlinetransferimpl.cpp262 payeeIdentifiers::ibanBic beneficiary; in createFromXml() local
266 beneficiaryPtr = beneficiary.createFromXml(beneficiaryEl); in createFromXml()
270 task->_beneficiaryAccount = beneficiary; in createFromXml()
H A Dsepaonlinetransferimpl.h52 payeeIdentifier beneficiary() const final override { in beneficiary() function
/dports/www/py-protego/Protego-0.1.16/tests/test_data/
H A Dwww.capitalone.com2 Disallow: /assets/bank/media/beneficiary-form.pdf
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/plugins/onlinetasks/interfaces/tasks/
H A Dcredittransfer.h55 virtual payeeIdentifier beneficiary() const = 0;
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/evmc/examples/
H A Dexample_host.cpp129 void selfdestruct(const evmc::address& addr, const evmc::address& beneficiary) noexcept final in selfdestruct() argument
132 (void)beneficiary; in selfdestruct()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/test/unittests/libethereum/
H A DBlock.cpp85 block.setAuthor(genesisBlock.beneficiary()); in BOOST_AUTO_TEST_CASE()
223 BOOST_REQUIRE_EQUAL(topBlock.state().balance(topBlock.beneficiary()), 3 * ether); in BOOST_FIXTURE_TEST_SUITE()
238 BOOST_REQUIRE_EQUAL(topBlock.state().balance(topBlock.beneficiary()), 2 * ether); in BOOST_FIXTURE_TEST_SUITE()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/innodb/t/
H A Dinnodb_cats.test495 # 1. beneficiary obtains an S lock on row with id 0
501 # 2.5. victim waits for both beneficiary and too_big_to_fail because it tries
504 # 2.7. beneficiary->age increases, and victim rollbacks
522 --connect (beneficiary, localhost, root,,)
523 --echo # beneficiary:
525 # 1. beneficiary obtains an S lock on row with id 0
584 # 2.5. victim waits for both beneficiary and too_big_to_fail because it
588 # 2.7. beneficiary->age increases, and victim rollbacks
601 --connection beneficiary
608 --disconnect beneficiary
/dports/lang/solidity/solidity_0.8.11/test/compilationTests/corion/
H A Dschelling.sol399 function getRewards(address beneficiary) isReady noContract external {
403 …ionally there can be an address of a beneficiary added, which address the prize will be sent to. W…
406 @beneficiary Address of the beneficiary
412 if (beneficiary != address(0x00)) { _beneficiary = beneficiary; }
H A Dico.sol152 function getInterest(address beneficiary) external {
156 @beneficiary Beneficiary who will receive the interest
163 address _addr = beneficiary;
280 …Callback function. Simply calls the buy function as a beneficiary and there is no affiliate addres…
291 …ed for the purchase will be reduced by 0.2 and that will be sent to the address of the beneficiary.
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libweb3jsonrpc/
H A DAdminEth.cpp102 Address beneficiary; in admin_eth_allAccounts() local
108 if (address == beneficiary) in admin_eth_allAccounts()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libevm/
H A DExtVMFace.h233 virtual void selfdestruct(Address beneficiary) in selfdestruct() argument
235 (void)beneficiary; in selfdestruct()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/evmc/bindings/go/evmc/
H A Dhost_test.go45 func (host *testHostContext) Selfdestruct(addr common.Address, beneficiary common.Address) {
/dports/textproc/p5-Lingua-Ident/Lingua-Ident-1.7/samples/
H A Dsample.en15 children and keep their sense of humor. Hillary has been a beneficiary
/dports/lang/solidity/solidity_0.8.11/docs/types/
H A Dreference-types.rst553 address payable beneficiary;
563 … function newCampaign(address payable beneficiary, uint goal) public returns (uint campaignID) {
565 // We cannot use "campaigns[campaignID] = Campaign(beneficiary, goal, 0, 0)"
568 c.beneficiary = beneficiary;
587 c.beneficiary.transfer(amount);
613 were allowed and assignments like ``campaigns[campaignID] = Campaign(beneficiary, goal, 0, 0)``

12345678910>>...15