@graphprotocol/graph-cli 0.30.3 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +3 -3
- package/src/command-helpers/abi.js +3 -0
- package/src/command-helpers/compiler.js +2 -1
- package/src/command-helpers/network.js +13 -1
- package/src/commands/add.js +22 -14
- package/src/commands/build.js +2 -2
- package/src/commands/deploy.js +39 -12
- package/src/commands/init.js +88 -9
- package/src/protocols/index.js +3 -0
- package/src/protocols/near/manifest.graphql +6 -0
- package/tests/cli/validation/near-is-valid/subgraph.yaml +8 -0
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ As of today, the command line interface supports the following commands:
|
|
|
16
16
|
- `graph auth` — Stores a [Graph Node](https://github.com/graphprotocol/graph-node) access token in the system's keychain.
|
|
17
17
|
- `graph local` — Runs tests against a [Graph Node](https://github.com/graphprotocol/graph-node) test environment (using Ganache by default).
|
|
18
18
|
- `graph test` — Downloads and runs the [Matchstick](https://github.com/LimeChain/matchstick) rust binary in order to test a subgraph.
|
|
19
|
+
- `graph add` - Adds a new datasource to the yaml file and writes the necessary changes to other files - schema.graphql, abi and mapping.
|
|
19
20
|
|
|
20
21
|
## How It Works
|
|
21
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphprotocol/graph-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.0",
|
|
4
4
|
"license": "(Apache-2.0 OR MIT)",
|
|
5
5
|
"description": "CLI for building for and deploying to The Graph",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"binary-install-raw": "0.0.13",
|
|
9
9
|
"chalk": "3.0.0",
|
|
10
10
|
"chokidar": "3.5.1",
|
|
11
|
-
"debug": "4.
|
|
11
|
+
"debug": "4.3.1",
|
|
12
12
|
"docker-compose": "0.23.4",
|
|
13
13
|
"dockerode": "2.5.8",
|
|
14
14
|
"fs-extra": "9.0.0",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"graphql": "15.5.0",
|
|
18
18
|
"immutable": "3.8.2",
|
|
19
19
|
"ipfs-http-client": "34.0.0",
|
|
20
|
-
"jayson": "3.
|
|
20
|
+
"jayson": "3.6.6",
|
|
21
21
|
"js-yaml": "3.13.1",
|
|
22
22
|
"node-fetch": "2.6.0",
|
|
23
23
|
"pkginfo": "0.4.1",
|
|
@@ -59,6 +59,9 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
59
59
|
case "aurora": return `https://api.aurorascan.dev/api`
|
|
60
60
|
case "aurora-testnet": return `https://api-testnet.aurorascan.dev/api`
|
|
61
61
|
case "optimism-kovan": return `https://api-kovan-optimistic.etherscan.io/api`
|
|
62
|
+
case "optimism": return `https://api-optimistic.etherscan.io/api`
|
|
63
|
+
case "avalanche": return `https://api.snowtrace.io/api`;
|
|
64
|
+
case "fuji": return `https://api-testnet.snowtrace.io/api`;
|
|
62
65
|
default: return `https://api-${network}.etherscan.io/api`
|
|
63
66
|
}
|
|
64
67
|
}
|
|
@@ -6,7 +6,7 @@ const Compiler = require('../compiler')
|
|
|
6
6
|
// Helper function to construct a subgraph compiler
|
|
7
7
|
const createCompiler = (
|
|
8
8
|
manifest,
|
|
9
|
-
{ ipfs, outputDir, outputFormat, skipMigrations, blockIpfsMethods, protocol }
|
|
9
|
+
{ ipfs, headers, outputDir, outputFormat, skipMigrations, blockIpfsMethods, protocol }
|
|
10
10
|
) => {
|
|
11
11
|
// Parse the IPFS URL
|
|
12
12
|
let url
|
|
@@ -25,6 +25,7 @@ The IPFS URL must be of the following format: http(s)://host[:port]/[path]`)
|
|
|
25
25
|
host: url.hostname,
|
|
26
26
|
port: url.port,
|
|
27
27
|
'api-path': url.pathname.replace(/\/$/, '') + '/api/v0/',
|
|
28
|
+
headers,
|
|
28
29
|
})
|
|
29
30
|
: undefined
|
|
30
31
|
|
|
@@ -107,7 +107,19 @@ function hasChanges(identifierName, network, networkConfig, dataSource) {
|
|
|
107
107
|
return networkChanged || addressChanged || startBlockChanged
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
const updateNetworksFile = async (toolbox, network, dataSource, address, networksFile) => {
|
|
111
|
+
await toolbox.patching.update(networksFile, (config) => {
|
|
112
|
+
if(Object.keys(config).includes(network)) {
|
|
113
|
+
Object.assign(config[network], { [dataSource]: { address } })
|
|
114
|
+
} else {
|
|
115
|
+
Object.assign(config, { [network]: { [dataSource]: { address } }})
|
|
116
|
+
}
|
|
117
|
+
return config
|
|
118
|
+
})
|
|
119
|
+
}
|
|
120
|
+
|
|
110
121
|
module.exports = {
|
|
111
122
|
updateSubgraphNetwork,
|
|
112
|
-
initNetworksConfig
|
|
123
|
+
initNetworksConfig,
|
|
124
|
+
updateNetworksFile
|
|
113
125
|
}
|
package/src/commands/add.js
CHANGED
|
@@ -9,6 +9,7 @@ const { generateDataSource, writeABI, writeSchema, writeMapping } = require('../
|
|
|
9
9
|
const { loadAbiFromEtherscan, loadAbiFromBlockScout } = require('../command-helpers/abi')
|
|
10
10
|
const EthereumABI = require('../protocols/ethereum/abi')
|
|
11
11
|
const { fixParameters } = require('../command-helpers/gluegun')
|
|
12
|
+
const { updateNetworksFile } = require('../command-helpers/network')
|
|
12
13
|
|
|
13
14
|
const HELP = `
|
|
14
15
|
${chalk.bold('graph add')} <address> [<subgraph-manifest default: "./subgraph.yaml">]
|
|
@@ -18,11 +19,12 @@ ${chalk.dim('Options:')}
|
|
|
18
19
|
--abi <path> Path to the contract ABI (default: download from Etherscan)
|
|
19
20
|
--contract-name Name of the contract (default: Contract)
|
|
20
21
|
--merge-entities Whether to merge entities with the same name (default: false)
|
|
22
|
+
--network-file <path> Networks config file path (default: "./networks.json")
|
|
21
23
|
-h, --help Show usage information
|
|
22
24
|
`
|
|
23
25
|
|
|
24
26
|
module.exports = {
|
|
25
|
-
description: '
|
|
27
|
+
description: 'Adds a new datasource to a subgraph',
|
|
26
28
|
run: async toolbox => {
|
|
27
29
|
// Obtain tools
|
|
28
30
|
let { print, system } = toolbox
|
|
@@ -33,20 +35,12 @@ module.exports = {
|
|
|
33
35
|
contractName,
|
|
34
36
|
h,
|
|
35
37
|
help,
|
|
36
|
-
mergeEntities
|
|
38
|
+
mergeEntities,
|
|
39
|
+
networkFile
|
|
37
40
|
} = toolbox.parameters.options
|
|
38
41
|
|
|
39
|
-
let address = toolbox.parameters.first
|
|
40
|
-
let manifestPath = toolbox.parameters.second || './subgraph.yaml'
|
|
41
42
|
contractName = contractName || 'Contract'
|
|
42
43
|
|
|
43
|
-
// Validate the address
|
|
44
|
-
if (!address) {
|
|
45
|
-
print.error('No contract address provided')
|
|
46
|
-
process.exitCode = 1
|
|
47
|
-
return
|
|
48
|
-
}
|
|
49
|
-
|
|
50
44
|
try {
|
|
51
45
|
fixParameters(toolbox.parameters, {
|
|
52
46
|
h,
|
|
@@ -59,12 +53,22 @@ module.exports = {
|
|
|
59
53
|
return
|
|
60
54
|
}
|
|
61
55
|
|
|
56
|
+
let address = toolbox.parameters.first || toolbox.parameters.array[0]
|
|
57
|
+
let manifestPath = toolbox.parameters.second || toolbox.parameters.array[1] || './subgraph.yaml'
|
|
58
|
+
|
|
62
59
|
// Show help text if requested
|
|
63
60
|
if (help || h) {
|
|
64
61
|
print.info(HELP)
|
|
65
62
|
return
|
|
66
63
|
}
|
|
67
64
|
|
|
65
|
+
// Validate the address
|
|
66
|
+
if (!address) {
|
|
67
|
+
print.error('No contract address provided')
|
|
68
|
+
process.exitCode = 1
|
|
69
|
+
return
|
|
70
|
+
}
|
|
71
|
+
|
|
68
72
|
const dataSourcesAndTemplates = await DataSourcesExtractor.fromFilePath(manifestPath)
|
|
69
73
|
let protocol = Protocol.fromDataSources(dataSourcesAndTemplates)
|
|
70
74
|
let manifest = await Subgraph.load(manifestPath, { protocol })
|
|
@@ -100,7 +104,7 @@ module.exports = {
|
|
|
100
104
|
await writeMapping(ethabi, protocol, contractName, collisionEntities)
|
|
101
105
|
|
|
102
106
|
let dataSources = result.get('dataSources')
|
|
103
|
-
let dataSource = await generateDataSource(protocol,
|
|
107
|
+
let dataSource = await generateDataSource(protocol,
|
|
104
108
|
contractName, network, address, ethabi)
|
|
105
109
|
|
|
106
110
|
// Handle the collisions edge case by copying another data source yaml data
|
|
@@ -120,6 +124,10 @@ module.exports = {
|
|
|
120
124
|
|
|
121
125
|
await Subgraph.write(result, manifestPath)
|
|
122
126
|
|
|
127
|
+
// Update networks.json
|
|
128
|
+
const networksFile = networkFile || "./networks.json"
|
|
129
|
+
await updateNetworksFile(toolbox, network, contractName, address, networksFile)
|
|
130
|
+
|
|
123
131
|
// Detect Yarn and/or NPM
|
|
124
132
|
let yarn = await system.which('yarn')
|
|
125
133
|
let npm = await system.which('npm')
|
|
@@ -173,12 +181,12 @@ const updateEventNamesOnCollision = (ethabi, entities, contractName, mergeEntiti
|
|
|
173
181
|
if (dataRow.get('type') === 'event'){
|
|
174
182
|
if (entities.indexOf(dataRow.get('name')) !== -1) {
|
|
175
183
|
if (entities.indexOf(`${contractName}${dataRow.get('name')}`) !== -1) {
|
|
176
|
-
print.error(`Contract name ('${contractName}')
|
|
184
|
+
print.error(`Contract name ('${contractName}')
|
|
177
185
|
+ event name ('${dataRow.get('name')}') entity already exists.`)
|
|
178
186
|
process.exitCode = 1
|
|
179
187
|
return
|
|
180
188
|
}
|
|
181
|
-
|
|
189
|
+
|
|
182
190
|
if (mergeEntities) {
|
|
183
191
|
collisionEntities.push(dataRow.get('name'))
|
|
184
192
|
abiData = abiData.asImmutable().delete(i) // needs to be immutable when deleting, yes you read that right - https://github.com/immutable-js/immutable-js/issues/1901
|
package/src/commands/build.js
CHANGED
|
@@ -17,8 +17,8 @@ Options:
|
|
|
17
17
|
-t, --output-format <format> Output format for mappings (wasm, wast) (default: wasm)
|
|
18
18
|
--skip-migrations Skip subgraph migrations (default: false)
|
|
19
19
|
-w, --watch Regenerate types when subgraph files change (default: false)
|
|
20
|
-
--network <name> Network to use from networks
|
|
21
|
-
--network-file <path>
|
|
20
|
+
--network <name> Network configuration to use from the networks config file
|
|
21
|
+
--network-file <path> Networks config file path (default: "./networks.json")
|
|
22
22
|
`
|
|
23
23
|
|
|
24
24
|
module.exports = {
|
package/src/commands/deploy.js
CHANGED
|
@@ -14,6 +14,7 @@ const { assertManifestApiVersion, assertGraphTsVersion } = require('../command-h
|
|
|
14
14
|
const DataSourcesExtractor = require('../command-helpers/data-sources')
|
|
15
15
|
const { validateStudioNetwork } = require('../command-helpers/studio')
|
|
16
16
|
const Protocol = require('../protocols')
|
|
17
|
+
const { updateSubgraphNetwork } = require('../command-helpers/network')
|
|
17
18
|
|
|
18
19
|
const HELP = `
|
|
19
20
|
${chalk.bold('graph deploy')} [options] ${chalk.bold('<subgraph-name>')} ${chalk.bold(
|
|
@@ -22,18 +23,21 @@ ${chalk.bold('graph deploy')} [options] ${chalk.bold('<subgraph-name>')} ${chalk
|
|
|
22
23
|
|
|
23
24
|
Options:
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
--product <subgraph-studio|hosted-service>
|
|
26
27
|
Selects the product to which to deploy
|
|
27
|
-
|
|
28
|
-
-g,
|
|
29
|
-
|
|
30
|
-
-l
|
|
31
|
-
-h,
|
|
32
|
-
-i,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
--studio Shortcut for --product subgraph-studio
|
|
29
|
+
-g, --node <node> Graph node to which to deploy
|
|
30
|
+
--deploy-key <key> User deploy key
|
|
31
|
+
-l --version-label <label> Version label used for the deployment
|
|
32
|
+
-h, --help Show usage information
|
|
33
|
+
-i, --ipfs <node> Upload build results to an IPFS node (default: ${DEFAULT_IPFS_URL})
|
|
34
|
+
-hdr, --headers <map> Add custom headers that will be used by the IPFS HTTP client (default: {})
|
|
35
|
+
--debug-fork ID of a remote subgraph whose store will be GraphQL queried
|
|
36
|
+
-o, --output-dir <path> Output directory for build results (default: build/)
|
|
37
|
+
--skip-migrations Skip subgraph migrations (default: false)
|
|
38
|
+
-w, --watch Regenerate types when subgraph files change (default: false)
|
|
39
|
+
--network <name> Network configuration to use from the networks config file
|
|
40
|
+
--network-file <path> Networks config file path (default: "./networks.json")
|
|
37
41
|
`
|
|
38
42
|
|
|
39
43
|
const processForm = async (
|
|
@@ -51,7 +55,7 @@ const processForm = async (
|
|
|
51
55
|
name: 'product',
|
|
52
56
|
message: 'Product for which to deploy',
|
|
53
57
|
choices: ['subgraph-studio', 'hosted-service'],
|
|
54
|
-
skip:
|
|
58
|
+
skip:
|
|
55
59
|
product === 'subgraph-studio' ||
|
|
56
60
|
product === 'hosted-service' ||
|
|
57
61
|
studio !== undefined || node !== undefined,
|
|
@@ -91,6 +95,8 @@ module.exports = {
|
|
|
91
95
|
i,
|
|
92
96
|
help,
|
|
93
97
|
ipfs,
|
|
98
|
+
headers,
|
|
99
|
+
hdr,
|
|
94
100
|
node,
|
|
95
101
|
o,
|
|
96
102
|
outputDir,
|
|
@@ -98,16 +104,27 @@ module.exports = {
|
|
|
98
104
|
w,
|
|
99
105
|
watch,
|
|
100
106
|
debugFork,
|
|
107
|
+
network,
|
|
108
|
+
networkFile,
|
|
101
109
|
} = toolbox.parameters.options
|
|
102
110
|
|
|
103
111
|
// Support both long and short option variants
|
|
104
112
|
help = help || h
|
|
105
113
|
ipfs = ipfs || i || DEFAULT_IPFS_URL
|
|
114
|
+
headers = headers || hdr || "{}"
|
|
106
115
|
node = node || g
|
|
107
116
|
outputDir = outputDir || o
|
|
108
117
|
watch = watch || w
|
|
109
118
|
versionLabel = versionLabel || l
|
|
110
119
|
|
|
120
|
+
try {
|
|
121
|
+
headers = JSON.parse(headers)
|
|
122
|
+
} catch (e) {
|
|
123
|
+
print.error("Please make sure headers is a valid JSON value")
|
|
124
|
+
process.exitCode = 1
|
|
125
|
+
return
|
|
126
|
+
}
|
|
127
|
+
|
|
111
128
|
let subgraphName, manifest
|
|
112
129
|
try {
|
|
113
130
|
;[subgraphName, manifest] = fixParameters(toolbox.parameters, {
|
|
@@ -129,6 +146,10 @@ module.exports = {
|
|
|
129
146
|
manifest !== undefined && manifest !== ''
|
|
130
147
|
? manifest
|
|
131
148
|
: filesystem.resolve('subgraph.yaml')
|
|
149
|
+
networkFile =
|
|
150
|
+
networkFile !== undefined && networkFile !== ''
|
|
151
|
+
? networkFile
|
|
152
|
+
: filesystem.resolve("networks.json")
|
|
132
153
|
|
|
133
154
|
try {
|
|
134
155
|
const dataSourcesAndTemplates = await DataSourcesExtractor.fromFilePath(manifest)
|
|
@@ -211,11 +232,17 @@ module.exports = {
|
|
|
211
232
|
return
|
|
212
233
|
}
|
|
213
234
|
|
|
235
|
+
if (network) {
|
|
236
|
+
let identifierName = protocol.getContract().identifierName()
|
|
237
|
+
await updateSubgraphNetwork(toolbox, manifest, network, networkFile, identifierName)
|
|
238
|
+
}
|
|
239
|
+
|
|
214
240
|
const isStudio = node.match(/studio/)
|
|
215
241
|
const isHostedService = node.match(/thegraph.com/) && !isStudio
|
|
216
242
|
|
|
217
243
|
let compiler = createCompiler(manifest, {
|
|
218
244
|
ipfs,
|
|
245
|
+
headers,
|
|
219
246
|
outputDir,
|
|
220
247
|
outputFormat: 'wasm',
|
|
221
248
|
skipMigrations,
|
package/src/commands/init.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
const chalk = require('chalk')
|
|
2
|
-
const fetch = require('node-fetch')
|
|
3
|
-
const immutable = require('immutable')
|
|
4
2
|
const os = require('os')
|
|
5
3
|
const path = require('path')
|
|
6
4
|
const toolbox = require('gluegun/toolbox')
|
|
7
|
-
const
|
|
5
|
+
const fs = require('fs')
|
|
6
|
+
const graphCli = require('../cli')
|
|
8
7
|
|
|
9
8
|
const {
|
|
10
9
|
getSubgraphBasename,
|
|
@@ -423,9 +422,9 @@ module.exports = {
|
|
|
423
422
|
contractName,
|
|
424
423
|
node,
|
|
425
424
|
studio,
|
|
426
|
-
product
|
|
425
|
+
product
|
|
427
426
|
},
|
|
428
|
-
{ commands },
|
|
427
|
+
{ commands, addContract: false },
|
|
429
428
|
)
|
|
430
429
|
}
|
|
431
430
|
|
|
@@ -484,9 +483,9 @@ module.exports = {
|
|
|
484
483
|
contractName: inputs.contractName,
|
|
485
484
|
node,
|
|
486
485
|
studio: inputs.studio,
|
|
487
|
-
product: inputs.product
|
|
486
|
+
product: inputs.product
|
|
488
487
|
},
|
|
489
|
-
{ commands },
|
|
488
|
+
{ commands, addContract: true },
|
|
490
489
|
)
|
|
491
490
|
}
|
|
492
491
|
},
|
|
@@ -720,9 +719,9 @@ const initSubgraphFromContract = async (
|
|
|
720
719
|
contractName,
|
|
721
720
|
node,
|
|
722
721
|
studio,
|
|
723
|
-
product
|
|
722
|
+
product
|
|
724
723
|
},
|
|
725
|
-
{ commands },
|
|
724
|
+
{ commands, addContract },
|
|
726
725
|
) => {
|
|
727
726
|
let { print } = toolbox
|
|
728
727
|
|
|
@@ -815,5 +814,85 @@ const initSubgraphFromContract = async (
|
|
|
815
814
|
return
|
|
816
815
|
}
|
|
817
816
|
|
|
817
|
+
while (addContract) {
|
|
818
|
+
addContract = await addAnotherContract(toolbox, { protocolInstance, directory })
|
|
819
|
+
}
|
|
820
|
+
|
|
818
821
|
printNextSteps(toolbox, { subgraphName, directory }, { commands })
|
|
819
822
|
}
|
|
823
|
+
|
|
824
|
+
const addAnotherContract = async (toolbox, { protocolInstance, directory }) => {
|
|
825
|
+
const addContractConfirmation = await toolbox.prompt.confirm('Add another contract?')
|
|
826
|
+
|
|
827
|
+
if (addContractConfirmation) {
|
|
828
|
+
let abiFromFile
|
|
829
|
+
let ProtocolContract = protocolInstance.getContract()
|
|
830
|
+
|
|
831
|
+
let questions = [
|
|
832
|
+
{
|
|
833
|
+
type: 'input',
|
|
834
|
+
name: 'contract',
|
|
835
|
+
message: () => `Contract ${ProtocolContract.identifierName()}`,
|
|
836
|
+
validate: async (value) => {
|
|
837
|
+
// Validate whether the contract is valid
|
|
838
|
+
const { valid, error } = validateContract(value, ProtocolContract)
|
|
839
|
+
return valid ? true : error
|
|
840
|
+
},
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
type: 'select',
|
|
844
|
+
name: 'localAbi',
|
|
845
|
+
message: 'Provide local ABI path?',
|
|
846
|
+
choices: ['yes', 'no'],
|
|
847
|
+
result: (value) => {
|
|
848
|
+
abiFromFile = value === 'yes' ? true : false
|
|
849
|
+
return abiFromFile
|
|
850
|
+
},
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
type: 'input',
|
|
854
|
+
name: 'abi',
|
|
855
|
+
message: 'ABI file (path)',
|
|
856
|
+
skip: () => abiFromFile === false
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
type: 'input',
|
|
860
|
+
name: 'contractName',
|
|
861
|
+
message: 'Contract Name',
|
|
862
|
+
initial: 'Contract',
|
|
863
|
+
validate: (value) => value && value.length > 0,
|
|
864
|
+
},
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
// Get the cwd before process.chdir in order to switch back in the end of command execution
|
|
868
|
+
const cwd = process.cwd();
|
|
869
|
+
|
|
870
|
+
try {
|
|
871
|
+
let { abi, contract, contractName } = await toolbox.prompt.ask(questions)
|
|
872
|
+
|
|
873
|
+
if (fs.existsSync(directory)) {
|
|
874
|
+
process.chdir(directory)
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
let commandLine = ['add', contract, '--contract-name', contractName]
|
|
878
|
+
|
|
879
|
+
if (abiFromFile) {
|
|
880
|
+
if (abi.includes(directory)) {
|
|
881
|
+
commandLine.push('--abi', path.normalize(abi.replace(directory, '')))
|
|
882
|
+
} else {
|
|
883
|
+
commandLine.push('--abi', abi)
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
await graphCli.run(commandLine)
|
|
888
|
+
} catch (e) {
|
|
889
|
+
toolbox.print.error(e)
|
|
890
|
+
process.exit(1)
|
|
891
|
+
}
|
|
892
|
+
finally {
|
|
893
|
+
process.chdir(cwd)
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
return addContractConfirmation
|
|
898
|
+
}
|
package/src/protocols/index.js
CHANGED
|
@@ -52,6 +52,7 @@ module.exports = class Protocol {
|
|
|
52
52
|
'matic',
|
|
53
53
|
'mumbai',
|
|
54
54
|
'fantom',
|
|
55
|
+
'fantom-testnet',
|
|
55
56
|
'bsc',
|
|
56
57
|
'chapel',
|
|
57
58
|
'clover',
|
|
@@ -60,6 +61,8 @@ module.exports = class Protocol {
|
|
|
60
61
|
'celo',
|
|
61
62
|
'celo-alfajores',
|
|
62
63
|
'fuse',
|
|
64
|
+
'moonbeam',
|
|
65
|
+
'moonriver',
|
|
63
66
|
'mbase',
|
|
64
67
|
'arbitrum-one',
|
|
65
68
|
'arbitrum-rinkeby',
|
|
@@ -10,6 +10,14 @@ dataSources:
|
|
|
10
10
|
source:
|
|
11
11
|
account: wnear.flux-dev
|
|
12
12
|
startBlock: 1
|
|
13
|
+
accounts:
|
|
14
|
+
prefixes:
|
|
15
|
+
- some-prefix
|
|
16
|
+
- a-prefix.with-dot
|
|
17
|
+
suffixes:
|
|
18
|
+
- suffix.near
|
|
19
|
+
- near
|
|
20
|
+
- another-suffix.testnet
|
|
13
21
|
mapping:
|
|
14
22
|
apiVersion: 0.0.5
|
|
15
23
|
language: wasm/assemblyscript
|