n8n-nodes-wax
Version:
n8n Community Node Package for the WAX Blockchain
29 lines • 893 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WaxBlockchainApi = void 0;
class WaxBlockchainApi {
constructor() {
this.name = 'waxPrivateKeyApi';
this.displayName = 'WAX Private Key API';
this.documentationUrl = 'https://github.com/mongus/n8n-nodes-wax';
this.properties = [
{
displayName: 'Account Name',
name: 'account',
type: 'string',
default: '',
},
{
displayName: 'Private Key',
name: 'privateKey',
type: 'string',
default: '',
typeOptions: {
password: true,
}
},
];
}
}
exports.WaxBlockchainApi = WaxBlockchainApi;
//# sourceMappingURL=WaxBlockchainApi.credentials.js.map