Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/types/arbitrum_signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (

var ArbosAddress = common.HexToAddress("0xa4b05")
var ArbosStateAddress = common.HexToAddress("0xA4B05FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF")
var FilteredTransactionsStateAddress = common.HexToAddress("0xA4B0600000000000000000000000000000000000")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now is our chance to come up with some 1337sp34k like CE175012ED, or we can just go with ArbosStateAddress+1 like what we have already

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about:
0xA4B0500000000000000000000000000000000001

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lets have the constant name start with arbos so it'll be easy to understand it's for arbitrum

var ArbSysAddress = common.HexToAddress("0x64")
var ArbInfoAddress = common.HexToAddress("0x65")
var ArbAddressTableAddress = common.HexToAddress("0x66")
Expand All @@ -23,6 +24,7 @@ var ArbOwnerAddress = common.HexToAddress("0x70")
var ArbWasmAddress = common.HexToAddress("0x71")
var ArbWasmCacheAddress = common.HexToAddress("0x72")
var ArbNativeTokenManagerAddress = common.HexToAddress("0x73")
var ArbFilteredTransactionsManagerAddress = common.HexToAddress("0x74")
var NodeInterfaceAddress = common.HexToAddress("0xc8")
var NodeInterfaceDebugAddress = common.HexToAddress("0xc9")
var ArbDebugAddress = common.HexToAddress("0xff")
Expand Down
1 change: 1 addition & 0 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ var NetworkNames = map[string]string{
// ArbOSInit defines some initialization values for ArbOS state.
type ArbOSInit struct {
NativeTokenSupplyManagementEnabled bool `json:"nativeTokenSupplyManagementEnabled"`
TransactionFilteringEnabled bool `json:"transactionFilteringEnabled"`
}

// ChainConfig is the core config which determines the blockchain settings.
Expand Down
Loading