Skip to content

Commit

Permalink
Merge 2d0678d into 04663c7
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedali8 authored May 28, 2022
2 parents 04663c7 + 2d0678d commit b2eea2b
Show file tree
Hide file tree
Showing 10 changed files with 3,533 additions and 2 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build_subql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build for all networks

on:
push:
branches:
- dev

# Allow workflow to be manually run from the GitHub UI
workflow_dispatch:

jobs:
create-all-network-branches:
permissions: write-all
runs-on: ubuntu-latest

strategy:
matrix:
network: [acala, astar, bifrost_mainnet, bifrost_testnet, contextfree, kusama, karura, polkadot, shiden, shibuya, westend]
fail-fast: false

env:
NETWORK: ${{ matrix.network }}

steps:
- uses: actions/checkout@v3

- run: echo "NETWORK -> ${{ env.NETWORK }}"

- name: Install node
uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Install dependencies
run: yarn install

- name: Patch chain
run: yarn patchchain ${{ env.NETWORK }}

- name: Print project.yaml
run: cat ./project.yaml

- name: Build project
run: yarn codegen && yarn build
1 change: 0 additions & 1 deletion .github/workflows/create_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:

- name: Install dependencies
run: yarn install
# --immutable --immutable-cache --check-cache

- name: Patch chain
run: yarn patchchain ${{ env.NETWORK }}
Expand Down
2 changes: 2 additions & 0 deletions base-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ network:
chainId: "0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3"
endpoint: wss://rpc.polkadot.io
dictionary: https://api.subquery.network/sq/subquery/dictionary-polkadot
chaintypes:
file: ./chaintypes.json
dataSources:
- kind: substrate/Runtime
startBlock: 780104 # Polkadot
Expand Down
121 changes: 121 additions & 0 deletions chaintypes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
{
"typesBundle": {
"spec": {
"contextfree": {
"types": [
{
"minmax": [0, null],
"types": {
"ResourceId": "[u8; 32]",
"DepositNonce": "u64",
"ProposalStatus": {
"_enum": ["Initiated", "Approved", "Rejected"]
},
"ProposalVotes": {
"votes_for": "Vec<AccountId>",
"votes_against": "Vec<AccountId>",
"status": "ProposalStatus"
},
"BridgeTokenId": "U256",
"BridgeChainId": "u8",
"VestingPlan": {
"start_time": "u64",
"cliff_duration": "u64",
"total_duration": "u64",
"interval": "u64",
"initial_amount": "Balance",
"total_amount": "Balance",
"vesting_during_cliff": "bool"
},
"ProposalId": "u32",
"ProjectId": "u32",
"ChainIndex": "u32",
"Protocol": {
"_enum": ["Solidity", "Substrate"]
},
"Chain": {
"_protocol": "Protocol"
},
"CrossChainAccount": {
"_enum": {
"Solidity": "H160",
"Substrate": "AccountId"
}
},
"IpfsHash": "Text",
"SolidityStrategy": {
"_enum": {
"ERC20Balance": "H160"
}
},
"SubstrateStrategy": {
"_enum": ["NativeBalance"]
},
"Strategy": {
"_enum": {
"Solidity": "SolidityStrategy",
"Substrate": "SubstrateStrategy"
}
},
"Workspace": {
"_chain": "ChainIndex",
"strategies": "Vec<Strategy>"
},
"UserGroup": {
"owner": "CrossChainAccount",
"admins": "Vec<CrossChainAccount>",
"maintainers": "Vec<CrossChainAccount>",
"proposers": "Option<Vec<CrossChainAccount>>"
},
"Project": {
"usergroup": "UserGroup",
"data": "IpfsHash",
"workspaces": "Vec<Workspace>"
},
"VotingFormat": {
"_enum": ["SingleChoice", "SplitVote"]
},
"OptionIndex": "u8",
"PrivacyLevel": {
"_enum": {
"Opaque": "u8",
"Rank": "Null",
"Private": "Null",
"Public": "Null",
"Mixed": "Null"
}
},
"VotingPower": "U256",
"DAOProposalState": {
"finalized": "bool",
"snapshots": "Vec<Option<U256>>",
"blacklisted": "bool",
"votes": "Vec<VotingPower>",
"pub_voters": "Option<IpfsHash>",
"updates": "u32"
},
"DAOProposal": {
"_author": "CrossChainAccount",
"_voting_format": "VotingFormat",
"_option_count": "OptionIndex",
"_data": "IpfsHash",
"_privacy": "PrivacyLevel",
"_start": "u64",
"_end": "u64",
"_frequency": "Option<u64>",
"_workspaces": "Vec<Workspace>",
"state": "DAOProposalState"
},
"VoteUpdate": {
"project": "ProjectId",
"proposal": "ProposalId",
"votes": "Vec<VotingPower>",
"pub_voters": "Option<IpfsHash>"
}
}
}
]
}
}
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "metadot-multisig",
"description": "multisig subquery for metadot",
"version": "0.0.2",
"version": "0.0.3",
"author": {
"name": "Ahmed Ali",
"url": "https://github.com/ahmedali8"
},
"devDependencies": {
"@acala-network/type-definitions": "^4.1.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@polkadot/api": "^8.4.2",
Expand Down
15 changes: 15 additions & 0 deletions scripts/build_all_subql.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

# run loop for all networks
NETWORKS=("acala" "astar" "bifrost_mainnet" "bifrost_testnet" "contextfree" "kusama" "karura" "polkadot" "shiden" "shibuya" "westend")

for NETWORK in ${NETWORKS[@]}; do
echo "NETWORK: $NETWORK"
yarn patchchain $NETWORK
# cat ./project.yaml
yarn codegen
yarn build
done

echo "All builds complete"
git restore project.yaml src/constants/network.ts
19 changes: 19 additions & 0 deletions src/scripts/chain-config.ts
Original file line number Diff line number Diff line change
@@ -1,71 +1,90 @@
import { SupportedChains } from "../constants/chains";
import {
acala_type_definition,
astar_type_definitions,
bifrost_types_definitions,
contextfree_type_definitions,
karura_type_defition,
shiden_type_definitions,
} from "./type-definitions";

const chainConfig = {
[SupportedChains.ACALA]: {
startBlock: 910989,
chainId: "0xfc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c",
endpoint: "wss://acala-polkadot.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/acala-dictionary",
chaintypes: { typesBundle: acala_type_definition },
},
[SupportedChains.ASTAR]: {
startBlock: 924132,
chainId: "0x9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6",
endpoint: "wss://astar.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/astar-dictionary",
chaintypes: { typesBundle: astar_type_definitions },
},
[SupportedChains.BIFROST_MAINNET]: {
startBlock: 1654897,
chainId: "0x9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed",
endpoint: "wss://bifrost-rpc.liebi.com/ws",
dictionary: "",
chaintypes: bifrost_types_definitions,
},
[SupportedChains.BIFROST_TESTNET]: {
startBlock: 180859,
chainId: "0x8b290fa39a8808f29d7309ea99442c95bf964838aef14be5a6449ae48f8a5f1f",
endpoint: "wss://bifrost-rpc.testnet.liebi.com/ws",
dictionary: "https://api.subquery.network/sq/subquery/bifrost-parachain-dictionary",
chaintypes: bifrost_types_definitions,
},
[SupportedChains.CONTEXTFREE]: {
startBlock: 2929900,
chainId: "0x6254c948b5eb7199a112cb308be3385c39c8c942625540ac749c77fe2aebc299",
endpoint: "wss://contextfree.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/contextfree-dictionary",
chaintypes: { typesBundle: { spec: { contextfree: contextfree_type_definitions } } },
},
[SupportedChains.KUSAMA]: {
startBlock: 12464962,
chainId: "0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe",
endpoint: "wss://kusama.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/kusama-dictionary",
chaintypes: null,
},
[SupportedChains.KARURA]: {
startBlock: 1820021,
chainId: "0xbaf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b",
endpoint: "wss://karura.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/AcalaNetwork/karura-dictionary",
chaintypes: { typesBundle: karura_type_defition },
},
[SupportedChains.POLKADOT]: {
startBlock: 10399000,
chainId: "0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3",
endpoint: "wss://polkadot.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/polkadot-dictionary",
chaintypes: null,
},
[SupportedChains.SHIBUYA]: {
startBlock: 1347428,
chainId: "0xddb89973361a170839f80f152d2e9e38a376a5a7eccefcade763f46a8e567019",
endpoint: "wss://rpc.shibuya.astar.network",
dictionary: "",
chaintypes: null,
},
[SupportedChains.SHIDEN]: {
startBlock: 1500245,
chainId: "0xf1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108",
endpoint: "wss://shiden.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/shiden-dictionary",
chaintypes: { typesBundle: { spec: { shiden: shiden_type_definitions } } },
},
[SupportedChains.WESTEND]: {
startBlock: 10622832,
chainId: "0xe143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e",
endpoint: "wss://westend.api.onfinality.io/public-ws",
dictionary: "https://api.subquery.network/sq/subquery/westend-dictionary",
chaintypes: null,
},
};

Expand Down
9 changes: 9 additions & 0 deletions src/scripts/patch-chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ function patchManifest(manifest) {
const chainId = commandlineInput.chainId ? commandlineInput.chainId : obj.chainId;
const endpoint = commandlineInput.endpoint ? commandlineInput.endpoint : obj.endpoint;
const dictionary = commandlineInput.dictionary ? commandlineInput.dictionary : obj.dictionary;
const chaintypes = obj.chaintypes;

// delete chaintypes.json
if (fs.existsSync(CHAINTYPES_PATH)) {
Expand All @@ -72,6 +73,14 @@ function patchManifest(manifest) {
_manifest["network"].dictionary = dictionary;
}

// create chaintypes file if chaintypes exist
if (chaintypes) {
fs.writeFileSync(path.resolve(CHAINTYPES_PATH), JSON.stringify(chaintypes, null, 2), {
encoding: "utf-8",
});
_manifest["network"].chaintypes = { file: "./chaintypes.json" };
}

return _manifest;
}

Expand Down
Loading

0 comments on commit b2eea2b

Please sign in to comment.