Forgae node default parameters

Hi, I’m using forgae node to deploy a local tesnet. Which are the following default parameters? (I think i can use the proxy parameters)

API_URL
INTERNAL_API_URL
STATE_CHANNEL_URL
NETWORK_ID
RESPONDER_HOST
RESPONDER_PORT

I’m trying to run the follownig example: tutorials/state-channels-introduction.md at master · aeternity/tutorials · GitHub

Hi, you can check this demo. It is work with js-sdk 3.1.0 and node 2.3.0/2.5.0
With these parameters it is work with forgae node

(async function () {

    const compilerURL = 'https://compiler.aepps.com';

    const {
        Channel,
        Universal,
    } = require('@aeternity/aepp-sdk');

    const API_URL = 'http://localhost:3001';
    const INTERNAL_API_URL = 'http://localhost:3113';
    const NETWORK_ID = 'ae_devnet';
    
    
    const initiatorKeyPair = {
        publicKey: 'ak_2mwRmUeYmfuW93ti9HMSUJzCk1EYcQEfikVSzgo6k2VghsWhgU',
        secretKey: 'bb9f0b01c8c9553cfbaf7ef81a50f977b1326801ebf7294d1c2cbccdedf27476e9bbf604e611b5460a3b3999e9771b6f60417d73ce7c5519e12f7e127a1225ca'
    }
    
    const responderKeyPair = {
        publicKey: 'ak_fUq2NesPXcYZ1CcqBcGC3StpdnQw3iVxMA3YSeCNAwfN4myQk',
        secretKey: '7c6e602a94f30e4ea7edabe4376314f69ba7eaa2f355ecedb339df847b6f0d80575f81ffb0a297b7725dc671da0b1769b1fc5cbe45385c7b5ad1fc2eaf1d609d'
    }

    let initiator;
    let responder;
    let initiatorCh;
    let responderCh;
    
    await createAccounts();
    
    async function createAccounts() {
    
        initiator = await Universal({
            networkId: NETWORK_ID,
            url: API_URL,
            internalUrl: INTERNAL_API_URL,
            keypair: initiatorKeyPair,
            compilerUrl: compilerURL
        })
        
        responder = await Universal({
            networkId: NETWORK_ID,
            url: API_URL,
            internalUrl: INTERNAL_API_URL,
            keypair: responderKeyPair,
            compilerUrl: compilerURL
        });

        await initiator.spend('6000000000000000', responderKeyPair.publicKey);
    }
    
    const initiatorSign = (tag, tx) => {
        console.log('initiator sign', tag);
        console.log(tx);
        console.log();
        return initiator.signTransaction(tx)
    }
    
    const responderSign = (tag, tx) => {
        console.log('responder sign', tag);
        console.log(tx);
        console.log();

        return responder.signTransaction(tx)
    }
    
    const sharedParams = {
        url: 'ws://localhost:3001',
        pushAmount: 3,
        initiatorAmount: 1000000000000000,
        responderAmount: 1000000000000000,
        channelReserve: 20000000000,
        ttl: 10000,
        host: 'localhost',
        port: 3001,
        lockPeriod: 1
    }

    sharedParams.initiatorId = await initiator.address()
    sharedParams.responderId = await responder.address()

    await initiator.spend('6000000000000000', await responder.address());

    initiatorCh = await Channel({
        ...sharedParams,
        role: 'initiator',
        sign: initiatorSign
    })
    
    responderCh = await Channel({
        ...sharedParams,
        role: 'responder',
        sign: responderSign
    })

    initiatorCh.on('statusChanged', (status) => {
        console.log(`[${status.toUpperCase()}]`);
        console.log();
    })

    const amount = 10
    const result = await initiatorCh.update(
      await initiator.address(),
      await responder.address(),
      amount,
      //initiatorSign
      async (tx) => initiator.signTransaction(tx)
    );

    console.log('[UPDATE]', result);

    setTimeout(() => {
        responderCh.shutdown(
            async (tx) => responder.signTransaction(tx)
        ).then((tx) => {
            console.log('==> State channel has been closed. You can track this transaction onchain', tx)
        }).catch(e => {
            console.log('==> Error:', e);
        })
    }, 30000);
})();
2 Likes

@fedecaccia Hey, the demo that you show is not supposed to run with forgae, but with bare aeternity node.

The example that Aleksey has pasted is working with the latest version of forgae.

Of course I think that you can use the ports from this demo to run the one that you are trying.

const API_URL = 'http://localhost:3001';
const INTERNAL_API_URL = 'http://localhost:3113';
const NETWORK_ID = 'ae_devnet'
url: 'ws://localhost:3001'

I hope this helps,
Martin

2 Likes