From 2513fd4deb3b7b19168730beed324495e01e11da Mon Sep 17 00:00:00 2001 From: sylvan Date: Thu, 29 Dec 2022 11:20:50 +0800 Subject: [PATCH] Feature: add internal contract for call tracer (#3) --- .gitignore | 3 +- Makefile | 3 +- accounts/abi/bind/bind_test.go | 276 +++++++++++++----- .../internaltransaction/contracts/.gitkeep | 0 .../internaltransaction/contracts/Ether.sol | 23 ++ .../internaltransaction/migrations/.gitkeep | 0 contracts/internaltransaction/test/.gitkeep | 0 .../internaltransaction/truffle-config.js | 141 +++++++++ 8 files changed, 364 insertions(+), 82 deletions(-) create mode 100644 contracts/internaltransaction/contracts/.gitkeep create mode 100644 contracts/internaltransaction/contracts/Ether.sol create mode 100644 contracts/internaltransaction/migrations/.gitkeep create mode 100644 contracts/internaltransaction/test/.gitkeep create mode 100644 contracts/internaltransaction/truffle-config.js diff --git a/.gitignore b/.gitignore index 1d21def9f897..7add02f1cf8a 100644 --- a/.gitignore +++ b/.gitignore @@ -54,5 +54,6 @@ geth-tutorial/ trace.out geth-trace.out audit.log -__debug_bin/ local +soljson-v0.8.17+commit.8df45f5f.js + diff --git a/Makefile b/Makefile index 133a1b802cc2..994bc4e73bff 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ GOBIN = ./build/bin GO ?= latest GORUN = env GO111MODULE=on go run +TEST_ARGS ?= "" geth: $(GORUN) build/ci.go install ./cmd/geth @@ -29,7 +30,7 @@ ios: @echo "Import \"$(GOBIN)/Geth.framework\" to use the library." test: all - $(GORUN) build/ci.go test + $(GORUN) build/ci.go test $(TEST_ARGS) format: $(GORUN) build/ci.go format diff --git a/accounts/abi/bind/bind_test.go b/accounts/abi/bind/bind_test.go index 5fa803849df6..a65c9b175ad1 100644 --- a/accounts/abi/bind/bind_test.go +++ b/accounts/abi/bind/bind_test.go @@ -20,6 +20,7 @@ import ( "fmt" "os" "os/exec" + "path" "path/filepath" "runtime" "strings" @@ -539,7 +540,7 @@ var bindTests = []struct { struct A { bytes32 B; } - + function F() public view returns (A[] memory a, uint256[] memory c, bool[] memory d) { A[] memory a = new A[](2); a[0].B = bytes32(uint256(1234) << 96); @@ -547,7 +548,7 @@ var bindTests = []struct { bool[] memory d; return (a, c, d); } - + function G() public view returns (A[] memory a) { A[] memory a = new A[](2); a[0].B = bytes32(uint256(1234) << 96); @@ -569,10 +570,10 @@ var bindTests = []struct { // Generate a new random account and a funded simulator key, _ := crypto.GenerateKey() auth, _ := bind.NewKeyedTransactorWithChainID(key, big.NewInt(1337)) - + sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000000000)}}, 10000000) defer sim.Close() - + // Deploy a structs method invoker contract and execute its default method _, _, structs, err := DeployStructs(auth, sim) if err != nil { @@ -737,7 +738,10 @@ var bindTests = []struct { } } `, []string{`6060604052346000575b6086806100176000396000f300606060405263ffffffff60e060020a60003504166349f8e98281146022575b6000565b34600057602c6055565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b335b905600a165627a7a72305820aef6b7685c0fa24ba6027e4870404a57df701473fe4107741805c19f5138417c0029`}, - []string{`[{"constant":true,"inputs":[],"name":"callFrom","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"}]`}, + []string{` + [{"constant":true,"inputs":[],"name":"callFrom","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"}] + `, + }, ` "math/big" @@ -1699,13 +1703,13 @@ var bindTests = []struct { `NewFallbacks`, ` pragma solidity >=0.6.0 <0.7.0; - + contract NewFallbacks { event Fallback(bytes data); fallback() external { emit Fallback(msg.data); } - + event Received(address addr, uint value); receive() external payable { emit Received(msg.sender, msg.value); @@ -1717,7 +1721,7 @@ var bindTests = []struct { ` "bytes" "math/big" - + "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/accounts/abi/bind/backends" "github.com/ethereum/go-ethereum/core" @@ -1726,22 +1730,22 @@ var bindTests = []struct { ` key, _ := crypto.GenerateKey() addr := crypto.PubkeyToAddress(key.PublicKey) - + sim := backends.NewSimulatedBackend(core.GenesisAlloc{addr: {Balance: big.NewInt(10000000000000000)}}, 1000000) defer sim.Close() - + opts, _ := bind.NewKeyedTransactorWithChainID(key, big.NewInt(1337)) _, _, c, err := DeployNewFallbacks(opts, sim) if err != nil { t.Fatalf("Failed to deploy contract: %v", err) } sim.Commit() - + // Test receive function opts.Value = big.NewInt(100) c.Receive(opts) sim.Commit() - + var gotEvent bool iter, _ := c.FilterReceived(nil) defer iter.Close() @@ -1758,14 +1762,14 @@ var bindTests = []struct { if !gotEvent { t.Fatal("Expect to receive event emitted by receive") } - + // Test fallback function gotEvent = false opts.Value = nil calldata := []byte{0x01, 0x02, 0x03} c.Fallback(opts, calldata) sim.Commit() - + iter2, _ := c.FilterFallback(nil) defer iter2.Close() for iter2.Next() { @@ -1860,7 +1864,7 @@ var bindTests = []struct { `NewErrors`, ` pragma solidity >0.8.4; - + contract NewErrors { error MyError(uint256); error MyError1(uint256); @@ -1875,7 +1879,7 @@ var bindTests = []struct { []string{`[{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"MyError","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"MyError1","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"MyError2","type":"error"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"},{"internalType":"uint256","name":"c","type":"uint256"}],"name":"MyError3","type":"error"},{"inputs":[],"name":"Error","outputs":[],"stateMutability":"pure","type":"function"}]`}, ` "math/big" - + "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/accounts/abi/bind/backends" "github.com/ethereum/go-ethereum/core" @@ -1889,7 +1893,7 @@ var bindTests = []struct { sim = backends.NewSimulatedBackend(core.GenesisAlloc{user.From: {Balance: big.NewInt(1000000000000000000)}}, ethconfig.Defaults.Miner.GasCeil) ) defer sim.Close() - + _, tx, contract, err := DeployNewErrors(user, sim) if err != nil { t.Fatal(err) @@ -1914,12 +1918,12 @@ var bindTests = []struct { name: `ConstructorWithStructParam`, contract: ` pragma solidity >=0.8.0 <0.9.0; - + contract ConstructorWithStructParam { struct StructType { uint256 field; } - + constructor(StructType memory st) {} } `, @@ -1947,7 +1951,7 @@ var bindTests = []struct { t.Fatalf("DeployConstructorWithStructParam() got err %v; want nil err", err) } sim.Commit() - + if _, err = bind.WaitDeployed(nil, sim, tx); err != nil { t.Logf("Deployment tx: %+v", tx) t.Errorf("bind.WaitDeployed(nil, %T, ) got err %v; want nil err", sim, err) @@ -1995,7 +1999,7 @@ var bindTests = []struct { t.Fatalf("DeployNameConflict() got err %v; want nil err", err) } sim.Commit() - + if _, err = bind.WaitDeployed(nil, sim, tx); err != nil { t.Logf("Deployment tx: %+v", tx) t.Errorf("bind.WaitDeployed(nil, %T, ) got err %v; want nil err", sim, err) @@ -2039,6 +2043,118 @@ var bindTests = []struct { } `, }, + // Test bind with internal transaction + { + "InternalTransaction", + ` + // SPDX-License-Identifier: MIT + pragma solidity ^0.8.17; + + contract SendEther { + address payable private _payableReceiver; + bool private _payble; + + event PayableReceiver(address payable indexed payableReceiver); + + function sendViaSend(address payable _to) public payable { + // Send returns a boolean value indicating success or failure. + // This function is not recommended for sending Ether. + bool sent = _to.send(msg.value / 2); + require(sent, "Failed to send Ether"); + if (_payble) { + bool sendBack = _payableReceiver.send(msg.value / 2); + require(sendBack, "Failed to send Ether to last caller"); + } + _payableReceiver = _to; + _payble = true; + emit PayableReceiver(_payableReceiver); + } + } + `, + []string{`608060405234801561001057600080fd5b50610482806100206000396000f3fe60806040526004361061001e5760003560e01c806374be480614610023575b600080fd5b61003d600480360381019061003891906102a6565b61003f565b005b60008173ffffffffffffffffffffffffffffffffffffffff166108fc600234610068919061030c565b9081150290604051600060405180830381858888f193505050509050806100c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100bb9061039a565b60405180910390fd5b600060149054906101000a900460ff16156101815760008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600234610123919061030c565b9081150290604051600060405180830381858888f1935050505090508061017f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101769061042c565b60405180910390fd5b505b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600060146101000a81548160ff02191690831515021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe38bfb4c48fbc55ba234e5160b339e3df541af75d181a209e1fcb1a2e87a41da60405160405180910390a25050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061027382610248565b9050919050565b61028381610268565b811461028e57600080fd5b50565b6000813590506102a08161027a565b92915050565b6000602082840312156102bc576102bb610243565b5b60006102ca84828501610291565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610317826102d3565b9150610322836102d3565b925082610332576103316102dd565b5b828204905092915050565b600082825260208201905092915050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b600061038460148361033d565b915061038f8261034e565b602082019050919050565b600060208201905081810360008301526103b381610377565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f206c6173742063616c60008201527f6c65720000000000000000000000000000000000000000000000000000000000602082015250565b600061041660238361033d565b9150610421826103ba565b604082019050919050565b6000602082019050818103600083015261044581610409565b905091905056fea264697066735822122084dd753928b50f1ed62e69a35acc1e28c20767e3139b6cf23f572d60a6c114a864736f6c63430008110033`}, + []string{` + [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address payable", + "name": "payableReceiver", + "type": "address" + } + ], + "name": "PayableReceiver", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_to", + "type": "address" + } + ], + "name": "sendViaSend", + "outputs": [], + "stateMutability": "payable", + "type": "function" + } + ] + `, + }, + ` + "math/big" + + "github.com/ethereum/go-ethereum/accounts/abi/bind" + "github.com/ethereum/go-ethereum/accounts/abi/bind/backends" + "github.com/ethereum/go-ethereum/core" + "github.com/ethereum/go-ethereum/crypto" + `, + ` + // Generate a new random account and a funded simulator + key, _ := crypto.GenerateKey() + auth, _ := bind.NewKeyedTransactorWithChainID(key, big.NewInt(1337)) + + receivers := []*bind.TransactOpts{} + + for i := 0; i < 2; i++ { + // Generate a new random account and a funded simulator + k, _ := crypto.GenerateKey() + receiver, _ := bind.NewKeyedTransactorWithChainID(k, big.NewInt(1337)) + receivers = append(receivers, receiver) + } + + sim := backends.NewSimulatedBackend(core.GenesisAlloc{auth.From: {Balance: big.NewInt(10000000000000000)}}, 10000000) + defer sim.Close() + + // Deploy a structs method invoker contract and execute its default method + _, _, structs, err := DeployInternalTransaction(auth, sim) + if err != nil { + t.Fatalf("Failed to deploy defaulter contract: %v", err) + } + sim.Commit() + for _, receiver := range receivers { + opts := &bind.TransactOpts{From: auth.From, Value: big.NewInt(100000000000000), Signer: auth.Signer} + if _, err := structs.SendViaSend(opts, receiver.From); err != nil { + t.Fatalf("Failed to invoke SendViaSend method: %v", err) + } + } + `, + nil, + nil, + nil, + nil, + }, +} + +func getRuntimePackagePath(rootStep int) string { + _, filename, _, _ := runtime.Caller(1) + rootPath := filename + for i := 0; i < rootStep; i++ { + rootPath = path.Dir(rootPath) + } + return rootPath } // Tests that packages generated by the binder can be successfully compiled and @@ -2050,9 +2166,9 @@ func TestGolangBindings(t *testing.T) { t.Skip("go sdk not found for testing") } // Create a temporary workspace for the test suite - ws := t.TempDir() - + ws := filepath.Join(getRuntimePackagePath(4), "local") // for local debug pkg := filepath.Join(ws, "bindtest") + os.RemoveAll(pkg) if err := os.MkdirAll(pkg, 0700); err != nil { t.Fatalf("failed to create package: %v", err) } @@ -2180,7 +2296,7 @@ import java.util.*; public class Test { // ABI is the input ABI used to generate the binding from. public final static String ABI = "[{\"constant\":false,\"inputs\":[{\"name\":\"u16\",\"type\":\"uint16\"}],\"name\":\"setUint16\",\"outputs\":[{\"name\":\"\",\"type\":\"uint16\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"b_a\",\"type\":\"bool[2]\"}],\"name\":\"setBoolArray\",\"outputs\":[{\"name\":\"\",\"type\":\"bool[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"a_a\",\"type\":\"address[2]\"}],\"name\":\"setAddressArray\",\"outputs\":[{\"name\":\"\",\"type\":\"address[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"bs_l\",\"type\":\"bytes[]\"}],\"name\":\"setBytesList\",\"outputs\":[{\"name\":\"\",\"type\":\"bytes[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u8\",\"type\":\"uint8\"}],\"name\":\"setUint8\",\"outputs\":[{\"name\":\"\",\"type\":\"uint8\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u32\",\"type\":\"uint32\"}],\"name\":\"setUint32\",\"outputs\":[{\"name\":\"\",\"type\":\"uint32\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"b\",\"type\":\"bool\"}],\"name\":\"setBool\",\"outputs\":[{\"name\":\"\",\"type\":\"bool\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i256_l\",\"type\":\"int256[]\"}],\"name\":\"setInt256List\",\"outputs\":[{\"name\":\"\",\"type\":\"int256[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u256_a\",\"type\":\"uint256[2]\"}],\"name\":\"setUint256Array\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"b_l\",\"type\":\"bool[]\"}],\"name\":\"setBoolList\",\"outputs\":[{\"name\":\"\",\"type\":\"bool[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"bs_a\",\"type\":\"bytes[2]\"}],\"name\":\"setBytesArray\",\"outputs\":[{\"name\":\"\",\"type\":\"bytes[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"a_l\",\"type\":\"address[]\"}],\"name\":\"setAddressList\",\"outputs\":[{\"name\":\"\",\"type\":\"address[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i256_a\",\"type\":\"int256[2]\"}],\"name\":\"setInt256Array\",\"outputs\":[{\"name\":\"\",\"type\":\"int256[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"s_a\",\"type\":\"string[2]\"}],\"name\":\"setStringArray\",\"outputs\":[{\"name\":\"\",\"type\":\"string[2]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"s\",\"type\":\"string\"}],\"name\":\"setString\",\"outputs\":[{\"name\":\"\",\"type\":\"string\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u64\",\"type\":\"uint64\"}],\"name\":\"setUint64\",\"outputs\":[{\"name\":\"\",\"type\":\"uint64\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i16\",\"type\":\"int16\"}],\"name\":\"setInt16\",\"outputs\":[{\"name\":\"\",\"type\":\"int16\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i8\",\"type\":\"int8\"}],\"name\":\"setInt8\",\"outputs\":[{\"name\":\"\",\"type\":\"int8\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u256_l\",\"type\":\"uint256[]\"}],\"name\":\"setUint256List\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i256\",\"type\":\"int256\"}],\"name\":\"setInt256\",\"outputs\":[{\"name\":\"\",\"type\":\"int256\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i32\",\"type\":\"int32\"}],\"name\":\"setInt32\",\"outputs\":[{\"name\":\"\",\"type\":\"int32\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"b32\",\"type\":\"bytes32\"}],\"name\":\"setBytes32\",\"outputs\":[{\"name\":\"\",\"type\":\"bytes32\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"s_l\",\"type\":\"string[]\"}],\"name\":\"setStringList\",\"outputs\":[{\"name\":\"\",\"type\":\"string[]\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"u256\",\"type\":\"uint256\"}],\"name\":\"setUint256\",\"outputs\":[{\"name\":\"\",\"type\":\"uint256\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"bs\",\"type\":\"bytes\"}],\"name\":\"setBytes\",\"outputs\":[{\"name\":\"\",\"type\":\"bytes\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"a\",\"type\":\"address\"}],\"name\":\"setAddress\",\"outputs\":[{\"name\":\"\",\"type\":\"address\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"i64\",\"type\":\"int64\"}],\"name\":\"setInt64\",\"outputs\":[{\"name\":\"\",\"type\":\"int64\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"constant\":false,\"inputs\":[{\"name\":\"b1\",\"type\":\"bytes1\"}],\"name\":\"setBytes1\",\"outputs\":[{\"name\":\"\",\"type\":\"bytes1\"}],\"payable\":false,\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]"; - + // BYTECODE is the compiled bytecode used for deploying new contracts. public final static String BYTECODE = "0x608060405234801561001057600080fd5b5061265a806100206000396000f3fe608060405234801561001057600080fd5b50600436106101e1576000357c0100000000000000000000000000000000000000000000000000000000900480637fcaf66611610116578063c2b12a73116100b4578063da359dc81161008e578063da359dc814610666578063e30081a014610696578063e673eb32146106c6578063fba1a1c3146106f6576101e1565b8063c2b12a73146105d6578063c577796114610606578063d2282dc514610636576101e1565b80639a19a953116100f05780639a19a95314610516578063a0709e1914610546578063a53b1c1e14610576578063b7d5df31146105a6576101e1565b80637fcaf66614610486578063822cba69146104b657806386114cea146104e6576101e1565b806322722302116101835780635119655d1161015d5780635119655d146103c65780635be6b37e146103f65780636aa482fc146104265780637173b69514610456576101e1565b806322722302146103365780632766a755146103665780634d5ee6da14610396576101e1565b806316c105e2116101bf57806316c105e2146102765780631774e646146102a65780631c9352e2146102d65780631e26fd3314610306576101e1565b80630477988a146101e6578063118a971814610216578063151f547114610246575b600080fd5b61020060048036036101fb9190810190611599565b610726565b60405161020d9190611f01565b60405180910390f35b610230600480360361022b919081019061118d565b61072d565b60405161023d9190611ca6565b60405180910390f35b610260600480360361025b9190810190611123565b61073a565b60405161026d9190611c69565b60405180910390f35b610290600480360361028b9190810190611238565b610747565b60405161029d9190611d05565b60405180910390f35b6102c060048036036102bb919081019061163d565b61074e565b6040516102cd9190611f6d565b60405180910390f35b6102f060048036036102eb91908101906115eb565b610755565b6040516102fd9190611f37565b60405180910390f35b610320600480360361031b91908101906113cf565b61075c565b60405161032d9190611de5565b60405180910390f35b610350600480360361034b91908101906112a2565b610763565b60405161035d9190611d42565b60405180910390f35b610380600480360361037b9190810190611365565b61076a565b60405161038d9190611da8565b60405180910390f35b6103b060048036036103ab91908101906111b6565b610777565b6040516103bd9190611cc1565b60405180910390f35b6103e060048036036103db91908101906111f7565b61077e565b6040516103ed9190611ce3565b60405180910390f35b610410600480360361040b919081019061114c565b61078b565b60405161041d9190611c84565b60405180910390f35b610440600480360361043b9190810190611279565b610792565b60405161044d9190611d27565b60405180910390f35b610470600480360361046b91908101906112e3565b61079f565b60405161047d9190611d64565b60405180910390f35b6104a0600480360361049b9190810190611558565b6107ac565b6040516104ad9190611edf565b60405180910390f35b6104d060048036036104cb9190810190611614565b6107b3565b6040516104dd9190611f52565b60405180910390f35b61050060048036036104fb919081019061148b565b6107ba565b60405161050d9190611e58565b60405180910390f35b610530600480360361052b919081019061152f565b6107c1565b60405161053d9190611ec4565b60405180910390f35b610560600480360361055b919081019061138e565b6107c8565b60405161056d9190611dc3565b60405180910390f35b610590600480360361058b91908101906114b4565b6107cf565b60405161059d9190611e73565b60405180910390f35b6105c060048036036105bb91908101906114dd565b6107d6565b6040516105cd9190611e8e565b60405180910390f35b6105f060048036036105eb9190810190611421565b6107dd565b6040516105fd9190611e1b565b60405180910390f35b610620600480360361061b9190810190611324565b6107e4565b60405161062d9190611d86565b60405180910390f35b610650600480360361064b91908101906115c2565b6107eb565b60405161065d9190611f1c565b60405180910390f35b610680600480360361067b919081019061144a565b6107f2565b60405161068d9190611e36565b60405180910390f35b6106b060048036036106ab91908101906110fa565b6107f9565b6040516106bd9190611c4e565b60405180910390f35b6106e060048036036106db9190810190611506565b610800565b6040516106ed9190611ea9565b60405180910390f35b610710600480360361070b91908101906113f8565b610807565b60405161071d9190611e00565b60405180910390f35b6000919050565b61073561080e565b919050565b610742610830565b919050565b6060919050565b6000919050565b6000919050565b6000919050565b6060919050565b610772610852565b919050565b6060919050565b610786610874565b919050565b6060919050565b61079a61089b565b919050565b6107a76108bd565b919050565b6060919050565b6000919050565b6000919050565b6000919050565b6060919050565b6000919050565b6000919050565b6000919050565b6060919050565b6000919050565b6060919050565b6000919050565b6000919050565b6000919050565b6040805190810160405280600290602082028038833980820191505090505090565b6040805190810160405280600290602082028038833980820191505090505090565b6040805190810160405280600290602082028038833980820191505090505090565b60408051908101604052806002905b60608152602001906001900390816108835790505090565b6040805190810160405280600290602082028038833980820191505090505090565b60408051908101604052806002905b60608152602001906001900390816108cc5790505090565b60006108f082356124f2565b905092915050565b600082601f830112151561090b57600080fd5b600261091e61091982611fb5565b611f88565b9150818385602084028201111561093457600080fd5b60005b83811015610964578161094a88826108e4565b845260208401935060208301925050600181019050610937565b5050505092915050565b600082601f830112151561098157600080fd5b813561099461098f82611fd7565b611f88565b915081818352602084019350602081019050838560208402820111156109b957600080fd5b60005b838110156109e957816109cf88826108e4565b8452602084019350602083019250506001810190506109bc565b5050505092915050565b600082601f8301121515610a0657600080fd5b6002610a19610a1482611fff565b611f88565b91508183856020840282011115610a2f57600080fd5b60005b83811015610a5f5781610a458882610e9e565b845260208401935060208301925050600181019050610a32565b5050505092915050565b600082601f8301121515610a7c57600080fd5b8135610a8f610a8a82612021565b611f88565b91508181835260208401935060208101905083856020840282011115610ab457600080fd5b60005b83811015610ae45781610aca8882610e9e565b845260208401935060208301925050600181019050610ab7565b5050505092915050565b600082601f8301121515610b0157600080fd5b6002610b14610b0f82612049565b611f88565b9150818360005b83811015610b4b5781358601610b318882610eda565b845260208401935060208301925050600181019050610b1b565b5050505092915050565b600082601f8301121515610b6857600080fd5b8135610b7b610b768261206b565b611f88565b9150818183526020840193506020810190508360005b83811015610bc15781358601610ba78882610eda565b845260208401935060208301925050600181019050610b91565b5050505092915050565b600082601f8301121515610bde57600080fd5b6002610bf1610bec82612093565b611f88565b91508183856020840282011115610c0757600080fd5b60005b83811015610c375781610c1d8882610f9a565b845260208401935060208301925050600181019050610c0a565b5050505092915050565b600082601f8301121515610c5457600080fd5b8135610c67610c62826120b5565b611f88565b91508181835260208401935060208101905083856020840282011115610c8c57600080fd5b60005b83811015610cbc5781610ca28882610f9a565b845260208401935060208301925050600181019050610c8f565b5050505092915050565b600082601f8301121515610cd957600080fd5b6002610cec610ce7826120dd565b611f88565b9150818360005b83811015610d235781358601610d098882610fea565b845260208401935060208301925050600181019050610cf3565b5050505092915050565b600082601f8301121515610d4057600080fd5b8135610d53610d4e826120ff565b611f88565b9150818183526020840193506020810190508360005b83811015610d995781358601610d7f8882610fea565b845260208401935060208301925050600181019050610d69565b5050505092915050565b600082601f8301121515610db657600080fd5b6002610dc9610dc482612127565b611f88565b91508183856020840282011115610ddf57600080fd5b60005b83811015610e0f5781610df588826110aa565b845260208401935060208301925050600181019050610de2565b5050505092915050565b600082601f8301121515610e2c57600080fd5b8135610e3f610e3a82612149565b611f88565b91508181835260208401935060208101905083856020840282011115610e6457600080fd5b60005b83811015610e945781610e7a88826110aa565b845260208401935060208301925050600181019050610e67565b5050505092915050565b6000610eaa8235612504565b905092915050565b6000610ebe8235612510565b905092915050565b6000610ed2823561253c565b905092915050565b600082601f8301121515610eed57600080fd5b8135610f00610efb82612171565b611f88565b91508082526020830160208301858383011115610f1c57600080fd5b610f278382846125cd565b50505092915050565b600082601f8301121515610f4357600080fd5b8135610f56610f518261219d565b611f88565b91508082526020830160208301858383011115610f7257600080fd5b610f7d8382846125cd565b50505092915050565b6000610f928235612546565b905092915050565b6000610fa68235612553565b905092915050565b6000610fba823561255d565b905092915050565b6000610fce823561256a565b905092915050565b6000610fe28235612577565b905092915050565b600082601f8301121515610ffd57600080fd5b813561101061100b826121c9565b611f88565b9150808252602083016020830185838301111561102c57600080fd5b6110378382846125cd565b50505092915050565b600082601f830112151561105357600080fd5b8135611066611061826121f5565b611f88565b9150808252602083016020830185838301111561108257600080fd5b61108d8382846125cd565b50505092915050565b60006110a28235612584565b905092915050565b60006110b68235612592565b905092915050565b60006110ca823561259c565b905092915050565b60006110de82356125ac565b905092915050565b60006110f282356125c0565b905092915050565b60006020828403121561110c57600080fd5b600061111a848285016108e4565b91505092915050565b60006040828403121561113557600080fd5b6000611143848285016108f8565b91505092915050565b60006020828403121561115e57600080fd5b600082013567ffffffffffffffff81111561117857600080fd5b6111848482850161096e565b91505092915050565b60006040828403121561119f57600080fd5b60006111ad848285016109f3565b91505092915050565b6000602082840312156111c857600080fd5b600082013567ffffffffffffffff8111156111e257600080fd5b6111ee84828501610a69565b91505092915050565b60006020828403121561120957600080fd5b600082013567ffffffffffffffff81111561122357600080fd5b61122f84828501610aee565b91505092915050565b60006020828403121561124a57600080fd5b600082013567ffffffffffffffff81111561126457600080fd5b61127084828501610b55565b91505092915050565b60006040828403121561128b57600080fd5b600061129984828501610bcb565b91505092915050565b6000602082840312156112b457600080fd5b600082013567ffffffffffffffff8111156112ce57600080fd5b6112da84828501610c41565b91505092915050565b6000602082840312156112f557600080fd5b600082013567ffffffffffffffff81111561130f57600080fd5b61131b84828501610cc6565b91505092915050565b60006020828403121561133657600080fd5b600082013567ffffffffffffffff81111561135057600080fd5b61135c84828501610d2d565b91505092915050565b60006040828403121561137757600080fd5b600061138584828501610da3565b91505092915050565b6000602082840312156113a057600080fd5b600082013567ffffffffffffffff8111156113ba57600080fd5b6113c684828501610e19565b91505092915050565b6000602082840312156113e157600080fd5b60006113ef84828501610e9e565b91505092915050565b60006020828403121561140a57600080fd5b600061141884828501610eb2565b91505092915050565b60006020828403121561143357600080fd5b600061144184828501610ec6565b91505092915050565b60006020828403121561145c57600080fd5b600082013567ffffffffffffffff81111561147657600080fd5b61148284828501610f30565b91505092915050565b60006020828403121561149d57600080fd5b60006114ab84828501610f86565b91505092915050565b6000602082840312156114c657600080fd5b60006114d484828501610f9a565b91505092915050565b6000602082840312156114ef57600080fd5b60006114fd84828501610fae565b91505092915050565b60006020828403121561151857600080fd5b600061152684828501610fc2565b91505092915050565b60006020828403121561154157600080fd5b600061154f84828501610fd6565b91505092915050565b60006020828403121561156a57600080fd5b600082013567ffffffffffffffff81111561158457600080fd5b61159084828501611040565b91505092915050565b6000602082840312156115ab57600080fd5b60006115b984828501611096565b91505092915050565b6000602082840312156115d457600080fd5b60006115e2848285016110aa565b91505092915050565b6000602082840312156115fd57600080fd5b600061160b848285016110be565b91505092915050565b60006020828403121561162657600080fd5b6000611634848285016110d2565b91505092915050565b60006020828403121561164f57600080fd5b600061165d848285016110e6565b91505092915050565b61166f816123f7565b82525050565b61167e816122ab565b61168782612221565b60005b828110156116b95761169d858351611666565b6116a68261235b565b915060208501945060018101905061168a565b5050505050565b60006116cb826122b6565b8084526020840193506116dd8361222b565b60005b8281101561170f576116f3868351611666565b6116fc82612368565b91506020860195506001810190506116e0565b50849250505092915050565b611724816122c1565b61172d82612238565b60005b8281101561175f57611743858351611ab3565b61174c82612375565b9150602085019450600181019050611730565b5050505050565b6000611771826122cc565b80845260208401935061178383612242565b60005b828110156117b557611799868351611ab3565b6117a282612382565b9150602086019550600181019050611786565b50849250505092915050565b60006117cc826122d7565b836020820285016117dc8561224f565b60005b848110156118155783830388526117f7838351611b16565b92506118028261238f565b91506020880197506001810190506117df565b508196508694505050505092915050565b6000611831826122e2565b8084526020840193508360208202850161184a85612259565b60005b84811015611883578383038852611865838351611b16565b92506118708261239c565b915060208801975060018101905061184d565b508196508694505050505092915050565b61189d816122ed565b6118a682612266565b60005b828110156118d8576118bc858351611b5b565b6118c5826123a9565b91506020850194506001810190506118a9565b5050505050565b60006118ea826122f8565b8084526020840193506118fc83612270565b60005b8281101561192e57611912868351611b5b565b61191b826123b6565b91506020860195506001810190506118ff565b50849250505092915050565b600061194582612303565b836020820285016119558561227d565b60005b8481101561198e578383038852611970838351611bcd565b925061197b826123c3565b9150602088019750600181019050611958565b508196508694505050505092915050565b60006119aa8261230e565b808452602084019350836020820285016119c385612287565b60005b848110156119fc5783830388526119de838351611bcd565b92506119e9826123d0565b91506020880197506001810190506119c6565b508196508694505050505092915050565b611a1681612319565b611a1f82612294565b60005b82811015611a5157611a35858351611c12565b611a3e826123dd565b9150602085019450600181019050611a22565b5050505050565b6000611a6382612324565b808452602084019350611a758361229e565b60005b82811015611aa757611a8b868351611c12565b611a94826123ea565b9150602086019550600181019050611a78565b50849250505092915050565b611abc81612409565b82525050565b611acb81612415565b82525050565b611ada81612441565b82525050565b6000611aeb8261233a565b808452611aff8160208601602086016125dc565b611b088161260f565b602085010191505092915050565b6000611b218261232f565b808452611b358160208601602086016125dc565b611b3e8161260f565b602085010191505092915050565b611b558161244b565b82525050565b611b6481612458565b82525050565b611b7381612462565b82525050565b611b828161246f565b82525050565b611b918161247c565b82525050565b6000611ba282612350565b808452611bb68160208601602086016125dc565b611bbf8161260f565b602085010191505092915050565b6000611bd882612345565b808452611bec8160208601602086016125dc565b611bf58161260f565b602085010191505092915050565b611c0c81612489565b82525050565b611c1b816124b7565b82525050565b611c2a816124c1565b82525050565b611c39816124d1565b82525050565b611c48816124e5565b82525050565b6000602082019050611c636000830184611666565b92915050565b6000604082019050611c7e6000830184611675565b92915050565b60006020820190508181036000830152611c9e81846116c0565b905092915050565b6000604082019050611cbb600083018461171b565b92915050565b60006020820190508181036000830152611cdb8184611766565b905092915050565b60006020820190508181036000830152611cfd81846117c1565b905092915050565b60006020820190508181036000830152611d1f8184611826565b905092915050565b6000604082019050611d3c6000830184611894565b92915050565b60006020820190508181036000830152611d5c81846118df565b905092915050565b60006020820190508181036000830152611d7e818461193a565b905092915050565b60006020820190508181036000830152611da0818461199f565b905092915050565b6000604082019050611dbd6000830184611a0d565b92915050565b60006020820190508181036000830152611ddd8184611a58565b905092915050565b6000602082019050611dfa6000830184611ab3565b92915050565b6000602082019050611e156000830184611ac2565b92915050565b6000602082019050611e306000830184611ad1565b92915050565b60006020820190508181036000830152611e508184611ae0565b905092915050565b6000602082019050611e6d6000830184611b4c565b92915050565b6000602082019050611e886000830184611b5b565b92915050565b6000602082019050611ea36000830184611b6a565b92915050565b6000602082019050611ebe6000830184611b79565b92915050565b6000602082019050611ed96000830184611b88565b92915050565b60006020820190508181036000830152611ef98184611b97565b905092915050565b6000602082019050611f166000830184611c03565b92915050565b6000602082019050611f316000830184611c12565b92915050565b6000602082019050611f4c6000830184611c21565b92915050565b6000602082019050611f676000830184611c30565b92915050565b6000602082019050611f826000830184611c3f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715611fab57600080fd5b8060405250919050565b600067ffffffffffffffff821115611fcc57600080fd5b602082029050919050565b600067ffffffffffffffff821115611fee57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561201657600080fd5b602082029050919050565b600067ffffffffffffffff82111561203857600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561206057600080fd5b602082029050919050565b600067ffffffffffffffff82111561208257600080fd5b602082029050602081019050919050565b600067ffffffffffffffff8211156120aa57600080fd5b602082029050919050565b600067ffffffffffffffff8211156120cc57600080fd5b602082029050602081019050919050565b600067ffffffffffffffff8211156120f457600080fd5b602082029050919050565b600067ffffffffffffffff82111561211657600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561213e57600080fd5b602082029050919050565b600067ffffffffffffffff82111561216057600080fd5b602082029050602081019050919050565b600067ffffffffffffffff82111561218857600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156121b457600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156121e057600080fd5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561220c57600080fd5b601f19601f8301169050602081019050919050565b6000819050919050565b6000602082019050919050565b6000819050919050565b6000602082019050919050565b6000819050919050565b6000602082019050919050565b6000819050919050565b6000602082019050919050565b6000819050919050565b6000602082019050919050565b6000819050919050565b6000602082019050919050565b600060029050919050565b600081519050919050565b600060029050919050565b600081519050919050565b600060029050919050565b600081519050919050565b600060029050919050565b600081519050919050565b600060029050919050565b600081519050919050565b600060029050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600061240282612497565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b60008160010b9050919050565b6000819050919050565b60008160030b9050919050565b60008160070b9050919050565b60008160000b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b60006124fd82612497565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b60008160010b9050919050565b6000819050919050565b60008160030b9050919050565b60008160070b9050919050565b60008160000b9050919050565b600061ffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156125fa5780820151818401526020810190506125df565b83811115612609576000848401525b50505050565b6000601f19601f830116905091905056fea265627a7a723058206fe37171cf1b10ebd291cfdca61d67e7fc3c208795e999c833c42a14d86cf00d6c6578706572696d656e74616cf50037"; @@ -2197,7 +2313,7 @@ public class Test { this.Deployer = deployment.getDeployer(); this.Contract = deployment; } - + // Ethereum address where this contract is located at. public final Address Address; @@ -2218,277 +2334,277 @@ public class Test { public Transaction setAddress(TransactOpts opts, Address a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setAddress(a);args.set(0,arg0); - + return this.Contract.transact(opts, "setAddress" , args); } - + // setAddressArray is a paid mutator transaction binding the contract method 0x151f5471. // // Solidity: function setAddressArray(address[2] a_a) returns(address[2]) public Transaction setAddressArray(TransactOpts opts, Addresses a_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setAddresses(a_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setAddressArray" , args); } - + // setAddressList is a paid mutator transaction binding the contract method 0x5be6b37e. // // Solidity: function setAddressList(address[] a_l) returns(address[]) public Transaction setAddressList(TransactOpts opts, Addresses a_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setAddresses(a_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setAddressList" , args); } - + // setBool is a paid mutator transaction binding the contract method 0x1e26fd33. // // Solidity: function setBool(bool b) returns(bool) public Transaction setBool(TransactOpts opts, boolean b) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBool(b);args.set(0,arg0); - + return this.Contract.transact(opts, "setBool" , args); } - + // setBoolArray is a paid mutator transaction binding the contract method 0x118a9718. // // Solidity: function setBoolArray(bool[2] b_a) returns(bool[2]) public Transaction setBoolArray(TransactOpts opts, Bools b_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBools(b_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setBoolArray" , args); } - + // setBoolList is a paid mutator transaction binding the contract method 0x4d5ee6da. // // Solidity: function setBoolList(bool[] b_l) returns(bool[]) public Transaction setBoolList(TransactOpts opts, Bools b_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBools(b_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setBoolList" , args); } - + // setBytes is a paid mutator transaction binding the contract method 0xda359dc8. // // Solidity: function setBytes(bytes bs) returns(bytes) public Transaction setBytes(TransactOpts opts, byte[] bs) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBinary(bs);args.set(0,arg0); - + return this.Contract.transact(opts, "setBytes" , args); } - + // setBytes1 is a paid mutator transaction binding the contract method 0xfba1a1c3. // // Solidity: function setBytes1(bytes1 b1) returns(bytes1) public Transaction setBytes1(TransactOpts opts, byte[] b1) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBinary(b1);args.set(0,arg0); - + return this.Contract.transact(opts, "setBytes1" , args); } - + // setBytes32 is a paid mutator transaction binding the contract method 0xc2b12a73. // // Solidity: function setBytes32(bytes32 b32) returns(bytes32) public Transaction setBytes32(TransactOpts opts, byte[] b32) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBinary(b32);args.set(0,arg0); - + return this.Contract.transact(opts, "setBytes32" , args); } - + // setBytesArray is a paid mutator transaction binding the contract method 0x5119655d. // // Solidity: function setBytesArray(bytes[2] bs_a) returns(bytes[2]) public Transaction setBytesArray(TransactOpts opts, Binaries bs_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBinaries(bs_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setBytesArray" , args); } - + // setBytesList is a paid mutator transaction binding the contract method 0x16c105e2. // // Solidity: function setBytesList(bytes[] bs_l) returns(bytes[]) public Transaction setBytesList(TransactOpts opts, Binaries bs_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBinaries(bs_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setBytesList" , args); } - + // setInt16 is a paid mutator transaction binding the contract method 0x86114cea. // // Solidity: function setInt16(int16 i16) returns(int16) public Transaction setInt16(TransactOpts opts, short i16) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setInt16(i16);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt16" , args); } - + // setInt256 is a paid mutator transaction binding the contract method 0xa53b1c1e. // // Solidity: function setInt256(int256 i256) returns(int256) public Transaction setInt256(TransactOpts opts, BigInt i256) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInt(i256);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt256" , args); } - + // setInt256Array is a paid mutator transaction binding the contract method 0x6aa482fc. // // Solidity: function setInt256Array(int256[2] i256_a) returns(int256[2]) public Transaction setInt256Array(TransactOpts opts, BigInts i256_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInts(i256_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt256Array" , args); } - + // setInt256List is a paid mutator transaction binding the contract method 0x22722302. // // Solidity: function setInt256List(int256[] i256_l) returns(int256[]) public Transaction setInt256List(TransactOpts opts, BigInts i256_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInts(i256_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt256List" , args); } - + // setInt32 is a paid mutator transaction binding the contract method 0xb7d5df31. // // Solidity: function setInt32(int32 i32) returns(int32) public Transaction setInt32(TransactOpts opts, int i32) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setInt32(i32);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt32" , args); } - + // setInt64 is a paid mutator transaction binding the contract method 0xe673eb32. // // Solidity: function setInt64(int64 i64) returns(int64) public Transaction setInt64(TransactOpts opts, long i64) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setInt64(i64);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt64" , args); } - + // setInt8 is a paid mutator transaction binding the contract method 0x9a19a953. // // Solidity: function setInt8(int8 i8) returns(int8) public Transaction setInt8(TransactOpts opts, byte i8) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setInt8(i8);args.set(0,arg0); - + return this.Contract.transact(opts, "setInt8" , args); } - + // setString is a paid mutator transaction binding the contract method 0x7fcaf666. // // Solidity: function setString(string s) returns(string) public Transaction setString(TransactOpts opts, String s) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setString(s);args.set(0,arg0); - + return this.Contract.transact(opts, "setString" , args); } - + // setStringArray is a paid mutator transaction binding the contract method 0x7173b695. // // Solidity: function setStringArray(string[2] s_a) returns(string[2]) public Transaction setStringArray(TransactOpts opts, Strings s_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setStrings(s_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setStringArray" , args); } - + // setStringList is a paid mutator transaction binding the contract method 0xc5777961. // // Solidity: function setStringList(string[] s_l) returns(string[]) public Transaction setStringList(TransactOpts opts, Strings s_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setStrings(s_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setStringList" , args); } - + // setUint16 is a paid mutator transaction binding the contract method 0x0477988a. // // Solidity: function setUint16(uint16 u16) returns(uint16) public Transaction setUint16(TransactOpts opts, BigInt u16) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setUint16(u16);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint16" , args); } - + // setUint256 is a paid mutator transaction binding the contract method 0xd2282dc5. // // Solidity: function setUint256(uint256 u256) returns(uint256) public Transaction setUint256(TransactOpts opts, BigInt u256) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInt(u256);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint256" , args); } - + // setUint256Array is a paid mutator transaction binding the contract method 0x2766a755. // // Solidity: function setUint256Array(uint256[2] u256_a) returns(uint256[2]) public Transaction setUint256Array(TransactOpts opts, BigInts u256_a) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInts(u256_a);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint256Array" , args); } - + // setUint256List is a paid mutator transaction binding the contract method 0xa0709e19. // // Solidity: function setUint256List(uint256[] u256_l) returns(uint256[]) public Transaction setUint256List(TransactOpts opts, BigInts u256_l) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setBigInts(u256_l);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint256List" , args); } - + // setUint32 is a paid mutator transaction binding the contract method 0x1c9352e2. // // Solidity: function setUint32(uint32 u32) returns(uint32) public Transaction setUint32(TransactOpts opts, BigInt u32) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setUint32(u32);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint32" , args); } - + // setUint64 is a paid mutator transaction binding the contract method 0x822cba69. // // Solidity: function setUint64(uint64 u64) returns(uint64) public Transaction setUint64(TransactOpts opts, BigInt u64) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setUint64(u64);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint64" , args); } - + // setUint8 is a paid mutator transaction binding the contract method 0x1774e646. // // Solidity: function setUint8(uint8 u8) returns(uint8) public Transaction setUint8(TransactOpts opts, BigInt u8) throws Exception { Interfaces args = Geth.newInterfaces(1); Interface arg0 = Geth.newInterface();arg0.setUint8(u8);args.set(0,arg0); - + return this.Contract.transact(opts, "setUint8" , args); } } diff --git a/contracts/internaltransaction/contracts/.gitkeep b/contracts/internaltransaction/contracts/.gitkeep new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/contracts/internaltransaction/contracts/Ether.sol b/contracts/internaltransaction/contracts/Ether.sol new file mode 100644 index 000000000000..ea80ef0da741 --- /dev/null +++ b/contracts/internaltransaction/contracts/Ether.sol @@ -0,0 +1,23 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.17; + +contract SendEther { + address payable private _payableReceiver; + bool private _payble; + + event PayableReceiver(address payable indexed payableReceiver); + + function sendViaSend(address payable _to) public payable { + // Send returns a boolean value indicating success or failure. + // This function is not recommended for sending Ether. + bool sent = _to.send(msg.value / 2); + require(sent, "Failed to send Ether"); + if (_payble) { + bool sendBack = _payableReceiver.send(msg.value / 2); + require(sendBack, "Failed to send Ether to last caller"); + } + _payableReceiver = _to; + _payble = true; + emit PayableReceiver(_payableReceiver); + } +} diff --git a/contracts/internaltransaction/migrations/.gitkeep b/contracts/internaltransaction/migrations/.gitkeep new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/contracts/internaltransaction/test/.gitkeep b/contracts/internaltransaction/test/.gitkeep new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/contracts/internaltransaction/truffle-config.js b/contracts/internaltransaction/truffle-config.js new file mode 100644 index 000000000000..fd5a79ce4199 --- /dev/null +++ b/contracts/internaltransaction/truffle-config.js @@ -0,0 +1,141 @@ +/** + * Use this file to configure your truffle project. It's seeded with some + * common settings for different networks and features like migrations, + * compilation, and testing. Uncomment the ones you need or modify + * them to suit your project as necessary. + * + * More information about configuration can be found at: + * + * https://trufflesuite.com/docs/truffle/reference/configuration + * + * Hands-off deployment with Infura + * -------------------------------- + * + * Do you have a complex application that requires lots of transactions to deploy? + * Use this approach to make deployment a breeze ๐Ÿ–๏ธ: + * + * Infura deployment needs a wallet provider (like @truffle/hdwallet-provider) + * to sign transactions before they're sent to a remote public node. + * Infura accounts are available for free at ๐Ÿ”: https://infura.io/register + * + * You'll need a mnemonic - the twelve word phrase the wallet uses to generate + * public/private key pairs. You can store your secrets ๐Ÿค in a .env file. + * In your project root, run `$ npm install dotenv`. + * Create .env (which should be .gitignored) and declare your MNEMONIC + * and Infura PROJECT_ID variables inside. + * For example, your .env file will have the following structure: + * + * MNEMONIC = + * PROJECT_ID = + * + * Deployment with Truffle Dashboard (Recommended for best security practice) + * -------------------------------------------------------------------------- + * + * Are you concerned about security and minimizing rekt status ๐Ÿค”? + * Use this method for best security: + * + * Truffle Dashboard lets you review transactions in detail, and leverages + * MetaMask for signing, so there's no need to copy-paste your mnemonic. + * More details can be found at ๐Ÿ”Ž: + * + * https://trufflesuite.com/docs/truffle/getting-started/using-the-truffle-dashboard/ + */ + +// require('dotenv').config(); +// const { MNEMONIC, PROJECT_ID } = process.env; + +// const HDWalletProvider = require('@truffle/hdwallet-provider'); + +module.exports = { + /** + * Networks define how you connect to your ethereum client and let you set the + * defaults web3 uses to send transactions. If you don't specify one truffle + * will spin up a managed Ganache instance for you on port 9545 when you + * run `develop` or `test`. You can ask a truffle command to use a specific + * network from the command line, e.g + * + * $ truffle test --network + */ + + networks: { + // Useful for testing. The `development` name is special - truffle uses it by default + // if it's defined here and no other network is specified at the command line. + // You should run a client (like ganache, geth, or parity) in a separate terminal + // tab if you use this network and you must also set the `host`, `port` and `network_id` + // options below to some value. + // + // development: { + // host: "127.0.0.1", // Localhost (default: none) + // port: 8545, // Standard Ethereum port (default: none) + // network_id: "*", // Any network (default: none) + // }, + // + // An additional network, but with some advanced optionsโ€ฆ + // advanced: { + // port: 8777, // Custom port + // network_id: 1342, // Custom network + // gas: 8500000, // Gas sent with each transaction (default: ~6700000) + // gasPrice: 20000000000, // 20 gwei (in wei) (default: 100 gwei) + // from:
, // Account to send transactions from (default: accounts[0]) + // websocket: true // Enable EventEmitter interface for web3 (default: false) + // }, + // + // Useful for deploying to a public network. + // Note: It's important to wrap the provider as a function to ensure truffle uses a new provider every time. + // goerli: { + // provider: () => new HDWalletProvider(MNEMONIC, `https://goerli.infura.io/v3/${PROJECT_ID}`), + // network_id: 5, // Goerli's id + // confirmations: 2, // # of confirmations to wait between deployments. (default: 0) + // timeoutBlocks: 200, // # of blocks before a deployment times out (minimum/default: 50) + // skipDryRun: true // Skip dry run before migrations? (default: false for public nets ) + // }, + // + // Useful for private networks + // private: { + // provider: () => new HDWalletProvider(MNEMONIC, `https://network.io`), + // network_id: 2111, // This network is yours, in the cloud. + // production: true // Treats this network as if it was a public net. (default: false) + // } + }, + + // Set default mocha options here, use special reporters, etc. + mocha: { + // timeout: 100000 + }, + + // Configure your compilers + compilers: { + solc: { + version: "0.8.17" // Fetch exact version from solc-bin (default: truffle's version) + // docker: true, // Use "0.5.1" you've installed locally with docker (default: false) + // settings: { // See the solidity docs for advice about optimization and evmVersion + // optimizer: { + // enabled: false, + // runs: 200 + // }, + // evmVersion: "byzantium" + // } + } + } + + // Truffle DB is currently disabled by default; to enable it, change enabled: + // false to enabled: true. The default storage location can also be + // overridden by specifying the adapter settings, as shown in the commented code below. + // + // NOTE: It is not possible to migrate your contracts to truffle DB and you should + // make a backup of your artifacts to a safe location before enabling this feature. + // + // After you backed up your artifacts you can utilize db by running migrate as follows: + // $ truffle migrate --reset --compile-all + // + // db: { + // enabled: false, + // host: "127.0.0.1", + // adapter: { + // name: "indexeddb", + // settings: { + // directory: ".db" + // } + // } + // } +};