31 lines
688 B
JavaScript
31 lines
688 B
JavaScript
const market = {
|
|
feeToAddress: "0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
|
mallFeeAddress: "0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
|
paymentTokens: [
|
|
"0x0039f574ee5cc39bdd162e9a88e3eb1f111baf48", // USDT
|
|
],
|
|
}
|
|
|
|
const admins = {
|
|
admin: "0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
|
proposers: [
|
|
"0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
|
"0xb59f7DE6B6544a1d12df90a317dC3b1E037AF9A3"
|
|
],
|
|
executors: [
|
|
"0x50A8e60041A206AcaA5F844a1104896224be6F39",
|
|
"0xb59f7DE6B6544a1d12df90a317dC3b1E037AF9A3"
|
|
]
|
|
}
|
|
|
|
const token = {
|
|
baseTokenURI: 'https://market.cebg.games/api/nft/info/',
|
|
}
|
|
|
|
var config = {
|
|
market,
|
|
admins,
|
|
token
|
|
}
|
|
|
|
module.exports = config; |