Add files via upload

This commit is contained in:
Angela 2022-03-17 14:57:33 -04:00 committed by GitHub
parent 1dad1d6e89
commit ba96dca6b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 61373 additions and 0 deletions

View File

@ -0,0 +1,20 @@
Package: metamaskConnectr
Title: What the Package Does (One Line, Title Case)
Version: 0.0.0.9000
Authors@R:
person(given = "First",
family = "Last",
role = c("aut", "cre"),
email = "first.last@example.com",
comment = c(ORCID = "YOUR-ORCID-ID"))
Description: What the package does (one paragraph).
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
license
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Imports: htmltools, reactR, shiny
NeedsCompilation: no
Packaged: 2022-02-14 21:40:31 UTC; angelaminster
Author: First Last [aut, cre] (YOUR-ORCID-ID)
Maintainer: First Last <first.last@example.com>

View File

@ -0,0 +1,6 @@
# Generated by roxygen2: do not edit by hand
export(metamaskConnect)
importFrom(htmltools,htmlDependency)
importFrom(htmltools,tags)
importFrom(reactR,createReactShinyInput)

View File

@ -0,0 +1,24 @@
#' <Add Title>
#'
#' <Add Description>
#'
#' @importFrom reactR createReactShinyInput
#' @importFrom htmltools htmlDependency tags
#'
#' @export
metamaskConnect <- function(inputId, default = "") {
reactR::createReactShinyInput(
inputId,
"metamaskConnect",
htmltools::htmlDependency(
name = "metamaskConnect-input",
version = "1.0.0",
src = "www/metamaskConnectr/metamaskConnect",
package = "metamaskConnectr",
script = "metamaskConnect.js"
),
default,
list(),
htmltools::tags$div
)
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,11 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/metamaskConnect.R
\name{metamaskConnect}
\alias{metamaskConnect}
\title{<Add Title>}
\usage{
metamaskConnect(inputId, default = "")
}
\description{
<Add Description>
}