forked from mirror/go-ethereum
commit
cfddb7f3cd
@ -0,0 +1,155 @@ |
||||
package abi |
||||
|
||||
import ( |
||||
"encoding/json" |
||||
"fmt" |
||||
"io" |
||||
"strings" |
||||
|
||||
"github.com/ethereum/go-ethereum/crypto" |
||||
) |
||||
|
||||
// Callable method given a `Name` and whether the method is a constant.
|
||||
// If the method is `Const` no transaction needs to be created for this
|
||||
// particular Method call. It can easily be simulated using a local VM.
|
||||
// For example a `Balance()` method only needs to retrieve something
|
||||
// from the storage and therefor requires no Tx to be send to the
|
||||
// network. A method such as `Transact` does require a Tx and thus will
|
||||
// be flagged `true`.
|
||||
// Input specifies the required input parameters for this gives method.
|
||||
type Method struct { |
||||
Name string |
||||
Const bool |
||||
Input []Argument |
||||
Return Type // not yet implemented
|
||||
} |
||||
|
||||
// Returns the methods string signature according to the ABI spec.
|
||||
//
|
||||
// Example
|
||||
//
|
||||
// function foo(uint32 a, int b) = "foo(uint32,int256)"
|
||||
//
|
||||
// Please note that "int" is substitute for its canonical representation "int256"
|
||||
func (m Method) String() (out string) { |
||||
out += m.Name |
||||
types := make([]string, len(m.Input)) |
||||
i := 0 |
||||
for _, input := range m.Input { |
||||
types[i] = input.Type.String() |
||||
i++ |
||||
} |
||||
out += "(" + strings.Join(types, ",") + ")" |
||||
|
||||
return |
||||
} |
||||
|
||||
func (m Method) Id() []byte { |
||||
return crypto.Sha3([]byte(m.String()))[:4] |
||||
} |
||||
|
||||
// Argument holds the name of the argument and the corresponding type.
|
||||
// Types are used when packing and testing arguments.
|
||||
type Argument struct { |
||||
Name string |
||||
Type Type |
||||
} |
||||
|
||||
func (a *Argument) UnmarshalJSON(data []byte) error { |
||||
var extarg struct { |
||||
Name string |
||||
Type string |
||||
} |
||||
err := json.Unmarshal(data, &extarg) |
||||
if err != nil { |
||||
return fmt.Errorf("argument json err: %v", err) |
||||
} |
||||
|
||||
a.Type, err = NewType(extarg.Type) |
||||
if err != nil { |
||||
return err |
||||
} |
||||
a.Name = extarg.Name |
||||
|
||||
return nil |
||||
} |
||||
|
||||
// The ABI holds information about a contract's context and available
|
||||
// invokable methods. It will allow you to type check function calls and
|
||||
// packs data accordingly.
|
||||
type ABI struct { |
||||
Methods map[string]Method |
||||
} |
||||
|
||||
// tests, tests whether the given input would result in a successful
|
||||
// call. Checks argument list count and matches input to `input`.
|
||||
func (abi ABI) pack(name string, args ...interface{}) ([]byte, error) { |
||||
method := abi.Methods[name] |
||||
|
||||
var ret []byte |
||||
for i, a := range args { |
||||
input := method.Input[i] |
||||
|
||||
packed, err := input.Type.pack(a) |
||||
if err != nil { |
||||
return nil, fmt.Errorf("`%s` %v", name, err) |
||||
} |
||||
ret = append(ret, packed...) |
||||
|
||||
} |
||||
|
||||
return ret, nil |
||||
} |
||||
|
||||
// Pack the given method name to conform the ABI. Method call's data
|
||||
// will consist of method_id, args0, arg1, ... argN. Method id consists
|
||||
// of 4 bytes and arguments are all 32 bytes.
|
||||
// Method ids are created from the first 4 bytes of the hash of the
|
||||
// methods string signature. (signature = baz(uint32,string32))
|
||||
func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) { |
||||
method, exist := abi.Methods[name] |
||||
if !exist { |
||||
return nil, fmt.Errorf("method '%s' not found", name) |
||||
} |
||||
|
||||
// start with argument count match
|
||||
if len(args) != len(method.Input) { |
||||
return nil, fmt.Errorf("argument count mismatch: %d for %d", len(args), len(method.Input)) |
||||
} |
||||
|
||||
arguments, err := abi.pack(name, args...) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
// Set function id
|
||||
packed := abi.Methods[name].Id() |
||||
packed = append(packed, arguments...) |
||||
|
||||
return packed, nil |
||||
} |
||||
|
||||
func (abi *ABI) UnmarshalJSON(data []byte) error { |
||||
var methods []Method |
||||
if err := json.Unmarshal(data, &methods); err != nil { |
||||
return err |
||||
} |
||||
|
||||
abi.Methods = make(map[string]Method) |
||||
for _, method := range methods { |
||||
abi.Methods[method.Name] = method |
||||
} |
||||
|
||||
return nil |
||||
} |
||||
|
||||
func JSON(reader io.Reader) (ABI, error) { |
||||
dec := json.NewDecoder(reader) |
||||
|
||||
var abi ABI |
||||
if err := dec.Decode(&abi); err != nil { |
||||
return ABI{}, err |
||||
} |
||||
|
||||
return abi, nil |
||||
} |
@ -0,0 +1,330 @@ |
||||
package abi |
||||
|
||||
import ( |
||||
"bytes" |
||||
"math/big" |
||||
"reflect" |
||||
"strings" |
||||
"testing" |
||||
|
||||
"github.com/ethereum/go-ethereum/crypto" |
||||
) |
||||
|
||||
const jsondata = ` |
||||
[ |
||||
{ "name" : "balance", "const" : true }, |
||||
{ "name" : "send", "const" : false, "input" : [ { "name" : "amount", "type" : "uint256" } ] } |
||||
]` |
||||
|
||||
const jsondata2 = ` |
||||
[ |
||||
{ "name" : "balance", "const" : true }, |
||||
{ "name" : "send", "const" : false, "input" : [ { "name" : "amount", "type" : "uint256" } ] }, |
||||
{ "name" : "test", "const" : false, "input" : [ { "name" : "number", "type" : "uint32" } ] }, |
||||
{ "name" : "string", "const" : false, "input" : [ { "name" : "input", "type" : "string" } ] }, |
||||
{ "name" : "bool", "const" : false, "input" : [ { "name" : "input", "type" : "bool" } ] }, |
||||
{ "name" : "address", "const" : false, "input" : [ { "name" : "input", "type" : "address" } ] }, |
||||
{ "name" : "string32", "const" : false, "input" : [ { "name" : "input", "type" : "string32" } ] }, |
||||
{ "name" : "uint64[2]", "const" : false, "input" : [ { "name" : "input", "type" : "uint64[2]" } ] }, |
||||
{ "name" : "uint64[]", "const" : false, "input" : [ { "name" : "input", "type" : "uint64[]" } ] }, |
||||
{ "name" : "foo", "const" : false, "input" : [ { "name" : "input", "type" : "uint32" } ] }, |
||||
{ "name" : "bar", "const" : false, "input" : [ { "name" : "input", "type" : "uint32" }, { "name" : "string", "type" : "uint16" } ] }, |
||||
{ "name" : "slice", "const" : false, "input" : [ { "name" : "input", "type" : "uint32[2]" } ] }, |
||||
{ "name" : "slice256", "const" : false, "input" : [ { "name" : "input", "type" : "uint256[2]" } ] } |
||||
]` |
||||
|
||||
func TestType(t *testing.T) { |
||||
typ, err := NewType("uint32") |
||||
if err != nil { |
||||
t.Error(err) |
||||
} |
||||
if typ.Kind != reflect.Ptr { |
||||
t.Error("expected uint32 to have kind Ptr") |
||||
} |
||||
|
||||
typ, err = NewType("uint32[]") |
||||
if err != nil { |
||||
t.Error(err) |
||||
} |
||||
if typ.Kind != reflect.Slice { |
||||
t.Error("expected uint32[] to have type slice") |
||||
} |
||||
if typ.Type != ubig_ts { |
||||
t.Error("expcted uith32[] to have type uint64") |
||||
} |
||||
|
||||
typ, err = NewType("uint32[2]") |
||||
if err != nil { |
||||
t.Error(err) |
||||
} |
||||
if typ.Kind != reflect.Slice { |
||||
t.Error("expected uint32[2] to have kind slice") |
||||
} |
||||
if typ.Type != ubig_ts { |
||||
t.Error("expcted uith32[2] to have type uint64") |
||||
} |
||||
if typ.Size != 2 { |
||||
t.Error("expected uint32[2] to have a size of 2") |
||||
} |
||||
} |
||||
|
||||
func TestReader(t *testing.T) { |
||||
Uint256, _ := NewType("uint256") |
||||
exp := ABI{ |
||||
Methods: map[string]Method{ |
||||
"balance": Method{ |
||||
"balance", true, nil, Type{}, |
||||
}, |
||||
"send": Method{ |
||||
"send", false, []Argument{ |
||||
Argument{"amount", Uint256}, |
||||
}, Type{}, |
||||
}, |
||||
}, |
||||
} |
||||
|
||||
abi, err := JSON(strings.NewReader(jsondata)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
// deep equal fails for some reason
|
||||
t.Skip() |
||||
if !reflect.DeepEqual(abi, exp) { |
||||
t.Errorf("\nabi: %v\ndoes not match exp: %v", abi, exp) |
||||
} |
||||
} |
||||
|
||||
func TestTestNumbers(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if _, err := abi.Pack("balance"); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
if _, err := abi.Pack("balance", 1); err == nil { |
||||
t.Error("expected error for balance(1)") |
||||
} |
||||
|
||||
if _, err := abi.Pack("doesntexist", nil); err == nil { |
||||
t.Errorf("doesntexist shouldn't exist") |
||||
} |
||||
|
||||
if _, err := abi.Pack("doesntexist", 1); err == nil { |
||||
t.Errorf("doesntexist(1) shouldn't exist") |
||||
} |
||||
|
||||
if _, err := abi.Pack("send", big.NewInt(1000)); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
i := new(int) |
||||
*i = 1000 |
||||
if _, err := abi.Pack("send", i); err == nil { |
||||
t.Errorf("expected send( ptr ) to throw, requires *big.Int instead of *int") |
||||
} |
||||
|
||||
if _, err := abi.Pack("send", 1000); err != nil { |
||||
t.Error("expected send(1000) to cast to big") |
||||
} |
||||
|
||||
if _, err := abi.Pack("test", uint32(1000)); err != nil { |
||||
t.Error(err) |
||||
} |
||||
} |
||||
|
||||
func TestTestString(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if _, err := abi.Pack("string", "hello world"); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
str10 := string(make([]byte, 10)) |
||||
if _, err := abi.Pack("string32", str10); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
str32 := string(make([]byte, 32)) |
||||
if _, err := abi.Pack("string32", str32); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
str33 := string(make([]byte, 33)) |
||||
if _, err := abi.Pack("string32", str33); err == nil { |
||||
t.Error("expected str33 to throw out of bound error") |
||||
} |
||||
} |
||||
|
||||
func TestTestBool(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if _, err := abi.Pack("bool", true); err != nil { |
||||
t.Error(err) |
||||
} |
||||
} |
||||
|
||||
func TestTestSlice(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
addr := make([]byte, 20) |
||||
if _, err := abi.Pack("address", addr); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
addr = make([]byte, 21) |
||||
if _, err := abi.Pack("address", addr); err == nil { |
||||
t.Error("expected address of 21 width to throw") |
||||
} |
||||
|
||||
slice := make([]byte, 2) |
||||
if _, err := abi.Pack("uint64[2]", slice); err != nil { |
||||
t.Error(err) |
||||
} |
||||
|
||||
if _, err := abi.Pack("uint64[]", slice); err != nil { |
||||
t.Error(err) |
||||
} |
||||
} |
||||
|
||||
func TestTestAddress(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
addr := make([]byte, 20) |
||||
if _, err := abi.Pack("address", addr); err != nil { |
||||
t.Error(err) |
||||
} |
||||
} |
||||
|
||||
func TestMethodSignature(t *testing.T) { |
||||
String, _ := NewType("string") |
||||
String32, _ := NewType("string32") |
||||
m := Method{"foo", false, []Argument{Argument{"bar", String32}, Argument{"baz", String}}, Type{}} |
||||
exp := "foo(string32,string)" |
||||
if m.String() != exp { |
||||
t.Error("signature mismatch", exp, "!=", m.String()) |
||||
} |
||||
|
||||
idexp := crypto.Sha3([]byte(exp))[:4] |
||||
if !bytes.Equal(m.Id(), idexp) { |
||||
t.Errorf("expected ids to match %x != %x", m.Id(), idexp) |
||||
} |
||||
|
||||
uintt, _ := NewType("uint") |
||||
m = Method{"foo", false, []Argument{Argument{"bar", uintt}}, Type{}} |
||||
exp = "foo(uint256)" |
||||
if m.String() != exp { |
||||
t.Error("signature mismatch", exp, "!=", m.String()) |
||||
} |
||||
} |
||||
|
||||
func TestPack(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
sig := crypto.Sha3([]byte("foo(uint32)"))[:4] |
||||
sig = append(sig, make([]byte, 32)...) |
||||
sig[35] = 10 |
||||
|
||||
packed, err := abi.Pack("foo", uint32(10)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if !bytes.Equal(packed, sig) { |
||||
t.Errorf("expected %x got %x", sig, packed) |
||||
} |
||||
} |
||||
|
||||
func TestMultiPack(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
sig := crypto.Sha3([]byte("bar(uint32,uint16)"))[:4] |
||||
sig = append(sig, make([]byte, 64)...) |
||||
sig[35] = 10 |
||||
sig[67] = 11 |
||||
|
||||
packed, err := abi.Pack("bar", uint32(10), uint16(11)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if !bytes.Equal(packed, sig) { |
||||
t.Errorf("expected %x got %x", sig, packed) |
||||
} |
||||
} |
||||
|
||||
func TestPackSlice(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
sig := crypto.Sha3([]byte("slice(uint32[2])"))[:4] |
||||
sig = append(sig, make([]byte, 64)...) |
||||
sig[35] = 1 |
||||
sig[67] = 2 |
||||
|
||||
packed, err := abi.Pack("slice", []uint32{1, 2}) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if !bytes.Equal(packed, sig) { |
||||
t.Errorf("expected %x got %x", sig, packed) |
||||
} |
||||
} |
||||
|
||||
func TestPackSliceBig(t *testing.T) { |
||||
abi, err := JSON(strings.NewReader(jsondata2)) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
sig := crypto.Sha3([]byte("slice256(uint256[2])"))[:4] |
||||
sig = append(sig, make([]byte, 64)...) |
||||
sig[35] = 1 |
||||
sig[67] = 2 |
||||
|
||||
packed, err := abi.Pack("slice256", []*big.Int{big.NewInt(1), big.NewInt(2)}) |
||||
if err != nil { |
||||
t.Error(err) |
||||
t.FailNow() |
||||
} |
||||
|
||||
if !bytes.Equal(packed, sig) { |
||||
t.Errorf("expected %x got %x", sig, packed) |
||||
} |
||||
} |
@ -0,0 +1,10 @@ |
||||
// Package abi implements the Ethereum ABI (Application Binary
|
||||
// Interface).
|
||||
//
|
||||
// The Ethereum ABI is strongly typed, known at compile time
|
||||
// and static. This ABI will handle basic type casting; unsigned
|
||||
// to signed and visa versa. It does not handle slice casting such
|
||||
// as unsigned slice to signed slice. Bit size type casting is also
|
||||
// handled. ints with a bit size of 32 will be properly cast to int256,
|
||||
// etc.
|
||||
package abi |
@ -0,0 +1,106 @@ |
||||
package abi |
||||
|
||||
import ( |
||||
"math/big" |
||||
"reflect" |
||||
|
||||
"github.com/ethereum/go-ethereum/ethutil" |
||||
) |
||||
|
||||
var big_t = reflect.TypeOf(&big.Int{}) |
||||
var ubig_t = reflect.TypeOf(&big.Int{}) |
||||
var byte_t = reflect.TypeOf(byte(0)) |
||||
var byte_ts = reflect.TypeOf([]byte(nil)) |
||||
var uint_t = reflect.TypeOf(uint(0)) |
||||
var uint8_t = reflect.TypeOf(uint8(0)) |
||||
var uint16_t = reflect.TypeOf(uint16(0)) |
||||
var uint32_t = reflect.TypeOf(uint32(0)) |
||||
var uint64_t = reflect.TypeOf(uint64(0)) |
||||
var int_t = reflect.TypeOf(int(0)) |
||||
var int8_t = reflect.TypeOf(int8(0)) |
||||
var int16_t = reflect.TypeOf(int16(0)) |
||||
var int32_t = reflect.TypeOf(int32(0)) |
||||
var int64_t = reflect.TypeOf(int64(0)) |
||||
|
||||
var uint_ts = reflect.TypeOf([]uint(nil)) |
||||
var uint8_ts = reflect.TypeOf([]uint8(nil)) |
||||
var uint16_ts = reflect.TypeOf([]uint16(nil)) |
||||
var uint32_ts = reflect.TypeOf([]uint32(nil)) |
||||
var uint64_ts = reflect.TypeOf([]uint64(nil)) |
||||
var ubig_ts = reflect.TypeOf([]*big.Int(nil)) |
||||
|
||||
var int_ts = reflect.TypeOf([]int(nil)) |
||||
var int8_ts = reflect.TypeOf([]int8(nil)) |
||||
var int16_ts = reflect.TypeOf([]int16(nil)) |
||||
var int32_ts = reflect.TypeOf([]int32(nil)) |
||||
var int64_ts = reflect.TypeOf([]int64(nil)) |
||||
var big_ts = reflect.TypeOf([]*big.Int(nil)) |
||||
|
||||
// U256 will ensure unsigned 256bit on big nums
|
||||
func U256(n *big.Int) []byte { |
||||
return ethutil.LeftPadBytes(ethutil.U256(n).Bytes(), 32) |
||||
} |
||||
|
||||
func S256(n *big.Int) []byte { |
||||
sint := ethutil.S256(n) |
||||
ret := ethutil.LeftPadBytes(sint.Bytes(), 32) |
||||
if sint.Cmp(ethutil.Big0) < 0 { |
||||
for i, b := range ret { |
||||
if b == 0 { |
||||
ret[i] = 1 |
||||
continue |
||||
} |
||||
break |
||||
} |
||||
} |
||||
|
||||
return ret |
||||
} |
||||
|
||||
// S256 will ensure signed 256bit on big nums
|
||||
func U2U256(n uint64) []byte { |
||||
return U256(big.NewInt(int64(n))) |
||||
} |
||||
|
||||
func S2S256(n int64) []byte { |
||||
return S256(big.NewInt(n)) |
||||
} |
||||
|
||||
// packNum packs the given number (using the reflect value) and will cast it to appropriate number representation
|
||||
func packNum(value reflect.Value, to byte) []byte { |
||||
switch kind := value.Kind(); kind { |
||||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: |
||||
if to == UintTy { |
||||
return U2U256(value.Uint()) |
||||
} else { |
||||
return S2S256(int64(value.Uint())) |
||||
} |
||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: |
||||
if to == UintTy { |
||||
return U2U256(uint64(value.Int())) |
||||
} else { |
||||
return S2S256(value.Int()) |
||||
} |
||||
case reflect.Ptr: |
||||
// This only takes care of packing and casting. No type checking is done here. It should be done prior to using this function.
|
||||
if to == UintTy { |
||||
return U256(value.Interface().(*big.Int)) |
||||
} else { |
||||
return S256(value.Interface().(*big.Int)) |
||||
} |
||||
|
||||
} |
||||
|
||||
return nil |
||||
} |
||||
|
||||
// checks whether the given reflect value is signed. This also works for slices with a number type
|
||||
func isSigned(v reflect.Value) bool { |
||||
switch v.Type() { |
||||
case ubig_ts, big_ts, big_t, ubig_t: |
||||
return true |
||||
case int_ts, int8_ts, int16_ts, int32_ts, int64_ts, int_t, int8_t, int16_t, int32_t, int64_t: |
||||
return true |
||||
} |
||||
return false |
||||
} |
@ -0,0 +1,72 @@ |
||||
package abi |
||||
|
||||
import ( |
||||
"bytes" |
||||
"math/big" |
||||
"reflect" |
||||
"testing" |
||||
) |
||||
|
||||
func TestNumberTypes(t *testing.T) { |
||||
ubytes := make([]byte, 32) |
||||
ubytes[31] = 1 |
||||
sbytesmin := []byte{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} |
||||
|
||||
unsigned := U256(big.NewInt(1)) |
||||
if !bytes.Equal(unsigned, ubytes) { |
||||
t.Error("expected %x got %x", ubytes, unsigned) |
||||
} |
||||
|
||||
signed := S256(big.NewInt(1)) |
||||
if !bytes.Equal(signed, ubytes) { |
||||
t.Error("expected %x got %x", ubytes, unsigned) |
||||
} |
||||
|
||||
signed = S256(big.NewInt(-1)) |
||||
if !bytes.Equal(signed, sbytesmin) { |
||||
t.Error("expected %x got %x", ubytes, unsigned) |
||||
} |
||||
} |
||||
|
||||
func TestPackNumber(t *testing.T) { |
||||
ubytes := make([]byte, 32) |
||||
ubytes[31] = 1 |
||||
sbytesmin := []byte{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} |
||||
maxunsigned := []byte{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255} |
||||
|
||||
packed := packNum(reflect.ValueOf(1), IntTy) |
||||
if !bytes.Equal(packed, ubytes) { |
||||
t.Errorf("expected %x got %x", ubytes, packed) |
||||
} |
||||
packed = packNum(reflect.ValueOf(-1), IntTy) |
||||
if !bytes.Equal(packed, sbytesmin) { |
||||
t.Errorf("expected %x got %x", ubytes, packed) |
||||
} |
||||
packed = packNum(reflect.ValueOf(1), UintTy) |
||||
if !bytes.Equal(packed, ubytes) { |
||||
t.Errorf("expected %x got %x", ubytes, packed) |
||||
} |
||||
packed = packNum(reflect.ValueOf(-1), UintTy) |
||||
if !bytes.Equal(packed, maxunsigned) { |
||||
t.Errorf("expected %x got %x", maxunsigned, packed) |
||||
} |
||||
|
||||
packed = packNum(reflect.ValueOf("string"), UintTy) |
||||
if packed != nil { |
||||
t.Errorf("expected 'string' to pack to nil. got %x instead", packed) |
||||
} |
||||
} |
||||
|
||||
func TestSigned(t *testing.T) { |
||||
if isSigned(reflect.ValueOf(uint(10))) { |
||||
t.Error() |
||||
} |
||||
|
||||
if !isSigned(reflect.ValueOf(int(10))) { |
||||
t.Error() |
||||
} |
||||
|
||||
if !isSigned(reflect.ValueOf(big.NewInt(10))) { |
||||
t.Error() |
||||
} |
||||
} |
@ -0,0 +1,106 @@ |
||||
mode: set |
||||
github.com/ethereum/go-ethereum/abi/abi.go:27.39,31.32 4 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:35.2,37.8 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:31.32,34.3 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:40.29,42.2 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:51.53,57.16 3 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:61.2,62.16 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:65.2,67.12 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:57.16,59.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:62.16,64.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:79.71,83.25 3 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:94.2,94.17 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:83.25,87.17 3 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:90.3,90.31 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:87.17,89.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:102.71,104.12 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:109.2,109.36 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:113.2,114.16 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:119.2,122.20 3 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:104.12,106.3 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:109.36,111.3 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:114.16,116.3 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:125.50,127.55 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:131.2,132.33 2 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:136.2,136.12 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:127.55,129.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:132.33,134.3 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:139.42,143.41 3 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:147.2,147.17 1 1 |
||||
github.com/ethereum/go-ethereum/abi/abi.go:143.41,145.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:39.30,41.2 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:43.30,46.32 3 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:56.2,56.12 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:46.32,47.25 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:47.25,48.14 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:52.4,52.9 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:48.14,50.13 2 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:59.30,61.2 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:63.29,65.2 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:67.51,68.36 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:91.2,91.12 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:69.2,70.19 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:75.2,76.19 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:81.2,83.19 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:70.19,72.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:72.4,74.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:76.19,78.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:78.4,80.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:83.19,85.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:85.4,87.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:94.37,95.18 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:101.2,101.14 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:96.2,97.14 1 1 |
||||
github.com/ethereum/go-ethereum/abi/numbers.go:98.2,99.14 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:32.46,35.16 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:38.2,43.9 3 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:55.2,56.16 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:60.2,64.55 4 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:69.2,69.13 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:111.2,113.8 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:35.16,37.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:44.2,47.17 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:48.2,50.12 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:51.2,52.60 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:56.16,58.3 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:64.55,67.3 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:69.13,72.16 3 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:73.3,74.21 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:75.3,76.22 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:77.3,78.66 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:80.3,81.16 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:82.3,86.17 4 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:87.3,91.18 4 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:92.3,93.27 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:94.3,95.30 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:96.3,100.21 4 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:101.3,104.17 3 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:107.3,108.60 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:104.17,106.5 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:116.37,118.2 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:126.51,128.36 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:179.2,179.20 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:129.2,130.23 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:133.3,133.34 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:134.2,135.23 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:138.3,138.34 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:139.2,142.49 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:145.3,145.34 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:146.2,147.42 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:150.3,150.60 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:151.2,152.42 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:157.3,157.23 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:162.3,162.78 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:166.3,167.36 2 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:170.3,170.21 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:171.2,172.19 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:130.23,132.4 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:135.23,137.4 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:142.49,144.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:147.42,149.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:152.42,154.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:157.23,159.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:162.78,164.4 1 0 |
||||
github.com/ethereum/go-ethereum/abi/type.go:167.36,169.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:172.19,174.4 1 1 |
||||
github.com/ethereum/go-ethereum/abi/type.go:174.4,176.4 1 0 |
@ -0,0 +1,190 @@ |
||||
package abi |
||||
|
||||
import ( |
||||
"fmt" |
||||
"reflect" |
||||
"regexp" |
||||
"strconv" |
||||
|
||||
"github.com/ethereum/go-ethereum/ethutil" |
||||
) |
||||
|
||||
const ( |
||||
IntTy byte = iota |
||||
UintTy |
||||
BoolTy |
||||
SliceTy |
||||
AddressTy |
||||
RealTy |
||||
) |
||||
|
||||
// Type is the reflection of the supported argument type
|
||||
type Type struct { |
||||
Kind reflect.Kind |
||||
Type reflect.Type |
||||
Size int |
||||
T byte // Our own type checking
|
||||
stringKind string // holds the unparsed string for deriving signatures
|
||||
} |
||||
|
||||
// New type returns a fully parsed Type given by the input string or an error if it can't be parsed.
|
||||
//
|
||||
// Strings can be in the format of:
|
||||
//
|
||||
// Input = Type [ "[" [ Number ] "]" ] Name .
|
||||
// Type = [ "u" ] "int" [ Number ] .
|
||||
//
|
||||
// Examples:
|
||||
//
|
||||
// string int uint real
|
||||
// string32 int8 uint8 uint[]
|
||||
// address int256 uint256 real[2]
|
||||
func NewType(t string) (typ Type, err error) { |
||||
// 1. full string 2. type 3. (opt.) is slice 4. (opt.) size
|
||||
freg, err := regexp.Compile("([a-zA-Z0-9]+)(\\[([0-9]*)?\\])?") |
||||
if err != nil { |
||||
return Type{}, err |
||||
} |
||||
res := freg.FindAllStringSubmatch(t, -1)[0] |
||||
var ( |
||||
isslice bool |
||||
size int |
||||
) |
||||
switch { |
||||
case res[3] != "": |
||||
// err is ignored. Already checked for number through the regexp
|
||||
size, _ = strconv.Atoi(res[3]) |
||||
isslice = true |
||||
case res[2] != "": |
||||
isslice = true |
||||
size = -1 |
||||
case res[0] == "": |
||||
return Type{}, fmt.Errorf("type parse error for `%s`", t) |
||||
} |
||||
|
||||
treg, err := regexp.Compile("([a-zA-Z]+)([0-9]*)?") |
||||
if err != nil { |
||||
return Type{}, err |
||||
} |
||||
|
||||
parsedType := treg.FindAllStringSubmatch(res[1], -1)[0] |
||||
vsize, _ := strconv.Atoi(parsedType[2]) |
||||
vtype := parsedType[1] |
||||
// substitute canonical representation
|
||||
if vsize == 0 && (vtype == "int" || vtype == "uint") { |
||||
vsize = 256 |
||||
t += "256" |
||||
} |
||||
|
||||
if isslice { |
||||
typ.Kind = reflect.Slice |
||||
typ.Size = size |
||||
switch vtype { |
||||
case "int": |
||||
typ.Type = big_ts |
||||
case "uint": |
||||
typ.Type = ubig_ts |
||||
default: |
||||
return Type{}, fmt.Errorf("unsupported arg slice type: %s", t) |
||||
} |
||||
} else { |
||||
switch vtype { |
||||
case "int": |
||||
typ.Kind = reflect.Ptr |
||||
typ.Type = big_t |
||||
typ.Size = 256 |
||||
typ.T = IntTy |
||||
case "uint": |
||||
typ.Kind = reflect.Ptr |
||||
typ.Type = ubig_t |
||||
typ.Size = 256 |
||||
typ.T = UintTy |
||||
case "bool": |
||||
typ.Kind = reflect.Bool |
||||
case "real": // TODO
|
||||
typ.Kind = reflect.Invalid |
||||
case "address": |
||||
typ.Kind = reflect.Slice |
||||
typ.Type = byte_ts |
||||
typ.Size = 20 |
||||
typ.T = AddressTy |
||||
case "string": |
||||
typ.Kind = reflect.String |
||||
typ.Size = -1 |
||||
if vsize > 0 { |
||||
typ.Size = 32 |
||||
} |
||||
default: |
||||
return Type{}, fmt.Errorf("unsupported arg type: %s", t) |
||||
} |
||||
} |
||||
typ.stringKind = t |
||||
|
||||
return |
||||
} |
||||
|
||||
func (t Type) String() (out string) { |
||||
return t.stringKind |
||||
} |
||||
|
||||
// Test the given input parameter `v` and checks if it matches certain
|
||||
// criteria
|
||||
// * Big integers are checks for ptr types and if the given value is
|
||||
// assignable
|
||||
// * Integer are checked for size
|
||||
// * Strings, addresses and bytes are checks for type and size
|
||||
func (t Type) pack(v interface{}) ([]byte, error) { |
||||
value := reflect.ValueOf(v) |
||||
switch kind := value.Kind(); kind { |
||||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: |
||||
if t.Type != ubig_t { |
||||
return nil, fmt.Errorf("type mismatch: %s for %T", t.Type, v) |
||||
} |
||||
return packNum(value, t.T), nil |
||||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: |
||||
if t.Type != ubig_t { |
||||
return nil, fmt.Errorf("type mismatch: %s for %T", t.Type, v) |
||||
} |
||||
return packNum(value, t.T), nil |
||||
case reflect.Ptr: |
||||
// If the value is a ptr do a assign check (only used by
|
||||
// big.Int for now)
|
||||
if t.Type == ubig_t && value.Type() != ubig_t { |
||||
return nil, fmt.Errorf("type mismatch: %s for %T", t.Type, v) |
||||
} |
||||
return packNum(value, t.T), nil |
||||
case reflect.String: |
||||
if t.Size > -1 && value.Len() > t.Size { |
||||
return nil, fmt.Errorf("%v out of bound. %d for %d", value.Kind(), value.Len(), t.Size) |
||||
} |
||||
return []byte(ethutil.LeftPadString(t.String(), 32)), nil |
||||
case reflect.Slice: |
||||
if t.Size > -1 && value.Len() > t.Size { |
||||
return nil, fmt.Errorf("%v out of bound. %d for %d", value.Kind(), value.Len(), t.Size) |
||||
} |
||||
|
||||
// Address is a special slice. The slice acts as one rather than a list of elements.
|
||||
if t.T == AddressTy { |
||||
return ethutil.LeftPadBytes(v.([]byte), 32), nil |
||||
} |
||||
|
||||
// Signed / Unsigned check
|
||||
if (t.T != IntTy && isSigned(value)) || (t.T == UintTy && isSigned(value)) { |
||||
return nil, fmt.Errorf("slice of incompatible types.") |
||||
} |
||||
|
||||
var packed []byte |
||||
for i := 0; i < value.Len(); i++ { |
||||
packed = append(packed, packNum(value.Index(i), t.T)...) |
||||
} |
||||
return packed, nil |
||||
case reflect.Bool: |
||||
if value.Bool() { |
||||
return ethutil.LeftPadBytes(ethutil.Big1.Bytes(), 32), nil |
||||
} else { |
||||
return ethutil.LeftPadBytes(ethutil.Big0.Bytes(), 32), nil |
||||
} |
||||
} |
||||
|
||||
panic("unreached") |
||||
} |
@ -0,0 +1,95 @@ |
||||
/* |
||||
This file is part of go-ethereum |
||||
|
||||
go-ethereum is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
go-ethereum is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** |
||||
* @authors |
||||
* Gustav Simonsson <gustav.simonsson@gmail.com> |
||||
* @date 2015 |
||||
* |
||||
*/ |
||||
/* |
||||
|
||||
This abstracts part of a user's interaction with an account she controls. |
||||
It's not an abstraction of core Ethereum accounts data type / logic - |
||||
for that see the core processing code of blocks / txs. |
||||
|
||||
Currently this is pretty much a passthrough to the KeyStore2 interface, |
||||
and accounts persistence is derived from stored keys' addresses |
||||
|
||||
*/ |
||||
package accounts |
||||
|
||||
import ( |
||||
crand "crypto/rand" |
||||
"github.com/ethereum/go-ethereum/crypto" |
||||
) |
||||
|
||||
// TODO: better name for this struct?
|
||||
type Account struct { |
||||
Address []byte |
||||
} |
||||
|
||||
type AccountManager struct { |
||||
keyStore crypto.KeyStore2 |
||||
} |
||||
|
||||
// TODO: get key by addr - modify KeyStore2 GetKey to work with addr
|
||||
|
||||
// TODO: pass through passphrase for APIs which require access to private key?
|
||||
func NewAccountManager(keyStore crypto.KeyStore2) AccountManager { |
||||
am := &AccountManager{ |
||||
keyStore: keyStore, |
||||
} |
||||
return *am |
||||
} |
||||
|
||||
func (am *AccountManager) Sign(fromAccount *Account, keyAuth string, toSign []byte) (signature []byte, err error) { |
||||
key, err := am.keyStore.GetKey(fromAccount.Address, keyAuth) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
signature, err = crypto.Sign(toSign, key.PrivateKey) |
||||
return signature, err |
||||
} |
||||
|
||||
func (am AccountManager) NewAccount(auth string) (*Account, error) { |
||||
key, err := am.keyStore.GenerateNewKey(crand.Reader, auth) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
ua := &Account{ |
||||
Address: key.Address, |
||||
} |
||||
return ua, err |
||||
} |
||||
|
||||
// set of accounts == set of keys in given key store
|
||||
// TODO: do we need persistence of accounts as well?
|
||||
func (am *AccountManager) Accounts() ([]Account, error) { |
||||
addresses, err := am.keyStore.GetKeyAddresses() |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
|
||||
accounts := make([]Account, len(addresses)) |
||||
|
||||
for i, addr := range addresses { |
||||
accounts[i] = Account{ |
||||
Address: addr, |
||||
} |
||||
} |
||||
return accounts, err |
||||
} |
@ -0,0 +1,18 @@ |
||||
package accounts |
||||
|
||||
import ( |
||||
"github.com/ethereum/go-ethereum/crypto" |
||||
"testing" |
||||
) |
||||
|
||||
func TestAccountManager(t *testing.T) { |
||||
ks := crypto.NewKeyStorePlain(crypto.DefaultDataDir()) |
||||
am := NewAccountManager(ks) |
||||
pass := "" // not used but required by API
|
||||
a1, err := am.NewAccount(pass) |
||||
toSign := crypto.GetEntropyCSPRNG(32) |
||||
_, err = am.Sign(a1, pass, toSign) |
||||
if err != nil { |
||||
t.Fatal(err) |
||||
} |
||||
} |
@ -0,0 +1,34 @@ |
||||
package main |
||||
|
||||
import ( |
||||
"fmt" |
||||
"io/ioutil" |
||||
"os" |
||||
|
||||
"github.com/ethereum/go-ethereum/ethutil" |
||||
"github.com/ethereum/go-ethereum/vm" |
||||
) |
||||
|
||||
func main() { |
||||
code, err := ioutil.ReadAll(os.Stdin) |
||||
if err != nil { |
||||
fmt.Println(err) |
||||
os.Exit(1) |
||||
} |
||||
code = ethutil.Hex2Bytes(string(code[:len(code)-1])) |
||||
fmt.Printf("%x\n", code) |
||||
|
||||
for pc := uint64(0); pc < uint64(len(code)); pc++ { |
||||
op := vm.OpCode(code[pc]) |
||||
fmt.Printf("%-5d %v", pc, op) |
||||
|
||||
switch op { |
||||
case vm.PUSH1, vm.PUSH2, vm.PUSH3, vm.PUSH4, vm.PUSH5, vm.PUSH6, vm.PUSH7, vm.PUSH8, vm.PUSH9, vm.PUSH10, vm.PUSH11, vm.PUSH12, vm.PUSH13, vm.PUSH14, vm.PUSH15, vm.PUSH16, vm.PUSH17, vm.PUSH18, vm.PUSH19, vm.PUSH20, vm.PUSH21, vm.PUSH22, vm.PUSH23, vm.PUSH24, vm.PUSH25, vm.PUSH26, vm.PUSH27, vm.PUSH28, vm.PUSH29, vm.PUSH30, vm.PUSH31, vm.PUSH32: |
||||
a := uint64(op) - uint64(vm.PUSH1) + 1 |
||||
fmt.Printf(" => %x", code[pc+1:pc+1+a]) |
||||
|
||||
pc += a |
||||
} |
||||
fmt.Println() |
||||
} |
||||
} |
After Width: | Height: | Size: 663 B |
After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 5.2 KiB |
@ -0,0 +1,55 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<title>Hello world</title> |
||||
<script src="../ext/bignumber.min.js"></script> |
||||
<script src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
<script> |
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
var eth = web3.eth; |
||||
var desc = [{ |
||||
"name": "multiply(uint256)", |
||||
"inputs": [{ |
||||
"name": "a", |
||||
"type": "uint256" |
||||
}], |
||||
"outputs": [{ |
||||
"name": "d", |
||||
"type": "uint256" |
||||
}] |
||||
}]; |
||||
var address = web3.eth.transact({ |
||||
data: "0x603880600c6000396000f3006001600060e060020a600035048063c6888fa114601857005b6021600435602b565b8060005260206000f35b600081600702905091905056", |
||||
gasPrice: "1000000000000000", |
||||
gas: "10000", |
||||
}); |
||||
var contract = web3.eth.contract(address, desc); |
||||
|
||||
function calculate() { |
||||
var param = parseInt(document.getElementById('value').value); |
||||
|
||||
var res = contract.call().multiply(param); |
||||
document.getElementById('result').innerText = res.toString(10); |
||||
} |
||||
</script> |
||||
</head> |
||||
<body> |
||||
<h3>Contract content</h3> |
||||
<textarea style="height:100px; width: 300px;" disabled="disabled"> |
||||
contract test { |
||||
function multiply(uint a) returns(uint d) { |
||||
return a * 7; |
||||
} |
||||
} |
||||
</textarea> |
||||
<code><pre> |
||||
603880600c6000396000f3006001600060e060020a600035048063c6888fa1140 |
||||
05b6021600435602b565b8060005260206000f35b600081600702905091905056</pre></code> |
||||
|
||||
<hr> |
||||
<div>7 x <input type="number" id="value" onkeyup='calculate()'></input> = |
||||
<span id="result"></spa> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,40 @@ |
||||
<!doctype> |
||||
<html> |
||||
|
||||
<head> |
||||
<script src="../ext/bignumber.min.js"></script> |
||||
<script src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
<script type="text/javascript"> |
||||
|
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
function watchBalance() { |
||||
var coinbase = web3.eth.coinbase; |
||||
var originalBalance = 0; |
||||
|
||||
var balance = web3.eth.balanceAt(coinbase); |
||||
var originalBalance = web3.toDecimal(balance); |
||||
document.getElementById('original').innerText = 'original balance: ' + originalBalance + ' watching...'; |
||||
|
||||
web3.eth.watch({altered: coinbase}).changed(function() { |
||||
balance = web3.eth.balanceAt(coinbase) |
||||
var currentBalance = web3.toDecimal(balance); |
||||
document.getElementById("current").innerText = 'current: ' + currentBalance; |
||||
document.getElementById("diff").innerText = 'diff: ' + (currentBalance - originalBalance); |
||||
}); |
||||
} |
||||
|
||||
</script> |
||||
</head> |
||||
<body> |
||||
<h1>coinbase balance</h1> |
||||
<button type="button" onClick="watchBalance();">watch balance</button> |
||||
<div></div> |
||||
<div id="original"></div> |
||||
<div id="current"></div> |
||||
<div id="diff"></div> |
||||
</body> |
||||
</html> |
||||
|
||||
|
@ -0,0 +1,147 @@ |
||||
<!doctype> |
||||
<html> |
||||
<title>JevCoin</title> |
||||
<head> |
||||
<script type="text/javascript" src="../ext/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
</head> |
||||
<body> |
||||
|
||||
<h1>JevCoin <code id="address"></code></h1> |
||||
<div> |
||||
<strong>Balance</strong> |
||||
<span id="balance"></strong> |
||||
</div> |
||||
|
||||
<div> |
||||
<span class="amount">Amount:</span> |
||||
<input type="text" id="address" style="width:200px"> |
||||
<input type="text" id="amount" style="width:200px"> |
||||
<button onclick="transact()">Send</button> |
||||
</div> |
||||
|
||||
<hr> |
||||
|
||||
<table width="100%" id="table"> |
||||
<tr><td style="width:40%;">Address</td><td>Balance</td></tr> |
||||
<tbody id="table_body"></tbody> |
||||
</table> |
||||
|
||||
</body> |
||||
|
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
var eth = web3.eth; |
||||
|
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8545')); |
||||
var desc = [{ |
||||
"name": "balance(address)", |
||||
"type": "function", |
||||
"inputs": [{ |
||||
"name": "who", |
||||
"type": "address" |
||||
}], |
||||
"constant": true, |
||||
"outputs": [{ |
||||
"name": "value", |
||||
"type": "uint256" |
||||
}] |
||||
}, { |
||||
"name": "send(address,uint256)", |
||||
"type": "function", |
||||
"inputs": [{ |
||||
"name": "to", |
||||
"type": "address" |
||||
}, { |
||||
"name": "value", |
||||
"type": "uint256" |
||||
}], |
||||
"outputs": [] |
||||
}, { |
||||
"name":"changed", |
||||
"type":"event", |
||||
"inputs": [ |
||||
{"name":"to","type":"address","indexed":true}, |
||||
{"name":"from","type":"address","indexed":true}, |
||||
], |
||||
}]; |
||||
|
||||
var address = localStorage.getItem("address"); |
||||
// deploy if not exist |
||||
if (address == null) { |
||||
var code = "0x60056013565b610132806100356000396000f35b620f4240600033600160a060020a0316600052602052604060002081905550560060e060020a6000350480637bb98a681461002b578063d0679d3414610039578063e3d670d71461004d57005b61003361012d565b60006000f35b610047600435602435610062565b60006000f35b61005860043561010b565b8060005260206000f35b80600033600160a060020a0316600052602052604060002054106100855761008a565b610107565b80600033600160a060020a0316600052602052604060002090815403908190555080600083600160a060020a0316600052602052604060002090815401908190555081600160a060020a031633600160a060020a03167f1863989b4bb7c5c3941722099764574df7a459f9f9c6b6cdca35ddc9731792b860006000a35b5050565b6000600082600160a060020a03166000526020526040600020549050919050565b5b60008156"; |
||||
address = web3.eth.transact({ |
||||
data: code, |
||||
gasPrice: "1000000000000000", |
||||
gas: "10000", |
||||
}); |
||||
localStorage.setItem("address", address); |
||||
} |
||||
document.querySelector("#address").innerHTML = address.toUpperCase(); |
||||
|
||||
var contract = web3.eth.contract(address, desc); |
||||
contract.changed({from: eth.accounts[0]}).changed(function() { |
||||
refresh(); |
||||
}); |
||||
eth.watch('chain').changed(function() { |
||||
refresh(); |
||||
}); |
||||
|
||||
function refresh() { |
||||
document.querySelector("#balance").innerHTML = contract.balance(eth.coinbase); |
||||
|
||||
var table = document.querySelector("#table_body"); |
||||
table.innerHTML = ""; // clear |
||||
|
||||
var storage = eth.storageAt(address); |
||||
table.innerHTML = ""; |
||||
for( var item in storage ) { |
||||
table.innerHTML += "<tr><td>"+item.toUpperCase()+"</td><td>"+web3.toDecimal(storage[item])+"</td></tr>"; |
||||
} |
||||
} |
||||
|
||||
function transact() { |
||||
var to = document.querySelector("#address").value; |
||||
|
||||
if( to.length == 0 ) { |
||||
to = "0x4205b06c2cfa0e30359edcab94543266cb6fa1d3"; |
||||
} else { |
||||
to = "0x"+to; |
||||
} |
||||
|
||||
var value = parseInt( document.querySelector("#amount").value ); |
||||
|
||||
contract.send( to, value ); |
||||
} |
||||
|
||||
refresh(); |
||||
</script> |
||||
|
||||
</html> |
||||
|
||||
<!-- |
||||
contract JevCoin { |
||||
function JevCoin() |
||||
{ |
||||
balances[msg.sender] = 1000000; |
||||
} |
||||
|
||||
event changed(address indexed from, address indexed to); |
||||
function send(address to, uint value) |
||||
{ |
||||
if( balances[msg.sender] < value ) return; |
||||
|
||||
balances[msg.sender] -= value; |
||||
balances[to] += value; |
||||
|
||||
changed(msg.sender, to); |
||||
} |
||||
|
||||
function balance(address who) constant returns(uint t) |
||||
{ |
||||
t = balances[who]; |
||||
} |
||||
|
||||
mapping(address => uint256) balances; |
||||
} |
||||
-!> |
@ -0,0 +1,77 @@ |
||||
|
||||
<!doctype> |
||||
<html> |
||||
|
||||
<head> |
||||
<script type="text/javascript" src="../ext/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1>Info</h1> |
||||
|
||||
<table width="100%"> |
||||
<tr> |
||||
<td>Block number</td> |
||||
<td id="number"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Peer count</td> |
||||
<td id="peer_count"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Default block</td> |
||||
<td id="default_block"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Accounts</td> |
||||
<td id="accounts"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Balance</td> |
||||
<td id="balance"></td> |
||||
|
||||
<tr> |
||||
<td>Gas price</td> |
||||
<td id="gas_price"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Mining</td> |
||||
<td id="mining"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Listening</td> |
||||
<td id="listening"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Coinbase</td> |
||||
<td id="coinbase"></td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
|
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
var eth = web3.eth; |
||||
|
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
document.querySelector("#number").innerHTML = eth.number; |
||||
document.querySelector("#coinbase").innerHTML = eth.coinbase |
||||
document.querySelector("#peer_count").innerHTML = eth.peerCount; |
||||
document.querySelector("#default_block").innerHTML = eth.defaultBlock; |
||||
document.querySelector("#accounts").innerHTML = eth.accounts; |
||||
document.querySelector("#balance").innerHTML = web3.toEth(eth.balanceAt(eth.accounts[0])); |
||||
document.querySelector("#gas_price").innerHTML = eth.gasPrice; |
||||
document.querySelector("#mining").innerHTML = eth.mining; |
||||
document.querySelector("#listening").innerHTML = eth.listening; |
||||
</script> |
||||
|
||||
</html> |
||||
|
@ -0,0 +1,70 @@ |
||||
<!doctype> |
||||
<html> |
||||
<title>Whisper test</title> |
||||
<head> |
||||
<script type="text/javascript" src="../ext/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
</head> |
||||
<body> |
||||
|
||||
<h1>Whisper test</h1> |
||||
|
||||
<button onclick="test()">Send</button> |
||||
<button onclick="test2()">Private send</button> |
||||
|
||||
<table width="100%" id="table"> |
||||
<tr> |
||||
<td>Count</td> |
||||
<td id="count"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>ID</td> |
||||
<td id="id"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Has identity</td> |
||||
<td id="known"></td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
|
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
var shh = web3.shh; |
||||
|
||||
var id = shh.newIdentity(); |
||||
document.querySelector("#id").innerHTML = id; |
||||
document.querySelector("#known").innerHTML = shh.haveIdentity(id); |
||||
|
||||
var watch = shh.watch({topics: ["test"]}) |
||||
watch.arrived(function(message) { |
||||
document.querySelector("#table").innerHTML += "<tr><td colspan='2'>"+JSON.stringify(message)+"</td></tr>"; |
||||
}); |
||||
|
||||
var selfWatch = shh.watch({to: id, topics: ["test"]}) |
||||
selfWatch.arrived(function(message) { |
||||
document.querySelector("#table").innerHTML += "<tr><td>To me</td><td>"+JSON.stringify(message)+"</td></tr>"; |
||||
}); |
||||
|
||||
function test() { |
||||
shh.post({topics: ["test"], payload: web3.fromAscii("test it")}); |
||||
count(); |
||||
} |
||||
|
||||
function test2() { |
||||
shh.post({to: id, topics: ["test"], payload: web3.fromAscii("Private")}); |
||||
count(); |
||||
} |
||||
|
||||
function count() { |
||||
document.querySelector("#count").innerHTML = watch.messages().length; |
||||
} |
||||
</script> |
||||
|
||||
</html> |
||||
|
||||
|
@ -0,0 +1,5 @@ |
||||
{ |
||||
"directory": "example/js/", |
||||
"cwd": "./", |
||||
"analytics": false |
||||
} |
@ -0,0 +1,12 @@ |
||||
root = true |
||||
|
||||
[*] |
||||
indent_style = space |
||||
indent_size = 4 |
||||
end_of_line = lf |
||||
charset = utf-8 |
||||
trim_trailing_whitespace = true |
||||
insert_final_newline = true |
||||
|
||||
[*.md] |
||||
trim_trailing_whitespace = false |
@ -0,0 +1,18 @@ |
||||
# See http://help.github.com/ignore-files/ for more about ignoring files. |
||||
# |
||||
# If you find yourself ignoring temporary files generated by your text editor |
||||
# or operating system, you probably want to add a global ignore instead: |
||||
# git config --global core.excludesfile ~/.gitignore_global |
||||
|
||||
*.swp |
||||
/tmp |
||||
*/**/*un~ |
||||
*un~ |
||||
.DS_Store |
||||
*/**/.DS_Store |
||||
ethereum/ethereum |
||||
ethereal/ethereal |
||||
example/js |
||||
node_modules |
||||
bower_components |
||||
npm-debug.log |
@ -0,0 +1,50 @@ |
||||
{ |
||||
"predef": [ |
||||
"console", |
||||
"require", |
||||
"equal", |
||||
"test", |
||||
"testBoth", |
||||
"testWithDefault", |
||||
"raises", |
||||
"deepEqual", |
||||
"start", |
||||
"stop", |
||||
"ok", |
||||
"strictEqual", |
||||
"module", |
||||
"expect", |
||||
"reject", |
||||
"impl" |
||||
], |
||||
|
||||
"esnext": true, |
||||
"proto": true, |
||||
"node" : true, |
||||
"browser" : true, |
||||
"browserify" : true, |
||||
|
||||
"boss" : true, |
||||
"curly": false, |
||||
"debug": true, |
||||
"devel": true, |
||||
"eqeqeq": true, |
||||
"evil": true, |
||||
"forin": false, |
||||
"immed": false, |
||||
"laxbreak": false, |
||||
"newcap": true, |
||||
"noarg": true, |
||||
"noempty": false, |
||||
"nonew": false, |
||||
"nomen": false, |
||||
"onevar": false, |
||||
"plusplus": false, |
||||
"regexp": false, |
||||
"undef": true, |
||||
"sub": true, |
||||
"strict": false, |
||||
"white": false, |
||||
"shadow": true, |
||||
"eqnull": true |
||||
} |
@ -0,0 +1,9 @@ |
||||
example/js |
||||
node_modules |
||||
test |
||||
.gitignore |
||||
.editorconfig |
||||
.travis.yml |
||||
.npmignore |
||||
component.json |
||||
testling.html |
@ -0,0 +1,13 @@ |
||||
language: node_js |
||||
node_js: |
||||
- "0.11" |
||||
- "0.10" |
||||
before_script: |
||||
- npm install |
||||
- npm install jshint |
||||
script: |
||||
- "jshint *.js lib" |
||||
after_script: |
||||
- npm run-script build |
||||
- npm test |
||||
|
@ -1,397 +0,0 @@ |
||||
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
// MA 02110-1301 USA
|
||||
|
||||
var bigInt = (function () { |
||||
var base = 10000000, logBase = 7; |
||||
var sign = { |
||||
positive: false, |
||||
negative: true |
||||
}; |
||||
|
||||
var normalize = function (first, second) { |
||||
var a = first.value, b = second.value; |
||||
var length = a.length > b.length ? a.length : b.length; |
||||
for (var i = 0; i < length; i++) { |
||||
a[i] = a[i] || 0; |
||||
b[i] = b[i] || 0; |
||||
} |
||||
for (var i = length - 1; i >= 0; i--) { |
||||
if (a[i] === 0 && b[i] === 0) { |
||||
a.pop(); |
||||
b.pop(); |
||||
} else break; |
||||
} |
||||
if (!a.length) a = [0], b = [0]; |
||||
first.value = a; |
||||
second.value = b; |
||||
}; |
||||
|
||||
var parse = function (text, first) { |
||||
if (typeof text === "object") return text; |
||||
text += ""; |
||||
var s = sign.positive, value = []; |
||||
if (text[0] === "-") { |
||||
s = sign.negative; |
||||
text = text.slice(1); |
||||
} |
||||
var base = 10; |
||||
if (text.slice(0, 2) == "0x") { |
||||
base = 16; |
||||
text = text.slice(2); |
||||
} |
||||
else { |
||||
var texts = text.split("e"); |
||||
if (texts.length > 2) throw new Error("Invalid integer"); |
||||
if (texts[1]) { |
||||
var exp = texts[1]; |
||||
if (exp[0] === "+") exp = exp.slice(1); |
||||
exp = parse(exp); |
||||
if (exp.lesser(0)) throw new Error("Cannot include negative exponent part for integers"); |
||||
while (exp.notEquals(0)) { |
||||
texts[0] += "0"; |
||||
exp = exp.prev(); |
||||
} |
||||
} |
||||
text = texts[0]; |
||||
} |
||||
if (text === "-0") text = "0"; |
||||
text = text.toUpperCase(); |
||||
var isValid = (base == 16 ? /^[0-9A-F]*$/ : /^[0-9]+$/).test(text); |
||||
if (!isValid) throw new Error("Invalid integer"); |
||||
if (base == 16) { |
||||
var val = bigInt(0); |
||||
while (text.length) { |
||||
v = text.charCodeAt(0) - 48; |
||||
if (v > 9) |
||||
v -= 7; |
||||
text = text.slice(1); |
||||
val = val.times(16).plus(v); |
||||
} |
||||
return val; |
||||
} |
||||
else { |
||||
while (text.length) { |
||||
var divider = text.length > logBase ? text.length - logBase : 0; |
||||
value.push(+text.slice(divider)); |
||||
text = text.slice(0, divider); |
||||
} |
||||
var val = bigInt(value, s); |
||||
if (first) normalize(first, val); |
||||
return val; |
||||
} |
||||
}; |
||||
|
||||
var goesInto = function (a, b) { |
||||
var a = bigInt(a, sign.positive), b = bigInt(b, sign.positive); |
||||
if (a.equals(0)) throw new Error("Cannot divide by 0"); |
||||
var n = 0; |
||||
do { |
||||
var inc = 1; |
||||
var c = bigInt(a.value, sign.positive), t = c.times(10); |
||||
while (t.lesser(b)) { |
||||
c = t; |
||||
inc *= 10; |
||||
t = t.times(10); |
||||
} |
||||
while (c.lesserOrEquals(b)) { |
||||
b = b.minus(c); |
||||
n += inc; |
||||
} |
||||
} while (a.lesserOrEquals(b)); |
||||
|
||||
return { |
||||
remainder: b.value, |
||||
result: n |
||||
}; |
||||
}; |
||||
|
||||
var bigInt = function (value, s) { |
||||
var self = { |
||||
value: value, |
||||
sign: s |
||||
}; |
||||
var o = { |
||||
value: value, |
||||
sign: s, |
||||
negate: function (m) { |
||||
var first = m || self; |
||||
return bigInt(first.value, !first.sign); |
||||
}, |
||||
abs: function (m) { |
||||
var first = m || self; |
||||
return bigInt(first.value, sign.positive); |
||||
}, |
||||
add: function (n, m) { |
||||
var s, first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m)); |
||||
else second = parse(n, first); |
||||
s = first.sign; |
||||
if (first.sign !== second.sign) { |
||||
first = bigInt(first.value, sign.positive); |
||||
second = bigInt(second.value, sign.positive); |
||||
return s === sign.positive ? |
||||
o.subtract(first, second) : |
||||
o.subtract(second, first); |
||||
} |
||||
normalize(first, second); |
||||
var a = first.value, b = second.value; |
||||
var result = [], |
||||
carry = 0; |
||||
for (var i = 0; i < a.length || carry > 0; i++) { |
||||
var sum = (a[i] || 0) + (b[i] || 0) + carry; |
||||
carry = sum >= base ? 1 : 0; |
||||
sum -= carry * base; |
||||
result.push(sum); |
||||
} |
||||
return bigInt(result, s); |
||||
}, |
||||
plus: function (n, m) { |
||||
return o.add(n, m); |
||||
}, |
||||
subtract: function (n, m) { |
||||
var first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m)); |
||||
else second = parse(n, first); |
||||
if (first.sign !== second.sign) return o.add(first, o.negate(second)); |
||||
if (first.sign === sign.negative) return o.subtract(o.negate(second), o.negate(first)); |
||||
if (o.compare(first, second) === -1) return o.negate(o.subtract(second, first)); |
||||
var a = first.value, b = second.value; |
||||
var result = [], |
||||
borrow = 0; |
||||
for (var i = 0; i < a.length; i++) { |
||||
var tmp = a[i] - borrow; |
||||
borrow = tmp < b[i] ? 1 : 0; |
||||
var minuend = (borrow * base) + tmp - b[i]; |
||||
result.push(minuend); |
||||
} |
||||
return bigInt(result, sign.positive); |
||||
}, |
||||
minus: function (n, m) { |
||||
return o.subtract(n, m); |
||||
}, |
||||
multiply: function (n, m) { |
||||
var s, first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m)); |
||||
else second = parse(n, first); |
||||
s = first.sign !== second.sign; |
||||
var a = first.value, b = second.value; |
||||
var resultSum = []; |
||||
for (var i = 0; i < a.length; i++) { |
||||
resultSum[i] = []; |
||||
var j = i; |
||||
while (j--) { |
||||
resultSum[i].push(0); |
||||
} |
||||
} |
||||
var carry = 0; |
||||
for (var i = 0; i < a.length; i++) { |
||||
var x = a[i]; |
||||
for (var j = 0; j < b.length || carry > 0; j++) { |
||||
var y = b[j]; |
||||
var product = y ? (x * y) + carry : carry; |
||||
carry = product > base ? Math.floor(product / base) : 0; |
||||
product -= carry * base; |
||||
resultSum[i].push(product); |
||||
} |
||||
} |
||||
var max = -1; |
||||
for (var i = 0; i < resultSum.length; i++) { |
||||
var len = resultSum[i].length; |
||||
if (len > max) max = len; |
||||
} |
||||
var result = [], carry = 0; |
||||
for (var i = 0; i < max || carry > 0; i++) { |
||||
var sum = carry; |
||||
for (var j = 0; j < resultSum.length; j++) { |
||||
sum += resultSum[j][i] || 0; |
||||
} |
||||
carry = sum > base ? Math.floor(sum / base) : 0; |
||||
sum -= carry * base; |
||||
result.push(sum); |
||||
} |
||||
return bigInt(result, s); |
||||
}, |
||||
times: function (n, m) { |
||||
return o.multiply(n, m); |
||||
}, |
||||
divmod: function (n, m) { |
||||
var s, first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m)); |
||||
else second = parse(n, first); |
||||
s = first.sign !== second.sign; |
||||
if (bigInt(first.value, first.sign).equals(0)) return { |
||||
quotient: bigInt([0], sign.positive), |
||||
remainder: bigInt([0], sign.positive) |
||||
}; |
||||
if (second.equals(0)) throw new Error("Cannot divide by zero"); |
||||
var a = first.value, b = second.value; |
||||
var result = [], remainder = []; |
||||
for (var i = a.length - 1; i >= 0; i--) { |
||||
var n = [a[i]].concat(remainder); |
||||
var quotient = goesInto(b, n); |
||||
result.push(quotient.result); |
||||
remainder = quotient.remainder; |
||||
} |
||||
result.reverse(); |
||||
return { |
||||
quotient: bigInt(result, s), |
||||
remainder: bigInt(remainder, first.sign) |
||||
}; |
||||
}, |
||||
divide: function (n, m) { |
||||
return o.divmod(n, m).quotient; |
||||
}, |
||||
over: function (n, m) { |
||||
return o.divide(n, m); |
||||
}, |
||||
mod: function (n, m) { |
||||
return o.divmod(n, m).remainder; |
||||
}, |
||||
pow: function (n, m) { |
||||
var first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m)); |
||||
else second = parse(n, first); |
||||
var a = first, b = second; |
||||
if (b.lesser(0)) return ZERO; |
||||
if (b.equals(0)) return ONE; |
||||
var result = bigInt(a.value, a.sign); |
||||
|
||||
if (b.mod(2).equals(0)) { |
||||
var c = result.pow(b.over(2)); |
||||
return c.times(c); |
||||
} else { |
||||
return result.times(result.pow(b.minus(1))); |
||||
} |
||||
}, |
||||
next: function (m) { |
||||
var first = m || self; |
||||
return o.add(first, 1); |
||||
}, |
||||
prev: function (m) { |
||||
var first = m || self; |
||||
return o.subtract(first, 1); |
||||
}, |
||||
compare: function (n, m) { |
||||
var first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m, first)); |
||||
else second = parse(n, first); |
||||
normalize(first, second); |
||||
if (first.value.length === 1 && second.value.length === 1 && first.value[0] === 0 && second.value[0] === 0) return 0; |
||||
if (second.sign !== first.sign) return first.sign === sign.positive ? 1 : -1; |
||||
var multiplier = first.sign === sign.positive ? 1 : -1; |
||||
var a = first.value, b = second.value; |
||||
for (var i = a.length - 1; i >= 0; i--) { |
||||
if (a[i] > b[i]) return 1 * multiplier; |
||||
if (b[i] > a[i]) return -1 * multiplier; |
||||
} |
||||
return 0; |
||||
}, |
||||
compareAbs: function (n, m) { |
||||
var first = self, second; |
||||
if (m) (first = parse(n)) && (second = parse(m, first)); |
||||
else second = parse(n, first); |
||||
first.sign = second.sign = sign.positive; |
||||
return o.compare(first, second); |
||||
}, |
||||
equals: function (n, m) { |
||||
return o.compare(n, m) === 0; |
||||
}, |
||||
notEquals: function (n, m) { |
||||
return !o.equals(n, m); |
||||
}, |
||||
lesser: function (n, m) { |
||||
return o.compare(n, m) < 0; |
||||
}, |
||||
greater: function (n, m) { |
||||
return o.compare(n, m) > 0; |
||||
}, |
||||
greaterOrEquals: function (n, m) { |
||||
return o.compare(n, m) >= 0; |
||||
}, |
||||
lesserOrEquals: function (n, m) { |
||||
return o.compare(n, m) <= 0; |
||||
}, |
||||
isPositive: function (m) { |
||||
var first = m || self; |
||||
return first.sign === sign.positive; |
||||
}, |
||||
isNegative: function (m) { |
||||
var first = m || self; |
||||
return first.sign === sign.negative; |
||||
}, |
||||
isEven: function (m) { |
||||
var first = m || self; |
||||
return first.value[0] % 2 === 0; |
||||
}, |
||||
isOdd: function (m) { |
||||
var first = m || self; |
||||
return first.value[0] % 2 === 1; |
||||
}, |
||||
toString: function (m) { |
||||
var first = m || self; |
||||
var str = "", len = first.value.length; |
||||
while (len--) { |
||||
if (first.value[len].toString().length === 8) str += first.value[len]; |
||||
else str += (base.toString() + first.value[len]).slice(-logBase); |
||||
} |
||||
while (str[0] === "0") { |
||||
str = str.slice(1); |
||||
} |
||||
if (!str.length) str = "0"; |
||||
var s = (first.sign === sign.positive || str == "0") ? "" : "-"; |
||||
return s + str; |
||||
}, |
||||
toHex: function (m) { |
||||
var first = m || self; |
||||
var str = ""; |
||||
var l = this.abs(); |
||||
while (l > 0) { |
||||
var qr = l.divmod(256); |
||||
var b = qr.remainder.toJSNumber(); |
||||
str = (b >> 4).toString(16) + (b & 15).toString(16) + str; |
||||
l = qr.quotient; |
||||
} |
||||
return (this.isNegative() ? "-" : "") + "0x" + str; |
||||
}, |
||||
toJSNumber: function (m) { |
||||
return +o.toString(m); |
||||
}, |
||||
valueOf: function (m) { |
||||
return o.toJSNumber(m); |
||||
} |
||||
}; |
||||
return o; |
||||
}; |
||||
|
||||
var ZERO = bigInt([0], sign.positive); |
||||
var ONE = bigInt([1], sign.positive); |
||||
var MINUS_ONE = bigInt([1], sign.negative); |
||||
|
||||
var fnReturn = function (a) { |
||||
if (typeof a === "undefined") return ZERO; |
||||
return parse(a); |
||||
}; |
||||
fnReturn.zero = ZERO; |
||||
fnReturn.one = ONE; |
||||
fnReturn.minusOne = MINUS_ONE; |
||||
return fnReturn; |
||||
})(); |
||||
|
||||
if (typeof module !== "undefined") { |
||||
module.exports = bigInt; |
||||
} |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,76 @@ |
||||
<!doctype> |
||||
<html> |
||||
|
||||
<head> |
||||
<script type="text/javascript" src="js/bignumber.js/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../dist/ethereum.js"></script> |
||||
<script type="text/javascript"> |
||||
|
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider()); |
||||
|
||||
// solidity source code |
||||
var source = "" + |
||||
"contract test {\n" + |
||||
" function multiply(uint[] a) returns(uint d) {\n" + |
||||
" return a[0] + a[1];\n" + |
||||
" }\n" + |
||||
"}\n"; |
||||
|
||||
// contract description, this will be autogenerated somehow |
||||
var desc = [{ |
||||
"name": "multiply(uint256[])", |
||||
"type": "function", |
||||
"inputs": [ |
||||
{ |
||||
"name": "a", |
||||
"type": "uint256[]" |
||||
} |
||||
], |
||||
"outputs": [ |
||||
{ |
||||
"name": "d", |
||||
"type": "uint256" |
||||
} |
||||
] |
||||
}]; |
||||
|
||||
var contract; |
||||
|
||||
function createExampleContract() { |
||||
// hide create button |
||||
document.getElementById('create').style.visibility = 'hidden'; |
||||
document.getElementById('source').innerText = source; |
||||
|
||||
// create contract |
||||
var address = web3.eth.transact({code: web3.eth.solidity(source)}); |
||||
contract = web3.eth.contract(address, desc); |
||||
document.getElementById('call').style.visibility = 'visible'; |
||||
} |
||||
|
||||
function callExampleContract() { |
||||
// this should be generated by ethereum |
||||
var param = parseInt(document.getElementById('value').value); |
||||
var param2 = parseInt(document.getElementById('value2').value); |
||||
|
||||
// call the contract |
||||
var res = contract.call().multiply([param, param2]); |
||||
document.getElementById('result').innerText = res.toString(10); |
||||
} |
||||
|
||||
</script> |
||||
</head> |
||||
<body> |
||||
<h1>contract</h1> |
||||
<div id="source"></div> |
||||
<div id='create'> |
||||
<button type="button" onClick="createExampleContract();">create example contract</button> |
||||
</div> |
||||
<div id='call' style='visibility: hidden;'> |
||||
<input type="number" id="value" onkeyup='callExampleContract()'></input> |
||||
<input type="number" id="value2" onkeyup='callExampleContract()'></input> |
||||
</div> |
||||
<div id="result"></div> |
||||
</body> |
||||
</html> |
||||
|
@ -0,0 +1,120 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<script type="text/javascript" src="js/bignumber.js/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../dist/ethereum.js"></script> |
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
var desc = [{ |
||||
"type":"event", |
||||
"inputs": [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}], |
||||
"name":"Event" |
||||
}, { |
||||
"type":"event", |
||||
"inputs": [{"name":"a","type":"uint256","indexed":true},{"name":"b","type":"hash256","indexed":false}], |
||||
"name":"Event2" |
||||
}, { |
||||
"type":"function", |
||||
"inputs": [{"name":"a","type":"uint256"}], |
||||
"name":"foo", |
||||
"outputs": [] |
||||
}]; |
||||
|
||||
var address = '0x01'; |
||||
|
||||
var contract = web3.eth.contract(address, desc); |
||||
|
||||
function test1() { |
||||
// "{"topic":["0x83c9849c","0xc4d76332"],"address":"0x01"}" |
||||
web3.eth.watch(contract).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test2() { |
||||
// "{"topic":["0x83c9849c"],"address":"0x01"}" |
||||
web3.eth.watch(contract.Event).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test3() { |
||||
// "{"topic":["0x83c9849c"],"address":"0x01"}" |
||||
contract.Event().changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test4() { |
||||
// "{"topic":["0x83c9849c","0000000000000000000000000000000000000000000000000000000000000045"],"address":"0x01"}" |
||||
contract.Event({a: 69}).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test5() { |
||||
// "{"topic":["0x83c9849c",["0000000000000000000000000000000000000000000000000000000000000045","000000000000000000000000000000000000000000000000000000000000002a"]],"address":"0x01"}" |
||||
contract.Event({a: [69, 42]}).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test6() { |
||||
// "{"topic":["0x83c9849c","000000000000000000000000000000000000000000000000000000000000001e"],"max":100,"address":"0x01"}" |
||||
contract.Event({a: 30}, {max: 100}).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test7() { |
||||
// "{"topic":["0x83c9849c","000000000000000000000000000000000000000000000000000000000000001e"],"address":"0x01"}" |
||||
web3.eth.watch(contract.Event, {a: 30}).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
function test8() { |
||||
// "{"topic":["0x83c9849c","000000000000000000000000000000000000000000000000000000000000001e"],"max":100,"address":"0x01"}" |
||||
web3.eth.watch(contract.Event, {a: 30}, {max: 100}).changed(function (res) { |
||||
|
||||
}); |
||||
}; |
||||
|
||||
// not valid |
||||
// function testX() { |
||||
// web3.eth.watch([contract.Event, contract.Event2]).changed(function (res) { |
||||
// }); |
||||
// }; |
||||
|
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
||||
<div> |
||||
<button type="button" onClick="test1();">test1</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test2();">test2</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test3();">test3</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test4();">test4</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test5();">test5</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test6();">test6</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test7();">test7</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="test8();">test8</button> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,66 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<script type="text/javascript" src="js/bignumber.js/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../dist/ethereum.js"></script> |
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
var source = "" + |
||||
"contract Contract { " + |
||||
" event Incremented(bool indexed odd, uint x); " + |
||||
" function Contract() { " + |
||||
" x = 69; " + |
||||
" } " + |
||||
" function inc() { " + |
||||
" ++x; " + |
||||
" Incremented(x % 2 == 1, x); " + |
||||
" } " + |
||||
" uint x; " + |
||||
"}"; |
||||
|
||||
var desc = [{ |
||||
"type":"event", |
||||
"name":"Incremented", |
||||
"inputs": [{"name":"odd","type":"bool","indexed":true},{"name":"x","type":"uint","indexed":false}], |
||||
}, { |
||||
"type":"function", |
||||
"name":"inc", |
||||
"inputs": [], |
||||
"outputs": [] |
||||
}]; |
||||
|
||||
var address; |
||||
var contract; |
||||
|
||||
var update = function (x) { |
||||
document.getElementById('result').innerText = JSON.stringify(x); |
||||
}; |
||||
|
||||
var createContract = function () { |
||||
address = web3.eth.transact({code: web3.eth.solidity(source)}); |
||||
contract = web3.eth.contract(address, desc); |
||||
contract.Incremented({odd: true}).changed(update); |
||||
|
||||
}; |
||||
|
||||
var callContract = function () { |
||||
contract.call().inc(); |
||||
}; |
||||
|
||||
|
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
||||
<div> |
||||
<button type="button" onClick="createContract();">create contract</button> |
||||
</div> |
||||
<div> |
||||
<button type="button" onClick="callContract();">test1</button> |
||||
</div> |
||||
<div id="result"> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,77 @@ |
||||
<!doctype> |
||||
<html> |
||||
|
||||
<head> |
||||
<script type="text/javascript" src="js/bignumber.js/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../dist/ethereum.js"></script> |
||||
<script type="text/javascript"> |
||||
|
||||
var web3 = require('web3'); |
||||
web3.setProvider(new web3.providers.QtSyncProvider()); |
||||
|
||||
// solidity source code |
||||
var source = "" + |
||||
"contract test {\n" + |
||||
" /// @notice Will multiply `a` by 7. \n" + |
||||
" function multiply(uint a) returns(uint d) {\n" + |
||||
" return a * 7;\n" + |
||||
" }\n" + |
||||
"}\n"; |
||||
|
||||
// contract description, this will be autogenerated somehow |
||||
var desc = [{ |
||||
"name": "multiply(uint256)", |
||||
"type": "function", |
||||
"inputs": [ |
||||
{ |
||||
"name": "a", |
||||
"type": "uint256" |
||||
} |
||||
], |
||||
"outputs": [ |
||||
{ |
||||
"name": "d", |
||||
"type": "uint256" |
||||
} |
||||
] |
||||
}]; |
||||
|
||||
var contract; |
||||
|
||||
function createExampleContract() { |
||||
// hide create button |
||||
document.getElementById('create').style.visibility = 'hidden'; |
||||
document.getElementById('source').innerText = source; |
||||
|
||||
// create contract |
||||
var address = web3.eth.transact({code: web3.eth.solidity(source)}); |
||||
contract = web3.eth.contract(address, desc); |
||||
document.getElementById('call').style.visibility = 'visible'; |
||||
} |
||||
|
||||
function callExampleContract() { |
||||
// this should be generated by ethereum |
||||
var param = parseInt(document.getElementById('value').value); |
||||
|
||||
// transaction does not return any result, cause it's not synchronous and we don't know, |
||||
// when it will be processed |
||||
contract.transact().multiply(param); |
||||
document.getElementById('result').innerText = 'transaction made'; |
||||
} |
||||
|
||||
</script> |
||||
</head> |
||||
<body> |
||||
<h1>contract</h1> |
||||
<div id="source"></div> |
||||
<div id='create'> |
||||
<button type="button" onClick="createExampleContract();">create example contract</button> |
||||
</div> |
||||
<div id='call' style='visibility: hidden;'> |
||||
<input type="number" id="value"></input> |
||||
<button type="button" onClick="callExampleContract()">Call Contract</button> |
||||
</div> |
||||
<div id="result"></div> |
||||
</body> |
||||
</html> |
||||
|
@ -1,16 +1,12 @@ |
||||
#!/usr/bin/env node
|
||||
|
||||
require('es6-promise').polyfill(); |
||||
|
||||
var web3 = require("../index.js"); |
||||
|
||||
web3.setProvider(new web3.providers.HttpRpcProvider('http://localhost:8080')); |
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8080')); |
||||
|
||||
var coinbase = web3.eth.coinbase; |
||||
console.log(coinbase); |
||||
|
||||
var balance = web3.eth.balanceAt(coinbase); |
||||
console.log(balance); |
||||
|
||||
web3.eth.coinbase.then(function(result){ |
||||
console.log(result); |
||||
return web3.eth.balanceAt(result); |
||||
}).then(function(balance){ |
||||
console.log(web3.toDecimal(balance)); |
||||
}).catch(function(err){ |
||||
console.log(err); |
||||
}); |
@ -1,8 +1,11 @@ |
||||
var web3 = require('./lib/web3'); |
||||
web3.providers.WebSocketProvider = require('./lib/websocket'); |
||||
web3.providers.HttpRpcProvider = require('./lib/httprpc'); |
||||
web3.providers.QtProvider = require('./lib/qt'); |
||||
web3.providers.AutoProvider = require('./lib/autoprovider'); |
||||
web3.contract = require('./lib/contract'); |
||||
var ProviderManager = require('./lib/providermanager'); |
||||
web3.provider = new ProviderManager(); |
||||
web3.filter = require('./lib/filter'); |
||||
web3.providers.HttpSyncProvider = require('./lib/httpsync'); |
||||
web3.providers.QtSyncProvider = require('./lib/qtsync'); |
||||
web3.eth.contract = require('./lib/contract'); |
||||
web3.abi = require('./lib/abi'); |
||||
|
||||
|
||||
module.exports = web3; |
||||
|
@ -1,103 +0,0 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file autoprovider.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
/* |
||||
* @brief if qt object is available, uses QtProvider, |
||||
* if not tries to connect over websockets |
||||
* if it fails, it uses HttpRpcProvider |
||||
*/ |
||||
|
||||
// TODO: is these line is supposed to be here?
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var WebSocket = require('ws'); // jshint ignore:line
|
||||
var web3 = require('./web3'); // jshint ignore:line
|
||||
} |
||||
|
||||
var AutoProvider = function (userOptions) { |
||||
if (web3.haveProvider()) { |
||||
return; |
||||
} |
||||
|
||||
// before we determine what provider we are, we have to cache request
|
||||
this.sendQueue = []; |
||||
this.onmessageQueue = []; |
||||
|
||||
if (navigator.qt) { |
||||
this.provider = new web3.providers.QtProvider(); |
||||
return; |
||||
} |
||||
|
||||
userOptions = userOptions || {}; |
||||
var options = { |
||||
httprpc: userOptions.httprpc || 'http://localhost:8080', |
||||
websockets: userOptions.websockets || 'ws://localhost:40404/eth' |
||||
}; |
||||
|
||||
var self = this; |
||||
var closeWithSuccess = function (success) { |
||||
ws.close(); |
||||
if (success) { |
||||
self.provider = new web3.providers.WebSocketProvider(options.websockets); |
||||
} else { |
||||
self.provider = new web3.providers.HttpRpcProvider(options.httprpc); |
||||
self.poll = self.provider.poll.bind(self.provider); |
||||
} |
||||
self.sendQueue.forEach(function (payload) { |
||||
self.provider(payload); |
||||
}); |
||||
self.onmessageQueue.forEach(function (handler) { |
||||
self.provider.onmessage = handler; |
||||
}); |
||||
}; |
||||
|
||||
var ws = new WebSocket(options.websockets); |
||||
|
||||
ws.onopen = function() { |
||||
closeWithSuccess(true); |
||||
}; |
||||
|
||||
ws.onerror = function() { |
||||
closeWithSuccess(false); |
||||
}; |
||||
}; |
||||
|
||||
AutoProvider.prototype.send = function (payload) { |
||||
if (this.provider) { |
||||
this.provider.send(payload); |
||||
return; |
||||
} |
||||
this.sendQueue.push(payload); |
||||
}; |
||||
|
||||
Object.defineProperty(AutoProvider.prototype, 'onmessage', { |
||||
set: function (handler) { |
||||
if (this.provider) { |
||||
this.provider.onmessage = handler; |
||||
return; |
||||
} |
||||
this.onmessageQueue.push(handler); |
||||
} |
||||
}); |
||||
|
||||
if (typeof(module) !== "undefined") |
||||
module.exports = AutoProvider; |
@ -0,0 +1,56 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file const.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2015 |
||||
*/ |
||||
|
||||
/// required to define ETH_BIGNUMBER_ROUNDING_MODE
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var BigNumber = require('bignumber.js'); // jshint ignore:line
|
||||
} |
||||
|
||||
var ETH_UNITS = [
|
||||
'wei',
|
||||
'Kwei',
|
||||
'Mwei',
|
||||
'Gwei',
|
||||
'szabo',
|
||||
'finney',
|
||||
'ether',
|
||||
'grand',
|
||||
'Mether',
|
||||
'Gether',
|
||||
'Tether',
|
||||
'Pether',
|
||||
'Eether',
|
||||
'Zether',
|
||||
'Yether',
|
||||
'Nether',
|
||||
'Dether',
|
||||
'Vether',
|
||||
'Uether'
|
||||
]; |
||||
|
||||
module.exports = { |
||||
ETH_PADDING: 32, |
||||
ETH_SIGNATURE_LENGTH: 4, |
||||
ETH_UNITS: ETH_UNITS, |
||||
ETH_BIGNUMBER_ROUNDING_MODE: { ROUNDING_MODE: BigNumber.ROUND_DOWN } |
||||
}; |
||||
|
@ -0,0 +1,135 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file event.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
var abi = require('./abi'); |
||||
var utils = require('./utils'); |
||||
|
||||
/// filter inputs array && returns only indexed (or not) inputs
|
||||
/// @param inputs array
|
||||
/// @param bool if result should be an array of indexed params on not
|
||||
/// @returns array of (not?) indexed params
|
||||
var filterInputs = function (inputs, indexed) { |
||||
return inputs.filter(function (current) { |
||||
return current.indexed === indexed; |
||||
}); |
||||
}; |
||||
|
||||
var inputWithName = function (inputs, name) { |
||||
var index = utils.findIndex(inputs, function (input) { |
||||
return input.name === name; |
||||
}); |
||||
|
||||
if (index === -1) { |
||||
console.error('indexed param with name ' + name + ' not found'); |
||||
return undefined; |
||||
} |
||||
return inputs[index]; |
||||
}; |
||||
|
||||
var indexedParamsToTopics = function (event, indexed) { |
||||
// sort keys?
|
||||
return Object.keys(indexed).map(function (key) { |
||||
var inputs = [inputWithName(filterInputs(event.inputs, true), key)]; |
||||
|
||||
var value = indexed[key]; |
||||
if (value instanceof Array) { |
||||
return value.map(function (v) { |
||||
return abi.formatInput(inputs, [v]); |
||||
});
|
||||
} |
||||
return abi.formatInput(inputs, [value]); |
||||
}); |
||||
}; |
||||
|
||||
var inputParser = function (address, signature, event) { |
||||
|
||||
// valid options are 'earliest', 'latest', 'offset' and 'max', as defined for 'eth.watch'
|
||||
return function (indexed, options) { |
||||
var o = options || {}; |
||||
o.address = address; |
||||
o.topic = []; |
||||
o.topic.push(signature); |
||||
if (indexed) { |
||||
o.topic = o.topic.concat(indexedParamsToTopics(event, indexed)); |
||||
} |
||||
return o; |
||||
}; |
||||
}; |
||||
|
||||
var getArgumentsObject = function (inputs, indexed, notIndexed) { |
||||
var indexedCopy = indexed.slice(); |
||||
var notIndexedCopy = notIndexed.slice(); |
||||
return inputs.reduce(function (acc, current) { |
||||
var value; |
||||
if (current.indexed) |
||||
value = indexed.splice(0, 1)[0]; |
||||
else |
||||
value = notIndexed.splice(0, 1)[0]; |
||||
|
||||
acc[current.name] = value; |
||||
return acc; |
||||
}, {});
|
||||
}; |
||||
|
||||
var outputParser = function (event) { |
||||
|
||||
return function (output) { |
||||
var result = { |
||||
event: utils.extractDisplayName(event.name), |
||||
number: output.number, |
||||
args: {} |
||||
}; |
||||
|
||||
if (!output.topic) { |
||||
return result; |
||||
} |
||||
|
||||
var indexedOutputs = filterInputs(event.inputs, true); |
||||
var indexedData = "0x" + output.topic.slice(1, output.topic.length).map(function (topic) { return topic.slice(2); }).join(""); |
||||
var indexedRes = abi.formatOutput(indexedOutputs, indexedData); |
||||
|
||||
var notIndexedOutputs = filterInputs(event.inputs, false); |
||||
var notIndexedRes = abi.formatOutput(notIndexedOutputs, output.data); |
||||
|
||||
result.args = getArgumentsObject(event.inputs, indexedRes, notIndexedRes); |
||||
|
||||
return result; |
||||
}; |
||||
}; |
||||
|
||||
var getMatchingEvent = function (events, payload) { |
||||
for (var i = 0; i < events.length; i++) { |
||||
var signature = abi.eventSignatureFromAscii(events[i].name);
|
||||
if (signature === payload.topic[0]) { |
||||
return events[i]; |
||||
} |
||||
} |
||||
return undefined; |
||||
}; |
||||
|
||||
|
||||
module.exports = { |
||||
inputParser: inputParser, |
||||
outputParser: outputParser, |
||||
getMatchingEvent: getMatchingEvent |
||||
}; |
||||
|
@ -0,0 +1,101 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file filter.js |
||||
* @authors: |
||||
* Jeffrey Wilcke <jeff@ethdev.com> |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* Gav Wood <g@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
var web3 = require('./web3'); // jshint ignore:line
|
||||
|
||||
/// should be used when we want to watch something
|
||||
/// it's using inner polling mechanism and is notified about changes
|
||||
/// TODO: change 'options' name cause it may be not the best matching one, since we have events
|
||||
var Filter = function(options, impl) { |
||||
|
||||
if (typeof options !== "string") { |
||||
|
||||
// topics property is deprecated, warn about it!
|
||||
if (options.topics) { |
||||
console.warn('"topics" is deprecated, use "topic" instead'); |
||||
} |
||||
|
||||
this._onWatchResult = options._onWatchEventResult; |
||||
|
||||
// evaluate lazy properties
|
||||
options = { |
||||
to: options.to, |
||||
topic: options.topic, |
||||
earliest: options.earliest, |
||||
latest: options.latest, |
||||
max: options.max, |
||||
skip: options.skip, |
||||
address: options.address |
||||
}; |
||||
|
||||
} |
||||
|
||||
this.impl = impl; |
||||
this.callbacks = []; |
||||
|
||||
this.id = impl.newFilter(options); |
||||
web3.provider.startPolling({method: impl.changed, params: [this.id]}, this.id, this.trigger.bind(this)); |
||||
}; |
||||
|
||||
/// alias for changed*
|
||||
Filter.prototype.arrived = function(callback) { |
||||
this.changed(callback); |
||||
}; |
||||
Filter.prototype.happened = function(callback) { |
||||
this.changed(callback); |
||||
}; |
||||
|
||||
/// gets called when there is new eth/shh message
|
||||
Filter.prototype.changed = function(callback) { |
||||
this.callbacks.push(callback); |
||||
}; |
||||
|
||||
/// trigger calling new message from people
|
||||
Filter.prototype.trigger = function(messages) { |
||||
for (var i = 0; i < this.callbacks.length; i++) { |
||||
for (var j = 0; j < messages.length; j++) { |
||||
var message = this._onWatchResult ? this._onWatchResult(messages[j]) : messages[j]; |
||||
this.callbacks[i].call(this, message); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
/// should be called to uninstall current filter
|
||||
Filter.prototype.uninstall = function() { |
||||
this.impl.uninstallFilter(this.id); |
||||
web3.provider.stopPolling(this.id); |
||||
}; |
||||
|
||||
/// should be called to manually trigger getting latest messages from the client
|
||||
Filter.prototype.messages = function() { |
||||
return this.impl.getMessages(this.id); |
||||
}; |
||||
|
||||
/// alias for messages
|
||||
Filter.prototype.logs = function () { |
||||
return this.messages(); |
||||
}; |
||||
|
||||
module.exports = Filter; |
@ -0,0 +1,154 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file formatters.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2015 |
||||
*/ |
||||
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var BigNumber = require('bignumber.js'); // jshint ignore:line
|
||||
} |
||||
|
||||
var utils = require('./utils'); |
||||
var c = require('./const'); |
||||
|
||||
/// @param string string to be padded
|
||||
/// @param number of characters that result string should have
|
||||
/// @param sign, by default 0
|
||||
/// @returns right aligned string
|
||||
var padLeft = function (string, chars, sign) { |
||||
return new Array(chars - string.length + 1).join(sign ? sign : "0") + string; |
||||
}; |
||||
|
||||
/// Formats input value to byte representation of int
|
||||
/// If value is negative, return it's two's complement
|
||||
/// If the value is floating point, round it down
|
||||
/// @returns right-aligned byte representation of int
|
||||
var formatInputInt = function (value) { |
||||
var padding = c.ETH_PADDING * 2; |
||||
if (value instanceof BigNumber || typeof value === 'number') { |
||||
if (typeof value === 'number') |
||||
value = new BigNumber(value); |
||||
BigNumber.config(c.ETH_BIGNUMBER_ROUNDING_MODE); |
||||
value = value.round(); |
||||
|
||||
if (value.lessThan(0))
|
||||
value = new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).plus(value).plus(1); |
||||
value = value.toString(16); |
||||
} |
||||
else if (value.indexOf('0x') === 0) |
||||
value = value.substr(2); |
||||
else if (typeof value === 'string') |
||||
value = formatInputInt(new BigNumber(value)); |
||||
else |
||||
value = (+value).toString(16); |
||||
return padLeft(value, padding); |
||||
}; |
||||
|
||||
/// Formats input value to byte representation of string
|
||||
/// @returns left-algined byte representation of string
|
||||
var formatInputString = function (value) { |
||||
return utils.fromAscii(value, c.ETH_PADDING).substr(2); |
||||
}; |
||||
|
||||
/// Formats input value to byte representation of bool
|
||||
/// @returns right-aligned byte representation bool
|
||||
var formatInputBool = function (value) { |
||||
return '000000000000000000000000000000000000000000000000000000000000000' + (value ? '1' : '0'); |
||||
}; |
||||
|
||||
/// Formats input value to byte representation of real
|
||||
/// Values are multiplied by 2^m and encoded as integers
|
||||
/// @returns byte representation of real
|
||||
var formatInputReal = function (value) { |
||||
return formatInputInt(new BigNumber(value).times(new BigNumber(2).pow(128)));
|
||||
}; |
||||
|
||||
|
||||
/// Check if input value is negative
|
||||
/// @param value is hex format
|
||||
/// @returns true if it is negative, otherwise false
|
||||
var signedIsNegative = function (value) { |
||||
return (new BigNumber(value.substr(0, 1), 16).toString(2).substr(0, 1)) === '1'; |
||||
}; |
||||
|
||||
/// Formats input right-aligned input bytes to int
|
||||
/// @returns right-aligned input bytes formatted to int
|
||||
var formatOutputInt = function (value) { |
||||
value = value || "0"; |
||||
// check if it's negative number
|
||||
// it it is, return two's complement
|
||||
if (signedIsNegative(value)) { |
||||
return new BigNumber(value, 16).minus(new BigNumber('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', 16)).minus(1); |
||||
} |
||||
return new BigNumber(value, 16); |
||||
}; |
||||
|
||||
/// Formats big right-aligned input bytes to uint
|
||||
/// @returns right-aligned input bytes formatted to uint
|
||||
var formatOutputUInt = function (value) { |
||||
value = value || "0"; |
||||
return new BigNumber(value, 16); |
||||
}; |
||||
|
||||
/// @returns input bytes formatted to real
|
||||
var formatOutputReal = function (value) { |
||||
return formatOutputInt(value).dividedBy(new BigNumber(2).pow(128));
|
||||
}; |
||||
|
||||
/// @returns input bytes formatted to ureal
|
||||
var formatOutputUReal = function (value) { |
||||
return formatOutputUInt(value).dividedBy(new BigNumber(2).pow(128));
|
||||
}; |
||||
|
||||
/// @returns right-aligned input bytes formatted to hex
|
||||
var formatOutputHash = function (value) { |
||||
return "0x" + value; |
||||
}; |
||||
|
||||
/// @returns right-aligned input bytes formatted to bool
|
||||
var formatOutputBool = function (value) { |
||||
return value === '0000000000000000000000000000000000000000000000000000000000000001' ? true : false; |
||||
}; |
||||
|
||||
/// @returns left-aligned input bytes formatted to ascii string
|
||||
var formatOutputString = function (value) { |
||||
return utils.toAscii(value); |
||||
}; |
||||
|
||||
/// @returns right-aligned input bytes formatted to address
|
||||
var formatOutputAddress = function (value) { |
||||
return "0x" + value.slice(value.length - 40, value.length); |
||||
}; |
||||
|
||||
|
||||
module.exports = { |
||||
formatInputInt: formatInputInt, |
||||
formatInputString: formatInputString, |
||||
formatInputBool: formatInputBool, |
||||
formatInputReal: formatInputReal, |
||||
formatOutputInt: formatOutputInt, |
||||
formatOutputUInt: formatOutputUInt, |
||||
formatOutputReal: formatOutputReal, |
||||
formatOutputUReal: formatOutputUReal, |
||||
formatOutputHash: formatOutputHash, |
||||
formatOutputBool: formatOutputBool, |
||||
formatOutputString: formatOutputString, |
||||
formatOutputAddress: formatOutputAddress |
||||
}; |
||||
|
@ -1,95 +0,0 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file httprpc.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
// TODO: is these line is supposed to be here?
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:line
|
||||
} |
||||
|
||||
var HttpRpcProvider = function (host) { |
||||
this.handlers = []; |
||||
this.host = host; |
||||
}; |
||||
|
||||
function formatJsonRpcObject(object) { |
||||
return { |
||||
jsonrpc: '2.0', |
||||
method: object.call, |
||||
params: object.args, |
||||
id: object._id |
||||
}; |
||||
} |
||||
|
||||
function formatJsonRpcMessage(message) { |
||||
var object = JSON.parse(message); |
||||
|
||||
return { |
||||
_id: object.id, |
||||
data: object.result, |
||||
error: object.error |
||||
}; |
||||
} |
||||
|
||||
HttpRpcProvider.prototype.sendRequest = function (payload, cb) { |
||||
var data = formatJsonRpcObject(payload); |
||||
|
||||
var request = new XMLHttpRequest(); |
||||
request.open("POST", this.host, true); |
||||
request.send(JSON.stringify(data)); |
||||
request.onreadystatechange = function () { |
||||
if (request.readyState === 4 && cb) { |
||||
cb(request); |
||||
} |
||||
}; |
||||
}; |
||||
|
||||
HttpRpcProvider.prototype.send = function (payload) { |
||||
var self = this; |
||||
this.sendRequest(payload, function (request) { |
||||
self.handlers.forEach(function (handler) { |
||||
handler.call(self, formatJsonRpcMessage(request.responseText)); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
HttpRpcProvider.prototype.poll = function (payload, id) { |
||||
var self = this; |
||||
this.sendRequest(payload, function (request) { |
||||
var parsed = JSON.parse(request.responseText); |
||||
if (parsed.error || (parsed.result instanceof Array ? parsed.result.length === 0 : !parsed.result)) { |
||||
return; |
||||
} |
||||
self.handlers.forEach(function (handler) { |
||||
handler.call(self, {_event: payload.call, _id: id, data: parsed.result}); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
Object.defineProperty(HttpRpcProvider.prototype, "onmessage", { |
||||
set: function (handler) { |
||||
this.handlers.push(handler); |
||||
} |
||||
}); |
||||
|
||||
if (typeof(module) !== "undefined") |
||||
module.exports = HttpRpcProvider; |
@ -0,0 +1,46 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file httpsync.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:line
|
||||
} |
||||
|
||||
var HttpSyncProvider = function (host) { |
||||
this.handlers = []; |
||||
this.host = host || 'http://localhost:8080'; |
||||
}; |
||||
|
||||
HttpSyncProvider.prototype.send = function (payload) { |
||||
//var data = formatJsonRpcObject(payload);
|
||||
|
||||
var request = new XMLHttpRequest(); |
||||
request.open('POST', this.host, false); |
||||
request.send(JSON.stringify(payload)); |
||||
|
||||
// check request.status
|
||||
var result = request.responseText; |
||||
return JSON.parse(result); |
||||
}; |
||||
|
||||
module.exports = HttpSyncProvider; |
||||
|
@ -0,0 +1,65 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file jsonrpc.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2015 |
||||
*/ |
||||
|
||||
var messageId = 1; |
||||
|
||||
/// Should be called to valid json create payload object
|
||||
/// @param method of jsonrpc call, required
|
||||
/// @param params, an array of method params, optional
|
||||
/// @returns valid jsonrpc payload object
|
||||
var toPayload = function (method, params) { |
||||
if (!method) |
||||
console.error('jsonrpc method should be specified!'); |
||||
|
||||
return { |
||||
jsonrpc: '2.0', |
||||
method: method, |
||||
params: params || [], |
||||
id: messageId++ |
||||
};
|
||||
}; |
||||
|
||||
/// Should be called to check if jsonrpc response is valid
|
||||
/// @returns true if response is valid, otherwise false
|
||||
var isValidResponse = function (response) { |
||||
return !!response && |
||||
!response.error && |
||||
response.jsonrpc === '2.0' && |
||||
typeof response.id === 'number' && |
||||
response.result !== undefined; // only undefined is not valid json object
|
||||
}; |
||||
|
||||
/// Should be called to create batch payload object
|
||||
/// @param messages, an array of objects with method (required) and params (optional) fields
|
||||
var toBatchPayload = function (messages) { |
||||
return messages.map(function (message) { |
||||
return toPayload(message.method, message.params); |
||||
});
|
||||
}; |
||||
|
||||
module.exports = { |
||||
toPayload: toPayload, |
||||
isValidResponse: isValidResponse, |
||||
toBatchPayload: toBatchPayload |
||||
}; |
||||
|
||||
|
@ -0,0 +1,18 @@ |
||||
var addressName = {"0x12378912345789": "Gav", "0x57835893478594739854": "Jeff"}; |
||||
var nameAddress = {}; |
||||
|
||||
for (var prop in addressName) { |
||||
if (addressName.hasOwnProperty(prop)) { |
||||
nameAddress[addressName[prop]] = prop; |
||||
} |
||||
} |
||||
|
||||
var local = { |
||||
addressBook:{ |
||||
byName: addressName, |
||||
byAddress: nameAddress |
||||
} |
||||
}; |
||||
|
||||
if (typeof(module) !== "undefined") |
||||
module.exports = local; |
@ -0,0 +1,102 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file providermanager.js |
||||
* @authors: |
||||
* Jeffrey Wilcke <jeff@ethdev.com> |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* Gav Wood <g@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
var web3 = require('./web3');
|
||||
var jsonrpc = require('./jsonrpc'); |
||||
|
||||
|
||||
/** |
||||
* Provider manager object prototype |
||||
* It's responsible for passing messages to providers |
||||
* If no provider is set it's responsible for queuing requests |
||||
* It's also responsible for polling the ethereum node for incoming messages |
||||
* Default poll timeout is 12 seconds |
||||
* If we are running ethereum.js inside ethereum browser, there are backend based tools responsible for polling, |
||||
* and provider manager polling mechanism is not used |
||||
*/ |
||||
var ProviderManager = function() { |
||||
this.polls = []; |
||||
this.provider = undefined; |
||||
|
||||
var self = this; |
||||
var poll = function () { |
||||
self.polls.forEach(function (data) { |
||||
var result = self.send(data.data); |
||||
|
||||
if (!(result instanceof Array) || result.length === 0) { |
||||
return; |
||||
} |
||||
|
||||
data.callback(result); |
||||
}); |
||||
|
||||
setTimeout(poll, 1000); |
||||
}; |
||||
poll(); |
||||
}; |
||||
|
||||
/// sends outgoing requests
|
||||
/// @params data - an object with at least 'method' property
|
||||
ProviderManager.prototype.send = function(data) { |
||||
var payload = jsonrpc.toPayload(data.method, data.params); |
||||
|
||||
if (this.provider === undefined) { |
||||
console.error('provider is not set'); |
||||
return null;
|
||||
} |
||||
|
||||
var result = this.provider.send(payload); |
||||
|
||||
if (!jsonrpc.isValidResponse(result)) { |
||||
console.log(result); |
||||
return null; |
||||
} |
||||
|
||||
return result.result; |
||||
}; |
||||
|
||||
/// setups provider, which will be used for sending messages
|
||||
ProviderManager.prototype.set = function(provider) { |
||||
this.provider = provider; |
||||
}; |
||||
|
||||
/// this method is only used, when we do not have native qt bindings and have to do polling on our own
|
||||
/// should be callled, on start watching for eth/shh changes
|
||||
ProviderManager.prototype.startPolling = function (data, pollId, callback) { |
||||
this.polls.push({data: data, id: pollId, callback: callback}); |
||||
}; |
||||
|
||||
/// should be called to stop polling for certain watch changes
|
||||
ProviderManager.prototype.stopPolling = function (pollId) { |
||||
for (var i = this.polls.length; i--;) { |
||||
var poll = this.polls[i]; |
||||
if (poll.id === pollId) { |
||||
this.polls.splice(i, 1); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
module.exports = ProviderManager; |
||||
|
@ -0,0 +1,79 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file types.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2015 |
||||
*/ |
||||
|
||||
var f = require('./formatters'); |
||||
|
||||
/// @param expected type prefix (string)
|
||||
/// @returns function which checks if type has matching prefix. if yes, returns true, otherwise false
|
||||
var prefixedType = function (prefix) { |
||||
return function (type) { |
||||
return type.indexOf(prefix) === 0; |
||||
}; |
||||
}; |
||||
|
||||
/// @param expected type name (string)
|
||||
/// @returns function which checks if type is matching expected one. if yes, returns true, otherwise false
|
||||
var namedType = function (name) { |
||||
return function (type) { |
||||
return name === type; |
||||
}; |
||||
}; |
||||
|
||||
/// Setups input formatters for solidity types
|
||||
/// @returns an array of input formatters
|
||||
var inputTypes = function () { |
||||
|
||||
return [ |
||||
{ type: prefixedType('uint'), format: f.formatInputInt }, |
||||
{ type: prefixedType('int'), format: f.formatInputInt }, |
||||
{ type: prefixedType('hash'), format: f.formatInputInt }, |
||||
{ type: prefixedType('string'), format: f.formatInputString },
|
||||
{ type: prefixedType('real'), format: f.formatInputReal }, |
||||
{ type: prefixedType('ureal'), format: f.formatInputReal }, |
||||
{ type: namedType('address'), format: f.formatInputInt }, |
||||
{ type: namedType('bool'), format: f.formatInputBool } |
||||
]; |
||||
}; |
||||
|
||||
/// Setups output formaters for solidity types
|
||||
/// @returns an array of output formatters
|
||||
var outputTypes = function () { |
||||
|
||||
return [ |
||||
{ type: prefixedType('uint'), format: f.formatOutputUInt }, |
||||
{ type: prefixedType('int'), format: f.formatOutputInt }, |
||||
{ type: prefixedType('hash'), format: f.formatOutputHash }, |
||||
{ type: prefixedType('string'), format: f.formatOutputString }, |
||||
{ type: prefixedType('real'), format: f.formatOutputReal }, |
||||
{ type: prefixedType('ureal'), format: f.formatOutputUReal }, |
||||
{ type: namedType('address'), format: f.formatOutputAddress }, |
||||
{ type: namedType('bool'), format: f.formatOutputBool } |
||||
]; |
||||
}; |
||||
|
||||
module.exports = { |
||||
prefixedType: prefixedType, |
||||
namedType: namedType, |
||||
inputTypes: inputTypes, |
||||
outputTypes: outputTypes |
||||
}; |
||||
|
@ -0,0 +1,142 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file utils.js |
||||
* @authors: |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* @date 2015 |
||||
*/ |
||||
|
||||
var c = require('./const'); |
||||
|
||||
/// Finds first index of array element matching pattern
|
||||
/// @param array
|
||||
/// @param callback pattern
|
||||
/// @returns index of element
|
||||
var findIndex = function (array, callback) { |
||||
var end = false; |
||||
var i = 0; |
||||
for (; i < array.length && !end; i++) { |
||||
end = callback(array[i]); |
||||
} |
||||
return end ? i - 1 : -1; |
||||
}; |
||||
|
||||
/// @returns ascii string representation of hex value prefixed with 0x
|
||||
var toAscii = function(hex) { |
||||
// Find termination
|
||||
var str = ""; |
||||
var i = 0, l = hex.length; |
||||
if (hex.substring(0, 2) === '0x') { |
||||
i = 2; |
||||
} |
||||
for (; i < l; i+=2) { |
||||
var code = parseInt(hex.substr(i, 2), 16); |
||||
if (code === 0) { |
||||
break; |
||||
} |
||||
|
||||
str += String.fromCharCode(code); |
||||
} |
||||
|
||||
return str; |
||||
}; |
||||
|
||||
var toHex = function(str) { |
||||
var hex = ""; |
||||
for(var i = 0; i < str.length; i++) { |
||||
var n = str.charCodeAt(i).toString(16); |
||||
hex += n.length < 2 ? '0' + n : n; |
||||
} |
||||
|
||||
return hex; |
||||
}; |
||||
|
||||
/// @returns hex representation (prefixed by 0x) of ascii string
|
||||
var fromAscii = function(str, pad) { |
||||
pad = pad === undefined ? 0 : pad; |
||||
var hex = toHex(str); |
||||
while (hex.length < pad*2) |
||||
hex += "00"; |
||||
return "0x" + hex; |
||||
}; |
||||
|
||||
/// @returns display name for function/event eg. multiply(uint256) -> multiply
|
||||
var extractDisplayName = function (name) { |
||||
var length = name.indexOf('(');
|
||||
return length !== -1 ? name.substr(0, length) : name; |
||||
}; |
||||
|
||||
/// @returns overloaded part of function/event name
|
||||
var extractTypeName = function (name) { |
||||
/// TODO: make it invulnerable
|
||||
var length = name.indexOf('('); |
||||
return length !== -1 ? name.substr(length + 1, name.length - 1 - (length + 1)).replace(' ', '') : ""; |
||||
}; |
||||
|
||||
/// Filters all function from input abi
|
||||
/// @returns abi array with filtered objects of type 'function'
|
||||
var filterFunctions = function (json) { |
||||
return json.filter(function (current) { |
||||
return current.type === 'function';
|
||||
});
|
||||
}; |
||||
|
||||
/// Filters all events form input abi
|
||||
/// @returns abi array with filtered objects of type 'event'
|
||||
var filterEvents = function (json) { |
||||
return json.filter(function (current) { |
||||
return current.type === 'event'; |
||||
}); |
||||
}; |
||||
|
||||
/// used to transform value/string to eth string
|
||||
/// TODO: use BigNumber.js to parse int
|
||||
/// TODO: add tests for it!
|
||||
var toEth = function (str) { |
||||
var val = typeof str === "string" ? str.indexOf('0x') === 0 ? parseInt(str.substr(2), 16) : parseInt(str) : str; |
||||
var unit = 0; |
||||
var units = c.ETH_UNITS; |
||||
while (val > 3000 && unit < units.length - 1) |
||||
{ |
||||
val /= 1000; |
||||
unit++; |
||||
} |
||||
var s = val.toString().length < val.toFixed(2).length ? val.toString() : val.toFixed(2); |
||||
var replaceFunction = function($0, $1, $2) { |
||||
return $1 + ',' + $2; |
||||
}; |
||||
|
||||
while (true) { |
||||
var o = s; |
||||
s = s.replace(/(\d)(\d\d\d[\.\,])/, replaceFunction); |
||||
if (o === s) |
||||
break; |
||||
} |
||||
return s + ' ' + units[unit]; |
||||
}; |
||||
|
||||
module.exports = { |
||||
findIndex: findIndex, |
||||
toAscii: toAscii, |
||||
fromAscii: fromAscii, |
||||
extractDisplayName: extractDisplayName, |
||||
extractTypeName: extractTypeName, |
||||
filterFunctions: filterFunctions, |
||||
filterEvents: filterEvents, |
||||
toEth: toEth |
||||
}; |
||||
|
@ -1,78 +0,0 @@ |
||||
/* |
||||
This file is part of ethereum.js. |
||||
|
||||
ethereum.js is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU Lesser General Public License as published by |
||||
the Free Software Foundation, either version 3 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
ethereum.js is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU Lesser General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU Lesser General Public License |
||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
/** @file websocket.js |
||||
* @authors: |
||||
* Jeffrey Wilcke <jeff@ethdev.com> |
||||
* Marek Kotewicz <marek@ethdev.com> |
||||
* Marian Oancea <marian@ethdev.com> |
||||
* @date 2014 |
||||
*/ |
||||
|
||||
// TODO: is these line is supposed to be here?
|
||||
if (process.env.NODE_ENV !== 'build') { |
||||
var WebSocket = require('ws'); // jshint ignore:line
|
||||
} |
||||
|
||||
var WebSocketProvider = function(host) { |
||||
// onmessage handlers
|
||||
this.handlers = []; |
||||
// queue will be filled with messages if send is invoked before the ws is ready
|
||||
this.queued = []; |
||||
this.ready = false; |
||||
|
||||
this.ws = new WebSocket(host); |
||||
|
||||
var self = this; |
||||
this.ws.onmessage = function(event) { |
||||
for(var i = 0; i < self.handlers.length; i++) { |
||||
self.handlers[i].call(self, JSON.parse(event.data), event); |
||||
} |
||||
}; |
||||
|
||||
this.ws.onopen = function() { |
||||
self.ready = true; |
||||
|
||||
for(var i = 0; i < self.queued.length; i++) { |
||||
// Resend
|
||||
self.send(self.queued[i]); |
||||
} |
||||
}; |
||||
}; |
||||
|
||||
WebSocketProvider.prototype.send = function(payload) { |
||||
if(this.ready) { |
||||
var data = JSON.stringify(payload); |
||||
|
||||
this.ws.send(data); |
||||
} else { |
||||
this.queued.push(payload); |
||||
} |
||||
}; |
||||
|
||||
WebSocketProvider.prototype.onMessage = function(handler) { |
||||
this.handlers.push(handler); |
||||
}; |
||||
|
||||
WebSocketProvider.prototype.unload = function() { |
||||
this.ws.close(); |
||||
}; |
||||
Object.defineProperty(WebSocketProvider.prototype, "onmessage", { |
||||
set: function(provider) { this.onMessage(provider); } |
||||
}); |
||||
|
||||
if (typeof(module) !== "undefined") |
||||
module.exports = WebSocketProvider; |
@ -0,0 +1,860 @@ |
||||
var assert = require('assert'); |
||||
var BigNumber = require('bignumber.js'); |
||||
var abi = require('../lib/abi.js'); |
||||
var clone = function (object) { return JSON.parse(JSON.stringify(object)); }; |
||||
|
||||
var description = [{ |
||||
"name": "test", |
||||
"inputs": [{ |
||||
"name": "a", |
||||
"type": "uint256" |
||||
} |
||||
], |
||||
"outputs": [ |
||||
{ |
||||
"name": "d", |
||||
"type": "uint256" |
||||
} |
||||
] |
||||
}]; |
||||
|
||||
describe('abi', function() { |
||||
describe('inputParser', function() { |
||||
it('should parse input uint', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "uint" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input uint128', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "uint128" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input uint256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "uint256" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input int', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "int" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal(parser.test(-1), "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); |
||||
assert.equal(parser.test(-2), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"); |
||||
assert.equal(parser.test(-16), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
}); |
||||
|
||||
it('should parse input int128', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "int128" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal(parser.test(-1), "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); |
||||
assert.equal(parser.test(-2), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"); |
||||
assert.equal(parser.test(-16), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input int256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "int256" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(10), "000000000000000000000000000000000000000000000000000000000000000a"); |
||||
assert.equal(parser.test(-1), "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"); |
||||
assert.equal(parser.test(-2), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe"); |
||||
assert.equal(parser.test(-16), "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0"); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"),
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal( |
||||
parser.test(new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16)), |
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" |
||||
); |
||||
assert.equal(parser.test(0.1), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test(3.9), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input bool', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: 'bool' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test(true), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.test(false), "0000000000000000000000000000000000000000000000000000000000000000"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input hash', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "hash" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x407d73d8a49eeb85d32cf465507dd71d507100c1"), "000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1"); |
||||
|
||||
});
|
||||
|
||||
it('should parse input hash256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "hash256" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x407d73d8a49eeb85d32cf465507dd71d507100c1"), "000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1"); |
||||
|
||||
}); |
||||
|
||||
|
||||
it('should parse input hash160', function() { |
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "hash160" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x407d73d8a49eeb85d32cf465507dd71d507100c1"), "000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1"); |
||||
}); |
||||
|
||||
it('should parse input address', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "address" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d) |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x407d73d8a49eeb85d32cf465507dd71d507100c1"), "000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1"); |
||||
|
||||
}); |
||||
|
||||
it('should parse input string', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "string" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test('hello'),
|
||||
"000000000000000000000000000000000000000000000000000000000000000568656c6c6f000000000000000000000000000000000000000000000000000000" |
||||
); |
||||
assert.equal( |
||||
parser.test('world'), |
||||
"0000000000000000000000000000000000000000000000000000000000000005776f726c64000000000000000000000000000000000000000000000000000000" |
||||
); |
||||
}); |
||||
|
||||
it('should use proper method name', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
d[0].name = 'helloworld(int)'; |
||||
d[0].inputs = [ |
||||
{ type: "int" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.helloworld(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal(parser.helloworld['int'](1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
|
||||
}); |
||||
|
||||
it('should parse multiple methods', function () { |
||||
|
||||
// given
|
||||
var d = [{ |
||||
name: "test", |
||||
inputs: [{ type: "int" }], |
||||
outputs: [{ type: "int" }] |
||||
},{ |
||||
name: "test2", |
||||
inputs: [{ type: "string" }], |
||||
outputs: [{ type: "string" }] |
||||
}]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
//then
|
||||
assert.equal(parser.test(1), "0000000000000000000000000000000000000000000000000000000000000001"); |
||||
assert.equal( |
||||
parser.test2('hello'),
|
||||
"000000000000000000000000000000000000000000000000000000000000000568656c6c6f000000000000000000000000000000000000000000000000000000" |
||||
); |
||||
|
||||
}); |
||||
|
||||
it('should parse input array of ints', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: "int[]" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test([5, 6]), |
||||
"0000000000000000000000000000000000000000000000000000000000000002" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000006" |
||||
); |
||||
}); |
||||
|
||||
it('should parse input real', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: 'real' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test([1]), "0000000000000000000000000000000100000000000000000000000000000000");
|
||||
assert.equal(parser.test([2.125]), "0000000000000000000000000000000220000000000000000000000000000000");
|
||||
assert.equal(parser.test([8.5]), "0000000000000000000000000000000880000000000000000000000000000000");
|
||||
assert.equal(parser.test([-1]), "ffffffffffffffffffffffffffffffff00000000000000000000000000000000");
|
||||
|
||||
}); |
||||
|
||||
it('should parse input ureal', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].inputs = [ |
||||
{ type: 'ureal' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.inputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test([1]), "0000000000000000000000000000000100000000000000000000000000000000");
|
||||
assert.equal(parser.test([2.125]), "0000000000000000000000000000000220000000000000000000000000000000");
|
||||
assert.equal(parser.test([8.5]), "0000000000000000000000000000000880000000000000000000000000000000");
|
||||
|
||||
}); |
||||
|
||||
}); |
||||
|
||||
describe('outputParser', function() { |
||||
it('should parse output string', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: "string" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0], |
||||
'hello' |
||||
); |
||||
assert.equal( |
||||
parser.test("0x" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"776f726c64000000000000000000000000000000000000000000000000000000")[0],
|
||||
'world' |
||||
); |
||||
|
||||
}); |
||||
|
||||
it('should parse output uint', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'uint' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10) |
||||
); |
||||
assert.equal( |
||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10) |
||||
); |
||||
}); |
||||
|
||||
it('should parse output uint256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'uint256' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10) |
||||
); |
||||
assert.equal( |
||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10) |
||||
); |
||||
}); |
||||
|
||||
it('should parse output uint128', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'uint128' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal( |
||||
parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0].toString(10),
|
||||
new BigNumber("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16).toString(10) |
||||
); |
||||
assert.equal( |
||||
parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0].toString(10),
|
||||
new BigNumber("fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0", 16).toString(10) |
||||
); |
||||
}); |
||||
|
||||
it('should parse output int', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'int' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1); |
||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16); |
||||
}); |
||||
|
||||
it('should parse output int256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'int256' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1); |
||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16); |
||||
}); |
||||
|
||||
it('should parse output int128', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'int128' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test("0x000000000000000000000000000000000000000000000000000000000000000a")[0], 10); |
||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff")[0], -1); |
||||
assert.equal(parser.test("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0")[0], -16); |
||||
}); |
||||
|
||||
it('should parse output hash', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'hash' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0], |
||||
"0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1" |
||||
); |
||||
}); |
||||
|
||||
it('should parse output hash256', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'hash256' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0], |
||||
"0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1" |
||||
); |
||||
}); |
||||
|
||||
it('should parse output hash160', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'hash160' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0], |
||||
"0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1" |
||||
); |
||||
// TODO shouldnt' the expected hash be shorter?
|
||||
}); |
||||
|
||||
it('should parse output address', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'address' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x000000000000000000000000407d73d8a49eeb85d32cf465507dd71d507100c1")[0], |
||||
"0x407d73d8a49eeb85d32cf465507dd71d507100c1" |
||||
); |
||||
}); |
||||
|
||||
it('should parse output bool', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'bool' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000001")[0], true); |
||||
assert.equal(parser.test("0x0000000000000000000000000000000000000000000000000000000000000000")[0], false); |
||||
|
||||
|
||||
}); |
||||
|
||||
it('should parse output real', function() { |
||||
|
||||
// given
|
||||
var d = clone(description);
|
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'real' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000100000000000000000000000000000000")[0], 1); |
||||
assert.equal(parser.test("0x0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
||||
assert.equal(parser.test("0xffffffffffffffffffffffffffffffff00000000000000000000000000000000")[0], -1);
|
||||
|
||||
}); |
||||
|
||||
it('should parse output ureal', function() { |
||||
|
||||
// given
|
||||
var d = clone(description);
|
||||
|
||||
d[0].outputs = [ |
||||
{ type: 'ureal' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000100000000000000000000000000000000")[0], 1); |
||||
assert.equal(parser.test("0x0000000000000000000000000000000220000000000000000000000000000000")[0], 2.125);
|
||||
assert.equal(parser.test("0x0000000000000000000000000000000880000000000000000000000000000000")[0], 8.5);
|
||||
|
||||
}); |
||||
|
||||
|
||||
it('should parse multiple output strings', function() { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
|
||||
d[0].outputs = [ |
||||
{ type: "string" }, |
||||
{ type: "string" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal( |
||||
parser.test("0x" + |
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
||||
"776f726c64000000000000000000000000000000000000000000000000000000")[0], |
||||
'hello' |
||||
); |
||||
assert.equal( |
||||
parser.test("0x" + |
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"68656c6c6f000000000000000000000000000000000000000000000000000000" +
|
||||
"776f726c64000000000000000000000000000000000000000000000000000000")[1], |
||||
'world' |
||||
); |
||||
|
||||
}); |
||||
|
||||
it('should use proper method name', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
d[0].name = 'helloworld(int)'; |
||||
d[0].outputs = [ |
||||
{ type: "int" } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.helloworld("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.helloworld['int']("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
|
||||
}); |
||||
|
||||
|
||||
it('should parse multiple methods', function () { |
||||
|
||||
// given
|
||||
var d = [{ |
||||
name: "test", |
||||
inputs: [{ type: "int" }], |
||||
outputs: [{ type: "int" }] |
||||
},{ |
||||
name: "test2", |
||||
inputs: [{ type: "string" }], |
||||
outputs: [{ type: "string" }] |
||||
}]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
//then
|
||||
assert.equal(parser.test("0000000000000000000000000000000000000000000000000000000000000001")[0], 1); |
||||
assert.equal(parser.test2("0x" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" + |
||||
"68656c6c6f000000000000000000000000000000000000000000000000000000")[0], |
||||
"hello" |
||||
); |
||||
|
||||
}); |
||||
|
||||
it('should parse output array', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
d[0].outputs = [ |
||||
{ type: 'int[]' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x" + |
||||
"0000000000000000000000000000000000000000000000000000000000000002" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000006")[0][0], |
||||
5 |
||||
); |
||||
assert.equal(parser.test("0x" + |
||||
"0000000000000000000000000000000000000000000000000000000000000002" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000005" +
|
||||
"0000000000000000000000000000000000000000000000000000000000000006")[0][1], |
||||
6 |
||||
); |
||||
|
||||
}); |
||||
|
||||
it('should parse 0x value', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
d[0].outputs = [ |
||||
{ type: 'int' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x")[0], 0); |
||||
|
||||
}); |
||||
|
||||
it('should parse 0x value', function () { |
||||
|
||||
// given
|
||||
var d = clone(description); |
||||
d[0].outputs = [ |
||||
{ type: 'uint' } |
||||
]; |
||||
|
||||
// when
|
||||
var parser = abi.outputParser(d); |
||||
|
||||
// then
|
||||
assert.equal(parser.test("0x")[0], 0); |
||||
|
||||
}); |
||||
|
||||
}); |
||||
}); |
||||
|
@ -0,0 +1,14 @@ |
||||
|
||||
var assert = require('assert'); |
||||
var web3 = require('../index.js'); |
||||
var u = require('./test.utils.js'); |
||||
|
||||
describe('web3', function() { |
||||
describe('db', function() { |
||||
u.methodExists(web3.db, 'put'); |
||||
u.methodExists(web3.db, 'get'); |
||||
u.methodExists(web3.db, 'putString'); |
||||
u.methodExists(web3.db, 'getString'); |
||||
}); |
||||
}); |
||||
|
@ -0,0 +1,34 @@ |
||||
var assert = require('assert'); |
||||
var web3 = require('../index.js'); |
||||
var u = require('./test.utils.js'); |
||||
|
||||
describe('web3', function() { |
||||
describe('eth', function() { |
||||
u.methodExists(web3.eth, 'balanceAt'); |
||||
u.methodExists(web3.eth, 'stateAt'); |
||||
u.methodExists(web3.eth, 'storageAt'); |
||||
u.methodExists(web3.eth, 'countAt'); |
||||
u.methodExists(web3.eth, 'codeAt'); |
||||
u.methodExists(web3.eth, 'transact'); |
||||
u.methodExists(web3.eth, 'call'); |
||||
u.methodExists(web3.eth, 'block'); |
||||
u.methodExists(web3.eth, 'transaction'); |
||||
u.methodExists(web3.eth, 'uncle'); |
||||
u.methodExists(web3.eth, 'compilers'); |
||||
u.methodExists(web3.eth, 'lll'); |
||||
u.methodExists(web3.eth, 'solidity'); |
||||
u.methodExists(web3.eth, 'serpent'); |
||||
u.methodExists(web3.eth, 'logs'); |
||||
|
||||
u.propertyExists(web3.eth, 'coinbase'); |
||||
u.propertyExists(web3.eth, 'listening'); |
||||
u.propertyExists(web3.eth, 'mining'); |
||||
u.propertyExists(web3.eth, 'gasPrice'); |
||||
u.propertyExists(web3.eth, 'accounts'); |
||||
u.propertyExists(web3.eth, 'peerCount'); |
||||
u.propertyExists(web3.eth, 'defaultBlock'); |
||||
u.propertyExists(web3.eth, 'number'); |
||||
}); |
||||
}); |
||||
|
||||
|
@ -0,0 +1,2 @@ |
||||
--reporter spec |
||||
|
@ -0,0 +1,14 @@ |
||||
var assert = require('assert'); |
||||
var web3 = require('../index.js'); |
||||
var u = require('./test.utils.js'); |
||||
|
||||
describe('web3', function() { |
||||
describe('shh', function() { |
||||
u.methodExists(web3.shh, 'post'); |
||||
u.methodExists(web3.shh, 'newIdentity'); |
||||
u.methodExists(web3.shh, 'haveIdentity'); |
||||
u.methodExists(web3.shh, 'newGroup'); |
||||
u.methodExists(web3.shh, 'addToGroup'); |
||||
}); |
||||
}); |
||||
|
@ -0,0 +1,19 @@ |
||||
var assert = require('assert'); |
||||
|
||||
var methodExists = function (object, method) { |
||||
it('should have method ' + method + ' implemented', function() { |
||||
assert.equal('function', typeof object[method], 'method ' + method + ' is not implemented'); |
||||
}); |
||||
}; |
||||
|
||||
var propertyExists = function (object, property) { |
||||
it('should have property ' + property + ' implemented', function() { |
||||
assert.notEqual('undefined', typeof object[property], 'property ' + property + ' is not implemented'); |
||||
}); |
||||
}; |
||||
|
||||
module.exports = { |
||||
methodExists: methodExists, |
||||
propertyExists: propertyExists |
||||
}; |
||||
|
@ -0,0 +1,10 @@ |
||||
var assert = require('assert'); |
||||
var web3 = require('../index.js'); |
||||
var u = require('./test.utils.js'); |
||||
|
||||
describe('web3', function() { |
||||
u.methodExists(web3, 'sha3'); |
||||
u.methodExists(web3, 'toAscii'); |
||||
u.methodExists(web3, 'fromAscii'); |
||||
}); |
||||
|
@ -1,22 +0,0 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<title>Ethereum</title> |
||||
|
||||
<style type="text/css"> |
||||
h1 { |
||||
text-align: center; |
||||
font-family: Courier; |
||||
font-size: 50pt; |
||||
} |
||||
</style> |
||||
</head> |
||||
|
||||
<body> |
||||
<h1>... Ethereum ...</h1> |
||||
<ul> |
||||
<li><a href="http://std.eth">std::Service</a></li> |
||||
</ul> |
||||
</body> |
||||
</html> |
||||
|
@ -1,481 +0,0 @@ |
||||
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
// MA 02110-1301 USA
|
||||
|
||||
// The magic return variable. The magic return variable will be set during the execution of the QML call.
|
||||
(function(window) { |
||||
var Promise = window.Promise; |
||||
if(typeof(Promise) === "undefined") { |
||||
var Promise = Q.Promise; |
||||
} |
||||
|
||||
function isPromise(o) { |
||||
return typeof o === "object" && o.then |
||||
} |
||||
|
||||
window.eth = { |
||||
_callbacks: {}, |
||||
_events: {}, |
||||
prototype: Object(), |
||||
|
||||
toHex: function(str) { |
||||
var hex = ""; |
||||
for(var i = 0; i < str.length; i++) { |
||||
var n = str.charCodeAt(i).toString(16); |
||||
hex += n.length < 2 ? '0' + n : n; |
||||
} |
||||
|
||||
return hex; |
||||
}, |
||||
|
||||
toAscii: function(hex) { |
||||
// Find termination
|
||||
var str = ""; |
||||
var i = 0, l = hex.length; |
||||
for(; i < l; i+=2) { |
||||
var code = hex.charCodeAt(i) |
||||
if(code == 0) { |
||||
break; |
||||
} |
||||
|
||||
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16)); |
||||
} |
||||
|
||||
return str; |
||||
}, |
||||
|
||||
fromAscii: function(str, pad) { |
||||
if(pad === undefined) { |
||||
pad = 32 |
||||
} |
||||
|
||||
var hex = this.toHex(str); |
||||
|
||||
while(hex.length < pad*2) |
||||
hex += "00"; |
||||
|
||||
return hex |
||||
}, |
||||
|
||||
block: function(numberOrHash) { |
||||
return new Promise(function(resolve, reject) { |
||||
var func; |
||||
if(typeof numberOrHash == "string") { |
||||
func = "getBlockByHash"; |
||||
} else { |
||||
func = "getBlockByNumber"; |
||||
} |
||||
|
||||
postData({call: func, args: [numberOrHash]}, function(block) { |
||||
if(block) |
||||
resolve(block); |
||||
else |
||||
reject("not found"); |
||||
|
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
transact: function(params) { |
||||
if(params === undefined) { |
||||
params = {}; |
||||
} |
||||
|
||||
if(params.endowment !== undefined) |
||||
params.value = params.endowment; |
||||
if(params.code !== undefined) |
||||
params.data = params.code; |
||||
|
||||
|
||||
var promises = [] |
||||
if(isPromise(params.to)) { |
||||
promises.push(params.to.then(function(_to) { params.to = _to; })); |
||||
} |
||||
if(isPromise(params.from)) { |
||||
promises.push(params.from.then(function(_from) { params.from = _from; })); |
||||
} |
||||
|
||||
if(typeof params.data !== "object" || isPromise(params.data)) { |
||||
params.data = [params.data] |
||||
} |
||||
|
||||
var data = params.data; |
||||
for(var i = 0; i < params.data.length; i++) { |
||||
if(isPromise(params.data[i])) { |
||||
var promise = params.data[i]; |
||||
var _i = i; |
||||
promises.push(promise.then(function(_arg) { params.data[_i] = _arg; })); |
||||
} |
||||
} |
||||
|
||||
// Make sure everything is string
|
||||
var fields = ["value", "gas", "gasPrice"]; |
||||
for(var i = 0; i < fields.length; i++) { |
||||
if(params[fields[i]] === undefined) { |
||||
params[fields[i]] = ""; |
||||
} |
||||
params[fields[i]] = params[fields[i]].toString(); |
||||
} |
||||
|
||||
// Load promises then call the last "transact".
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
params.data = params.data.join(""); |
||||
postData({call: "transact", args: params}, function(data) { |
||||
if(data[1]) |
||||
reject(data[0]); |
||||
else |
||||
resolve(data[0]); |
||||
}); |
||||
}); |
||||
}) |
||||
}, |
||||
|
||||
compile: function(code) { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "compile", args: [code]}, function(data) { |
||||
if(data[1]) |
||||
reject(data[0]); |
||||
else |
||||
resolve(data[0]); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
balanceAt: function(address) { |
||||
var promises = []; |
||||
|
||||
if(isPromise(address)) { |
||||
promises.push(address.then(function(_address) { address = _address; })); |
||||
} |
||||
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getBalanceAt", args: [address]}, function(balance) { |
||||
resolve(balance); |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
countAt: function(address) { |
||||
var promises = []; |
||||
|
||||
if(isPromise(address)) { |
||||
promises.push(address.then(function(_address) { address = _address; })); |
||||
} |
||||
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getCountAt", args: [address]}, function(count) { |
||||
resolve(count); |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
codeAt: function(address) { |
||||
var promises = []; |
||||
|
||||
if(isPromise(address)) { |
||||
promises.push(address.then(function(_address) { address = _address; })); |
||||
} |
||||
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getCodeAt", args: [address]}, function(code) { |
||||
resolve(code); |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
storageAt: function(address, storageAddress) { |
||||
var promises = []; |
||||
|
||||
if(isPromise(address)) { |
||||
promises.push(address.then(function(_address) { address = _address; })); |
||||
} |
||||
|
||||
if(isPromise(storageAddress)) { |
||||
promises.push(storageAddress.then(function(_sa) { storageAddress = _sa; })); |
||||
} |
||||
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getStorageAt", args: [address, storageAddress]}, function(entry) { |
||||
resolve(entry); |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
stateAt: function(address, storageAddress) { |
||||
return this.storageAt(address, storageAddress); |
||||
}, |
||||
|
||||
call: function(params) { |
||||
if(params === undefined) { |
||||
params = {}; |
||||
} |
||||
|
||||
if(params.endowment !== undefined) |
||||
params.value = params.endowment; |
||||
if(params.code !== undefined) |
||||
params.data = params.code; |
||||
|
||||
|
||||
var promises = [] |
||||
if(isPromise(params.to)) { |
||||
promises.push(params.to.then(function(_to) { params.to = _to; })); |
||||
} |
||||
if(isPromise(params.from)) { |
||||
promises.push(params.from.then(function(_from) { params.from = _from; })); |
||||
} |
||||
|
||||
if(isPromise(params.data)) { |
||||
promises.push(params.data.then(function(_code) { params.data = _code; })); |
||||
} else { |
||||
if(typeof params.data === "object") { |
||||
data = ""; |
||||
for(var i = 0; i < params.data.length; i++) { |
||||
data += params.data[i] |
||||
} |
||||
} else { |
||||
data = params.data; |
||||
} |
||||
} |
||||
|
||||
// Make sure everything is string
|
||||
var fields = ["value", "gas", "gasPrice"]; |
||||
for(var i = 0; i < fields.length; i++) { |
||||
if(params[fields[i]] === undefined) { |
||||
params[fields[i]] = ""; |
||||
} |
||||
params[fields[i]] = params[fields[i]].toString(); |
||||
} |
||||
|
||||
// Load promises then call the last "transact".
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "call", args: params}, function(data) { |
||||
if(data[1]) |
||||
reject(data[0]); |
||||
else |
||||
resolve(data[0]); |
||||
}); |
||||
}); |
||||
}) |
||||
}, |
||||
|
||||
watch: function(params) { |
||||
return new Filter(params); |
||||
}, |
||||
|
||||
secretToAddress: function(key) { |
||||
var promises = []; |
||||
if(isPromise(key)) { |
||||
promises.push(key.then(function(_key) { key = _key; })); |
||||
} |
||||
|
||||
return Q.all(promises).then(function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getSecretToAddress", args: [key]}, function(address) { |
||||
resolve(address); |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
|
||||
on: function(event, cb) { |
||||
if(eth._events[event] === undefined) { |
||||
eth._events[event] = []; |
||||
} |
||||
|
||||
eth._events[event].push(cb); |
||||
|
||||
return this |
||||
}, |
||||
|
||||
off: function(event, cb) { |
||||
if(eth._events[event] !== undefined) { |
||||
var callbacks = eth._events[event]; |
||||
for(var i = 0; i < callbacks.length; i++) { |
||||
if(callbacks[i] === cb) { |
||||
delete callbacks[i]; |
||||
} |
||||
} |
||||
} |
||||
|
||||
return this |
||||
}, |
||||
|
||||
trigger: function(event, data) { |
||||
var callbacks = eth._events[event]; |
||||
if(callbacks !== undefined) { |
||||
for(var i = 0; i < callbacks.length; i++) { |
||||
// Figure out whether the returned data was an array
|
||||
// array means multiple return arguments (multiple params)
|
||||
if(data instanceof Array) { |
||||
callbacks[i].apply(this, data); |
||||
} else { |
||||
callbacks[i].call(this, data); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
}; |
||||
|
||||
// Eth object properties
|
||||
Object.defineProperty(eth, "key", { |
||||
get: function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getKey"}, function(k) { |
||||
resolve(k); |
||||
}); |
||||
}); |
||||
}, |
||||
}); |
||||
|
||||
Object.defineProperty(eth, "gasPrice", { |
||||
get: function() { |
||||
return "10000000000000" |
||||
} |
||||
}); |
||||
|
||||
Object.defineProperty(eth, "coinbase", { |
||||
get: function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getCoinBase"}, function(coinbase) { |
||||
resolve(coinbase); |
||||
}); |
||||
}); |
||||
}, |
||||
}); |
||||
|
||||
Object.defineProperty(eth, "listening", { |
||||
get: function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getIsListening"}, function(listening) { |
||||
resolve(listening); |
||||
}); |
||||
}); |
||||
}, |
||||
}); |
||||
|
||||
|
||||
Object.defineProperty(eth, "mining", { |
||||
get: function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getIsMining"}, function(mining) { |
||||
resolve(mining); |
||||
}); |
||||
}); |
||||
}, |
||||
}); |
||||
|
||||
Object.defineProperty(eth, "peerCount", { |
||||
get: function() { |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getPeerCount"}, function(peerCount) { |
||||
resolve(peerCount); |
||||
}); |
||||
}); |
||||
}, |
||||
}); |
||||
|
||||
var filters = []; |
||||
var Filter = function(options) { |
||||
filters.push(this); |
||||
|
||||
this.callbacks = []; |
||||
this.options = options; |
||||
|
||||
var call; |
||||
if(options === "chain") { |
||||
call = "newFilterString" |
||||
} else if(typeof options === "object") { |
||||
call = "newFilter" |
||||
} |
||||
|
||||
var self = this; // Cheaper than binding
|
||||
this.promise = new Promise(function(resolve, reject) { |
||||
postData({call: call, args: [options]}, function(id) { |
||||
self.id = id; |
||||
|
||||
resolve(id); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
Filter.prototype.changed = function(callback) { |
||||
var self = this; |
||||
this.promise.then(function(id) { |
||||
self.callbacks.push(callback); |
||||
}); |
||||
}; |
||||
|
||||
Filter.prototype.trigger = function(messages, id) { |
||||
if(id == this.id) { |
||||
for(var i = 0; i < this.callbacks.length; i++) { |
||||
this.callbacks[i].call(this, messages); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
Filter.prototype.uninstall = function() { |
||||
this.promise.then(function(id) { |
||||
postData({call: "uninstallFilter", args:[id]}); |
||||
}); |
||||
}; |
||||
|
||||
Filter.prototype.messages = function() { |
||||
var self=this; |
||||
return Q.all([this.promise]).then(function() { |
||||
var id = self.id |
||||
return new Promise(function(resolve, reject) { |
||||
postData({call: "getMessages", args: [id]}, function(messages) { |
||||
resolve(messages); |
||||
}); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
// Register to the messages callback. "messages" will be emitted when new messages
|
||||
// from the client have been created.
|
||||
eth.on("messages", function(messages, id) { |
||||
for(var i = 0; i < filters.length; i++) { |
||||
filters[i].trigger(messages, id); |
||||
} |
||||
}); |
||||
|
||||
|
||||
var g_seed = 1; |
||||
function postData(data, cb) { |
||||
data._seed = g_seed; |
||||
if(cb) { |
||||
eth._callbacks[data._seed] = cb; |
||||
} |
||||
|
||||
if(data.args === undefined) { |
||||
data.args = []; |
||||
} |
||||
|
||||
g_seed++; |
||||
|
||||
window._messagingAdapter.call(this, JSON.stringify(data)) |
||||
} |
||||
})(this); |
File diff suppressed because it is too large
Load Diff
@ -1,30 +0,0 @@ |
||||
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
// MA 02110-1301 USA
|
||||
|
||||
function HandleMessage(data) { |
||||
var message; |
||||
try { message = JSON.parse(data) } catch(e) {}; |
||||
|
||||
if(message) { |
||||
switch(message.type) { |
||||
case "coinbase": |
||||
return eth.coinBase(); |
||||
case "block": |
||||
return eth.blockByNumber(0); |
||||
} |
||||
} |
||||
} |
@ -1,38 +0,0 @@ |
||||
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
// MA 02110-1301 USA
|
||||
|
||||
window._messagingAdapter = function(data) { |
||||
navigator.qt.postMessage(data); |
||||
}; |
||||
|
||||
navigator.qt.onmessage = function(ev) { |
||||
var data = JSON.parse(ev.data) |
||||
|
||||
if(data._event !== undefined) { |
||||
eth.trigger(data._event, data.data); |
||||
} else { |
||||
if(data._seed) { |
||||
var cb = eth._callbacks[data._seed]; |
||||
if(cb) { |
||||
cb.call(this, data.data) |
||||
|
||||
// Remove the "trigger" callback
|
||||
delete eth._callbacks[ev._seed]; |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,8 +0,0 @@ |
||||
(function() { |
||||
if (typeof(Promise) === "undefined") |
||||
window.Promise = Q.Promise; |
||||
|
||||
var eth = web3.eth; |
||||
|
||||
web3.setProvider(new web3.providers.QtProvider()); |
||||
})() |
@ -1,75 +0,0 @@ |
||||
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2.1 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
// MA 02110-1301 USA
|
||||
|
||||
String.prototype.pad = function(l, r) { |
||||
if (r === undefined) { |
||||
r = l |
||||
if (!(this.substr(0, 2) == "0x" || /^\d+$/.test(this))) |
||||
l = 0 |
||||
} |
||||
var ret = this.bin(); |
||||
while (ret.length < l) |
||||
ret = "\0" + ret |
||||
while (ret.length < r) |
||||
ret = ret + "\0" |
||||
return ret; |
||||
} |
||||
|
||||
String.prototype.unpad = function() { |
||||
var i = this.length; |
||||
while (i && this[i - 1] == "\0") |
||||
--i |
||||
return this.substr(0, i) |
||||
} |
||||
|
||||
String.prototype.bin = function() { |
||||
if (this.substr(0, 2) == "0x") { |
||||
bytes = [] |
||||
var i = 2; |
||||
|
||||
// Check if it's odd - pad with a zero if so.
|
||||
if (this.length % 2) |
||||
bytes.push(parseInt(this.substr(i++, 1), 16)) |
||||
|
||||
for (; i < this.length - 1; i += 2) |
||||
bytes.push(parseInt(this.substr(i, 2), 16)); |
||||
|
||||
return String.fromCharCode.apply(String, bytes); |
||||
} else if (/^\d+$/.test(this)) |
||||
return bigInt(this.substr(0)).toHex().bin() |
||||
|
||||
// Otherwise we'll return the "String" object instead of an actual string
|
||||
return this.substr(0, this.length) |
||||
} |
||||
|
||||
String.prototype.unbin = function() { |
||||
var i, l, o = ''; |
||||
for(i = 0, l = this.length; i < l; i++) { |
||||
var n = this.charCodeAt(i).toString(16); |
||||
o += n.length < 2 ? '0' + n : n; |
||||
} |
||||
|
||||
return "0x" + o; |
||||
} |
||||
|
||||
String.prototype.dec = function() { |
||||
return bigInt(this.substr(0)).toString() |
||||
} |
||||
|
||||
String.prototype.hex = function() { |
||||
return bigInt(this.substr(0)).toHex() |
||||
} |
@ -1,44 +0,0 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<title>Tests</title> |
||||
</head> |
||||
|
||||
<body> |
||||
<button onclick="test();">Test me</button> |
||||
|
||||
<script type="text/javascript"> |
||||
function test() { |
||||
var filter = eth.watch({ |
||||
latest: -1, |
||||
from: "e6716f9544a56c530d868e4bfbacb172315bdead", |
||||
altered: ["aabb", {id: "eeff", "at": "aabb"}], |
||||
}); |
||||
|
||||
filter.changed(function(messages) { |
||||
console.log("messages", messages) |
||||
}) |
||||
|
||||
filter.getMessages(function(messages) { |
||||
console.log("getMessages", messages) |
||||
}); |
||||
|
||||
eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(entries) { |
||||
for(var i = 0; i < entries.length; i++) { |
||||
console.log(entries[i].key, " : ", entries[i].value) |
||||
} |
||||
}) |
||||
|
||||
eth.getBlock("f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd", function(block) { |
||||
console.log(block) |
||||
}) |
||||
|
||||
eth.mutan("var a = 10", function(code) { |
||||
console.log("code", code) |
||||
}); |
||||
} |
||||
</script> |
||||
|
||||
</body> |
||||
|
||||
</html> |
@ -0,0 +1,83 @@ |
||||
<!doctype> |
||||
<html> |
||||
<head> |
||||
<title>Ethereum</title> |
||||
<script type="text/javascript" src="../ext/bignumber.min.js"></script> |
||||
<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script> |
||||
<style type="text/css"> |
||||
body { |
||||
font-family: Helvetica; |
||||
} |
||||
div.logo { |
||||
width: 192px; |
||||
margin: 40px auto; |
||||
} |
||||
</style> |
||||
</head> |
||||
<body> |
||||
<div class="logo"><img src="logo.png"></img></div> |
||||
<h1>Info</h1> |
||||
|
||||
<table width="100%"> |
||||
<tr> |
||||
<td>Block number</td> |
||||
<td id="number"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Peer count</td> |
||||
<td id="peer_count"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Accounts</td> |
||||
<td id="accounts"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Gas price</td> |
||||
<td id="gas_price"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Mining</td> |
||||
<td id="mining"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Listening</td> |
||||
<td id="listening"></td> |
||||
</tr> |
||||
|
||||
<tr> |
||||
<td>Coinbase</td> |
||||
<td id="coinbase"></td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
|
||||
<script type="text/javascript"> |
||||
var web3 = require('web3'); |
||||
var eth = web3.eth; |
||||
|
||||
web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8545')); |
||||
|
||||
document.querySelector("#number").innerHTML = eth.number; |
||||
document.querySelector("#coinbase").innerHTML = eth.coinbase |
||||
document.querySelector("#peer_count").innerHTML = eth.peerCount; |
||||
document.querySelector("#accounts").innerHTML = eth.accounts; |
||||
document.querySelector("#gas_price").innerHTML = eth.gasPrice; |
||||
document.querySelector("#mining").innerHTML = eth.mining; |
||||
document.querySelector("#listening").innerHTML = eth.listening; |
||||
|
||||
eth.watch('pending').changed(function() { |
||||
console.log("pending changed"); |
||||
}); |
||||
eth.watch('chain').changed(function() { |
||||
document.querySelector("#number").innerHTML = eth.number; |
||||
}); |
||||
|
||||
</script> |
||||
|
||||
</html> |
||||
|
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue