mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 15:45:07 +00:00
c04e0dab4a
Added endpoints: - `RemainingAccountCapacity` - `RemainingKeypairCapacity` - `RemainingWatchOnlyAccountCapacity` - `RmaininngCapacityForSavedAddresses`
9 lines
200 B
Go
9 lines
200 B
Go
package constants
|
|
|
|
const (
|
|
MaxNumberOfAccounts = 20
|
|
MaxNumberOfKeypairs = 5 // including the profile keypair
|
|
MaxNumberOfWatchOnlyAccounts = 3
|
|
MaxNumberOfSavedAddresses = 20
|
|
)
|