Skip to content

Commit

Permalink
added arbitrum
Browse files Browse the repository at this point in the history
  • Loading branch information
CoNETProject committed Sep 2, 2024
1 parent 03d9148 commit 70c9775
Show file tree
Hide file tree
Showing 10 changed files with 683 additions and 578 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@conet.project/conet-proxy",

"version": "0.2.13",
"version": "0.2.17",

"license": "UNLICENSED",
"files": [
Expand Down Expand Up @@ -31,7 +31,8 @@
"hexdump-nodejs": "^0.1.0",
"ip": "^2.0.1",
"ethers": "^6.13.1",
"eth-crypto": "^2.6.0"
"eth-crypto": "^2.6.0",
"openpgp": "^5.11.2"
},
"devDependencies": {
"@types/async": "^3.2.24",
Expand All @@ -47,7 +48,6 @@
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"jszip": "^3.10.1",
"openpgp": "^5.11.2",
"pouchdb": "^9.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
Expand Down
Empty file removed src/define.ts
Empty file.
47 changes: 46 additions & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
type nodes_info = {
country: string
customs_review_total?: number
ip_addr: string
last_online: boolean
lat?: number
lon?: number
outbound_total?: number
region: string
armoredPublicKey: string
publicKeyObj?: any
}
interface keyPair {
keyID: string
publicKeyArmor?: string
privateKeyArmor?: string
keyObj?:{
publicKeyObj: any
privateKeyObj: any
}
}
type pgpKeyPair = {
privateKeyArmor: string
publicKeyArmor: string
publicKeyObj?: any
privateKeyObj?: any
}

interface profile extends keyPair {
isPrimary?: boolean
pgpKey?: pgpKeyPair
privateKeyArmor: string
emailAddr?: string
hdPath: string
index: number
nodeID?: number
nodeIP_address?: string
nodeRegion?: string
}

export declare const launchDaemon : (port: number, path: string) => void
interface proxy {
restart: (currentProfile: profile, entryNodes: nodes_info[], egressNodes: nodes_info[]) => void
end: () => Promise<true>
}

export declare const launchDaemon : (port: number, path: string) => void

export declare const proxyServer: (post: string, entryNode: nodes_info, _egressNode: nodes_info, profile: profile) => proxy
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/local/bin
import {Daemon} from './localServer/localServer'
import { proxyServer as proxyServer_class } from './localServer/proxyServer'
const yargs = require('yargs')
const argv = yargs(process.argv.slice(2))
.usage('Usage: yarn run seguro-gateway --port [number] --path [string]')
Expand Down Expand Up @@ -35,6 +36,8 @@ export const launchDaemon = (port: number, path: string) => {
new Daemon ( port, path )
}

export const proxyServer = (post: string, entryNode: nodes_info, _egressNode: nodes_info, profile: profile) => new proxyServer_class(post, [entryNode], [_egressNode], profile, false, '')

if (argv.port || argv.path) {
PATH = argv.path
if (typeof argv.port === 'number') {
Expand All @@ -43,4 +46,5 @@ if (argv.port || argv.path) {
console.log('Invalid PORT, running on PORT 3001.')
}
launchDaemon(PORT, PATH)
}
}

12 changes: 8 additions & 4 deletions src/localServer/define.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ interface connectRequest {
}

type nodes_info = {
country: string
country?: string
customs_review_total?: number
ip_addr: string
last_online: boolean
last_online?: boolean
lat?: number
lon?: number
outbound_total?: number
region: string
armoredPublicKey: string
publicKeyObj?: any
domain?: string
}

interface connect_imap_reqponse {
Expand Down Expand Up @@ -236,6 +237,9 @@ interface conet_tokens {
blastETH: CryptoAsset
usdb: CryptoAsset

// Arbitrum
arb_eth?: CryptoAsset
arb_usdt?: CryptoAsset
// ETH
eth: CryptoAsset
usdt:CryptoAsset
Expand Down Expand Up @@ -392,7 +396,7 @@ interface CoNET_Module {
Web3Utils: any
forge: any
aesGcmEncrypt: (plaintext: string, password: string) => Promise<string>
aesGcmDecrypt: (ciphertext: string, password: string) => Promise<string>
aesGcmDecrypt: (ciphertext: string, password: string) => Promise<string>
}

type systemInitialization = {
Expand All @@ -405,7 +409,7 @@ type CoNETIndexDBInit = {
preferences: any
}

type SICommandObj_Command = 'getCoNETCashAccount'|'regiestRecipient'|'connecting'|'SaaS_Proxy'|'SaaS_Sock5'|'SaaS_Sock5_Data_Entry'
type SICommandObj_Command = 'SaaS_Proxy'|'SaaS_Sock5'|'mining'

interface SICommandObj {
command: SICommandObj_Command
Expand Down
184 changes: 12 additions & 172 deletions src/localServer/proxyServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ const createSock5ConnectCmd = async (currentProfile: profile, SaaSnode: nodes_in
if (!SaaSnode?.publicKeyObj) {
SaaSnode.publicKeyObj = await openpgp.readKey ({ armoredKey: SaaSnode.armoredPublicKey })
}


const key = Buffer.from(getRandomValues(new Uint8Array(16))).toString('base64')
const command: SICommandObj = {
command: 'SaaS_Sock5',
Expand All @@ -155,6 +157,7 @@ const createSock5ConnectCmd = async (currentProfile: profile, SaaSnode: nodes_in
requestData,
walletAddress: currentProfile.keyID.toLowerCase()
}

logger(Colors.blue(`createSock5ConnectCmd`))
const message =JSON.stringify(command)
const messageHash = ethers.id(message)
Expand Down Expand Up @@ -383,12 +386,13 @@ export class proxyServer {

public requestGetWay = async (uuuu : VE_IPptpStream, socket: Net.Socket ) => {

const upChannel_SaaS_node: nodes_info|null = getRandomSaaSNode(this._egressNodes)
const upChannel_SaaS_node = getRandomSaaSNode(this._egressNodes)


if (!upChannel_SaaS_node ) {
return logger (Colors.red(`proxyServer makeUpChannel upChannel_SaaS_node Null Error!`))
}
logger(inspect(upChannel_SaaS_node, false, 3, true))

const cmd = await createSock5ConnectCmd (this.currentProfile, upChannel_SaaS_node, [uuuu])
if (!cmd) {
Expand Down Expand Up @@ -429,177 +433,13 @@ export class proxyServer {
this.startLocalProxy()
}

public end = new Promise(resolve=> {
if (this.server !== null) {
this.server.close(err => {
resolve (true)
})
}
})
}
const profile = {
"isPrimary": false,
"keyID": "0x28b2ae27e135e89d9bcb40595f859b411bf4846c",
"privateKeyArmor": "0xd1806500c9ef182f981069c2ebcdb21f30f75c2e2620aedf5fc5a88a1271991c",
"hdPath": "m/44'/60'/0'/0/0/1",
"index": 1,
"isNode": true,
"nodeID": "234",
"nodeIP_address": "",
"nodeRegion": "",
"pgpKey": {
"privateKeyArmor": "-----BEGIN PGP PRIVATE KEY BLOCK-----\n\nxVgEZndrMBYJKwYBBAHaRw8BAQdAIzhghYSoVOl8yaim5tay6GwqW4+h77NT\nkJgLrb2Z72cAAQDdVdo2fyw2GtFBF2Qpd3T6BAv/YLMpb2Y5aSDfdjZrug1q\nzQDCjAQQFgoAPgWCZndrMAQLCQcICZC4mOKIpJkMwAMVCAoEFgACAQIZAQKb\nAwIeARYhBEbhCEnJjFv6tkW3LbiY4oikmQzAAAAKegD/bxWzqs+3Nvt52e/S\naTXLLRICcHRKI1+pM5ub/9gkw+UA/1Exk3IczFFJzfkgg2Yf4GW5MV9rWfuV\n5wN/AHUj5CsPx10EZndrMBIKKwYBBAGXVQEFAQEHQLPI3FS/F+Uh2ys/dEOi\nlphsmA2Ns1b+EhYRAAkpmN1uAwEIBwAA/0eYFVkHK6jEor/7IN7PVvVFB4M/\nizd42jdvnSJgoRZ4D3TCeAQYFgoAKgWCZndrMAmQuJjiiKSZDMACmwwWIQRG\n4QhJyYxb+rZFty24mOKIpJkMwAAA/TcA/RHAFxB/1DLrdThvO4XlxdrV1upY\nfBfghfDV42WXoszeAQCaX/1ZKIqPurrWZ8mYmvVj1n+kpoL7K1zy/cZ/a+6X\nCQ==\n=buDA\n-----END PGP PRIVATE KEY BLOCK-----\n",
"publicKeyArmor": "-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nxjMEZndrMBYJKwYBBAHaRw8BAQdAIzhghYSoVOl8yaim5tay6GwqW4+h77NT\nkJgLrb2Z72fNAMKMBBAWCgA+BYJmd2swBAsJBwgJkLiY4oikmQzAAxUICgQW\nAAIBAhkBApsDAh4BFiEERuEIScmMW/q2RbctuJjiiKSZDMAAAAp6AP9vFbOq\nz7c2+3nZ79JpNcstEgJwdEojX6kzm5v/2CTD5QD/UTGTchzMUUnN+SCDZh/g\nZbkxX2tZ+5XnA38AdSPkKw/OOARmd2swEgorBgEEAZdVAQUBAQdAs8jcVL8X\n5SHbKz90Q6KWmGyYDY2zVv4SFhEACSmY3W4DAQgHwngEGBYKACoFgmZ3azAJ\nkLiY4oikmQzAApsMFiEERuEIScmMW/q2RbctuJjiiKSZDMAAAP03AP0RwBcQ\nf9Qy63U4bzuF5cXa1dbqWHwX4IXw1eNll6LM3gEAml/9WSiKj7q61mfJmJr1\nY9Z/pKaC+ytc8v3Gf2vulwk=\n=irVj\n-----END PGP PUBLIC KEY BLOCK-----\n"
},
"tokens": {
"CGPNs": {
"balance": "0",
"history": [],
"network": "CONET Guardian Nodes (CGPNs)",
"decimal": 1,
"contract": "0x453701b80324c44366b34d167d40bce2d67d6047",
"name": "CGPNs"
},
"CGPN2s": {
"balance": "0",
"history": [],
"network": "CONET Guardian Nodes (CGPN2s)",
"decimal": 1,
"contract": "0x453701b80324c44366b34d167d40bce2d67d6047",
"name": "CGPN2s"
},
"cCNTP": {
"balance": "340112.74966555",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0x530cf1b598d716ec79aa916dd2f05ae8a0ce8ee2",
"name": "cCNTP"
},
"cBNBUSDT": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0xae752b49385812af323240b26a49070bb839b10d",
"name": "cBNBUSDT"
},
"cUSDB": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0x3258e9631ca4992f6674b114bd17c83ca30f734b",
"name": "cUSDB"
},
"CNTP": {
"balance": "0",
"history": [],
"network": "Blast Mainnet",
"decimal": 18,
"contract": "0x0f43685B2cB08b9FB8Ca1D981fF078C22Fec84c5",
"name": "CNTP"
},
"cUSDT": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0xfe75074c273b5e33fe268b1d5ac700d5b715da2f",
"name": "cUSDT"
},
"dWETH": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0x84b6d6A6675F830c8385f022Aefc9e3846A89D3B",
"name": "dWETH"
},
"dUSDT": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0x0eD55798a8b9647f7908c72a0Ce844ad47274422",
"name": "dUSDT"
},
"dWBNB": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0xd8b094E91c552c623bc054085871F6c1CA3E5cAd",
"name": "dWBNB"
},
"conet": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "",
"name": "conet"
},
"CNTPV1": {
"balance": "0",
"history": [],
"network": "CONET Holesky",
"decimal": 18,
"contract": "0x1a73e00ce25e5d56db1b5dd7b2dcdf8ec9f208d2",
"name": "CNTPV1"
},
"usdt": {
"balance": "0",
"history": [],
"network": "ETH",
"decimal": 6,
"contract": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"name": "usdt"
},
"usdb": {
"balance": "0",
"history": [],
"network": "Blast Mainnet",
"decimal": 18,
"contract": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"name": "usdb"
},
"eth": {
"balance": "0",
"history": [],
"network": "ETH",
"decimal": 18,
"contract": "",
"name": "eth"
},
"blastETH": {
"balance": "0",
"history": [],
"network": "Blast Mainnet",
"decimal": 18,
"contract": "",
"name": "blastETH"
},
"wbnb": {
"balance": "0",
"history": [],
"network": "BSC",
"decimal": 18,
"contract": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
"name": "wbnb"
},
"bnb": {
"balance": "0",
"history": [],
"network": "BSC",
"decimal": 18,
"contract": "",
"name": "bnb"
},
"wusdt": {
"balance": "0",
"history": [],
"network": "BSC",
"decimal": 18,
"contract": "0x55d398326f99059fF775485246999027B3197955",
"name": "wusdt"
}
},
"data": null,
referrer: '',

}

Loading

0 comments on commit 70c9775

Please sign in to comment.