Skip to content

Commit

Permalink
Merge pull request #1873 from polywrap/bindgen-wraps-on-wrapscan
Browse files Browse the repository at this point in the history
feat: update abi-bindgen wrap uris to wrapscan
  • Loading branch information
dOrgJelli authored Aug 30, 2023
2 parents 3c7f121 + 60f59ae commit e4b9d3c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/schema/bind/src/bindings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,41 +13,41 @@ export function getGenerateBindingFn(
switch (bindLanguage) {
case "wrap-as":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/wrap-assemblyscript"
"wrapscan.io/polywrap/wrap-assemblyscript-abi-bindgen@1"
);
case "wrap-rs":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/wrap-rust"
"wrapscan.io/polywrap/wrap-rust-abi-bindgen@1"
);
case "wrap-go":
return Golang.Wasm.generateBinding;
case "plugin-ts":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/plugin-typescript"
"wrapscan.io/polywrap/plugin-typescript-abi-bindgen@1"
);
case "plugin-rs":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/plugin-rust"
"wrapscan.io/polywrap/plugin-rust-abi-bindgen@1"
);
case "plugin-py":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/plugin-python"
"wrapscan.io/polywrap/plugin-python-abi-bindgen@1"
);
case "plugin-kt":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/plugin-kotlin"
"wrapscan.io/polywrap/plugin-kotlin-abi-bindgen@1"
);
case "plugin-swift":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/plugin-swift"
"wrapscan.io/polywrap/plugin-swift-abi-bindgen@1"
);
case "app-ts":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/app-typescript"
"wrapscan.io/polywrap/app-typescript-abi-bindgen@1"
);
case "app-py":
return WrapBindgen.getGenerateBindingFn(
"https://github.com/polywrap/wrap-abi-bindgen/tree/wrap-0.1/implementations/app-python"
"wrapscan.io/polywrap/app-python-abi-bindgen@1"
);
default:
throw Error(`Error: Language binding unsupported - ${bindLanguage}`);
Expand Down

0 comments on commit e4b9d3c

Please sign in to comment.