|
|
@@ -3,7 +3,7 @@ import NumKit from '@/plugins/kit/NumKit'
|
|
|
|
|
|
export default class EthMev {
|
|
|
static async getEthMevData(block, hash, dataVague, page=1, size=200) {
|
|
|
- const url = '/ethmev/findByHashOrBlockOrDataVague'
|
|
|
+ const url = '/ethmevftm/findByHashOrBlockOrDataVague'
|
|
|
const rst = await http.post(url, {
|
|
|
block: block,
|
|
|
hash: hash,
|
|
|
@@ -18,7 +18,7 @@ export default class EthMev {
|
|
|
static async getEthMevPendingData(block, hash, dataVague, page=1, size=200) {
|
|
|
if (!isNaN(parseInt(block)) && block.charAt(0) !== '-') block = '-' + block
|
|
|
|
|
|
- const url = '/ethmev/findByHashOrBlockOrDataVaguePending'
|
|
|
+ const url = '/ethmevftm/findByHashOrBlockOrDataVaguePending'
|
|
|
const rst = await http.post(url, {
|
|
|
block: block,
|
|
|
hash: hash,
|
|
|
@@ -31,7 +31,7 @@ export default class EthMev {
|
|
|
}
|
|
|
|
|
|
static async deleteByHash(hash) {
|
|
|
- const url = '/ethmev/deleteByHash'
|
|
|
+ const url = '/ethmevftm/deleteByHash'
|
|
|
const rst = await http.post(url, {
|
|
|
hash: hash
|
|
|
})
|
|
|
@@ -40,7 +40,7 @@ export default class EthMev {
|
|
|
}
|
|
|
|
|
|
static async appendOrUpdate(block, hash, dataVague) {
|
|
|
- const url = '/ethmev/appendOrUpdate'
|
|
|
+ const url = '/ethmevftm/appendOrUpdate'
|
|
|
const rst = await http.post(url, {
|
|
|
block: block,
|
|
|
hash: hash,
|