UNPKG

@silvana-one/api

Version:
103 lines (100 loc) 3.2 kB
export { networks, Mainnet, Devnet, Zeko, ZekoAlphaNet, Lightnet, Local, }; const Mainnet = { mina: [ //"https://proxy.devnet.minaexplorer.com/graphql", "https://api.minascan.io/node/mainnet/v1/graphql", ], archive: [ "https://api.minascan.io/archive/mainnet/v1/graphql", //"https://archive.devnet.minaexplorer.com", ], explorerAccountUrl: "https://minascan.io/mainnet/account/", explorerTransactionUrl: "https://minascan.io/mainnet/tx/", explorerTokenUrl: "https://minascan.io/mainnet/token/", launchpadUrl: "https://minatokens.com", chainId: "mina:mainnet", name: "Mainnet", }; const Local = { mina: [], archive: [], chainId: "mina:local", }; const Devnet = { mina: [ "https://api.minascan.io/node/devnet/v1/graphql", //"https://proxy.devnet.minaexplorer.com/graphql", ], archive: [ "https://api.minascan.io/archive/devnet/v1/graphql", //"https://archive.devnet.minaexplorer.com", ], explorerAccountUrl: "https://minascan.io/devnet/account/", explorerTransactionUrl: "https://minascan.io/devnet/tx/", explorerTokenUrl: "https://minascan.io/devnet/token/", launchpadUrl: "https://minatokens.com", chainId: "mina:devnet", name: "Devnet", faucet: "https://faucet.minaprotocol.com", }; const Zeko = { mina: ["https://devnet.zeko.io/graphql"], archive: ["https://devnet.zeko.io/graphql"], explorerAccountUrl: "https://zekoscan.io/testnet/account/", explorerTransactionUrl: "https://zekoscan.io/testnet/tx/", explorerTokenUrl: "https://zekoscan.io/testnet/token/", launchpadUrl: "https://zekotokens.com", chainId: "zeko:testnet", name: "Zeko", faucet: "https://zeko.io/faucet", }; const ZekoAlphaNet = { mina: ["https://alphanet.zeko.io/graphql"], archive: ["https://archive.alphanet.zeko.io/graphql"], explorerAccountUrl: "", explorerTransactionUrl: "", chainId: "zeko:alphanet", name: "Zeko AlphaNet", faucet: "", }; const Lightnet = { mina: ["http://localhost:8080/graphql"], archive: ["http://localhost:8282"], accountManager: "http://localhost:8181", chainId: "mina:lightnet", name: "Lightnet", }; const networks = [ Mainnet, Local, Devnet, Zeko, ZekoAlphaNet, Lightnet, ]; /* // not supported by o1js v1 const Berkeley: MinaNetwork = { mina: [ "https://api.minascan.io/node/berkeley/v1/graphql", "https://proxy.berkeley.minaexplorer.com/graphql", ], archive: [ "https://api.minascan.io/archive/berkeley/v1/graphql", "https://archive.berkeley.minaexplorer.com", ], explorerAccountUrl: "https://minascan.io/berkeley/account/", explorerTransactionUrl: "https://minascan.io/berkeley/tx/", chainId: "berkeley", name: "Berkeley", }; const TestWorld2: MinaNetwork = { mina: ["https://api.minascan.io/node/testworld/v1/graphql"], archive: ["https://archive.testworld.minaexplorer.com"], explorerAccountUrl: "https://minascan.io/testworld/account/", explorerTransactionUrl: "https://minascan.io/testworld/tx/", chainId: "testworld2", name: "TestWorld2", }; */ //# sourceMappingURL=networks.js.map