2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-12-21 17:13:41 +00:00
|
|
|
abstract class FeaturedPaynyms {
|
2023-01-27 16:37:15 +00:00
|
|
|
// TODO: replace with actual value
|
|
|
|
// static const String samouraiWalletDevFund =
|
|
|
|
// "PM8TJYkuSdYXJnwDBq8ChfinfXv3srxhQrx3eoEwbSw51wMjdo9JJ2DsycwT3gt3zHQ7cV1grvabMmmf1Btj6fY7tgkgSz9B8MZuR3kjYfgMLMURJCXN";
|
2022-12-21 17:13:41 +00:00
|
|
|
static const String stackWallet =
|
2023-01-30 21:38:01 +00:00
|
|
|
"PM8TJdQcNk27JpxGRtNR7Hnh8VkJk4Nf17BthLx89fM3iX3UL2YshyaiTAvKgTCVvpgsAgY1DbojkAaUd3Rcn48NEn4uUBuqkaSddgKL8TPAAEQXNuE6";
|
2022-12-21 18:03:23 +00:00
|
|
|
|
|
|
|
static Map<String, String> get featured => {
|
|
|
|
"Stack Wallet": stackWallet,
|
2023-01-27 16:37:15 +00:00
|
|
|
// "Samourai Wallet Dev Fund": samouraiWalletDevFund,
|
2022-12-21 18:03:23 +00:00
|
|
|
};
|
2022-12-21 17:13:41 +00:00
|
|
|
}
|