File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,15 @@ export const sendNoOpTransaction = async (
16
16
try {
17
17
const {
18
18
result : { queueId } ,
19
- } = await engine . backendWallet . transfer ( "anvil" , backendWallet , {
20
- amount : "0" ,
21
- currencyAddress : "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" ,
22
- to : backendWallet ,
23
- } ) ;
19
+ } = await engine . backendWallet . transfer (
20
+ CONFIG . CHAIN . id . toString ( ) ,
21
+ backendWallet ,
22
+ {
23
+ amount : "0" ,
24
+ currencyAddress : "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" ,
25
+ to : backendWallet ,
26
+ } ,
27
+ ) ;
24
28
return queueId ;
25
29
} catch ( e ) {
26
30
console . error ( "Error sending NoOp transaction:" , e ) ;
@@ -35,7 +39,7 @@ export const sendMintToTransaction = async (
35
39
) => {
36
40
try {
37
41
const res = await engine . erc721 . mintTo (
38
- "anvil" ,
42
+ CONFIG . CHAIN . id . toString ( ) ,
39
43
nftContractAddress ,
40
44
backendWallet ,
41
45
{
You can’t perform that action at this time.
0 commit comments