git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: cd54c9d2a59c3fbfe2477fd39f5493ec90eebb6b

Files: cd54c9d2a59c3fbfe2477fd39f5493ec90eebb6b / environment.js

2526 bytesRaw
1const U256 = require('./u256.js')
2const Address = require('./address.js')
3const Block = require('./block.js')
4const fakeBlockChain = require('./fakeBlockChain.js')
5
6module.exports = class Environment {
7 constructor (data) {
8 const defaults = {
9 block: new Block(),
10 blockchain: fakeBlockChain,
11 // gas tank
12 gasPrice: 0,
13 gasLeft: 1000000,
14 gasRefund: 0,
15 // call infromation
16 address: new Address('0x0000000000000000000000000000000000000000'),
17 origin: new Address('0x0000000000000000000000000000000000000000'),
18 caller: new Address('0x0000000000000000000000000000000000000000'),
19 callValue: new U256(0),
20 callData: new Uint8Array(),
21 // the ROM
22 code: new Uint8Array(), // the current running code
23 // output calls
24 logs: [],
25 selfDestructAddress: new Address('0x0000000000000000000000000000000000000000'),
26 // more output calls
27 returnValue: new Uint8Array()
28 }
29
30 this.state = new Map()
31
32 Object.assign(this, defaults, data || {})
33 }
34
35 addAccount (address, trie) {
36 let account = new Map()
37 account.set('nonce', trie.nonce || new U256(0))
38 account.set('balance', trie.balance || new U256(0))
39 account.set('code', trie.code || new Uint8Array())
40 account.set('storage', trie.storage || new Map())
41 this.state.set(address.toString(), account)
42 }
43
44 getBalance (address) {
45 const account = this.state.get(address.toString())
46 if (account) {
47 return account.get('balance')
48 } else {
49 return new U256()
50 }
51 }
52
53 getCode (address) {
54 const account = this.state.get(address.toString())
55 if (account) {
56 return account.get('code')
57 } else {
58 return Uint8Array.from(new Buffer([]))
59 }
60 }
61
62 getBlockHash (height) {
63 return this.blockchain.getBlock(height).hash()
64 }
65
66 set createHandler (value) {
67 this.createhandler = value
68 }
69
70 set callHandler (value) {
71 this.callhandler = value
72 }
73
74 // kernal
75 create (code, value) {
76 // STUB
77 return [ 1, Address.zero() ]
78 }
79
80 call (gas, address, value, data) {
81 // FIXME: create a child environment here
82 const ret = this.callhandler({
83 from: this.address,
84 to: address,
85 gasLimit: gas,
86 value: value,
87 data: data
88 })
89 return [ !!ret.executionOutcome, ret.returnValue ]
90 }
91
92 callCode (gas, address, value, data) {
93 // STUB
94 return [ 1, new Uint8Array() ]
95 }
96
97 delegateCall (gas, address, data) {
98 // STUB
99 return [ 1, new Uint8Array() ]
100 }
101}
102

Built with git-ssb-web